Blocksy Companion - Version 1.8.8.2

Version Description

Download this release

Release Info

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

Code changes from version 1.8.8.1 to 1.8.8.2

Files changed (30) hide show
  1. blocksy-companion.php +1 -1
  2. framework/extensions/cookies-consent/static/bundle/main.min.css +1 -1
  3. framework/extensions/newsletter-subscribe/static/bundle/main.min.css +1 -1
  4. framework/extensions/product-reviews/extension.php +16 -0
  5. framework/extensions/product-reviews/helpers.php +3 -3
  6. framework/extensions/product-reviews/metabox.php +1 -0
  7. framework/extensions/product-reviews/static/bundle/main-admin.min.css +1 -1
  8. framework/extensions/product-reviews/static/bundle/main.min.css +2 -2
  9. framework/extensions/product-reviews/static/sass/quick-info.scss +12 -0
  10. framework/extensions/product-reviews/views/single-top.php +34 -7
  11. framework/extensions/trending/static/bundle/main.min.css +1 -1
  12. framework/extensions/widgets/static/bundle/main.min.css +1 -1
  13. framework/extensions/widgets/widgets/ct-about-me/options.php +1 -1
  14. framework/extensions/widgets/widgets/ct-advertisement/options.php +1 -1
  15. framework/extensions/widgets/widgets/ct-contact-info/options.php +1 -0
  16. framework/extensions/widgets/widgets/ct-facebook/options.php +4 -0
  17. framework/extensions/widgets/widgets/ct-posts/options.php +11 -8
  18. framework/extensions/widgets/widgets/ct-quote/options.php +1 -0
  19. framework/extensions/widgets/widgets/ct-socials/options.php +9 -1
  20. framework/extensions/widgets/widgets/ct-socials/view.php +11 -1
  21. framework/features/header/header-options.php +6 -6
  22. framework/widgets-manager.php +15 -8
  23. languages/blocksy-companion.pot +2668 -924
  24. readme.txt +7 -1
  25. static/bundle/dashboard.min.css +1 -1
  26. static/bundle/main.min.css +1 -1
  27. static/bundle/options.min.css +1 -1
  28. static/bundle/sticky.js +1 -1
  29. static/js/frontend/sticky/shrink.js +7 -0
  30. static/js/helpers/SubmitSupport.js +3 -3
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.8.1
7
  Author: CreativeThemes
8
  Author URI: https://creativethemes.com
9
  Text Domain: blc
3
  /*
4
  Plugin Name: Blocksy Companion
5
  Description: This plugin is the companion for the Blocksy theme, it runs and adds its enhacements only if the Blocksy theme is installed and active.
6
+ Version: 1.8.8.2
7
  Author: CreativeThemes
8
  Author URI: https://creativethemes.com
9
  Text Domain: blc
framework/extensions/cookies-consent/static/bundle/main.min.css CHANGED
@@ -1,5 +1,5 @@
1
  /**
2
- * - v1.8.8.1
3
  *
4
  * Copyright (c) 2021
5
  * Licensed GPLv2+
1
  /**
2
+ * - v1.8.8.2
3
  *
4
  * Copyright (c) 2021
5
  * Licensed GPLv2+
framework/extensions/newsletter-subscribe/static/bundle/main.min.css CHANGED
@@ -1,5 +1,5 @@
1
  /**
2
- * - v1.8.8.1
3
  *
4
  * Copyright (c) 2021
5
  * Licensed GPLv2+
1
  /**
2
+ * - v1.8.8.2
3
  *
4
  * Copyright (c) 2021
5
  * Licensed GPLv2+
framework/extensions/product-reviews/extension.php CHANGED
@@ -126,6 +126,22 @@ class BlocksyExtensionProductReviews {
126
  $data['Version']
127
  );
128
  });
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
129
  }
130
 
131
  public function init_metabox() {
126
  $data['Version']
127
  );
128
  });
129
+
130
+ add_filter('blocksy_single_posts_post_elements_end', function ($options, $prefix) {
131
+ if ($prefix !== 'blc-product-review_single') {
132
+ return $options;
133
+ }
134
+
135
+ $options[$prefix . '_has_read_more'] = [
136
+ 'label' => __('Read More Button', 'blc'),
137
+ 'type' => 'ct-switch',
138
+ 'value' => 'yes',
139
+ 'sync' => blocksy_sync_single_post_container([
140
+ 'prefix' => $prefix
141
+ ])
142
+ ];
143
+ return $options;
144
+ }, 10, 2);
145
  }
146
 
147
  public function init_metabox() {
framework/extensions/product-reviews/helpers.php CHANGED
@@ -21,8 +21,8 @@ function blocksy_get_product_review_overall_score($post_id = null) {
21
  $avg_score = apply_filters(
22
  'blocksy:ext:product-reviews:overall-score',
23
  round(array_reduce($scores, function ($carry, $score) {
24
- return $carry + intval($score['score']);
25
- }, 0) / count($scores) * 2) / 2,
26
  $scores
27
  );
28
 
@@ -33,7 +33,7 @@ function blocksy_get_product_review_overall_score($post_id = null) {
33
  $output .= '<span class="ct-average-score">' . $avg_score . '/5</span>';
34
 
35
  $output .= '<div class="star-rating" role="img">';
36
- $width = ( ( $avg_score / 5 ) * 100 );
37
  $output .= '<span style="width: ' . $width . '%;"></span>';
38
  $output .= '</div>';
39
 
21
  $avg_score = apply_filters(
22
  'blocksy:ext:product-reviews:overall-score',
23
  round(array_reduce($scores, function ($carry, $score) {
24
+ return $carry + floatval($score['score']);
25
+ }, 0) / count($scores) * 10) / 10,
26
  $scores
27
  );
28
 
33
  $output .= '<span class="ct-average-score">' . $avg_score . '/5</span>';
34
 
35
  $output .= '<div class="star-rating" role="img">';
36
+ $width = (($avg_score / 5) * 100);
37
  $output .= '<span style="width: ' . $width . '%;"></span>';
38
  $output .= '</div>';
39
 
framework/extensions/product-reviews/metabox.php CHANGED
@@ -105,6 +105,7 @@ $options = [
105
  'score' => [
106
  'type' => 'ct-number',
107
  'value' => 5,
 
108
  'min' => 1,
109
  'max' => 5
110
  ]
105
  'score' => [
106
  'type' => 'ct-number',
107
  'value' => 5,
108
+ 'step' => 0.1,
109
  'min' => 1,
110
  'max' => 5
111
  ]
framework/extensions/product-reviews/static/bundle/main-admin.min.css CHANGED
@@ -1,5 +1,5 @@
1
  /**
2
- * - v1.8.8.1
3
  *
4
  * Copyright (c) 2021
5
  * Licensed GPLv2+
1
  /**
2
+ * - v1.8.8.2
3
  *
4
  * Copyright (c) 2021
5
  * Licensed GPLv2+
framework/extensions/product-reviews/static/bundle/main.min.css CHANGED
@@ -1,8 +1,8 @@
1
  /**
2
- * - v1.8.8.1
3
  *
4
  * Copyright (c) 2021
5
  * Licensed GPLv2+
6
  */
7
 
8
- .ct-product-hero .flexy-container{overflow:hidden}@media (max-width: 999.98px){.ct-product-hero .flexy-pills{--thumbs-spacing: 10px}}@media (min-width: 1000px){.ct-product-hero .flexy-pills{max-width:70%;margin:-8% auto 0 auto;--thumbs-spacing: 20px}}.ct-product-hero .flexy-pills ol{margin:0 calc(var(--thumbs-spacing) * -1)}.ct-product-hero .flexy-pills li{padding-top:var(--thumbs-spacing);padding-left:var(--thumbs-spacing);padding-right:var(--thumbs-spacing)}.ct-product-hero .flexy-pills li img{width:100%;border-radius:3px;border-radius:2px;border:3px solid #fff}.ct-product-hero .hero-section{margin-top:var(--margin-bottom)}.ct-product-scores{display:grid;grid-column-gap:25px;grid-row-gap:25px;margin:0 auto;max-width:800px}@media (min-width: 690px){.ct-product-scores{grid-template-columns:2fr 1fr}}.ct-product-scores:not(:last-child){margin-bottom:60px}.ct-product-scores li{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;padding:10px 20px;background:rgba(243,243,243,0.5);border-radius:2px}.ct-product-scores li:hover{background:#f3f3f3}.ct-product-scores li>span{font-size:15px;font-weight:500}.ct-overall-score{display:flex;flex-direction:column;align-items:center;justify-content:center;padding:20px;color:#fff;border-radius:2px;background:#1A202C}.ct-overall-score .ct-average-score{font-size:55px;font-weight:800;line-height:normal;margin-bottom:10px}.ct-overall-score .ct-score-label{font-size:15px;font-weight:700;text-transform:uppercase;letter-spacing:0.02em;color:#fff;margin:15px 0 0 0}.ct-overall-score-layer{display:flex;flex-wrap:wrap;align-items:center}.ct-overall-score-layer .ct-score-label,.ct-overall-score-layer .ct-average-score{font-size:14px;font-weight:600}.ct-overall-score-layer .ct-average-score{margin:0 5px}.ct-overall-score-layer .star-rating{margin-left:auto}.ct-product-actions-group{display:flex;align-items:center;justify-content:center}.ct-product-actions-group:not(:last-child){margin-bottom:60px}.ct-product-actions-group .ct-button:not(:last-child){-webkit-margin-end:25px;margin-inline-end:25px}.ct-product-actions-group .ct-icon-container{color:inherit;-webkit-margin-start:10px;margin-inline-start:10px}.ct-product-description:not(:last-child){margin-bottom:60px}.ct-product-info{display:grid;grid-template-columns:var(--grid-template-columns);grid-column-gap:40px;grid-row-gap:40px;border-top:1px solid #ececec;padding-top:var(--content-vertical-spacing, 60px)}@media (min-width: 1000px){.ct-product-info{--grid-template-columns: 1.5fr 1fr 1fr}}@media (min-width: 690px) and (max-width: 999.98px){.ct-product-info{--grid-template-columns: 1fr 1fr}}@media (min-width: 690px) and (max-width: 999.98px){.ct-specs{grid-column:1/-1}}.ct-specs ul{display:grid;grid-column-gap:40px}@media (min-width: 690px){.ct-specs ul{grid-template-columns:repeat(2, 1fr)}}.ct-product-hero{padding-top:var(--content-vertical-spacing, 60px)}.ct-product-hero .ct-container{padding-bottom:var(--content-vertical-spacing, 60px);border-bottom:1px solid #ececec}.ct-product-hero ul{--listIndent: 0;--listStyleType: none;--contentSpacing: 0}
1
  /**
2
+ * - v1.8.8.2
3
  *
4
  * Copyright (c) 2021
5
  * Licensed GPLv2+
6
  */
7
 
8
+ .ct-product-hero .flexy-container{overflow:hidden}@media (max-width: 999.98px){.ct-product-hero .flexy-pills{--thumbs-spacing: 10px}}@media (min-width: 1000px){.ct-product-hero .flexy-pills{max-width:70%;margin:-8% auto 0 auto;--thumbs-spacing: 20px}}.ct-product-hero .flexy-pills ol{margin:0 calc(var(--thumbs-spacing) * -1)}.ct-product-hero .flexy-pills li{padding-top:var(--thumbs-spacing);padding-left:var(--thumbs-spacing);padding-right:var(--thumbs-spacing)}.ct-product-hero .flexy-pills li img{width:100%;border-radius:3px;border-radius:2px;border:3px solid #fff}.ct-product-hero .hero-section{margin-top:var(--margin-bottom)}.ct-product-scores{display:grid;grid-column-gap:25px;grid-row-gap:25px;margin:0 auto;max-width:800px}@media (min-width: 690px){.ct-product-scores{grid-template-columns:2fr 1fr}}.ct-product-scores:not(:last-child){margin-bottom:60px}.ct-product-scores li{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;padding:10px 20px;background:rgba(243,243,243,0.5);border-radius:2px}.ct-product-scores li:hover{background:#f3f3f3}.ct-product-scores li>span{font-size:15px;font-weight:500}.ct-overall-score{display:flex;flex-direction:column;align-items:center;justify-content:center;padding:20px;color:#fff;border-radius:2px;background:#1A202C}.ct-overall-score .ct-average-score{font-size:55px;font-weight:800;line-height:normal;margin-bottom:10px}.ct-overall-score .ct-score-label{font-size:15px;font-weight:700;text-transform:uppercase;letter-spacing:0.02em;color:#fff;margin:15px 0 0 0}.ct-overall-score-layer{display:flex;flex-wrap:wrap;align-items:center}.ct-overall-score-layer .ct-score-label,.ct-overall-score-layer .ct-average-score{font-size:14px;font-weight:600}.ct-overall-score-layer .ct-average-score{margin:0 5px}.ct-overall-score-layer .star-rating{margin-left:auto}.ct-product-actions-group{display:flex;align-items:center;justify-content:center}.ct-product-actions-group:not(:last-child){margin-bottom:60px}.ct-product-actions-group .ct-button:not(:last-child){-webkit-margin-end:25px;margin-inline-end:25px}.ct-product-actions-group .ct-icon-container{color:inherit;-webkit-margin-start:10px;margin-inline-start:10px}.ct-product-description:not(:last-child){margin-bottom:60px}.ct-product-info{display:grid;grid-template-columns:var(--grid-template-columns);grid-column-gap:40px;grid-row-gap:40px;border-top:1px solid #ececec;padding-top:var(--content-vertical-spacing, 60px)}@media (min-width: 1000px){.ct-product-info{--grid-template-columns: 1.5fr 1fr 1fr}}@media (min-width: 690px) and (max-width: 999.98px){.ct-product-info{--grid-template-columns: 1fr 1fr}}.ct-product-info li{position:relative;-webkit-padding-start:23px;padding-inline-start:23px}.ct-product-info .ct-icon-container{position:absolute;left:0;top:0.35em;opacity:0.9}@media (min-width: 690px) and (max-width: 999.98px){.ct-specs{grid-column:1/-1}}.ct-specs ul{display:grid;grid-column-gap:40px}@media (min-width: 690px){.ct-specs ul{grid-template-columns:repeat(2, 1fr)}}.ct-product-hero{padding-top:var(--content-vertical-spacing, 60px)}.ct-product-hero .ct-container{padding-bottom:var(--content-vertical-spacing, 60px);border-bottom:1px solid #ececec}.ct-product-hero ul{--listIndent: 0;--listStyleType: none;--contentSpacing: 0}
framework/extensions/product-reviews/static/sass/quick-info.scss CHANGED
@@ -14,6 +14,18 @@
14
  @include media-breakpoint-only (md) {
15
  --grid-template-columns: 1fr 1fr;
16
  }
 
 
 
 
 
 
 
 
 
 
 
 
17
  }
18
 
19
  .ct-specs {
14
  @include media-breakpoint-only (md) {
15
  --grid-template-columns: 1fr 1fr;
16
  }
17
+
18
+ li {
19
+ position: relative;
20
+ padding-inline-start: 23px;
21
+ }
22
+
23
+ .ct-icon-container {
24
+ position: absolute;
25
+ left: 0;
26
+ top: 0.35em;
27
+ opacity: 0.9;
28
+ }
29
  }
30
 
31
  .ct-specs {
framework/extensions/product-reviews/views/single-top.php CHANGED
@@ -1,5 +1,7 @@
1
  <?php
2
 
 
 
3
  $atts = apply_filters(
4
  'blocksy:ext:product-reviews:frontend:atts',
5
  blocksy_get_post_options(null, [
@@ -96,7 +98,7 @@ if (! empty($scores)) {
96
  echo '<span>' . $single_score['label'] . '</span>';
97
 
98
  echo '<div class="star-rating" role="img">';
99
- $width = ( ( intval($single_score['score']) / 5 ) * 100 );
100
 
101
  echo '<span style="width: ' . $width . '%;">Rated <strong class="rating">3</strong> out of 5</span>';
102
  echo '</div>';
@@ -110,8 +112,8 @@ if (! empty($scores)) {
110
  $avg_score = apply_filters(
111
  'blocksy:ext:product-reviews:overall-score',
112
  round(array_reduce($scores, function ($carry, $score) {
113
- return $carry + intval($score['score']);
114
- }, 0) / count($scores) * 2) / 2,
115
  $scores
116
  );
117
 
@@ -145,7 +147,11 @@ $product_read_content_button_label = blocksy_akg(
145
  __('Read More', 'blc')
146
  );
147
 
148
- if (! empty($product_button_label)) {
 
 
 
 
149
  echo '<a href="#post-' . get_the_ID() . '" class="ct-button">';
150
  echo $product_read_content_button_label;
151
 
@@ -183,7 +189,7 @@ $product_cons = blocksy_akg('product_cons', $atts, []);
183
  $product_description = blocksy_akg('product_description', $atts, '');
184
 
185
  if (! empty($product_description)) {
186
- echo '<div class="ct-product-description">';
187
 
188
  echo '<div class="entry-content">';
189
  echo do_shortcode($product_description);
@@ -209,6 +215,13 @@ if (
209
 
210
  foreach ($product_specs as $single_spec) {
211
  echo '<li>';
 
 
 
 
 
 
 
212
  echo '<b>' . blocksy_akg('label', $single_spec, '') . ': </b>';
213
  echo blocksy_akg('value', $single_spec, '');
214
  echo '</li>';
@@ -219,13 +232,20 @@ if (
219
  }
220
 
221
  if (! empty($product_pros)) {
222
- echo '<div>';
223
  echo '<h5>' . __('Pros', 'blc') . '</h5>';
224
 
225
  echo '<ul>';
226
 
227
  foreach ($product_pros as $single_pro) {
228
  echo '<li>';
 
 
 
 
 
 
 
229
  echo blocksy_akg('label', $single_pro, '');
230
  echo '</li>';
231
  }
@@ -235,13 +255,20 @@ if (
235
  }
236
 
237
  if (! empty($product_cons)) {
238
- echo '<div>';
239
  echo '<h5>' . __('Cons', 'blc') . '</h5>';
240
 
241
  echo '<ul>';
242
 
243
  foreach ($product_cons as $single_cons) {
244
  echo '<li>';
 
 
 
 
 
 
 
245
  echo blocksy_akg('label', $single_cons, '');
246
  echo '</li>';
247
  }
1
  <?php
2
 
3
+ $prefix = 'blc-product-review_single';
4
+
5
  $atts = apply_filters(
6
  'blocksy:ext:product-reviews:frontend:atts',
7
  blocksy_get_post_options(null, [
98
  echo '<span>' . $single_score['label'] . '</span>';
99
 
100
  echo '<div class="star-rating" role="img">';
101
+ $width = ((floatval($single_score['score']) / 5) * 100);
102
 
103
  echo '<span style="width: ' . $width . '%;">Rated <strong class="rating">3</strong> out of 5</span>';
104
  echo '</div>';
112
  $avg_score = apply_filters(
113
  'blocksy:ext:product-reviews:overall-score',
114
  round(array_reduce($scores, function ($carry, $score) {
115
+ return $carry + floatval($score['score']);
116
+ }, 0) / count($scores) * 10) / 10,
117
  $scores
118
  );
119
 
147
  __('Read More', 'blc')
148
  );
149
 
150
+ if (
151
+ ! empty($product_button_label)
152
+ &&
153
+ get_theme_mod($prefix . '_has_read_more', 'yes') === 'yes'
154
+ ) {
155
  echo '<a href="#post-' . get_the_ID() . '" class="ct-button">';
156
  echo $product_read_content_button_label;
157
 
189
  $product_description = blocksy_akg('product_description', $atts, '');
190
 
191
  if (! empty($product_description)) {
192
+ echo '<div class="ct-product-description" ' . blocksy_schema_org_definitions('reviewBody') . '>';
193
 
194
  echo '<div class="entry-content">';
195
  echo do_shortcode($product_description);
215
 
216
  foreach ($product_specs as $single_spec) {
217
  echo '<li>';
218
+ echo blocksy_html_tag(
219
+ 'span',
220
+ [
221
+ 'class' => 'ct-icon-container'
222
+ ],
223
+ "<svg width='13' height='13' viewBox='0 0 13 13'><path d='M5.3 0l-.2 1.7c-.8.2-1.5.7-2.1 1.2l-1.5-.7-1.2 2 1.4 1c-.1.5-.2.9-.2 1.3s.1.8.2 1.2l-1.4 1 1.2 2 1.5-.6c.6.6 1.3 1 2.1 1.2l.2 1.7h2.3l.2-1.7c.8-.2 1.5-.6 2.1-1.2l1.6.7 1.2-2-1.4-1c.1-.4.2-.8.2-1.2s-.1-.8-.2-1.2l1.4-1-1.2-2-1.5.5c-.6-.6-1.3-1-2.1-1.2L7.7 0H5.3zm1.2 4.5c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2z'/></svg>"
224
+ );
225
  echo '<b>' . blocksy_akg('label', $single_spec, '') . ': </b>';
226
  echo blocksy_akg('value', $single_spec, '');
227
  echo '</li>';
232
  }
233
 
234
  if (! empty($product_pros)) {
235
+ echo '<div class="ct-product-review-pros" ' . blocksy_schema_org_definitions('positiveNotes') . '>';
236
  echo '<h5>' . __('Pros', 'blc') . '</h5>';
237
 
238
  echo '<ul>';
239
 
240
  foreach ($product_pros as $single_pro) {
241
  echo '<li>';
242
+ echo blocksy_html_tag(
243
+ 'span',
244
+ [
245
+ 'class' => 'ct-icon-container'
246
+ ],
247
+ "<svg width='13' height='13' viewBox='0 0 13 13'><path d='M6.4.3c-.3 0-.5.3-.6.5l-.6 1.7-1.7 2c-.3.3-.4.5-.4.9v6c0 .7.6 1.3 1.3 1.3h5.2c.5 0 1-.3 1.1-.7l2-4.4c.2-.3.3-.6.3-.8v-.6c0-.7-.6-1.3-1.3-1.3H7.2s.7-1.6.7-2.7c0-1-.7-1.6-1.2-1.7-.2-.2-.2-.2-.3-.2zM1 4.8c-.5 0-1 .4-1 1v5.9c0 .6.4 1 1 1s1-.4 1-1V5.8c-.1-.5-.5-1-1-1z'/></svg>"
248
+ );
249
  echo blocksy_akg('label', $single_pro, '');
250
  echo '</li>';
251
  }
255
  }
256
 
257
  if (! empty($product_cons)) {
258
+ echo '<div class="ct-product-review-cons" ' . blocksy_schema_org_definitions('negativeNotes') . '>';
259
  echo '<h5>' . __('Cons', 'blc') . '</h5>';
260
 
261
  echo '<ul>';
262
 
263
  foreach ($product_cons as $single_cons) {
264
  echo '<li>';
265
+ echo blocksy_html_tag(
266
+ 'span',
267
+ [
268
+ 'class' => 'ct-icon-container'
269
+ ],
270
+ "<svg width='13' height='13' viewBox='0 0 13 13'><path d='M6.6 12.6c.5-.2 1.2-.7 1.2-1.7 0-1.1-.7-2.7-.7-2.7h4.5c.7 0 1.3-.6 1.3-1.3v-.7c0-.3-.1-.5-.2-.8l-2-4.4c-.2-.4-.6-.7-1.1-.7H4.4c-.7 0-1.3.6-1.3 1.3v6c0 .3.1.6.3.9l1.7 2 .5 1.7c.1.3.3.5.6.5s.3 0 .4-.1zM1.9 7.2V1.4c0-.5-.4-1-1-1s-1 .3-1 1v5.9c0 .5.4 1 1 1s1-.6 1-1.1z'/></svg>"
271
+ );
272
  echo blocksy_akg('label', $single_cons, '');
273
  echo '</li>';
274
  }
framework/extensions/trending/static/bundle/main.min.css CHANGED
@@ -1,5 +1,5 @@
1
  /**
2
- * - v1.8.8.1
3
  *
4
  * Copyright (c) 2021
5
  * Licensed GPLv2+
1
  /**
2
+ * - v1.8.8.2
3
  *
4
  * Copyright (c) 2021
5
  * Licensed GPLv2+
framework/extensions/widgets/static/bundle/main.min.css CHANGED
@@ -1,5 +1,5 @@
1
  /**
2
- * - v1.8.8.1
3
  *
4
  * Copyright (c) 2021
5
  * Licensed GPLv2+
1
  /**
2
+ * - v1.8.8.2
3
  *
4
  * Copyright (c) 2021
5
  * Licensed GPLv2+
framework/extensions/widgets/widgets/ct-about-me/options.php CHANGED
@@ -132,7 +132,7 @@ $options = [
132
 
133
  'about_alignment' => [
134
  'type' => 'ct-radio',
135
- 'label' => __( 'Alignment', 'blocksy' ),
136
  'value' => 'center',
137
  'view' => 'text',
138
  'attr' => [ 'data-type' => 'alignment' ],
132
 
133
  'about_alignment' => [
134
  'type' => 'ct-radio',
135
+ 'label' => __( 'Alignment', 'blc' ),
136
  'value' => 'center',
137
  'view' => 'text',
138
  'attr' => [ 'data-type' => 'alignment' ],
framework/extensions/widgets/widgets/ct-advertisement/options.php CHANGED
@@ -64,7 +64,7 @@ $options = [
64
  ],
65
 
66
  'ad_image_ratio' => [
67
- 'label' => __( 'Image Ratio', 'blocksy' ),
68
  'type' => 'ct-ratio',
69
  'value' => 'original',
70
  'design' => 'inline',
64
  ],
65
 
66
  'ad_image_ratio' => [
67
+ 'label' => __( 'Image Ratio', 'blc' ),
68
  'type' => 'ct-ratio',
69
  'value' => 'original',
70
  'design' => 'inline',
framework/extensions/widgets/widgets/ct-contact-info/options.php CHANGED
@@ -307,6 +307,7 @@ $options = [
307
  'type' => 'ct-switch',
308
  'label' => __( 'Open link in new tab', 'blc' ),
309
  'value' => 'no',
 
310
  'disableRevertButton' => true,
311
  ],
312
  ];
307
  'type' => 'ct-switch',
308
  'label' => __( 'Open link in new tab', 'blc' ),
309
  'value' => 'no',
310
+ 'design' => 'inline-full',
311
  'disableRevertButton' => true,
312
  ],
313
  ];
framework/extensions/widgets/widgets/ct-facebook/options.php CHANGED
@@ -29,24 +29,28 @@ $options = [
29
  'type' => 'ct-switch',
30
  'label' => __( 'Profile Photos', 'blc' ),
31
  'value' => 'yes',
 
32
  ],
33
 
34
  'facebook_timeline' => [
35
  'type' => 'ct-switch',
36
  'label' => __( 'Timeline', 'blc' ),
37
  'value' => 'no',
 
38
  ],
39
 
40
  'facebook_cover' => [
41
  'type' => 'ct-switch',
42
  'label' => __( 'Cover Photo', 'blc' ),
43
  'value' => 'no',
 
44
  ],
45
 
46
  'facebook_small_header' => [
47
  'type' => 'ct-switch',
48
  'label' => __( 'Small Header', 'blc' ),
49
  'value' => 'no',
 
50
  ],
51
 
52
  ];
29
  'type' => 'ct-switch',
30
  'label' => __( 'Profile Photos', 'blc' ),
31
  'value' => 'yes',
32
+ 'design' => 'inline-full',
33
  ],
34
 
35
  'facebook_timeline' => [
36
  'type' => 'ct-switch',
37
  'label' => __( 'Timeline', 'blc' ),
38
  'value' => 'no',
39
+ 'design' => 'inline-full',
40
  ],
41
 
42
  'facebook_cover' => [
43
  'type' => 'ct-switch',
44
  'label' => __( 'Cover Photo', 'blc' ),
45
  'value' => 'no',
46
+ 'design' => 'inline-full',
47
  ],
48
 
49
  'facebook_small_header' => [
50
  'type' => 'ct-switch',
51
  'label' => __( 'Small Header', 'blc' ),
52
  'value' => 'no',
53
+ 'design' => 'inline-full',
54
  ],
55
 
56
  ];
framework/extensions/widgets/widgets/ct-posts/options.php CHANGED
@@ -123,7 +123,7 @@ $options = [
123
  'options' => [
124
 
125
  'post_widget_image_ratio' => [
126
- 'label' => __( 'Image Ratio', 'blocksy' ),
127
  'type' => 'ct-ratio',
128
  'value' => 'original',
129
  'design' => 'inline',
@@ -226,7 +226,7 @@ $options = [
226
  'min' => 1,
227
  'max' => 30,
228
  'value' => 5,
229
- 'design' => 'inline',
230
  ],
231
  ],
232
  ],
@@ -240,11 +240,11 @@ $options = [
240
  'options' => [
241
 
242
  'post_id' => [
243
- 'label' => __( 'Posts ID', 'blocksy' ),
244
  'type' => 'text',
245
  'design' => 'inline',
246
  'desc' => sprintf(
247
- __('Separate posts ID by comma. How to find the %spost ID%s.', 'blocksy'),
248
  '<a href="https://www.wpbeginner.com/beginners-guide/how-to-find-post-category-tag-comments-or-user-id-in-wordpress/" target="_blank">',
249
  '</a>'
250
  ),
@@ -262,11 +262,11 @@ $options = [
262
  'options' => [
263
 
264
  'page_id' => [
265
- 'label' => __( 'Pages ID', 'blocksy' ),
266
  'type' => 'text',
267
  'design' => 'inline',
268
  'desc' => sprintf(
269
- __('Separate pages ID by comma. How to find the %spage ID%s.', 'blocksy'),
270
  '<a href="https://www.wpbeginner.com/beginners-guide/how-to-find-post-category-tag-comments-or-user-id-in-wordpress/" target="_blank">',
271
  '</a>'
272
  ),
@@ -288,7 +288,7 @@ $options = [
288
  'min' => 1,
289
  'max' => 30,
290
  'value' => 5,
291
- 'design' => 'inline',
292
  ],
293
  ],
294
  ],
@@ -297,18 +297,21 @@ $options = [
297
  'type' => 'ct-switch',
298
  'label' => __( 'Show Date', 'blc' ),
299
  'value' => 'no',
 
300
  ],
301
 
302
  'display_comments' => [
303
  'type' => 'ct-switch',
304
  'label' => __( 'Show Comments', 'blc' ),
305
  'value' => 'no',
 
306
  ],
307
 
308
  'display_excerpt' => [
309
  'type' => 'ct-switch',
310
  'label' => __( 'Show Excerpt', 'blc' ),
311
  'value' => 'no',
 
312
  ],
313
 
314
  blocksy_rand_md5() => [
@@ -322,7 +325,7 @@ $options = [
322
  'min' => 5,
323
  'max' => 30,
324
  'value' => 10,
325
- 'design' => 'inline',
326
  ],
327
 
328
  ],
123
  'options' => [
124
 
125
  'post_widget_image_ratio' => [
126
+ 'label' => __( 'Image Ratio', 'blc' ),
127
  'type' => 'ct-ratio',
128
  'value' => 'original',
129
  'design' => 'inline',
226
  'min' => 1,
227
  'max' => 30,
228
  'value' => 5,
229
+ 'design' => 'inline-full',
230
  ],
231
  ],
232
  ],
240
  'options' => [
241
 
242
  'post_id' => [
243
+ 'label' => __( 'Posts ID', 'blc' ),
244
  'type' => 'text',
245
  'design' => 'inline',
246
  'desc' => sprintf(
247
+ __('Separate posts ID by comma. How to find the %spost ID%s.', 'blc'),
248
  '<a href="https://www.wpbeginner.com/beginners-guide/how-to-find-post-category-tag-comments-or-user-id-in-wordpress/" target="_blank">',
249
  '</a>'
250
  ),
262
  'options' => [
263
 
264
  'page_id' => [
265
+ 'label' => __( 'Pages ID', 'blc' ),
266
  'type' => 'text',
267
  'design' => 'inline',
268
  'desc' => sprintf(
269
+ __('Separate pages ID by comma. More info %shere%s.', 'blc'),
270
  '<a href="https://www.wpbeginner.com/beginners-guide/how-to-find-post-category-tag-comments-or-user-id-in-wordpress/" target="_blank">',
271
  '</a>'
272
  ),
288
  'min' => 1,
289
  'max' => 30,
290
  'value' => 5,
291
+ 'design' => 'inline-full',
292
  ],
293
  ],
294
  ],
297
  'type' => 'ct-switch',
298
  'label' => __( 'Show Date', 'blc' ),
299
  'value' => 'no',
300
+ 'design' => 'inline-full',
301
  ],
302
 
303
  'display_comments' => [
304
  'type' => 'ct-switch',
305
  'label' => __( 'Show Comments', 'blc' ),
306
  'value' => 'no',
307
+ 'design' => 'inline-full',
308
  ],
309
 
310
  'display_excerpt' => [
311
  'type' => 'ct-switch',
312
  'label' => __( 'Show Excerpt', 'blc' ),
313
  'value' => 'no',
314
+ 'design' => 'inline-full',
315
  ],
316
 
317
  blocksy_rand_md5() => [
325
  'min' => 5,
326
  'max' => 30,
327
  'value' => 10,
328
+ 'design' => 'inline-full',
329
  ],
330
 
331
  ],
framework/extensions/widgets/widgets/ct-quote/options.php CHANGED
@@ -40,6 +40,7 @@ $options = [
40
  'type' => 'ct-switch',
41
  'label' => __( 'Author Label', 'blc' ),
42
  'value' => 'yes',
 
43
  'disableRevertButton' => true,
44
  ],
45
 
40
  'type' => 'ct-switch',
41
  'label' => __( 'Author Label', 'blc' ),
42
  'value' => 'yes',
43
+ 'design' => 'inline-full',
44
  'disableRevertButton' => true,
45
  ],
46
 
framework/extensions/widgets/widgets/ct-socials/options.php CHANGED
@@ -56,11 +56,19 @@ $options = [
56
 
57
  'link_target' => [
58
  'type' => 'ct-switch',
59
- 'label' => __( 'Open Links In New Tab', 'blc' ),
60
  'value' => 'no',
 
61
  'disableRevertButton' => true,
62
  ],
63
 
 
 
 
 
 
 
 
64
  'social_icons_size' => [
65
  'label' => __( 'Icons Size', 'blc' ),
66
  'type' => 'ct-radio',
56
 
57
  'link_target' => [
58
  'type' => 'ct-switch',
59
+ 'label' => __( 'Open links in new tab', 'blc' ),
60
  'value' => 'no',
61
+ 'design' => 'inline-full',
62
  'disableRevertButton' => true,
63
  ],
64
 
65
+ 'link_nofollow' => [
66
+ 'type' => 'ct-switch',
67
+ 'label' => __( 'Set links to nofollow', 'blc' ),
68
+ 'value' => 'no',
69
+ 'design' => 'inline-full',
70
+ ],
71
+
72
  'social_icons_size' => [
73
  'label' => __( 'Icons Size', 'blc' ),
74
  'type' => 'ct-radio',
framework/extensions/widgets/widgets/ct-socials/view.php CHANGED
@@ -24,6 +24,15 @@ if ($link_target === 'yes') {
24
  $link_target = false;
25
  }
26
 
 
 
 
 
 
 
 
 
 
27
  /**
28
  * blocksy_social_icons() function is already properly escaped.
29
  * Escaping it again here would cause SVG icons to not be outputed
@@ -54,7 +63,8 @@ echo blc_call_fn(
54
  'size' => $size,
55
  'fill' => $fill,
56
  'type' => $type,
57
- 'links_target' => $link_target
 
58
  ]
59
  );
60
 
24
  $link_target = false;
25
  }
26
 
27
+
28
+ $link_rel = blocksy_default_akg('link_nofollow', $atts, 'no');
29
+
30
+ if ($link_rel === 'yes') {
31
+ $link_rel = 'noopener noreferrer nofollow';
32
+ } else {
33
+ $link_rel = false;
34
+ }
35
+
36
  /**
37
  * blocksy_social_icons() function is already properly escaped.
38
  * Escaping it again here would cause SVG icons to not be outputed
63
  'size' => $size,
64
  'fill' => $fill,
65
  'type' => $type,
66
+ 'links_target' => $link_target,
67
+ 'links_rel' => $link_rel,
68
  ]
69
  );
70
 
framework/features/header/header-options.php CHANGED
@@ -29,32 +29,32 @@ $options = [
29
  'choices' => [
30
  'middle' => [
31
  'src' => blocksy_image_picker_url('sticky-main.svg'),
32
- 'title' => __('Only Main Row', 'blocksy'),
33
  ],
34
 
35
  'top_middle' => [
36
  'src' => blocksy_image_picker_url('sticky-top-main.svg'),
37
- 'title' => __('Top & Main Row', 'blocksy'),
38
  ],
39
 
40
  'entire_header' => [
41
  'src' => blocksy_image_picker_url('sticky-all.svg'),
42
- 'title' => __('All Rows', 'blocksy'),
43
  ],
44
 
45
  'middle_bottom' => [
46
  'src' => blocksy_image_picker_url('sticky-main-bottom.svg'),
47
- 'title' => __('Main & Bottom Row', 'blocksy'),
48
  ],
49
 
50
  'top' => [
51
  'src' => blocksy_image_picker_url('sticky-top.svg'),
52
- 'title' => __('Only Top Row', 'blocksy'),
53
  ],
54
 
55
  'bottom' => [
56
  'src' => blocksy_image_picker_url('sticky-bottom.svg'),
57
- 'title' => __('Only Bottom Row', 'blocksy'),
58
  ],
59
  ],
60
  ],
29
  'choices' => [
30
  'middle' => [
31
  'src' => blocksy_image_picker_url('sticky-main.svg'),
32
+ 'title' => __('Only Main Row', 'blc'),
33
  ],
34
 
35
  'top_middle' => [
36
  'src' => blocksy_image_picker_url('sticky-top-main.svg'),
37
+ 'title' => __('Top & Main Row', 'blc'),
38
  ],
39
 
40
  'entire_header' => [
41
  'src' => blocksy_image_picker_url('sticky-all.svg'),
42
+ 'title' => __('All Rows', 'blc'),
43
  ],
44
 
45
  'middle_bottom' => [
46
  'src' => blocksy_image_picker_url('sticky-main-bottom.svg'),
47
+ 'title' => __('Main & Bottom Row', 'blc'),
48
  ],
49
 
50
  'top' => [
51
  'src' => blocksy_image_picker_url('sticky-top.svg'),
52
+ 'title' => __('Only Top Row', 'blc'),
53
  ],
54
 
55
  'bottom' => [
56
  'src' => blocksy_image_picker_url('sticky-bottom.svg'),
57
+ 'title' => __('Only Bottom Row', 'blc'),
58
  ],
59
  ],
60
  ],
framework/widgets-manager.php CHANGED
@@ -96,7 +96,7 @@ class BlocksyWidgetFactory extends WP_Widget {
96
  );
97
  }
98
 
99
- public function widget( $args, $instance ) {
100
  $file_path = $this->get_path() . '/view.php';
101
 
102
  if ( ! file_exists( $file_path ) ) {
@@ -154,16 +154,23 @@ class BlocksyWidgetFactory extends WP_Widget {
154
  * @param array $new_instance new widget values.
155
  * @param array $old_instance old widget values.
156
  */
157
- public function update( $new_instance, $old_instance ) {
158
- $new_instance[ $this->prefix ][ 'ct_options' ] = json_decode(
159
- $new_instance[ $this->prefix ][ 'ct_options' ],
160
- true
161
- );
 
 
 
 
 
 
 
162
 
163
- return $new_instance[ $this->prefix ];
164
  }
165
 
166
- public function form( $values ) {
167
  $this->read_options();
168
 
169
  echo blc_call_fn(
96
  );
97
  }
98
 
99
+ public function widget($args, $instance) {
100
  $file_path = $this->get_path() . '/view.php';
101
 
102
  if ( ! file_exists( $file_path ) ) {
154
  * @param array $new_instance new widget values.
155
  * @param array $old_instance old widget values.
156
  */
157
+ public function update($new_instance, $old_instance) {
158
+ if (! isset($new_instance[$this->prefix])) {
159
+ return $new_instance;
160
+ }
161
+
162
+ $to_save = $new_instance[$this->prefix]['ct_options'];
163
+
164
+ if (! is_array($to_save)) {
165
+ $to_save = json_decode($to_save, true);
166
+ }
167
+
168
+ $new_instance[$this->prefix]['ct_options'] = $to_save;
169
 
170
+ return $new_instance[$this->prefix];
171
  }
172
 
173
+ public function form($values) {
174
  $this->read_options();
175
 
176
  echo blc_call_fn(
languages/blocksy-companion.pot CHANGED
@@ -19,110 +19,143 @@ msgstr ""
19
  "x-generator: babel-plugin-wp-i18n\n"
20
 
21
  #. translators: %s: PHP version
22
- #: blocksy-companion.php:137
 
23
  msgid "Blocksy requires PHP version %s+, plugin is currently NOT RUNNING."
24
  msgstr ""
25
 
26
  #. translators: %s: WordPress version
27
- #: blocksy-companion.php:148
 
28
  msgid ""
29
  "Blocksy requires WordPress version %s+. Because you are using an earlier "
30
  "version, the plugin is currently NOT RUNNING."
31
  msgstr ""
32
 
33
  #: framework/extensions-manager.php:245,
34
- #: framework/premium/extensions/adobe-typekit/extension.php:46
 
 
35
  msgid "Adobe Typekit"
36
  msgstr ""
37
 
38
- #: framework/extensions-manager.php:246
 
39
  msgid ""
40
  "Connect your Typekit account and use your fonts in any typography option."
41
  msgstr ""
42
 
43
  #: framework/extensions-manager.php:257,
 
44
  #: framework/premium/extensions/code-snippets/config.php:4,
45
  #: framework/premium/extensions/code-snippets/extension.php:23,
46
  #: framework/premium/extensions/code-snippets/extension.php:63,
47
  #: framework/premium/extensions/code-snippets/extension.php:99,
48
- #: framework/premium/extensions/code-snippets/readme.php:38
 
 
 
 
 
49
  msgid "Custom Code Snippets"
50
  msgstr ""
51
 
52
- #: framework/extensions-manager.php:258
 
53
  msgid ""
54
  "Add custom code snippets in your header and footer, globally and per post or "
55
  "page individually."
56
  msgstr ""
57
 
58
  #: framework/extensions-manager.php:269,
59
- #: framework/premium/extensions/custom-fonts/extension.php:142
 
 
60
  msgid "Custom Fonts"
61
  msgstr ""
62
 
63
- #: framework/extensions-manager.php:270
 
64
  msgid ""
65
  "Upload unlimited number of custom fonts or variable fonts and use them in "
66
  "any typography option."
67
  msgstr ""
68
 
69
  #: framework/extensions-manager.php:281,
70
- #: framework/premium/extensions/local-google-fonts/extension.php:121
 
 
71
  msgid "Local Google Fonts"
72
  msgstr ""
73
 
74
- #: framework/extensions-manager.php:282
 
75
  msgid "Serve Google Fonts from your own server for full GDPR compliancy."
76
  msgstr ""
77
 
78
  #: framework/extensions-manager.php:293,
79
- #: framework/premium/extensions/mega-menu/config.php:4
 
 
80
  msgid "Advanced Menu"
81
  msgstr ""
82
 
83
- #: framework/extensions-manager.php:294
 
84
  msgid ""
85
  "Create beautiful mega menus, assign icons add badges to menu items, and "
86
  "content blocks inside menu items."
87
  msgstr ""
88
 
89
  #: framework/extensions-manager.php:305,
 
90
  #: framework/premium/extensions/shortcuts/config.php:4,
91
- #: framework/premium/extensions/shortcuts/customizer.php:462
 
 
92
  msgid "Shortcuts Bar"
93
  msgstr ""
94
 
95
- #: framework/extensions-manager.php:306
 
96
  msgid ""
97
  "Transform your website into a app like by displaying a neat shortcuts bar at "
98
  "the bottom of the vieport."
99
  msgstr ""
100
 
101
  #: framework/extensions-manager.php:317,
102
- #: framework/premium/extensions/sidebars/config.php:4
 
 
103
  msgid "Multiple Sidebars"
104
  msgstr ""
105
 
106
- #: framework/extensions-manager.php:318
 
107
  msgid ""
108
  "Create unlimited number of sidebars and display them conditionaly on any "
109
  "page or post."
110
  msgstr ""
111
 
112
- #: framework/extensions-manager.php:329
 
113
  msgid "White Label (Agency Package)"
114
  msgstr ""
115
 
116
- #: framework/extensions-manager.php:330
 
117
  msgid "Change the theme and companion plugin branding to your own custom one."
118
  msgstr ""
119
 
120
  #: framework/extensions-manager.php:341,
121
- #: framework/premium/extensions/woocommerce-extra/config.php:4
 
 
122
  msgid "WooCommerce Extra"
123
  msgstr ""
124
 
125
- #: framework/extensions-manager.php:342
 
126
  msgid ""
127
  "Increase the conversion rate by adding a product quick view modal, a "
128
  "floating cart. Control the single product gallery/slider and the layout, add "
@@ -130,238 +163,315 @@ msgid ""
130
  msgstr ""
131
 
132
  #: framework/theme-integration.php:266,
 
133
  #: framework/extensions/widgets/widgets/ct-facebook/options.php:16,
134
  #: framework/extensions/widgets/widgets/ct-facebook/view.php:12,
135
- #: framework/extensions/widgets/widgets/ct-facebook/widget.php:13
 
 
 
136
  msgid "Facebook"
137
  msgstr ""
138
 
139
- #: framework/theme-integration.php:267
 
140
  msgid "Twitter"
141
  msgstr ""
142
 
143
- #: framework/theme-integration.php:268
 
144
  msgid "LinkedIn"
145
  msgstr ""
146
 
147
- #: framework/theme-integration.php:269
 
148
  msgid "Dribbble"
149
  msgstr ""
150
 
151
- #: framework/theme-integration.php:270
 
152
  msgid "Instagram"
153
  msgstr ""
154
 
155
- #: framework/theme-integration.php:271
 
156
  msgid "Pinterest"
157
  msgstr ""
158
 
159
- #: framework/theme-integration.php:272
 
160
  msgid "WordPress"
161
  msgstr ""
162
 
163
- #: framework/theme-integration.php:273
 
164
  msgid "GitHub"
165
  msgstr ""
166
 
167
  #: framework/theme-integration.php:274,
 
168
  #: framework/extensions/widgets/widgets/ct-about-me/options.php:114,
169
  #: framework/extensions/widgets/widgets/ct-about-me/options.php:195,
170
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:266,
171
- #: framework/extensions/widgets/widgets/ct-socials/options.php:73
 
 
 
 
172
  msgid "Medium"
173
  msgstr ""
174
 
175
- #: framework/theme-integration.php:275
 
176
  msgid "YouTube"
177
  msgstr ""
178
 
179
- #: framework/theme-integration.php:276
 
180
  msgid "Vimeo"
181
  msgstr ""
182
 
183
- #: framework/theme-integration.php:277
 
184
  msgid "VKontakte"
185
  msgstr ""
186
 
187
- #: framework/theme-integration.php:278
 
188
  msgid "Odnoklassniki"
189
  msgstr ""
190
 
191
- #: framework/theme-integration.php:279
 
192
  msgid "TikTok"
193
  msgstr ""
194
 
195
- #: framework/theme-integration.php:351
 
196
  msgid "Companion"
197
  msgstr ""
198
 
199
- #: framework/theme-integration.php:367 static/js/screens/SiteExport.js:106
 
 
200
  msgid "PRO"
201
  msgstr ""
202
 
203
- #: framework/theme-integration.php:496
 
204
  msgid "Check your email"
205
  msgstr ""
206
 
207
- #: framework/theme-integration.php:502
 
208
  msgid "Registration Form"
209
  msgstr ""
210
 
211
- #: framework/theme-integration.php:503
 
212
  msgid "Register For This Site"
213
  msgstr ""
214
 
215
- #: framework/widgets-manager.php:75
 
216
  msgid "Default widget name"
217
  msgstr ""
218
 
219
- #: framework/widgets-manager.php:81
 
220
  msgid "Display online support infomation"
221
  msgstr ""
222
 
223
- #: framework/widgets-manager.php:144
 
224
  msgid "Widget Title"
225
  msgstr ""
226
 
227
- #: framework/features/conditions-manager.php:309
 
228
  msgid "%s Single"
229
  msgstr ""
230
 
231
- #: framework/features/conditions-manager.php:317
 
232
  msgid "%s Archive"
233
  msgstr ""
234
 
235
- #: framework/features/conditions-manager.php:329
 
236
  msgid "Entire Website"
237
  msgstr ""
238
 
239
- #: framework/features/conditions-manager.php:335
 
240
  msgid "Basic"
241
  msgstr ""
242
 
243
- #: framework/features/conditions-manager.php:339
 
244
  msgid "Singulars"
245
  msgstr ""
246
 
247
- #: framework/features/conditions-manager.php:344
 
248
  msgid "Archives"
249
  msgstr ""
250
 
251
- #: framework/features/conditions-manager.php:350,
252
  #: framework/extensions/trending/customizer.php:4,
 
 
253
  #: framework/extensions/widgets/widgets/ct-posts/options.php:11,
254
  #: framework/extensions/widgets/widgets/ct-posts/options.php:98,
255
- #: framework/extensions/widgets/widgets/ct-posts/view.php:133,
256
  #: framework/extensions/widgets/widgets/ct-posts/widget.php:13,
257
- #: framework/premium/features/premium-header/items/search-input/options.php:4
 
 
 
 
 
258
  msgid "Posts"
259
  msgstr ""
260
 
261
- #: framework/features/conditions-manager.php:354,
 
262
  #: framework/premium/features/content-blocks/hooks-manager.php:280,
263
  #: framework/premium/features/content-blocks/hooks-manager.php:288,
264
  #: framework/premium/features/content-blocks/hooks-manager.php:296,
265
  #: framework/premium/features/content-blocks/hooks-manager.php:303,
266
  #: framework/premium/features/content-blocks/hooks-manager.php:310,
267
- #: framework/premium/features/content-blocks/hooks-manager.php:318
 
 
 
 
 
 
268
  msgid "Single Post"
269
  msgstr ""
270
 
271
- #: framework/features/conditions-manager.php:359
 
272
  msgid "All Post Archives"
273
  msgstr ""
274
 
275
- #: framework/features/conditions-manager.php:364
 
276
  msgid "Post Categories"
277
  msgstr ""
278
 
279
- #: framework/features/conditions-manager.php:369
 
280
  msgid "Post Tags"
281
  msgstr ""
282
 
283
- #: framework/features/conditions-manager.php:375,
 
284
  #: framework/extensions/widgets/widgets/ct-posts/options.php:12,
285
- #: framework/premium/features/premium-header/items/search-input/options.php:5
 
 
286
  msgid "Pages"
287
  msgstr ""
288
 
289
- #: framework/features/conditions-manager.php:379
 
290
  msgid "Single Page"
291
  msgstr ""
292
 
293
- #: framework/features/conditions-manager.php:426
 
294
  msgid "Specific"
295
  msgstr ""
296
 
297
- #: framework/features/conditions-manager.php:430
 
298
  msgid "Post ID"
299
  msgstr ""
300
 
301
- #: framework/features/conditions-manager.php:435
 
302
  msgid "Page ID"
303
  msgstr ""
304
 
305
- #: framework/features/conditions-manager.php:440
 
306
  #: static/js/options/ConditionsManager/PostIdPicker.js:76
307
  msgid "Custom Post Type ID"
308
  msgstr ""
309
 
310
- #: framework/features/conditions-manager.php:445
 
311
  msgid "Taxonomy ID"
312
  msgstr ""
313
 
314
- #: framework/features/conditions-manager.php:450
 
315
  msgid "Post with Taxonomy ID"
316
  msgstr ""
317
 
318
- #: framework/features/conditions-manager.php:456
 
319
  msgid "Other Pages"
320
  msgstr ""
321
 
322
- #: framework/features/conditions-manager.php:460
 
323
  msgid "404"
324
  msgstr ""
325
 
326
- #: framework/features/conditions-manager.php:465,
 
327
  #: framework/premium/features/premium-header/items/search-input/options.php:45,
328
- #: framework/premium/features/premium-header/items/search-input/view.php:66
 
 
329
  msgid "Search"
330
  msgstr ""
331
 
332
- #: framework/features/conditions-manager.php:470
 
333
  msgid "Blog"
334
  msgstr ""
335
 
336
- #: framework/features/conditions-manager.php:475
 
337
  msgid "Front Page"
338
  msgstr ""
339
 
340
- #: framework/features/conditions-manager.php:487
 
341
  msgid "Author"
342
  msgstr ""
343
 
344
- #: framework/features/conditions-manager.php:493
 
345
  msgid "User Auth"
346
  msgstr ""
347
 
348
- #: framework/features/conditions-manager.php:497
 
349
  msgid "User Logged In"
350
  msgstr ""
351
 
352
- #: framework/features/conditions-manager.php:502
 
353
  msgid "User Logged Out"
354
  msgstr ""
355
 
356
- #: framework/features/conditions-manager.php:508
 
357
  msgid "User Roles"
358
  msgstr ""
359
 
360
- #: framework/features/conditions-manager.php:599
 
361
  msgid "Language"
362
  msgstr ""
363
 
364
- #: framework/features/demo-install.php:229
 
365
  msgid ""
366
  "Your PHP installation doesn't have support for XML. Please install the "
367
  "<i>xml</i> or <i>simplexml</i> PHP extension in order to be able to install "
@@ -369,84 +479,103 @@ msgid ""
369
  "in doing so."
370
  msgstr ""
371
 
372
- #: framework/features/dynamic-css.php:46
 
373
  msgid "Dynamic CSS Output"
374
  msgstr ""
375
 
376
- #: framework/features/dynamic-css.php:50
 
377
  msgid ""
378
  "The strategy of outputting the dynamic CSS. File - all the CSS code will be "
379
  "placed in a static file, otherwise it will be placed inline in head."
380
  msgstr ""
381
 
382
- #: framework/features/dynamic-css.php:52
 
383
  msgid "File"
384
  msgstr ""
385
 
386
  #: framework/features/dynamic-css.php:53,
387
- #: framework/premium/features/premium-header/items/language-switcher/options.php:32
 
 
388
  msgid "Inline"
389
  msgstr ""
390
 
391
- #: framework/features/google-analytics.php:69
 
392
  msgid "Google Analytics v3"
393
  msgstr ""
394
 
395
- #: framework/features/google-analytics.php:74
 
396
  msgid "Link your Google Analytics 3 tracking ID."
397
  msgstr ""
398
 
399
- #: framework/features/google-analytics.php:80
 
400
  msgid "Google Analytics v4"
401
  msgstr ""
402
 
403
- #: framework/features/google-analytics.php:86
 
404
  msgid ""
405
  "Link your Google Analytics 4 tracking ID. More info and instructions can be "
406
  "found %shere%s."
407
  msgstr ""
408
 
409
- #: framework/features/google-analytics.php:98
 
410
  msgid "IP Anonymization"
411
  msgstr ""
412
 
413
- #: framework/features/google-analytics.php:102
 
414
  msgid ""
415
  "Enable Google Analytics IP Anonymization for enhanced privacy. More info and "
416
  "instructions can be found %shere%s."
417
  msgstr ""
418
 
419
- #: framework/features/opengraph-meta-data.php:17
 
420
  msgid "OpenGraph Meta Data"
421
  msgstr ""
422
 
423
- #: framework/features/opengraph-meta-data.php:20
 
424
  msgid "Enable the OpenGraph rich meta data features for your website."
425
  msgstr ""
426
 
427
- #: framework/features/opengraph-meta-data.php:29
 
428
  msgid "Facebook Page URL"
429
  msgstr ""
430
 
431
- #: framework/features/opengraph-meta-data.php:36
 
432
  msgid "Facebook App ID"
433
  msgstr ""
434
 
435
- #: framework/features/opengraph-meta-data.php:43
 
436
  msgid "Twitter Username"
437
  msgstr ""
438
 
439
- #: framework/extensions/cookies-consent/config.php:4
 
440
  msgid "Cookies Consent"
441
  msgstr ""
442
 
443
- #: framework/extensions/cookies-consent/config.php:5
 
444
  msgid ""
445
  "Display a cookie acceptance box in order to comply with the privacy "
446
  "regulations in your country."
447
  msgstr ""
448
 
449
- #: framework/extensions/cookies-consent/customizer.php:4
 
450
  msgid "Cookie Consent"
451
  msgstr ""
452
 
@@ -455,78 +584,121 @@ msgstr ""
455
  #: framework/extensions/product-reviews/metabox.php:6,
456
  #: framework/extensions/trending/customizer.php:109,
457
  #: framework/premium/extensions/mega-menu/options.php:6,
458
- #: framework/premium/extensions/shortcuts/customizer.php:472,
459
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:11,
460
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:164,
 
 
 
 
461
  #: framework/features/header/items/account/options.php:51,
462
  #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:23,
463
  #: framework/premium/features/content-blocks/options/popup.php:30,
 
 
 
 
464
  #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:35,
465
  #: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:19,
466
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:5,
467
  #: framework/premium/features/premium-header/items/contacts/options.php:5,
468
  #: framework/premium/features/premium-header/items/language-switcher/options.php:21,
469
  #: framework/premium/features/premium-header/items/language-switcher/options.php:347,
470
- #: framework/premium/features/premium-header/items/search-input/options.php:37
 
 
 
 
 
 
 
 
 
 
471
  #: framework/premium/extensions/white-label/dashboard-static/js/EditSettings.js:126
472
  msgid "General"
473
  msgstr ""
474
 
475
  #: framework/extensions/cookies-consent/customizer.php:31,
476
- #: framework/premium/extensions/shortcuts/customizer.php:484,
477
  #: framework/premium/extensions/woocommerce-extra/extension.php:72,
478
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:186,
 
479
  #: framework/features/header/items/account/options.php:167,
480
  #: framework/features/header/items/account/options.php:373,
 
 
 
481
  #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:48,
482
- #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:23
 
 
 
 
483
  msgid "Type 1"
484
  msgstr ""
485
 
486
  #: framework/extensions/cookies-consent/customizer.php:36,
487
- #: framework/premium/extensions/shortcuts/customizer.php:489,
488
  #: framework/premium/extensions/woocommerce-extra/extension.php:77,
489
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:191,
 
490
  #: framework/features/header/items/account/options.php:172,
491
  #: framework/features/header/items/account/options.php:378,
 
 
 
492
  #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:53,
493
- #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:28
 
 
 
 
494
  msgid "Type 2"
495
  msgstr ""
496
 
497
- #: framework/extensions/cookies-consent/customizer.php:43
 
498
  msgid "Cookie period"
499
  msgstr ""
500
 
501
- #: framework/extensions/cookies-consent/customizer.php:51
 
502
  msgid "One hour"
503
  msgstr ""
504
 
505
- #: framework/extensions/cookies-consent/customizer.php:52
 
506
  msgid "One day"
507
  msgstr ""
508
 
509
- #: framework/extensions/cookies-consent/customizer.php:53
 
510
  msgid "One week"
511
  msgstr ""
512
 
513
- #: framework/extensions/cookies-consent/customizer.php:54
 
514
  msgid "One month"
515
  msgstr ""
516
 
517
- #: framework/extensions/cookies-consent/customizer.php:55
 
518
  msgid "Three months"
519
  msgstr ""
520
 
521
- #: framework/extensions/cookies-consent/customizer.php:56
 
522
  msgid "Six months"
523
  msgstr ""
524
 
525
- #: framework/extensions/cookies-consent/customizer.php:57
 
526
  msgid "One year"
527
  msgstr ""
528
 
529
- #: framework/extensions/cookies-consent/customizer.php:58
 
530
  msgid "Forever"
531
  msgstr ""
532
 
@@ -535,6 +707,7 @@ msgstr ""
535
  #: framework/premium/features/content-blocks/hooks-manager.php:186,
536
  #: framework/premium/features/content-blocks/hooks-manager.php:194,
537
  #: framework/premium/features/content-blocks/hooks-manager.php:202,
 
538
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:72,
539
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:101,
540
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:129,
@@ -542,28 +715,51 @@ msgstr ""
542
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:185,
543
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:213,
544
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:241,
 
 
 
 
545
  #: framework/premium/features/premium-header/items/contacts/options.php:55,
546
  #: framework/premium/features/premium-header/items/contacts/options.php:81,
547
  #: framework/premium/features/premium-header/items/contacts/options.php:108,
548
  #: framework/premium/features/premium-header/items/contacts/options.php:135,
549
  #: framework/premium/features/premium-header/items/contacts/options.php:162,
550
  #: framework/premium/features/premium-header/items/contacts/options.php:189,
551
- #: framework/premium/features/premium-header/items/contacts/options.php:216
 
 
 
 
 
 
 
 
 
 
 
 
 
 
552
  msgid "Content"
553
  msgstr ""
554
 
555
  #: framework/extensions/cookies-consent/customizer.php:67,
556
- #: framework/extensions/cookies-consent/helpers.php:30
 
 
557
  msgid ""
558
  "We use cookies to ensure that we give you the best experience on our website."
559
  msgstr ""
560
 
561
- #: framework/extensions/cookies-consent/customizer.php:79
 
562
  msgid "Button text"
563
  msgstr ""
564
 
565
  #: framework/extensions/cookies-consent/customizer.php:82,
566
- #: framework/extensions/cookies-consent/helpers.php:33
 
 
567
  msgid "Accept"
568
  msgstr ""
569
 
@@ -571,29 +767,52 @@ msgstr ""
571
  #: framework/extensions/newsletter-subscribe/customizer.php:147,
572
  #: framework/extensions/trending/customizer.php:290,
573
  #: framework/premium/extensions/mega-menu/options.php:514,
574
- #: framework/premium/extensions/shortcuts/customizer.php:702,
575
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:81,
576
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:31,
577
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:279,
 
 
 
578
  #: framework/features/header/items/account/options.php:497,
579
  #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:120,
580
  #: framework/premium/features/content-blocks/options/popup.php:342,
 
 
 
 
 
581
  #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:167,
582
  #: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:66,
583
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:119,
584
  #: framework/premium/features/premium-header/items/contacts/options.php:343,
585
  #: framework/premium/features/premium-header/items/language-switcher/options.php:186,
586
  #: framework/premium/features/premium-header/items/language-switcher/options.php:371,
587
- #: framework/premium/features/premium-header/items/search-input/options.php:178
 
 
 
 
 
 
 
 
 
 
588
  msgid "Design"
589
  msgstr ""
590
 
591
  #: framework/extensions/cookies-consent/customizer.php:95,
592
  #: framework/extensions/trending/customizer.php:305,
593
  #: framework/premium/extensions/mega-menu/options.php:794,
594
- #: framework/premium/extensions/shortcuts/customizer.php:718,
595
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:86,
 
 
596
  #: framework/features/header/items/account/options.php:808,
 
 
 
597
  #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:184,
598
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:174,
599
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:205,
@@ -606,7 +825,21 @@ msgstr ""
606
  #: framework/premium/features/premium-header/items/language-switcher/options.php:232,
607
  #: framework/premium/features/premium-header/items/language-switcher/options.php:262,
608
  #: framework/premium/features/premium-header/items/language-switcher/options.php:291,
609
- #: framework/premium/features/premium-header/items/language-switcher/options.php:382
 
 
 
 
 
 
 
 
 
 
 
 
 
 
610
  msgid "Font Color"
611
  msgstr ""
612
 
@@ -620,12 +853,19 @@ msgstr ""
620
  #: framework/premium/extensions/mega-menu/options.php:760,
621
  #: framework/premium/extensions/mega-menu/options.php:807,
622
  #: framework/premium/extensions/mega-menu/options.php:826,
623
- #: framework/premium/extensions/shortcuts/customizer.php:736,
624
- #: framework/premium/extensions/shortcuts/customizer.php:768,
625
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:99,
626
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:73,
627
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:352,
628
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:381,
 
 
 
 
 
 
 
629
  #: framework/features/header/items/account/options.php:561,
630
  #: framework/features/header/items/account/options.php:593,
631
  #: framework/features/header/items/account/options.php:623,
@@ -642,6 +882,15 @@ msgstr ""
642
  #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:185,
643
  #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:229,
644
  #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:305,
 
 
 
 
 
 
 
 
 
645
  #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:201,
646
  #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:237,
647
  #: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:84,
@@ -679,7 +928,61 @@ msgstr ""
679
  #: framework/premium/features/premium-header/items/search-input/options.php:656,
680
  #: framework/premium/features/premium-header/items/search-input/options.php:686,
681
  #: framework/premium/features/premium-header/items/search-input/options.php:762,
682
- #: framework/premium/features/premium-header/items/search-input/options.php:790
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
683
  msgid "Initial"
684
  msgstr ""
685
 
@@ -689,10 +992,15 @@ msgstr ""
689
  #: framework/extensions/newsletter-subscribe/customizer.php:205,
690
  #: framework/extensions/trending/customizer.php:329,
691
  #: framework/premium/extensions/mega-menu/options.php:765,
692
- #: framework/premium/extensions/shortcuts/customizer.php:742,
693
- #: framework/premium/extensions/shortcuts/customizer.php:774,
694
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:357,
695
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:386,
 
 
 
 
 
696
  #: framework/features/header/items/account/options.php:567,
697
  #: framework/features/header/items/account/options.php:598,
698
  #: framework/features/header/items/account/options.php:628,
@@ -702,6 +1010,11 @@ msgstr ""
702
  #: framework/features/header/items/account/options.php:832,
703
  #: framework/features/header/items/account/options.php:982,
704
  #: framework/features/header/items/account/options.php:1013,
 
 
 
 
 
705
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:197,
706
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:227,
707
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:256,
@@ -718,38 +1031,77 @@ msgstr ""
718
  #: framework/premium/features/premium-header/items/dark-mode-switcher/options.php:111,
719
  #: framework/premium/features/premium-header/items/dark-mode-switcher/options.php:140,
720
  #: framework/premium/features/premium-header/items/language-switcher/options.php:404,
721
- #: framework/premium/features/premium-header/items/search-input/options.php:767
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
722
  msgid "Hover"
723
  msgstr ""
724
 
725
  #: framework/extensions/cookies-consent/customizer.php:126,
726
  #: framework/extensions/newsletter-subscribe/customizer.php:183,
727
- #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:220
 
 
 
728
  msgid "Button Color"
729
  msgstr ""
730
 
731
  #: framework/extensions/cookies-consent/customizer.php:154,
732
  #: framework/extensions/newsletter-subscribe/customizer.php:212,
733
  #: framework/premium/extensions/mega-menu/options.php:814,
 
 
734
  #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:167,
 
735
  #: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:92,
736
- #: framework/premium/features/premium-header/items/language-switcher/options.php:412
 
 
 
737
  msgid "Background Color"
738
  msgstr ""
739
 
740
- #: framework/extensions/cookies-consent/customizer.php:179
 
741
  msgid "Maximum Width"
742
  msgstr ""
743
 
744
- #: framework/extensions/cookies-consent/customizer.php:202
 
745
  msgid "I accept the %sPrivacy Policy%s*"
746
  msgstr ""
747
 
748
- #: framework/extensions/cookies-consent/customizer.php:206
 
749
  msgid "This text will appear under each comment form and subscribe form."
750
  msgstr ""
751
 
752
- #: framework/extensions/cookies-consent/helpers.php:78
 
753
  msgid "I accept the %sPrivacy Policy%s"
754
  msgstr ""
755
 
@@ -757,47 +1109,63 @@ msgstr ""
757
  #: framework/extensions/newsletter-subscribe/readme.php:1,
758
  #: framework/premium/extensions/code-snippets/readme.php:1,
759
  #: framework/premium/extensions/post-types-extra/readme.php:1,
760
- #: framework/premium/extensions/woocommerce-extra/readme.php:1
 
 
 
 
 
761
  msgid "Instructions"
762
  msgstr ""
763
 
764
- #: framework/extensions/cookies-consent/readme.php:4
 
765
  msgid ""
766
  "After installing and activating the Cookies Consent extension you will be "
767
  "able to configure it from this location:"
768
  msgstr ""
769
 
770
  #: framework/extensions/cookies-consent/readme.php:9,
 
771
  #: framework/extensions/widgets/widgets/ct-about-me/options.php:158,
772
- #: framework/extensions/widgets/widgets/ct-socials/options.php:31
 
 
773
  msgid "Customizer"
774
  msgstr ""
775
 
776
- #: framework/extensions/cookies-consent/readme.php:13
 
777
  msgid "Navigate to %s and customize the notification to meet your needs."
778
  msgstr ""
779
 
780
- #: framework/extensions/cookies-consent/readme.php:16
 
781
  msgid "Customizer ➝ Cookie Consent"
782
  msgstr ""
783
 
784
  #: framework/extensions/newsletter-subscribe/config.php:4,
785
- #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/widget.php:13
 
 
786
  msgid "Newsletter Subscribe"
787
  msgstr ""
788
 
789
- #: framework/extensions/newsletter-subscribe/config.php:5
 
790
  msgid ""
791
  "Easily capture new leads for your newsletter with the help of a widget, "
792
  "shortcode or even a block inserted on your pages or posts."
793
  msgstr ""
794
 
795
- #: framework/extensions/newsletter-subscribe/customizer.php:4
 
796
  msgid "Subscribe Form"
797
  msgstr ""
798
 
799
  #: framework/extensions/newsletter-subscribe/customizer.php:18,
800
  #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:14,
 
801
  #: framework/extensions/widgets/widgets/ct-about-me/options.php:15,
802
  #: framework/extensions/widgets/widgets/ct-advertisement/options.php:15,
803
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:15,
@@ -812,24 +1180,51 @@ msgstr ""
812
  #: framework/extensions/widgets/widgets/ct-posts/options.php:95,
813
  #: framework/extensions/widgets/widgets/ct-quote/options.php:15,
814
  #: framework/extensions/widgets/widgets/ct-socials/options.php:15,
 
815
  #: framework/premium/features/premium-header/items/contacts/options.php:48,
816
  #: framework/premium/features/premium-header/items/contacts/options.php:74,
817
  #: framework/premium/features/premium-header/items/contacts/options.php:101,
818
  #: framework/premium/features/premium-header/items/contacts/options.php:128,
819
  #: framework/premium/features/premium-header/items/contacts/options.php:155,
820
  #: framework/premium/features/premium-header/items/contacts/options.php:182,
821
- #: framework/premium/features/premium-header/items/contacts/options.php:209
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
822
  msgid "Title"
823
  msgstr ""
824
 
825
  #: framework/extensions/newsletter-subscribe/customizer.php:21,
826
  #: framework/extensions/newsletter-subscribe/helpers.php:42,
827
- #: framework/extensions/newsletter-subscribe/helpers.php:96
 
 
 
828
  msgid "Newsletter Updates"
829
  msgstr ""
830
 
831
  #: framework/extensions/newsletter-subscribe/customizer.php:27,
832
- #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:22
 
 
833
  msgid "Message"
834
  msgstr ""
835
 
@@ -837,12 +1232,19 @@ msgstr ""
837
  #: framework/extensions/newsletter-subscribe/helpers.php:45,
838
  #: framework/extensions/newsletter-subscribe/helpers.php:97,
839
  #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:24,
840
- #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/view.php:16
 
 
 
 
 
841
  msgid "Enter your email address below to subscribe to our newsletter"
842
  msgstr ""
843
 
844
  #: framework/extensions/newsletter-subscribe/customizer.php:42,
845
- #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:31
 
 
846
  msgid "List Source"
847
  msgstr ""
848
 
@@ -850,34 +1252,52 @@ msgstr ""
850
  #: framework/features/header/header-options.php:71,
851
  #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:38,
852
  #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:105,
 
 
853
  #: framework/extensions/widgets/widgets/ct-posts/options.php:173,
854
  #: framework/extensions/widgets/widgets/ct-posts/options.php:198,
855
- #: framework/premium/features/content-blocks/options/hook.php:284
 
 
 
 
 
856
  msgid "Default"
857
  msgstr ""
858
 
859
  #: framework/extensions/newsletter-subscribe/customizer.php:50,
860
  #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:39,
861
- #: framework/premium/extensions/shortcuts/customizer.php:230,
862
- #: framework/premium/extensions/shortcuts/customizer.php:256,
863
- #: framework/extensions/widgets/widgets/ct-about-me/options.php:46
 
 
 
 
 
864
  #: framework/premium/static/js/options/IconPicker/Modal.js:148
865
  msgid "Custom"
866
  msgstr ""
867
 
868
  #: framework/extensions/newsletter-subscribe/customizer.php:62,
869
- #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:49
 
 
870
  #: framework/extensions/newsletter-subscribe/dashboard-static/js/EditCredentials.js:187
871
  msgid "List ID"
872
  msgstr ""
873
 
874
  #: framework/extensions/newsletter-subscribe/customizer.php:80,
875
- #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:61
 
 
876
  msgid "Name Field"
877
  msgstr ""
878
 
879
  #: framework/extensions/newsletter-subscribe/customizer.php:93,
880
- #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:73
 
 
881
  msgid "Name Label"
882
  msgstr ""
883
 
@@ -886,12 +1306,20 @@ msgstr ""
886
  #: framework/extensions/newsletter-subscribe/helpers.php:57,
887
  #: framework/extensions/newsletter-subscribe/helpers.php:108,
888
  #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:75,
889
- #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/view.php:69
 
 
 
 
 
 
890
  msgid "Your name"
891
  msgstr ""
892
 
893
  #: framework/extensions/newsletter-subscribe/customizer.php:105,
894
- #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:84
 
 
895
  msgid "Mail Label"
896
  msgstr ""
897
 
@@ -900,12 +1328,20 @@ msgstr ""
900
  #: framework/extensions/newsletter-subscribe/helpers.php:61,
901
  #: framework/extensions/newsletter-subscribe/helpers.php:109,
902
  #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:86,
903
- #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/view.php:70
 
 
 
 
 
 
904
  msgid "Your email"
905
  msgstr ""
906
 
907
  #: framework/extensions/newsletter-subscribe/customizer.php:114,
908
- #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:92
 
 
909
  msgid "Button Label"
910
  msgstr ""
911
 
@@ -914,26 +1350,48 @@ msgstr ""
914
  #: framework/extensions/newsletter-subscribe/helpers.php:52,
915
  #: framework/extensions/newsletter-subscribe/helpers.php:101,
916
  #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:94,
917
- #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/view.php:19
 
 
 
 
 
 
918
  msgid "Subscribe"
919
  msgstr ""
920
 
921
  #: framework/extensions/newsletter-subscribe/customizer.php:126,
922
- #: framework/premium/extensions/shortcuts/customizer.php:42,
923
- #: framework/premium/extensions/shortcuts/customizer.php:99,
924
- #: framework/premium/extensions/shortcuts/customizer.php:156,
925
- #: framework/premium/extensions/shortcuts/customizer.php:207,
926
- #: framework/premium/extensions/shortcuts/customizer.php:269,
927
- #: framework/premium/extensions/shortcuts/customizer.php:322,
928
- #: framework/premium/extensions/shortcuts/customizer.php:373,
929
- #: framework/premium/extensions/shortcuts/customizer.php:424,
930
- #: framework/premium/extensions/shortcuts/customizer.php:666,
 
931
  #: framework/premium/features/content-blocks/options/404.php:140,
932
  #: framework/premium/features/content-blocks/options/header.php:166,
933
  #: framework/premium/features/content-blocks/options/hook.php:320,
934
  #: framework/premium/features/content-blocks/options/popup.php:321,
 
 
 
 
 
 
 
 
 
935
  #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:144,
936
- #: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:43
 
 
 
 
 
 
937
  msgid "Visibility"
938
  msgstr ""
939
 
@@ -941,46 +1399,74 @@ msgstr ""
941
  #: framework/extensions/trending/customizer.php:235,
942
  #: framework/features/header/header-options.php:89,
943
  #: framework/features/header/header-options.php:171,
944
- #: framework/premium/extensions/shortcuts/customizer.php:54,
945
- #: framework/premium/extensions/shortcuts/customizer.php:111,
946
- #: framework/premium/extensions/shortcuts/customizer.php:168,
947
- #: framework/premium/extensions/shortcuts/customizer.php:219,
948
- #: framework/premium/extensions/shortcuts/customizer.php:281,
949
- #: framework/premium/extensions/shortcuts/customizer.php:334,
950
- #: framework/premium/extensions/shortcuts/customizer.php:385,
951
- #: framework/premium/extensions/shortcuts/customizer.php:436,
952
- #: framework/premium/extensions/shortcuts/customizer.php:558,
953
- #: framework/premium/extensions/shortcuts/customizer.php:680,
954
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:47,
955
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:71,
956
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:219,
 
 
 
 
957
  #: framework/features/header/items/account/options.php:228,
958
  #: framework/features/header/items/account/options.php:434,
959
  #: framework/premium/features/content-blocks/options/404.php:151,
960
  #: framework/premium/features/content-blocks/options/header.php:177,
961
  #: framework/premium/features/content-blocks/options/hook.php:331,
962
  #: framework/premium/features/content-blocks/options/popup.php:332,
 
 
 
 
 
 
 
 
 
 
 
 
 
963
  #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:157,
964
  #: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:56,
965
- #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:73
 
 
 
 
 
 
 
 
 
966
  msgid "Desktop"
967
  msgstr ""
968
 
969
  #: framework/extensions/newsletter-subscribe/customizer.php:138,
970
  #: framework/extensions/trending/customizer.php:236,
971
- #: framework/premium/extensions/shortcuts/customizer.php:55,
972
- #: framework/premium/extensions/shortcuts/customizer.php:112,
973
- #: framework/premium/extensions/shortcuts/customizer.php:169,
974
- #: framework/premium/extensions/shortcuts/customizer.php:220,
975
- #: framework/premium/extensions/shortcuts/customizer.php:282,
976
- #: framework/premium/extensions/shortcuts/customizer.php:335,
977
- #: framework/premium/extensions/shortcuts/customizer.php:386,
978
- #: framework/premium/extensions/shortcuts/customizer.php:437,
979
- #: framework/premium/extensions/shortcuts/customizer.php:559,
980
- #: framework/premium/extensions/shortcuts/customizer.php:681,
981
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:48,
982
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:72,
983
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:220,
 
 
984
  #: framework/features/header/items/account/options.php:229,
985
  #: framework/features/header/items/account/options.php:435,
986
  #: framework/features/header/items/account/options.php:1077,
@@ -988,9 +1474,32 @@ msgstr ""
988
  #: framework/premium/features/content-blocks/options/header.php:178,
989
  #: framework/premium/features/content-blocks/options/hook.php:332,
990
  #: framework/premium/features/content-blocks/options/popup.php:333,
 
 
 
 
 
 
 
 
 
 
 
 
 
991
  #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:158,
992
  #: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:57,
993
- #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:74
 
 
 
 
 
 
 
 
 
 
994
  msgid "Tablet"
995
  msgstr ""
996
 
@@ -998,19 +1507,23 @@ msgstr ""
998
  #: framework/extensions/trending/customizer.php:237,
999
  #: framework/features/header/header-options.php:91,
1000
  #: framework/features/header/header-options.php:173,
1001
- #: framework/premium/extensions/shortcuts/customizer.php:56,
1002
- #: framework/premium/extensions/shortcuts/customizer.php:113,
1003
- #: framework/premium/extensions/shortcuts/customizer.php:170,
1004
- #: framework/premium/extensions/shortcuts/customizer.php:221,
1005
- #: framework/premium/extensions/shortcuts/customizer.php:283,
1006
- #: framework/premium/extensions/shortcuts/customizer.php:336,
1007
- #: framework/premium/extensions/shortcuts/customizer.php:387,
1008
- #: framework/premium/extensions/shortcuts/customizer.php:438,
1009
- #: framework/premium/extensions/shortcuts/customizer.php:560,
1010
- #: framework/premium/extensions/shortcuts/customizer.php:682,
1011
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:49,
1012
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:73,
1013
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:221,
 
 
 
 
1014
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:117,
1015
  #: framework/features/header/items/account/options.php:230,
1016
  #: framework/features/header/items/account/options.php:436,
@@ -1019,336 +1532,478 @@ msgstr ""
1019
  #: framework/premium/features/content-blocks/options/header.php:179,
1020
  #: framework/premium/features/content-blocks/options/hook.php:333,
1021
  #: framework/premium/features/content-blocks/options/popup.php:334,
 
 
 
 
 
 
 
 
 
 
 
 
 
1022
  #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:159,
1023
  #: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:58,
1024
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:75,
1025
- #: framework/premium/features/premium-header/items/contacts/options.php:97
 
 
 
 
 
 
 
 
 
 
 
 
1026
  msgid "Mobile"
1027
  msgstr ""
1028
 
1029
- #: framework/extensions/newsletter-subscribe/customizer.php:152
 
1030
  msgid "Content Color"
1031
  msgstr ""
1032
 
1033
  #: framework/extensions/newsletter-subscribe/customizer.php:233,
1034
- #: framework/extensions/trending/customizer.php:353
 
 
1035
  msgid "Container Inner Spacing"
1036
  msgstr ""
1037
 
1038
- #: framework/extensions/newsletter-subscribe/extension.php:134
 
1039
  msgid "Disable Subscribe Form"
1040
  msgstr ""
1041
 
1042
  #: framework/extensions/newsletter-subscribe/helpers.php:163,
 
1043
  #: framework/extensions/widgets/widgets/ct-about-me/options.php:81,
1044
- #: framework/features/header/items/account/options.php:278
 
 
1045
  #: static/js/screens/SiteExport.js:85
1046
  msgid "Name"
1047
  msgstr ""
1048
 
1049
  #: framework/extensions/newsletter-subscribe/helpers.php:166,
1050
  #: framework/features/header/modal/register.php:11,
1051
- #: framework/premium/extensions/shortcuts/customizer.php:120,
1052
- #: framework/premium/extensions/shortcuts/customizer.php:143,
 
1053
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:201,
1054
  #: framework/premium/extensions/shortcuts/views/bar.php:27,
1055
- #: framework/premium/features/premium-header/items/contacts/options.php:178
 
 
 
 
 
 
1056
  msgid "Email"
1057
  msgstr ""
1058
 
1059
- #: framework/extensions/newsletter-subscribe/readme.php:4
 
1060
  msgid ""
1061
  "After installing and activating the Newsletter Subscribe\n"
1062
  " extension you will have two possibilities to show your subscribe form:"
1063
  msgstr ""
1064
 
1065
- #: framework/extensions/newsletter-subscribe/readme.php:10
 
1066
  msgid "Widget"
1067
  msgstr ""
1068
 
1069
- #: framework/extensions/newsletter-subscribe/readme.php:14
 
1070
  msgid "Navigate to %s and place the widget in any widget area you want."
1071
  msgstr ""
1072
 
1073
- #: framework/extensions/newsletter-subscribe/readme.php:17
 
1074
  msgid "Appearance ➝ Widgets"
1075
  msgstr ""
1076
 
1077
- #: framework/extensions/newsletter-subscribe/readme.php:25
 
1078
  msgid "Single Page Block"
1079
  msgstr ""
1080
 
1081
- #: framework/extensions/newsletter-subscribe/readme.php:29
 
1082
  msgid "Navigate to %s and customize the form and more."
1083
  msgstr ""
1084
 
1085
- #: framework/extensions/newsletter-subscribe/readme.php:32
 
1086
  msgid "Customizer ➝ Single Posts"
1087
  msgstr ""
1088
 
1089
  #: framework/extensions/product-reviews/config.php:4,
1090
- #: framework/extensions/product-reviews/extension.php:140,
1091
- #: framework/extensions/product-reviews/extension.php:141,
1092
- #: framework/extensions/product-reviews/extension.php:144,
1093
- #: framework/extensions/product-reviews/extension.php:146
 
 
 
 
 
1094
  msgid "Product Reviews"
1095
  msgstr ""
1096
 
1097
- #: framework/extensions/product-reviews/config.php:5
 
1098
  msgid ""
1099
  "This extension lets you easily create an affiliate marketing type of website "
1100
  "by giving you options to create a personalized product review and use your "
1101
  "affiliate links to direct your readers to the purchase page."
1102
  msgstr ""
1103
 
1104
- #: framework/extensions/product-reviews/extension.php:145
 
 
 
 
 
 
1105
  msgid "Product Review"
1106
  msgstr ""
1107
 
1108
- #: framework/extensions/product-reviews/extension.php:147
 
1109
  msgid "Parent Product Review"
1110
  msgstr ""
1111
 
1112
- #: framework/extensions/product-reviews/extension.php:148
 
1113
  msgid "All Reviews"
1114
  msgstr ""
1115
 
1116
- #: framework/extensions/product-reviews/extension.php:149
 
1117
  msgid "View Product Review"
1118
  msgstr ""
1119
 
1120
- #: framework/extensions/product-reviews/extension.php:150
 
1121
  msgid "Add New Product Review"
1122
  msgstr ""
1123
 
1124
- #: framework/extensions/product-reviews/extension.php:151
 
1125
  msgid "Add New Review"
1126
  msgstr ""
1127
 
1128
- #: framework/extensions/product-reviews/extension.php:152
 
1129
  msgid "Edit Product Review"
1130
  msgstr ""
1131
 
1132
- #: framework/extensions/product-reviews/extension.php:153
 
1133
  msgid "Update Product Review"
1134
  msgstr ""
1135
 
1136
- #: framework/extensions/product-reviews/extension.php:154
 
1137
  msgid "Search Product Review"
1138
  msgstr ""
1139
 
1140
- #: framework/extensions/product-reviews/extension.php:155
 
1141
  msgid "Not Found"
1142
  msgstr ""
1143
 
1144
- #: framework/extensions/product-reviews/extension.php:156
 
1145
  msgid "Not found in Trash"
1146
  msgstr ""
1147
 
1148
- #: framework/extensions/product-reviews/extension.php:190,
1149
- #: framework/extensions/product-reviews/extension.php:200
 
 
1150
  msgid "Categories"
1151
  msgstr ""
1152
 
1153
- #: framework/extensions/product-reviews/extension.php:191,
1154
  #: framework/extensions/trending/customizer.php:35,
1155
- #: framework/extensions/widgets/widgets/ct-posts/options.php:37
 
 
 
1156
  msgid "Category"
1157
  msgstr ""
1158
 
1159
- #: framework/extensions/product-reviews/extension.php:192
 
1160
  msgid "Search Category"
1161
  msgstr ""
1162
 
1163
- #: framework/extensions/product-reviews/extension.php:193
 
1164
  msgid "All Categories"
1165
  msgstr ""
1166
 
1167
- #: framework/extensions/product-reviews/extension.php:194
 
1168
  msgid "Parent Category"
1169
  msgstr ""
1170
 
1171
- #: framework/extensions/product-reviews/extension.php:195
 
1172
  msgid "Parent Category:"
1173
  msgstr ""
1174
 
1175
- #: framework/extensions/product-reviews/extension.php:196
 
1176
  msgid "Edit Category"
1177
  msgstr ""
1178
 
1179
- #: framework/extensions/product-reviews/extension.php:197
 
1180
  msgid "Update Category"
1181
  msgstr ""
1182
 
1183
- #: framework/extensions/product-reviews/extension.php:198
 
1184
  msgid "Add New Category"
1185
  msgstr ""
1186
 
1187
- #: framework/extensions/product-reviews/extension.php:199
 
1188
  msgid "New Category Name"
1189
  msgstr ""
1190
 
1191
  #: framework/extensions/product-reviews/helpers.php:30,
1192
- #: framework/extensions/product-reviews/metabox.php:89
 
 
1193
  msgid "Rating"
1194
  msgstr ""
1195
 
1196
- #: framework/extensions/product-reviews/metabox.php:12
 
1197
  msgid "Gallery"
1198
  msgstr ""
1199
 
1200
- #: framework/extensions/product-reviews/metabox.php:23
 
1201
  msgid "Affiliate Button Label"
1202
  msgstr ""
1203
 
1204
  #: framework/extensions/product-reviews/metabox.php:25,
1205
- #: framework/extensions/product-reviews/views/single-top.php:139
 
 
1206
  msgid "Buy Now"
1207
  msgstr ""
1208
 
1209
- #: framework/extensions/product-reviews/metabox.php:30
 
1210
  msgid "Affiliate Link"
1211
  msgstr ""
1212
 
1213
- #: framework/extensions/product-reviews/metabox.php:36
 
1214
  msgid "Open Link In New Tab"
1215
  msgstr ""
1216
 
1217
- #: framework/extensions/product-reviews/metabox.php:58
 
1218
  msgid "Read More Button Label"
1219
  msgstr ""
1220
 
1221
  #: framework/extensions/product-reviews/metabox.php:60,
1222
- #: framework/extensions/product-reviews/views/single-top.php:145
 
 
1223
  msgid "Read More"
1224
  msgstr ""
1225
 
1226
- #: framework/extensions/product-reviews/metabox.php:80
 
1227
  msgid "Small Description"
1228
  msgstr ""
1229
 
1230
- #: framework/extensions/product-reviews/metabox.php:95
 
1231
  msgid "Scores"
1232
  msgstr ""
1233
 
1234
- #: framework/extensions/product-reviews/metabox.php:134
 
1235
  msgid "Product specs"
1236
  msgstr ""
1237
 
1238
- #: framework/extensions/product-reviews/metabox.php:159,
1239
- #: framework/extensions/product-reviews/views/single-top.php:223
 
 
1240
  msgid "Pros"
1241
  msgstr ""
1242
 
1243
- #: framework/extensions/product-reviews/metabox.php:179,
1244
- #: framework/extensions/product-reviews/views/single-top.php:239
 
 
1245
  msgid "Cons"
1246
  msgstr ""
1247
 
1248
  #: framework/extensions/trending/config.php:4,
1249
  #: framework/extensions/trending/customizer.php:96,
1250
- #: framework/extensions/trending/customizer.php:105
 
 
 
1251
  msgid "Trending Posts"
1252
  msgstr ""
1253
 
1254
- #: framework/extensions/trending/config.php:5
 
1255
  msgid ""
1256
  "Highlight your most popular posts or products based on the number of "
1257
  "comments or reviews they have gotten in the specified period of time."
1258
  msgstr ""
1259
 
1260
  #: framework/extensions/trending/customizer.php:8,
 
1261
  #: framework/premium/extensions/shortcuts/views/bar.php:30,
1262
- #: framework/premium/features/premium-header/items/search-input/options.php:6
 
 
1263
  msgid "Products"
1264
  msgstr ""
1265
 
1266
  #: framework/extensions/trending/customizer.php:36,
1267
- #: framework/extensions/widgets/widgets/ct-posts/options.php:38
 
 
1268
  msgid "All categories"
1269
  msgstr ""
1270
 
1271
  #: framework/extensions/trending/customizer.php:41,
1272
- #: framework/extensions/widgets/widgets/ct-posts/options.php:43
 
 
1273
  msgid "Taxonomy"
1274
  msgstr ""
1275
 
1276
  #: framework/extensions/trending/customizer.php:42,
1277
- #: framework/extensions/widgets/widgets/ct-posts/options.php:44
 
 
1278
  msgid "All taxonomies"
1279
  msgstr ""
1280
 
1281
- #: framework/extensions/trending/customizer.php:114
 
1282
  msgid "Module Title"
1283
  msgstr ""
1284
 
1285
  #: framework/extensions/trending/customizer.php:117,
1286
- #: framework/extensions/trending/helpers.php:216
 
 
1287
  msgid "Trending now"
1288
  msgstr ""
1289
 
1290
  #: framework/extensions/trending/customizer.php:145,
 
1291
  #: framework/extensions/widgets/widgets/ct-about-me/options.php:37,
1292
  #: framework/extensions/widgets/widgets/ct-advertisement/options.php:23,
1293
  #: framework/extensions/widgets/widgets/ct-posts/options.php:149,
1294
- #: framework/extensions/widgets/widgets/ct-posts/options.php:168
 
 
 
 
1295
  msgid "Source"
1296
  msgstr ""
1297
 
1298
  #: framework/extensions/trending/customizer.php:150,
1299
- #: framework/extensions/widgets/widgets/ct-posts/options.php:154
 
 
1300
  msgid "Taxonomies"
1301
  msgstr ""
1302
 
1303
  #: framework/extensions/trending/customizer.php:151,
 
1304
  #: framework/extensions/widgets/widgets/ct-posts/options.php:155,
1305
- #: framework/extensions/widgets/widgets/ct-posts/options.php:174
 
 
1306
  msgid "Custom Query"
1307
  msgstr ""
1308
 
1309
- #: framework/extensions/trending/customizer.php:174
 
 
 
1310
  msgid "Posts ID"
1311
  msgstr ""
1312
 
1313
- #: framework/extensions/trending/customizer.php:178
 
 
 
1314
  msgid "Separate posts ID by comma. How to find the %spost ID%s."
1315
  msgstr ""
1316
 
1317
- #: framework/extensions/trending/customizer.php:194
 
1318
  msgid "Trending From"
1319
  msgstr ""
1320
 
1321
  #: framework/extensions/trending/customizer.php:203,
1322
- #: framework/extensions/widgets/widgets/ct-posts/options.php:212
 
 
1323
  msgid "All Time"
1324
  msgstr ""
1325
 
1326
- #: framework/extensions/trending/customizer.php:204
 
1327
  msgid "Last 24 Hours"
1328
  msgstr ""
1329
 
1330
- #: framework/extensions/trending/customizer.php:205
 
1331
  msgid "Last 7 Days"
1332
  msgstr ""
1333
 
1334
- #: framework/extensions/trending/customizer.php:206
 
1335
  msgid "Last Month"
1336
  msgstr ""
1337
 
1338
- #: framework/extensions/trending/customizer.php:223
 
1339
  msgid "Container Visibility"
1340
  msgstr ""
1341
 
1342
- #: framework/extensions/trending/customizer.php:296
 
1343
  msgid "Posts Font"
1344
  msgstr ""
1345
 
1346
  #: framework/extensions/trending/customizer.php:337,
1347
- #: framework/premium/extensions/shortcuts/customizer.php:835
 
 
1348
  msgid "Container Background"
1349
  msgstr ""
1350
 
1351
- #: framework/extensions/widgets/config.php:4
 
1352
  msgid ""
1353
  "Add new handcrafted widgets to your sidebars! Social Network Icons, "
1354
  "Newsletter Subscribe, Contact Info, Custom Ads and even a Popular/Recent "
@@ -1356,321 +2011,466 @@ msgid ""
1356
  msgstr ""
1357
 
1358
  #: framework/features/header/account-modal.php:47,
 
1359
  #: framework/features/header/items/account/options.php:481,
1360
- #: framework/features/header/items/account/views/logout.php:48
 
 
1361
  msgid "Login"
1362
  msgstr ""
1363
 
1364
- #: framework/features/header/account-modal.php:51
 
1365
  msgid "Sign Up"
1366
  msgstr ""
1367
 
1368
- #: framework/features/header/account-modal.php:70
 
1369
  msgid "Back to login"
1370
  msgstr ""
1371
 
1372
- #: framework/features/header/header-options.php:6
 
1373
  msgid "Sticky Functionality"
1374
  msgstr ""
1375
 
1376
- #: framework/features/header/header-options.php:63
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1377
  msgid "Sticky Effect"
1378
  msgstr ""
1379
 
1380
- #: framework/features/header/header-options.php:72
 
1381
  msgid "Slide Down"
1382
  msgstr ""
1383
 
1384
- #: framework/features/header/header-options.php:73
 
1385
  msgid "Fade"
1386
  msgstr ""
1387
 
1388
- #: framework/features/header/header-options.php:74
 
1389
  msgid "Auto Hide/Show"
1390
  msgstr ""
1391
 
1392
  #: framework/features/header/header-options.php:79,
1393
- #: framework/features/header/header-options.php:160
 
 
1394
  msgid "Enable on"
1395
  msgstr ""
1396
 
1397
- #: framework/features/header/header-options.php:106
 
1398
  msgid "Transparent Functionality"
1399
  msgstr ""
1400
 
1401
  #: framework/features/header/header-options.php:144,
1402
- #: framework/premium/extensions/shortcuts/customizer.php:687,
 
1403
  #: framework/premium/features/content-blocks/options/header.php:142,
1404
  #: framework/premium/features/content-blocks/options/hook.php:231,
1405
- #: framework/premium/features/content-blocks/options/popup.php:279
 
 
 
 
1406
  #: framework/premium/extensions/sidebars/static/js/SettingsManager.js:44
1407
  #: framework/premium/static/js/footer/EditConditions.js:97
1408
  #: static/js/header/EditConditions.js:96
1409
  msgid "Display Conditions"
1410
  msgstr ""
1411
 
1412
- #: framework/premium/features/content-blocks.php:39
 
1413
  msgid "Hooks Locations"
1414
  msgstr ""
1415
 
1416
  #: framework/premium/features/content-blocks.php:204,
1417
- #: framework/premium/extensions/shortcuts/customizer.php:476,
1418
- #: framework/extensions/widgets/widgets/ct-about-me/options.php:23
 
 
 
1419
  msgid "Type"
1420
  msgstr ""
1421
 
1422
- #: framework/premium/features/content-blocks.php:205
 
1423
  msgid "Location/Trigger"
1424
  msgstr ""
1425
 
1426
- #: framework/premium/features/content-blocks.php:206
 
1427
  msgid "Conditions"
1428
  msgstr ""
1429
 
1430
- #: framework/premium/features/content-blocks.php:207
 
1431
  msgid "Output"
1432
  msgstr ""
1433
 
1434
- #: framework/premium/features/content-blocks.php:208
 
1435
  msgid "Enable/Disable"
1436
  msgstr ""
1437
 
1438
  #: framework/premium/features/content-blocks.php:228,
1439
- #: framework/premium/extensions/shortcuts/customizer.php:650,
 
1440
  #: framework/extensions/widgets/widgets/ct-about-me/options.php:208,
1441
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:279,
1442
- #: framework/extensions/widgets/widgets/ct-socials/options.php:86,
1443
  #: framework/features/header/items/account/options.php:124,
1444
  #: framework/features/header/items/account/options.php:349,
1445
  #: framework/premium/features/content-blocks/options/popup.php:162,
1446
  #: framework/premium/features/content-blocks/options/popup.php:418,
1447
- #: framework/premium/features/premium-header/items/contacts/options.php:277
 
 
 
 
 
 
 
 
 
1448
  msgid "None"
1449
  msgstr ""
1450
 
1451
  #: framework/premium/features/content-blocks.php:229,
1452
- #: framework/premium/features/content-blocks/options/popup.php:163
 
 
1453
  msgid "On scroll"
1454
  msgstr ""
1455
 
1456
  #: framework/premium/features/content-blocks.php:230,
1457
- #: framework/premium/features/content-blocks/options/popup.php:164
 
 
1458
  msgid "On scroll to element"
1459
  msgstr ""
1460
 
1461
  #: framework/premium/features/content-blocks.php:231,
1462
- #: framework/premium/features/content-blocks/options/popup.php:165
 
 
1463
  msgid "On page load"
1464
  msgstr ""
1465
 
1466
  #: framework/premium/features/content-blocks.php:232,
1467
- #: framework/premium/features/content-blocks/options/popup.php:166
 
 
1468
  msgid "After inactivity"
1469
  msgstr ""
1470
 
1471
  #: framework/premium/features/content-blocks.php:233,
1472
- #: framework/premium/features/content-blocks/options/popup.php:167
 
 
1473
  msgid "After x time"
1474
  msgstr ""
1475
 
1476
  #: framework/premium/features/content-blocks.php:234,
1477
- #: framework/premium/features/content-blocks/options/popup.php:168
 
 
1478
  msgid "On page exit intent"
1479
  msgstr ""
1480
 
1481
- #: framework/premium/features/content-blocks.php:238
 
1482
  msgid "Down"
1483
  msgstr ""
1484
 
1485
- #: framework/premium/features/content-blocks.php:239
 
1486
  msgid "Up"
1487
  msgstr ""
1488
 
1489
  #: framework/premium/features/content-blocks.php:607,
1490
- #: framework/premium/features/content-blocks.php:613
 
 
1491
  msgid "Content Blocks"
1492
  msgstr ""
1493
 
1494
- #: framework/premium/features/content-blocks.php:608
 
1495
  msgid "Content Block"
1496
  msgstr ""
1497
 
1498
- #: framework/premium/features/content-blocks.php:609
 
1499
  msgid "Add New"
1500
  msgstr ""
1501
 
1502
- #: framework/premium/features/content-blocks.php:610
 
1503
  msgid "Add New Content Block"
1504
  msgstr ""
1505
 
1506
- #: framework/premium/features/content-blocks.php:611
 
1507
  msgid "Edit Content Block"
1508
  msgstr ""
1509
 
1510
- #: framework/premium/features/content-blocks.php:612
 
1511
  #: framework/premium/static/js/hooks/CreateHook.js:32
1512
  msgid "New Content Block"
1513
  msgstr ""
1514
 
1515
- #: framework/premium/features/content-blocks.php:614
 
1516
  msgid "View Content Block"
1517
  msgstr ""
1518
 
1519
- #: framework/premium/features/content-blocks.php:615
 
1520
  msgid "Search Content Blocks"
1521
  msgstr ""
1522
 
1523
- #: framework/premium/features/content-blocks.php:616
 
1524
  msgid "Nothing found"
1525
  msgstr ""
1526
 
1527
- #: framework/premium/features/content-blocks.php:617
 
1528
  msgid "Nothing found in Trash"
1529
  msgstr ""
1530
 
1531
  #: framework/premium/features/premium-footer.php:30,
1532
- #: framework/premium/features/premium-footer.php:41
 
 
1533
  msgid "Footer Menu 1"
1534
  msgstr ""
1535
 
1536
  #: framework/premium/features/premium-footer.php:42,
1537
- #: framework/premium/features/premium-footer/items/menu-secondary/config.php:4
 
 
1538
  msgid "Footer Menu 2"
1539
  msgstr ""
1540
 
1541
- #: framework/premium/features/premium-header.php:42
 
1542
  msgid "Header Menu 3"
1543
  msgstr ""
1544
 
1545
- #: framework/premium/features/premium-header.php:102
 
1546
  msgid "Header Widget Area "
1547
  msgstr ""
1548
 
1549
  #: framework/premium/features/premium-header.php:158,
1550
  #: framework/premium/extensions/mega-menu/options.php:420,
 
1551
  #: framework/features/header/items/account/options.php:123,
1552
  #: framework/features/header/items/account/options.php:348,
1553
- #: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:401
 
 
 
 
1554
  msgid "Icon"
1555
  msgstr ""
1556
 
1557
  #: framework/premium/features/premium-header.php:172,
1558
  #: framework/premium/extensions/mega-menu/options.php:434,
 
1559
  #: framework/extensions/widgets/widgets/ct-about-me/options.php:187,
1560
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:258,
1561
- #: framework/extensions/widgets/widgets/ct-socials/options.php:65,
1562
- #: framework/premium/features/premium-header/items/contacts/options.php:249
 
 
 
 
 
1563
  msgid "Icons Size"
1564
  msgstr ""
1565
 
1566
  #: framework/premium/features/premium-header.php:184,
1567
- #: framework/premium/extensions/mega-menu/options.php:456
 
 
1568
  msgid "Icon Position"
1569
  msgstr ""
1570
 
1571
  #: framework/premium/features/premium-header.php:191,
1572
  #: framework/premium/extensions/mega-menu/options.php:463,
1573
- #: framework/premium/extensions/shortcuts/customizer.php:583,
 
1574
  #: framework/features/header/items/account/options.php:259,
1575
  #: framework/features/header/items/account/options.php:465,
1576
- #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:98
 
 
 
 
 
1577
  msgid "Left"
1578
  msgstr ""
1579
 
1580
  #: framework/premium/features/premium-header.php:192,
1581
  #: framework/premium/extensions/mega-menu/options.php:464,
1582
- #: framework/premium/extensions/shortcuts/customizer.php:584,
 
1583
  #: framework/features/header/items/account/options.php:260,
1584
  #: framework/features/header/items/account/options.php:466,
1585
- #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:99
 
 
 
 
 
1586
  msgid "Right"
1587
  msgstr ""
1588
 
1589
  #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:17,
1590
- #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/view.php:12
 
 
1591
  msgid "Newsletter"
1592
  msgstr ""
1593
 
1594
- #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:99
 
1595
  msgid "Container Type"
1596
  msgstr ""
1597
 
1598
  #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:106,
1599
- #: framework/extensions/widgets/widgets/ct-about-me/options.php:32
 
 
1600
  msgid "Boxed"
1601
  msgstr ""
1602
 
1603
- #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:112
 
1604
  msgid "Content Alignment"
1605
  msgstr ""
1606
 
1607
- #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/widget.php:14
 
1608
  msgid "Newsletter subscribe form"
1609
  msgstr ""
1610
 
1611
- #: framework/extensions/newsletter-subscribe/includes/BlocksyMailerliteManager.php:99
 
1612
  msgid "Thank you for subscribing!"
1613
  msgstr ""
1614
 
1615
- #: framework/extensions/product-reviews/views/single-top.php:126
 
1616
  msgid "Overall Score"
1617
  msgstr ""
1618
 
1619
- #: framework/extensions/product-reviews/views/single-top.php:206
 
1620
  msgid "Specs"
1621
  msgstr ""
1622
 
1623
- #: framework/features/header/modal/login.php:17
 
1624
  msgid "Email Address"
1625
  msgstr ""
1626
 
1627
- #: framework/features/header/modal/login.php:22
 
1628
  msgid "Password"
1629
  msgstr ""
1630
 
1631
- #: framework/features/header/modal/login.php:29
 
1632
  msgid "Remember Me"
1633
  msgstr ""
1634
 
1635
- #: framework/features/header/modal/login.php:33
 
1636
  msgid "Forgot Password?"
1637
  msgstr ""
1638
 
1639
- #: framework/features/header/modal/login.php:41
 
1640
  msgid "Log In"
1641
  msgstr ""
1642
 
1643
- #: framework/features/header/modal/lostpassword.php:5
 
1644
  msgid "Username or Email Address"
1645
  msgstr ""
1646
 
1647
- #: framework/features/header/modal/lostpassword.php:11
 
1648
  msgid "Get New Password"
1649
  msgstr ""
1650
 
1651
- #: framework/features/header/modal/register.php:6
 
1652
  msgid "Username"
1653
  msgstr ""
1654
 
1655
- #: framework/features/header/modal/register.php:18
 
1656
  msgid "Registration confirmation will be emailed to you"
1657
  msgstr ""
1658
 
1659
- #: framework/features/header/modal/register.php:23
 
1660
  msgid "Register"
1661
  msgstr ""
1662
 
1663
- #: framework/premium/extensions/adobe-typekit/config.php:4
 
1664
  msgid "Adobe Fonts"
1665
  msgstr ""
1666
 
1667
- #: framework/premium/extensions/adobe-typekit/config.php:5
 
1668
  msgid ""
1669
  "Connect your Adobe Fonts project and use the selected fonts throughout "
1670
  "Blocksy and your favorite page builder."
1671
  msgstr ""
1672
 
1673
- #: framework/premium/extensions/code-snippets/config.php:5
 
1674
  msgid ""
1675
  "Inject custom code snippets throughout your website. The extension works "
1676
  "globally or on a per post/page basis."
@@ -1678,232 +2478,304 @@ msgstr ""
1678
 
1679
  #: framework/premium/extensions/code-snippets/extension.php:38,
1680
  #: framework/premium/extensions/code-snippets/extension.php:78,
1681
- #: framework/premium/extensions/code-snippets/extension.php:117
 
 
 
1682
  msgid "After body open scripts"
1683
  msgstr ""
1684
 
1685
- #: framework/premium/extensions/code-snippets/readme.php:4
 
1686
  msgid ""
1687
  "After activating the Custom Code Snippets extension you will have two ways "
1688
  "to manage your snippets:"
1689
  msgstr ""
1690
 
1691
- #: framework/premium/extensions/code-snippets/readme.php:9
 
1692
  msgid "Globally"
1693
  msgstr ""
1694
 
1695
- #: framework/premium/extensions/code-snippets/readme.php:13
 
1696
  msgid "Navigate to %s and place there your header, body or footer scripts."
1697
  msgstr ""
1698
 
1699
- #: framework/premium/extensions/code-snippets/readme.php:16
 
1700
  msgid "Customizer ➝ Custom Code Snippets"
1701
  msgstr ""
1702
 
1703
- #: framework/premium/extensions/code-snippets/readme.php:24
 
1704
  msgid "Per page/post"
1705
  msgstr ""
1706
 
1707
- #: framework/premium/extensions/code-snippets/readme.php:28
 
1708
  msgid ""
1709
  "Edit your page or post, click on %s, scroll down and you will see the %2s "
1710
  "panel."
1711
  msgstr ""
1712
 
1713
- #: framework/premium/extensions/code-snippets/readme.php:32
 
1714
  msgid "%s Page Settings"
1715
  msgstr ""
1716
 
1717
- #: framework/premium/extensions/custom-fonts/config.php:4
 
1718
  msgid ""
1719
  "Upload an unlimited number of custom fonts or variable fonts and use them "
1720
  "throughout Blocksy and your favorite page builder."
1721
  msgstr ""
1722
 
1723
- #: framework/premium/extensions/local-google-fonts/config.php:4
 
1724
  msgid ""
1725
  "Serve your chosen Google Fonts from your own web server. This will increase "
1726
  "the loading speed and makes sure your website complies with the privacy "
1727
  "regulations."
1728
  msgstr ""
1729
 
1730
- #: framework/premium/extensions/mega-menu/config.php:5
 
1731
  msgid ""
1732
  "Create beautiful personalised menus that set your website apart from the "
1733
  "others. Add icons and badges to your entries and even add Content Blocks "
1734
  "inside your dropdowns."
1735
  msgstr ""
1736
 
1737
- #: framework/premium/extensions/mega-menu/config.php:9
 
1738
  #: framework/extensions/newsletter-subscribe/dashboard-static/js/hooks/useActivationWithRequirements.js:60
1739
  #: framework/extensions/product-reviews/static/js/EditSettings.js:30
1740
  #: framework/premium/extensions/white-label/dashboard-static/js/EditSettings.js:96
1741
  msgid "Configure"
1742
  msgstr ""
1743
 
1744
- #: framework/premium/extensions/mega-menu/extension.php:99
 
1745
  msgid "Menu Item Settings"
1746
  msgstr ""
1747
 
1748
- #: framework/premium/extensions/mega-menu/extension.php:257
 
1749
  msgid "New"
1750
  msgstr ""
1751
 
1752
  #: framework/premium/extensions/mega-menu/options.php:16,
1753
- #: framework/premium/extensions/mega-menu/options.php:528
 
 
1754
  msgid "Mega Menu Settings"
1755
  msgstr ""
1756
 
1757
- #: framework/premium/extensions/mega-menu/options.php:27
 
1758
  msgid "Dropdown Width"
1759
  msgstr ""
1760
 
1761
  #: framework/premium/extensions/mega-menu/options.php:35,
1762
- #: framework/premium/extensions/mega-menu/options.php:48
 
 
1763
  msgid "Content Width"
1764
  msgstr ""
1765
 
1766
  #: framework/premium/extensions/mega-menu/options.php:36,
1767
- #: framework/premium/extensions/mega-menu/options.php:57
 
 
1768
  msgid "Full Width"
1769
  msgstr ""
1770
 
1771
- #: framework/premium/extensions/mega-menu/options.php:37
 
1772
  msgid "Custom Width"
1773
  msgstr ""
1774
 
1775
- #: framework/premium/extensions/mega-menu/options.php:56
 
1776
  msgid "Default Width"
1777
  msgstr ""
1778
 
1779
- #: framework/premium/extensions/mega-menu/options.php:85
 
1780
  msgid "Columns"
1781
  msgstr ""
1782
 
1783
- #: framework/premium/extensions/mega-menu/options.php:320
 
1784
  msgid "Custom Content"
1785
  msgstr ""
1786
 
1787
- #: framework/premium/extensions/mega-menu/options.php:324
 
1788
  msgid "Content Type"
1789
  msgstr ""
1790
 
1791
- #: framework/premium/extensions/mega-menu/options.php:331
 
1792
  msgid "Default (Menu Item)"
1793
  msgstr ""
1794
 
1795
- #: framework/premium/extensions/mega-menu/options.php:332
 
1796
  msgid "Custom Text"
1797
  msgstr ""
1798
 
1799
- #: framework/premium/extensions/mega-menu/options.php:333
 
1800
  msgid "Content Block/Hook"
1801
  msgstr ""
1802
 
1803
  #: framework/premium/extensions/mega-menu/options.php:392,
1804
- #: framework/premium/extensions/mega-menu/options.php:708
 
 
1805
  msgid "Item Label Settings"
1806
  msgstr ""
1807
 
1808
- #: framework/premium/extensions/mega-menu/options.php:397
 
1809
  msgid "Item Label"
1810
  msgstr ""
1811
 
1812
- #: framework/premium/extensions/mega-menu/options.php:405
 
1813
  msgid "Enabled"
1814
  msgstr ""
1815
 
1816
  #: framework/premium/extensions/mega-menu/options.php:406,
1817
  #: framework/premium/features/content-blocks/options/404.php:104,
1818
  #: framework/premium/features/content-blocks/options/header.php:108,
1819
- #: framework/premium/features/content-blocks/options/hook.php:108
 
 
 
 
1820
  msgid "Disabled"
1821
  msgstr ""
1822
 
1823
- #: framework/premium/extensions/mega-menu/options.php:407
 
1824
  msgid "Heading"
1825
  msgstr ""
1826
 
1827
- #: framework/premium/extensions/mega-menu/options.php:413
 
1828
  msgid "Label Link"
1829
  msgstr ""
1830
 
1831
  #: framework/premium/extensions/mega-menu/options.php:479,
1832
- #: framework/premium/extensions/mega-menu/options.php:790
 
 
1833
  msgid "Menu Badge Settings"
1834
  msgstr ""
1835
 
1836
  #: framework/premium/extensions/mega-menu/options.php:491,
1837
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:23,
1838
- #: framework/features/header/items/account/options.php:277
 
 
 
1839
  msgid "Text"
1840
  msgstr ""
1841
 
1842
  #: framework/premium/extensions/mega-menu/options.php:497,
1843
- #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:260
 
 
1844
  msgid "Vertical Alignment"
1845
  msgstr ""
1846
 
1847
- #: framework/premium/extensions/mega-menu/options.php:532
 
1848
  msgid "Background"
1849
  msgstr ""
1850
 
1851
- #: framework/premium/extensions/mega-menu/options.php:546
 
1852
  msgid "Link Color"
1853
  msgstr ""
1854
 
1855
  #: framework/premium/extensions/mega-menu/options.php:566,
1856
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:144,
 
 
1857
  #: framework/premium/features/premium-header/items/contacts/options.php:417,
1858
  #: framework/premium/features/premium-header/items/contacts/options.php:459,
1859
- #: framework/premium/features/premium-header/items/contacts/options.php:499
 
 
 
1860
  msgid "Link Initial"
1861
  msgstr ""
1862
 
1863
- #: framework/premium/extensions/mega-menu/options.php:571
 
1864
  msgid "Link Hover/Active"
1865
  msgstr ""
1866
 
1867
- #: framework/premium/extensions/mega-menu/options.php:576
 
1868
  msgid "Background Hover"
1869
  msgstr ""
1870
 
1871
  #: framework/premium/extensions/mega-menu/options.php:583,
1872
- #: framework/premium/extensions/mega-menu/options.php:717
 
 
1873
  msgid "Heading Color"
1874
  msgstr ""
1875
 
1876
  #: framework/premium/extensions/mega-menu/options.php:595,
1877
  #: framework/premium/extensions/mega-menu/options.php:615,
1878
- #: framework/premium/extensions/mega-menu/options.php:729
 
 
 
1879
  msgid "Initial Color"
1880
  msgstr ""
1881
 
1882
- #: framework/premium/extensions/mega-menu/options.php:603
 
1883
  msgid "Text Color"
1884
  msgstr ""
1885
 
1886
  #: framework/premium/extensions/mega-menu/options.php:622,
1887
- #: framework/premium/extensions/shortcuts/customizer.php:782,
 
 
1888
  #: framework/premium/features/premium-header/items/language-switcher/options.php:432,
1889
- #: framework/premium/features/premium-header/items/search-input/options.php:815
 
 
1890
  msgid "Items Divider"
1891
  msgstr ""
1892
 
1893
- #: framework/premium/extensions/mega-menu/options.php:637
 
1894
  msgid "Columns Divider"
1895
  msgstr ""
1896
 
1897
  #: framework/premium/extensions/mega-menu/options.php:652,
1898
- #: framework/premium/features/premium-header/items/search-input/options.php:797
 
 
1899
  msgid "Dropdown Shadow"
1900
  msgstr ""
1901
 
1902
- #: framework/premium/extensions/mega-menu/options.php:684
 
1903
  msgid "Column Settings"
1904
  msgstr ""
1905
 
1906
- #: framework/premium/extensions/mega-menu/options.php:688
 
1907
  msgid "Column Spacing"
1908
  msgstr ""
1909
 
@@ -1915,6 +2787,7 @@ msgstr ""
1915
  #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:135,
1916
  #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:212,
1917
  #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:288,
 
1918
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:273,
1919
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:301,
1920
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:332,
@@ -1922,26 +2795,45 @@ msgstr ""
1922
  #: framework/premium/features/premium-header/items/dark-mode-switcher/options.php:30,
1923
  #: framework/premium/features/premium-header/items/dark-mode-switcher/options.php:58,
1924
  #: framework/premium/features/premium-header/items/dark-mode-switcher/options.php:89,
1925
- #: framework/premium/features/premium-header/items/dark-mode-switcher/options.php:118
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1926
  msgid "Icon Color"
1927
  msgstr ""
1928
 
1929
- #: framework/premium/extensions/mega-menu/options.php:770
 
1930
  msgid "Active"
1931
  msgstr ""
1932
 
1933
- #: framework/premium/extensions/post-types-extra/config.php:4
 
1934
  msgid "Post Types Extra"
1935
  msgstr ""
1936
 
1937
- #: framework/premium/extensions/post-types-extra/config.php:5
 
1938
  msgid ""
1939
  "Enables support for Custom Fields inside archive cards and single page post "
1940
  "title, adds a reading progress bar for your posts and lets you set featured "
1941
  "images and colors for your categories archives."
1942
  msgstr ""
1943
 
1944
- #: framework/premium/extensions/post-types-extra/readme.php:4
 
1945
  msgid ""
1946
  "After activating this extension you will be able to enable the read progress "
1947
  "bar for your single posts, add a featured image and set different colors to "
@@ -1950,63 +2842,77 @@ msgid ""
1950
  "taxonomies archive filters."
1951
  msgstr ""
1952
 
1953
- #: framework/premium/extensions/post-types-extra/readme.php:10
 
1954
  msgid "Custom Fields"
1955
  msgstr ""
1956
 
1957
- #: framework/premium/extensions/post-types-extra/readme.php:14
 
1958
  msgid ""
1959
  "After setting up your custom fields you will be able to output them from %s "
1960
  "or from %2s."
1961
  msgstr ""
1962
 
1963
- #: framework/premium/extensions/post-types-extra/readme.php:17
 
1964
  msgid "Customizer ➝ Blog Posts ➝ Card Options"
1965
  msgstr ""
1966
 
1967
- #: framework/premium/extensions/post-types-extra/readme.php:21
 
1968
  msgid "Customizer ➝ Single Posts ➝ Post Title"
1969
  msgstr ""
1970
 
1971
- #: framework/premium/extensions/post-types-extra/readme.php:29
 
1972
  msgid "Taxonomies Filters"
1973
  msgstr ""
1974
 
1975
- #: framework/premium/extensions/post-types-extra/readme.php:33
 
1976
  msgid "You can enable the taxonomies filters from %s."
1977
  msgstr ""
1978
 
1979
- #: framework/premium/extensions/post-types-extra/readme.php:36
 
1980
  msgid "Customizer ➝ Blog Posts ➝ Filters"
1981
  msgstr ""
1982
 
1983
- #: framework/premium/extensions/post-types-extra/readme.php:44
 
1984
  msgid "Read Progress Bar"
1985
  msgstr ""
1986
 
1987
- #: framework/premium/extensions/post-types-extra/readme.php:48
 
1988
  msgid "This options could be enabled from %s."
1989
  msgstr ""
1990
 
1991
- #: framework/premium/extensions/post-types-extra/readme.php:51
 
1992
  msgid "Customizer ➝ Single Posts ➝ Read Progress Bar"
1993
  msgstr ""
1994
 
1995
- #: framework/premium/extensions/post-types-extra/readme.php:59
 
1996
  msgid "Taxonomy Featured Image & Custom Colors"
1997
  msgstr ""
1998
 
1999
- #: framework/premium/extensions/post-types-extra/readme.php:63
 
2000
  msgid ""
2001
  "To customize these options simply navigate to %s and edit one of your "
2002
  "categories."
2003
  msgstr ""
2004
 
2005
- #: framework/premium/extensions/post-types-extra/readme.php:66
 
2006
  msgid "Dashboard ➝ Posts ➝ Categories"
2007
  msgstr ""
2008
 
2009
- #: framework/premium/extensions/shortcuts/config.php:5
 
2010
  msgid ""
2011
  "Easily turn your websites into mobile first experiences. You can easily add "
2012
  "the most important actions at the bottom of the screen for easy access."
@@ -2014,197 +2920,276 @@ msgstr ""
2014
 
2015
  #: framework/premium/extensions/shortcuts/customizer.php:12,
2016
  #: framework/premium/extensions/shortcuts/customizer.php:35,
2017
- #: framework/premium/extensions/shortcuts/customizer.php:501,
2018
- #: framework/premium/extensions/shortcuts/views/bar.php:25
 
 
 
 
2019
  msgid "Home"
2020
  msgstr ""
2021
 
2022
- #: framework/premium/extensions/shortcuts/customizer.php:63,
2023
- #: framework/premium/extensions/shortcuts/customizer.php:86,
2024
- #: framework/premium/extensions/shortcuts/customizer.php:510,
2025
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:88,
2026
  #: framework/premium/extensions/shortcuts/views/bar.php:26,
2027
- #: framework/premium/features/premium-header/items/contacts/options.php:69
 
 
 
 
 
 
2028
  msgid "Phone"
2029
  msgstr ""
2030
 
2031
- #: framework/premium/extensions/shortcuts/customizer.php:177,
2032
- #: framework/premium/extensions/shortcuts/customizer.php:200,
2033
- #: framework/premium/extensions/shortcuts/views/bar.php:28
 
 
 
2034
  msgid "Scroll Top"
2035
  msgstr ""
2036
 
2037
- #: framework/premium/extensions/shortcuts/customizer.php:292,
2038
- #: framework/premium/extensions/shortcuts/customizer.php:315,
2039
- #: framework/premium/extensions/shortcuts/views/bar.php:29
 
 
 
2040
  msgid "Cart"
2041
  msgstr ""
2042
 
2043
- #: framework/premium/extensions/shortcuts/customizer.php:343,
2044
- #: framework/premium/extensions/shortcuts/customizer.php:366
 
 
2045
  msgid "Shop"
2046
  msgstr ""
2047
 
2048
- #: framework/premium/extensions/shortcuts/customizer.php:394,
2049
- #: framework/premium/extensions/shortcuts/customizer.php:417,
2050
  #: framework/premium/extensions/woocommerce-extra/readme.php:70,
 
 
 
2051
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/config.php:4,
2052
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:109,
2053
- #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/view.php:88
 
 
 
2054
  msgid "Wishlist"
2055
  msgstr ""
2056
 
2057
- #: framework/premium/extensions/shortcuts/customizer.php:495
 
2058
  msgid "Shortcuts"
2059
  msgstr ""
2060
 
2061
- #: framework/premium/extensions/shortcuts/customizer.php:536,
2062
  #: framework/features/header/items/account/options.php:216,
2063
  #: framework/features/header/items/account/options.php:422,
2064
- #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:61
 
 
 
 
2065
  msgid "Label Visibility"
2066
  msgstr ""
2067
 
2068
- #: framework/premium/extensions/shortcuts/customizer.php:576,
2069
  #: framework/features/header/items/account/options.php:252,
2070
  #: framework/features/header/items/account/options.php:458,
2071
- #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:91
 
 
 
 
2072
  msgid "Label Position"
2073
  msgstr ""
2074
 
2075
- #: framework/premium/extensions/shortcuts/customizer.php:585,
2076
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:25,
2077
  #: framework/premium/features/content-blocks/hooks-manager.php:317,
2078
  #: framework/features/header/items/account/options.php:261,
2079
  #: framework/features/header/items/account/options.php:467,
2080
  #: framework/premium/features/content-blocks/options/hook.php:302,
2081
- #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:100
 
 
 
 
 
 
 
2082
  msgid "Bottom"
2083
  msgstr ""
2084
 
2085
- #: framework/premium/extensions/shortcuts/customizer.php:596,
2086
  #: framework/features/header/items/account/options.php:198,
2087
  #: framework/features/header/items/account/options.php:404,
2088
- #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:39
 
 
 
 
2089
  msgid "Icon Size"
2090
  msgstr ""
2091
 
2092
- #: framework/premium/extensions/shortcuts/customizer.php:606
 
2093
  msgid "Container Height"
2094
  msgstr ""
2095
 
2096
- #: framework/premium/extensions/shortcuts/customizer.php:621
 
2097
  msgid "Container Max Width"
2098
  msgstr ""
2099
 
2100
- #: framework/premium/extensions/shortcuts/customizer.php:645
 
2101
  msgid "Scroll Interaction"
2102
  msgstr ""
2103
 
2104
- #: framework/premium/extensions/shortcuts/customizer.php:651
 
2105
  msgid "Hide"
2106
  msgstr ""
2107
 
2108
- #: framework/premium/extensions/shortcuts/customizer.php:693
 
2109
  msgid "Shortcuts Bar Display Conditions"
2110
  msgstr ""
2111
 
2112
- #: framework/premium/extensions/shortcuts/customizer.php:694
 
2113
  msgid "Add one or more conditions to display the shortcuts bar."
2114
  msgstr ""
2115
 
2116
- #: framework/premium/extensions/shortcuts/customizer.php:708,
 
2117
  #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:173,
2118
  #: framework/premium/features/premium-header/items/contacts/options.php:349,
2119
  #: framework/premium/features/premium-header/items/language-switcher/options.php:192,
2120
- #: framework/premium/features/premium-header/items/language-switcher/options.php:376
 
 
 
 
2121
  msgid "Font"
2122
  msgstr ""
2123
 
2124
- #: framework/premium/extensions/shortcuts/customizer.php:750,
 
2125
  #: framework/premium/features/premium-header/items/contacts/options.php:529,
2126
  #: framework/premium/features/premium-header/items/contacts/options.php:558,
2127
  #: framework/premium/features/premium-header/items/contacts/options.php:589,
2128
- #: framework/premium/features/premium-header/items/contacts/options.php:619
 
 
 
 
2129
  msgid "Icons Color"
2130
  msgstr ""
2131
 
2132
- #: framework/premium/extensions/shortcuts/customizer.php:802
 
2133
  msgid "Items Divider Height"
2134
  msgstr ""
2135
 
2136
- #: framework/premium/extensions/shortcuts/customizer.php:816,
2137
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:123,
2138
  #: framework/premium/features/content-blocks/options/popup.php:368,
2139
- #: framework/premium/features/premium-header/items/language-switcher/options.php:446
 
 
 
 
2140
  msgid "Shadow"
2141
  msgstr ""
2142
 
2143
- #: framework/premium/extensions/shortcuts/customizer.php:856
 
2144
  msgid "Container Border Radius"
2145
  msgstr ""
2146
 
2147
- #: framework/premium/extensions/sidebars/config.php:5
 
2148
  msgid ""
2149
  "Create unlimited personalized sets of widget areas and display them on any "
2150
  "page or post using our conditional logic functionality."
2151
  msgstr ""
2152
 
2153
- #: framework/premium/extensions/sidebars/config.php:9
 
2154
  msgid "Create New Sidebar"
2155
  msgstr ""
2156
 
2157
- #: framework/premium/extensions/sidebars/form.php:3
 
2158
  #: framework/premium/extensions/sidebars/static/js/main.js:42
2159
  msgid "Create Sidebar/Widget Area"
2160
  msgstr ""
2161
 
2162
- #: framework/premium/extensions/sidebars/form.php:6
 
2163
  msgid ""
2164
  "In order to create a new sidebar/widget area simply enter a name in the "
2165
  "input below and click the Create Sidebar button."
2166
  msgstr ""
2167
 
2168
- #: framework/premium/extensions/sidebars/form.php:16
 
2169
  #: framework/premium/extensions/sidebars/static/js/main.js:58
2170
  msgid "Create Sidebar"
2171
  msgstr ""
2172
 
2173
- #: framework/premium/extensions/sidebars/form.php:20
 
2174
  msgid "Available Sidebars/Widget Areas"
2175
  msgstr ""
2176
 
2177
- #: framework/premium/extensions/white-label/config.php:4
 
2178
  msgid ""
2179
  "Replace Blocksy's branding with your own. Easily hide licensing info and "
2180
  "other sections of the theme and companion plugin from your clients and make "
2181
  "your final product look more professional."
2182
  msgstr ""
2183
 
2184
- #: framework/premium/extensions/woocommerce-extra/config.php:5
 
2185
  msgid ""
2186
  "Make the shopping experience better for your visitors! Add features such as "
2187
  "Product Quick View, Wishlist functionality and a Floating Add to Cart "
2188
  "button. Customize the single product gallery/slider and the layout."
2189
  msgstr ""
2190
 
2191
- #: framework/premium/extensions/woocommerce-extra/customizer.php:5
 
2192
  msgid "Quick View Button"
2193
  msgstr ""
2194
 
2195
- #: framework/premium/extensions/woocommerce-extra/customizer.php:21
 
2196
  msgid "Trigger On"
2197
  msgstr ""
2198
 
2199
- #: framework/premium/extensions/woocommerce-extra/customizer.php:29
 
2200
  msgid "Button click"
2201
  msgstr ""
2202
 
2203
- #: framework/premium/extensions/woocommerce-extra/customizer.php:30
 
2204
  msgid "Image click"
2205
  msgstr ""
2206
 
2207
- #: framework/premium/extensions/woocommerce-extra/customizer.php:31
 
2208
  msgid "Card click"
2209
  msgstr ""
2210
 
@@ -2212,180 +3197,239 @@ msgstr ""
2212
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:196,
2213
  #: framework/features/header/items/account/options.php:177,
2214
  #: framework/features/header/items/account/options.php:383,
2215
- #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:33
 
 
 
 
 
2216
  msgid "Type 3"
2217
  msgstr ""
2218
 
2219
  #: framework/premium/extensions/woocommerce-extra/extension.php:87,
2220
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:201,
2221
  #: framework/features/header/items/account/options.php:182,
2222
- #: framework/features/header/items/account/options.php:388
 
 
 
 
2223
  msgid "Type 4"
2224
  msgstr ""
2225
 
2226
  #: framework/premium/extensions/woocommerce-extra/extension.php:110,
2227
- #: framework/premium/extensions/woocommerce-extra/extension.php:129
 
 
2228
  msgid "Number of Columns"
2229
  msgstr ""
2230
 
2231
- #: framework/premium/extensions/woocommerce-extra/extension.php:607
 
2232
  msgid "Available Filters"
2233
  msgstr ""
2234
 
2235
- #: framework/premium/extensions/woocommerce-extra/extension.php:685
 
2236
  msgid "Quick view title before"
2237
  msgstr ""
2238
 
2239
- #: framework/premium/extensions/woocommerce-extra/extension.php:690
 
2240
  msgid "Quick view title after"
2241
  msgstr ""
2242
 
2243
- #: framework/premium/extensions/woocommerce-extra/extension.php:695
 
2244
  msgid "Quick view price before"
2245
  msgstr ""
2246
 
2247
- #: framework/premium/extensions/woocommerce-extra/extension.php:700
 
2248
  msgid "Quick view price after"
2249
  msgstr ""
2250
 
2251
- #: framework/premium/extensions/woocommerce-extra/extension.php:705
 
2252
  msgid "Quick view summary before"
2253
  msgstr ""
2254
 
2255
- #: framework/premium/extensions/woocommerce-extra/extension.php:710
 
2256
  msgid "Quick view summary after"
2257
  msgstr ""
2258
 
2259
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:4,
2260
- #: framework/premium/extensions/woocommerce-extra/readme.php:25
 
 
2261
  msgid "Floating Cart"
2262
  msgstr ""
2263
 
2264
- #: framework/premium/extensions/woocommerce-extra/floating-cart.php:17
 
2265
  msgid "Position"
2266
  msgstr ""
2267
 
2268
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:24,
2269
  #: framework/premium/features/content-blocks/hooks-manager.php:279,
2270
- #: framework/premium/features/content-blocks/options/hook.php:301
 
 
 
2271
  msgid "Top"
2272
  msgstr ""
2273
 
2274
- #: framework/premium/extensions/woocommerce-extra/floating-cart.php:34
 
2275
  msgid "Product Title Visibility"
2276
  msgstr ""
2277
 
2278
- #: framework/premium/extensions/woocommerce-extra/floating-cart.php:58
 
2279
  msgid "Floating Cart Visibility"
2280
  msgstr ""
2281
 
2282
- #: framework/premium/extensions/woocommerce-extra/helpers.php:102
 
2283
  msgid "Go to product page"
2284
  msgstr ""
2285
 
2286
- #: framework/premium/extensions/woocommerce-extra/helpers.php:322
 
2287
  msgid "Filter"
2288
  msgstr ""
2289
 
2290
- #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:3
 
2291
  msgid "Off Canvas Filter"
2292
  msgstr ""
2293
 
2294
- #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:14
 
2295
  msgid "Filter Widgets"
2296
  msgstr ""
2297
 
2298
- #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:18
 
2299
  msgid "Widgets"
2300
  msgstr ""
2301
 
2302
- #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:36
 
2303
  msgid "Widgets Vertical Spacing"
2304
  msgstr ""
2305
 
2306
- #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:51
 
2307
  msgid "Widgets Title Font"
2308
  msgstr ""
2309
 
2310
- #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:59
 
2311
  msgid "Widgets Title Font Color"
2312
  msgstr ""
2313
 
2314
- #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:107
 
2315
  msgid "Widgets Font"
2316
  msgstr ""
2317
 
2318
- #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:116
 
2319
  msgid "Widgets Font Color"
2320
  msgstr ""
2321
 
2322
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:138,
 
2323
  #: framework/premium/features/premium-header/items/contacts/options.php:411,
2324
  #: framework/premium/features/premium-header/items/contacts/options.php:454,
2325
- #: framework/premium/features/premium-header/items/contacts/options.php:494
 
 
 
2326
  msgid "Text Initial"
2327
  msgstr ""
2328
 
2329
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:149,
 
2330
  #: framework/premium/features/premium-header/items/contacts/options.php:423,
2331
  #: framework/premium/features/premium-header/items/contacts/options.php:464,
2332
- #: framework/premium/features/premium-header/items/contacts/options.php:504
 
 
 
2333
  msgid "Link Hover"
2334
  msgstr ""
2335
 
2336
- #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:160
 
2337
  msgid "Filter Button & Panel"
2338
  msgstr ""
2339
 
2340
- #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:169
 
2341
  msgid "Filter Icon Type"
2342
  msgstr ""
2343
 
2344
- #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:207
 
2345
  msgid "Filter Button Visibility"
2346
  msgstr ""
2347
 
2348
- #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:230
 
2349
  msgid "Panel Reveal"
2350
  msgstr ""
2351
 
2352
- #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:237
 
2353
  msgid "Left Side"
2354
  msgstr ""
2355
 
2356
- #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:238
 
2357
  msgid "Right Side"
2358
  msgstr ""
2359
 
2360
- #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:243
 
2361
  msgid "Panel Width"
2362
  msgstr ""
2363
 
2364
- #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:284
 
2365
  msgid "Panel Shadow"
2366
  msgstr ""
2367
 
2368
- #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:302
 
2369
  msgid "Panel Background"
2370
  msgstr ""
2371
 
2372
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:334,
2373
- #: framework/features/header/items/account/options.php:958
 
 
2374
  msgid "Close Icon Color"
2375
  msgstr ""
2376
 
2377
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:364,
2378
- #: framework/features/header/items/account/options.php:990
 
 
2379
  msgid "Close Icon Background"
2380
  msgstr ""
2381
 
2382
- #: framework/premium/extensions/woocommerce-extra/readme.php:4
 
2383
  msgid ""
2384
  "After installing and activating the WooCommerce Extra extension you will "
2385
  "have these features:"
2386
  msgstr ""
2387
 
2388
- #: framework/premium/extensions/woocommerce-extra/readme.php:10
 
2389
  msgid "Product Quick View"
2390
  msgstr ""
2391
 
@@ -2393,177 +3437,238 @@ msgstr ""
2393
  #: framework/premium/extensions/woocommerce-extra/readme.php:29,
2394
  #: framework/premium/extensions/woocommerce-extra/readme.php:44,
2395
  #: framework/premium/extensions/woocommerce-extra/readme.php:59,
2396
- #: framework/premium/extensions/woocommerce-extra/readme.php:74
 
 
 
 
 
2397
  msgid "Navigate to %s."
2398
  msgstr ""
2399
 
2400
- #: framework/premium/extensions/woocommerce-extra/readme.php:17
 
2401
  msgid "Customizer ➝ WooCommerce ➝ Product Archives ➝ Card Options ➝ Quick View"
2402
  msgstr ""
2403
 
2404
- #: framework/premium/extensions/woocommerce-extra/readme.php:32
 
2405
  msgid "Customizer ➝ WooCommerce ➝ Single Product ➝ Floating Cart"
2406
  msgstr ""
2407
 
2408
- #: framework/premium/extensions/woocommerce-extra/readme.php:40
 
2409
  msgid "Advanced Gallery & Slider"
2410
  msgstr ""
2411
 
2412
- #: framework/premium/extensions/woocommerce-extra/readme.php:47
 
2413
  msgid "Customizer ➝ WooCommerce ➝ Single Product ➝ Gallery Options"
2414
  msgstr ""
2415
 
2416
- #: framework/premium/extensions/woocommerce-extra/readme.php:55
 
2417
  msgid "Share Box"
2418
  msgstr ""
2419
 
2420
- #: framework/premium/extensions/woocommerce-extra/readme.php:62
 
2421
  msgid "Customizer ➝ WooCommerce ➝ Single Product ➝ Share Box"
2422
  msgstr ""
2423
 
2424
- #: framework/premium/extensions/woocommerce-extra/readme.php:77
 
2425
  msgid "Customizer ➝ WooCommerce ➝ General ➝ Products Wishlist"
2426
  msgstr ""
2427
 
2428
- #: framework/premium/features/content-blocks/hooks-manager.php:11
 
2429
  msgid "WP head"
2430
  msgstr ""
2431
 
2432
  #: framework/premium/features/content-blocks/hooks-manager.php:13,
2433
  #: framework/premium/features/content-blocks/hooks-manager.php:22,
2434
- #: framework/premium/features/content-blocks/hooks-manager.php:32
 
 
 
2435
  msgid "Head"
2436
  msgstr ""
2437
 
2438
- #: framework/premium/features/content-blocks/hooks-manager.php:20
 
2439
  msgid "WP head start"
2440
  msgstr ""
2441
 
2442
- #: framework/premium/features/content-blocks/hooks-manager.php:30
 
2443
  msgid "WP head end"
2444
  msgstr ""
2445
 
2446
- #: framework/premium/features/content-blocks/hooks-manager.php:39
 
2447
  msgid "Header before"
2448
  msgstr ""
2449
 
2450
  #: framework/premium/features/content-blocks/hooks-manager.php:41,
2451
- #: framework/premium/features/content-blocks/hooks-manager.php:50
 
 
2452
  msgid "Header"
2453
  msgstr ""
2454
 
2455
- #: framework/premium/features/content-blocks/hooks-manager.php:48
 
2456
  msgid "Header after"
2457
  msgstr ""
2458
 
2459
- #: framework/premium/features/content-blocks/hooks-manager.php:57
 
2460
  msgid "Desktop top"
2461
  msgstr ""
2462
 
2463
  #: framework/premium/features/content-blocks/hooks-manager.php:59,
2464
  #: framework/premium/features/content-blocks/hooks-manager.php:68,
2465
  #: framework/premium/features/content-blocks/hooks-manager.php:77,
2466
- #: framework/premium/features/content-blocks/hooks-manager.php:86
 
 
 
 
2467
  msgid "Header offcanvas"
2468
  msgstr ""
2469
 
2470
- #: framework/premium/features/content-blocks/hooks-manager.php:66
 
2471
  msgid "Desktop bottom"
2472
  msgstr ""
2473
 
2474
- #: framework/premium/features/content-blocks/hooks-manager.php:75
 
2475
  msgid "Mobile top"
2476
  msgstr ""
2477
 
2478
- #: framework/premium/features/content-blocks/hooks-manager.php:84
 
2479
  msgid "Mobile bottom"
2480
  msgstr ""
2481
 
2482
- #: framework/premium/features/content-blocks/hooks-manager.php:93
 
2483
  msgid "Sidebar before"
2484
  msgstr ""
2485
 
2486
  #: framework/premium/features/content-blocks/hooks-manager.php:94,
2487
  #: framework/premium/features/content-blocks/hooks-manager.php:101,
2488
  #: framework/premium/features/content-blocks/hooks-manager.php:108,
2489
- #: framework/premium/features/content-blocks/hooks-manager.php:115
 
 
 
 
2490
  msgid "Left/Right sidebar"
2491
  msgstr ""
2492
 
2493
- #: framework/premium/features/content-blocks/hooks-manager.php:100
 
2494
  msgid "Sidebar start"
2495
  msgstr ""
2496
 
2497
- #: framework/premium/features/content-blocks/hooks-manager.php:107
 
2498
  msgid "Sidebar end"
2499
  msgstr ""
2500
 
2501
- #: framework/premium/features/content-blocks/hooks-manager.php:114
 
2502
  msgid "Sidebar after"
2503
  msgstr ""
2504
 
2505
- #: framework/premium/features/content-blocks/hooks-manager.php:121
 
2506
  msgid "Dynamic sidebar before"
2507
  msgstr ""
2508
 
2509
  #: framework/premium/features/content-blocks/hooks-manager.php:122,
2510
  #: framework/premium/features/content-blocks/hooks-manager.php:129,
2511
- #: framework/premium/features/content-blocks/hooks-manager.php:137
 
 
 
2512
  msgid "All widget areas"
2513
  msgstr ""
2514
 
2515
- #: framework/premium/features/content-blocks/hooks-manager.php:128
 
2516
  msgid "Dynamic sidebar"
2517
  msgstr ""
2518
 
2519
- #: framework/premium/features/content-blocks/hooks-manager.php:136
 
2520
  msgid "Dynamic sidebar after"
2521
  msgstr ""
2522
 
2523
- #: framework/premium/features/content-blocks/hooks-manager.php:145
 
2524
  msgid "Before section"
2525
  msgstr ""
2526
 
2527
  #: framework/premium/features/content-blocks/hooks-manager.php:146,
2528
  #: framework/premium/features/content-blocks/hooks-manager.php:154,
2529
  #: framework/premium/features/content-blocks/hooks-manager.php:162,
2530
- #: framework/premium/features/content-blocks/hooks-manager.php:170
 
 
 
 
2531
  msgid "Page/post title"
2532
  msgstr ""
2533
 
2534
  #: framework/premium/features/content-blocks/hooks-manager.php:153,
2535
- #: framework/premium/features/content-blocks/hooks-manager.php:223
 
 
2536
  msgid "Before title"
2537
  msgstr ""
2538
 
2539
  #: framework/premium/features/content-blocks/hooks-manager.php:161,
2540
- #: framework/premium/features/content-blocks/hooks-manager.php:230
 
 
2541
  msgid "After title"
2542
  msgstr ""
2543
 
2544
- #: framework/premium/features/content-blocks/hooks-manager.php:169
 
2545
  msgid "After section"
2546
  msgstr ""
2547
 
2548
- #: framework/premium/features/content-blocks/hooks-manager.php:177
 
2549
  msgid "Before content"
2550
  msgstr ""
2551
 
2552
  #: framework/premium/features/content-blocks/hooks-manager.php:185,
2553
- #: framework/premium/features/content-blocks/hooks-manager.php:287
 
 
2554
  msgid "Top content"
2555
  msgstr ""
2556
 
2557
  #: framework/premium/features/content-blocks/hooks-manager.php:193,
2558
- #: framework/premium/features/content-blocks/hooks-manager.php:309
 
 
2559
  msgid "Bottom content"
2560
  msgstr ""
2561
 
2562
- #: framework/premium/features/content-blocks/hooks-manager.php:201
 
2563
  msgid "After content"
2564
  msgstr ""
2565
 
2566
- #: framework/premium/features/content-blocks/hooks-manager.php:209
 
2567
  msgid "Before comments"
2568
  msgstr ""
2569
 
@@ -2572,59 +3677,81 @@ msgstr ""
2572
  #: framework/premium/features/content-blocks/hooks-manager.php:224,
2573
  #: framework/premium/features/content-blocks/hooks-manager.php:231,
2574
  #: framework/premium/features/content-blocks/hooks-manager.php:238,
2575
- #: framework/premium/features/content-blocks/hooks-manager.php:245
 
 
 
 
 
 
2576
  msgid "Comments"
2577
  msgstr ""
2578
 
2579
- #: framework/premium/features/content-blocks/hooks-manager.php:216
 
2580
  msgid "Top comments"
2581
  msgstr ""
2582
 
2583
- #: framework/premium/features/content-blocks/hooks-manager.php:237
 
2584
  msgid "Bottom comments"
2585
  msgstr ""
2586
 
2587
- #: framework/premium/features/content-blocks/hooks-manager.php:244
 
2588
  msgid "After comments"
2589
  msgstr ""
2590
 
2591
  #: framework/premium/features/content-blocks/hooks-manager.php:251,
2592
- #: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:413
 
 
2593
  msgid "Before"
2594
  msgstr ""
2595
 
2596
  #: framework/premium/features/content-blocks/hooks-manager.php:252,
2597
- #: framework/premium/features/content-blocks/hooks-manager.php:259
 
 
2598
  msgid "Loop"
2599
  msgstr ""
2600
 
2601
  #: framework/premium/features/content-blocks/hooks-manager.php:258,
2602
- #: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:420
 
 
2603
  msgid "After"
2604
  msgstr ""
2605
 
2606
- #: framework/premium/features/content-blocks/hooks-manager.php:265
 
2607
  msgid "Start"
2608
  msgstr ""
2609
 
2610
  #: framework/premium/features/content-blocks/hooks-manager.php:266,
2611
- #: framework/premium/features/content-blocks/hooks-manager.php:273
 
 
2612
  msgid "Loop card"
2613
  msgstr ""
2614
 
2615
- #: framework/premium/features/content-blocks/hooks-manager.php:272
 
2616
  msgid "End"
2617
  msgstr ""
2618
 
2619
- #: framework/premium/features/content-blocks/hooks-manager.php:295
 
2620
  msgid "After certain number of blocks"
2621
  msgstr ""
2622
 
2623
- #: framework/premium/features/content-blocks/hooks-manager.php:302
 
2624
  msgid "Before certain number of headings"
2625
  msgstr ""
2626
 
2627
- #: framework/premium/features/content-blocks/hooks-manager.php:325
 
2628
  msgid "Login form start"
2629
  msgstr ""
2630
 
@@ -2637,543 +3764,736 @@ msgstr ""
2637
  #: framework/premium/features/content-blocks/hooks-manager.php:368,
2638
  #: framework/premium/features/content-blocks/hooks-manager.php:375,
2639
  #: framework/premium/features/content-blocks/hooks-manager.php:382,
2640
- #: framework/premium/features/content-blocks/hooks-manager.php:389
 
 
 
 
 
 
 
 
 
 
2641
  msgid "Auth forms"
2642
  msgstr ""
2643
 
2644
- #: framework/premium/features/content-blocks/hooks-manager.php:332
 
2645
  msgid "Login form end"
2646
  msgstr ""
2647
 
2648
- #: framework/premium/features/content-blocks/hooks-manager.php:339
 
2649
  msgid "Login form modal start"
2650
  msgstr ""
2651
 
2652
- #: framework/premium/features/content-blocks/hooks-manager.php:346
 
2653
  msgid "Login form modal end"
2654
  msgstr ""
2655
 
2656
- #: framework/premium/features/content-blocks/hooks-manager.php:353
 
2657
  msgid "Register form start"
2658
  msgstr ""
2659
 
2660
- #: framework/premium/features/content-blocks/hooks-manager.php:360
 
2661
  msgid "Register form end"
2662
  msgstr ""
2663
 
2664
- #: framework/premium/features/content-blocks/hooks-manager.php:367
 
2665
  msgid "Register form modal start"
2666
  msgstr ""
2667
 
2668
- #: framework/premium/features/content-blocks/hooks-manager.php:374
 
2669
  msgid "Register form modal end"
2670
  msgstr ""
2671
 
2672
- #: framework/premium/features/content-blocks/hooks-manager.php:381
 
2673
  msgid "Lost password form modal start"
2674
  msgstr ""
2675
 
2676
- #: framework/premium/features/content-blocks/hooks-manager.php:388
 
2677
  msgid "Lost password form modal end"
2678
  msgstr ""
2679
 
2680
- #: framework/premium/features/content-blocks/hooks-manager.php:396
 
2681
  msgid "Before main content"
2682
  msgstr ""
2683
 
2684
- #: framework/premium/features/content-blocks/hooks-manager.php:402
 
2685
  msgid "After main content"
2686
  msgstr ""
2687
 
2688
- #: framework/premium/features/content-blocks/hooks-manager.php:405
 
2689
  msgid "WooCommerce Global"
2690
  msgstr ""
2691
 
2692
- #: framework/premium/features/content-blocks/hooks-manager.php:410
 
2693
  msgid "Archive description"
2694
  msgstr ""
2695
 
2696
- #: framework/premium/features/content-blocks/hooks-manager.php:415
 
2697
  msgid "Before shop loop"
2698
  msgstr ""
2699
 
2700
- #: framework/premium/features/content-blocks/hooks-manager.php:432
 
2701
  msgid "Before shop loop item title"
2702
  msgstr ""
2703
 
2704
- #: framework/premium/features/content-blocks/hooks-manager.php:437
 
2705
  msgid "After shop loop item title"
2706
  msgstr ""
2707
 
2708
- #: framework/premium/features/content-blocks/hooks-manager.php:442
 
2709
  msgid "Before shop loop item price"
2710
  msgstr ""
2711
 
2712
- #: framework/premium/features/content-blocks/hooks-manager.php:447
 
2713
  msgid "After shop loop item price"
2714
  msgstr ""
2715
 
2716
- #: framework/premium/features/content-blocks/hooks-manager.php:452
 
2717
  msgid "After shop loop"
2718
  msgstr ""
2719
 
2720
- #: framework/premium/features/content-blocks/hooks-manager.php:454
 
2721
  msgid "WooCommerce Archive"
2722
  msgstr ""
2723
 
2724
- #: framework/premium/features/content-blocks/hooks-manager.php:459
 
2725
  msgid "Before single product"
2726
  msgstr ""
2727
 
2728
- #: framework/premium/features/content-blocks/hooks-manager.php:477
 
2729
  msgid "Product meta start"
2730
  msgstr ""
2731
 
2732
- #: framework/premium/features/content-blocks/hooks-manager.php:481
 
2733
  msgid "Product meta end"
2734
  msgstr ""
2735
 
2736
- #: framework/premium/features/content-blocks/hooks-manager.php:485
 
2737
  msgid "Share"
2738
  msgstr ""
2739
 
2740
- #: framework/premium/features/content-blocks/hooks-manager.php:489
 
2741
  msgid "After single product"
2742
  msgstr ""
2743
 
2744
- #: framework/premium/features/content-blocks/hooks-manager.php:495
 
2745
  msgid "Before single product excerpt"
2746
  msgstr ""
2747
 
2748
- #: framework/premium/features/content-blocks/hooks-manager.php:500
 
2749
  msgid "After single product excerpt"
2750
  msgstr ""
2751
 
2752
- #: framework/premium/features/content-blocks/hooks-manager.php:505
 
2753
  msgid "Before single product tabs"
2754
  msgstr ""
2755
 
2756
- #: framework/premium/features/content-blocks/hooks-manager.php:511
 
2757
  msgid "After single product tabs"
2758
  msgstr ""
2759
 
2760
- #: framework/premium/features/content-blocks/hooks-manager.php:515
 
2761
  msgid "WooCommerce Product"
2762
  msgstr ""
2763
 
2764
- #: framework/premium/features/content-blocks/hooks-manager.php:520
 
2765
  msgid "Cart is empty"
2766
  msgstr ""
2767
 
2768
- #: framework/premium/features/content-blocks/hooks-manager.php:524
 
2769
  msgid "Before cart"
2770
  msgstr ""
2771
 
2772
- #: framework/premium/features/content-blocks/hooks-manager.php:528
 
2773
  msgid "Before cart table"
2774
  msgstr ""
2775
 
2776
- #: framework/premium/features/content-blocks/hooks-manager.php:532
 
2777
  msgid "Before cart contents"
2778
  msgstr ""
2779
 
2780
- #: framework/premium/features/content-blocks/hooks-manager.php:536
 
2781
  msgid "Cart contents"
2782
  msgstr ""
2783
 
2784
- #: framework/premium/features/content-blocks/hooks-manager.php:540
 
2785
  msgid "After cart contents"
2786
  msgstr ""
2787
 
2788
- #: framework/premium/features/content-blocks/hooks-manager.php:544
 
2789
  msgid "Cart coupon"
2790
  msgstr ""
2791
 
2792
- #: framework/premium/features/content-blocks/hooks-manager.php:548
 
2793
  msgid "Cart actions"
2794
  msgstr ""
2795
 
2796
- #: framework/premium/features/content-blocks/hooks-manager.php:552
 
2797
  msgid "After cart table"
2798
  msgstr ""
2799
 
2800
- #: framework/premium/features/content-blocks/hooks-manager.php:556
 
2801
  msgid "Cart collaterals"
2802
  msgstr ""
2803
 
2804
- #: framework/premium/features/content-blocks/hooks-manager.php:560
 
2805
  msgid "Before cart totals"
2806
  msgstr ""
2807
 
2808
- #: framework/premium/features/content-blocks/hooks-manager.php:564
 
2809
  msgid "Cart totals before order total"
2810
  msgstr ""
2811
 
2812
- #: framework/premium/features/content-blocks/hooks-manager.php:568
 
2813
  msgid "Cart totals after order total"
2814
  msgstr ""
2815
 
2816
- #: framework/premium/features/content-blocks/hooks-manager.php:572
 
2817
  msgid "Proceed to checkout"
2818
  msgstr ""
2819
 
2820
- #: framework/premium/features/content-blocks/hooks-manager.php:576
 
2821
  msgid "After cart totals"
2822
  msgstr ""
2823
 
2824
- #: framework/premium/features/content-blocks/hooks-manager.php:580
 
2825
  msgid "After cart"
2826
  msgstr ""
2827
 
2828
- #: framework/premium/features/content-blocks/hooks-manager.php:585
 
2829
  msgid "Before Mini Cart"
2830
  msgstr ""
2831
 
2832
- #: framework/premium/features/content-blocks/hooks-manager.php:590
 
2833
  msgid "Before Mini Cart Contents"
2834
  msgstr ""
2835
 
2836
- #: framework/premium/features/content-blocks/hooks-manager.php:595
 
2837
  msgid "Mini Cart Contents"
2838
  msgstr ""
2839
 
2840
- #: framework/premium/features/content-blocks/hooks-manager.php:600
 
2841
  msgid "Widget Shopping Cart Before Buttons"
2842
  msgstr ""
2843
 
2844
- #: framework/premium/features/content-blocks/hooks-manager.php:605
 
2845
  msgid "Widget Shopping Cart After Buttons"
2846
  msgstr ""
2847
 
2848
- #: framework/premium/features/content-blocks/hooks-manager.php:610
 
2849
  msgid "After Mini Cart"
2850
  msgstr ""
2851
 
2852
- #: framework/premium/features/content-blocks/hooks-manager.php:612
 
2853
  msgid "WooCommerce Cart"
2854
  msgstr ""
2855
 
2856
- #: framework/premium/features/content-blocks/hooks-manager.php:618
 
2857
  msgid "Before checkout form"
2858
  msgstr ""
2859
 
2860
- #: framework/premium/features/content-blocks/hooks-manager.php:622
 
2861
  msgid "Before customer details"
2862
  msgstr ""
2863
 
2864
- #: framework/premium/features/content-blocks/hooks-manager.php:626
 
2865
  msgid "After customer details"
2866
  msgstr ""
2867
 
2868
- #: framework/premium/features/content-blocks/hooks-manager.php:630
 
2869
  msgid "Checkout billing"
2870
  msgstr ""
2871
 
2872
- #: framework/premium/features/content-blocks/hooks-manager.php:634
 
2873
  msgid "Before checkout billing form"
2874
  msgstr ""
2875
 
2876
- #: framework/premium/features/content-blocks/hooks-manager.php:638
 
2877
  msgid "After checkout billing form"
2878
  msgstr ""
2879
 
2880
- #: framework/premium/features/content-blocks/hooks-manager.php:642
 
2881
  msgid "Before order notes"
2882
  msgstr ""
2883
 
2884
- #: framework/premium/features/content-blocks/hooks-manager.php:646
 
2885
  msgid "After order notes"
2886
  msgstr ""
2887
 
2888
- #: framework/premium/features/content-blocks/hooks-manager.php:650
 
2889
  msgid "Checkout shipping"
2890
  msgstr ""
2891
 
2892
- #: framework/premium/features/content-blocks/hooks-manager.php:654
 
2893
  msgid "Checkout before order review"
2894
  msgstr ""
2895
 
2896
- #: framework/premium/features/content-blocks/hooks-manager.php:658
 
2897
  msgid "Checkout order review"
2898
  msgstr ""
2899
 
2900
- #: framework/premium/features/content-blocks/hooks-manager.php:662
 
2901
  msgid "Review order before cart contents"
2902
  msgstr ""
2903
 
2904
- #: framework/premium/features/content-blocks/hooks-manager.php:666
 
2905
  msgid "Review order after cart contents"
2906
  msgstr ""
2907
 
2908
- #: framework/premium/features/content-blocks/hooks-manager.php:670
 
2909
  msgid "Review order before order total"
2910
  msgstr ""
2911
 
2912
- #: framework/premium/features/content-blocks/hooks-manager.php:674
 
2913
  msgid "Review order after order total"
2914
  msgstr ""
2915
 
2916
- #: framework/premium/features/content-blocks/hooks-manager.php:678
 
2917
  msgid "Review order before payment"
2918
  msgstr ""
2919
 
2920
- #: framework/premium/features/content-blocks/hooks-manager.php:682
 
2921
  msgid "Review order before submit"
2922
  msgstr ""
2923
 
2924
- #: framework/premium/features/content-blocks/hooks-manager.php:686
 
2925
  msgid "Review order after submit"
2926
  msgstr ""
2927
 
2928
- #: framework/premium/features/content-blocks/hooks-manager.php:690
 
2929
  msgid "Review order after payment"
2930
  msgstr ""
2931
 
2932
- #: framework/premium/features/content-blocks/hooks-manager.php:694
 
2933
  msgid "Checkout after order review"
2934
  msgstr ""
2935
 
2936
- #: framework/premium/features/content-blocks/hooks-manager.php:698
 
2937
  msgid "After checkout form"
2938
  msgstr ""
2939
 
2940
- #: framework/premium/features/content-blocks/hooks-manager.php:701
 
2941
  msgid "WooCommerce Checkout"
2942
  msgstr ""
2943
 
2944
- #: framework/premium/features/content-blocks/hooks-manager.php:707
 
2945
  msgid "Before my account"
2946
  msgstr ""
2947
 
2948
- #: framework/premium/features/content-blocks/hooks-manager.php:711
 
2949
  msgid "Before account navigation"
2950
  msgstr ""
2951
 
2952
- #: framework/premium/features/content-blocks/hooks-manager.php:715
 
2953
  msgid "Account navigation"
2954
  msgstr ""
2955
 
2956
- #: framework/premium/features/content-blocks/hooks-manager.php:719
 
2957
  msgid "After account navigation"
2958
  msgstr ""
2959
 
2960
- #: framework/premium/features/content-blocks/hooks-manager.php:723
 
2961
  msgid "Account content"
2962
  msgstr ""
2963
 
2964
- #: framework/premium/features/content-blocks/hooks-manager.php:727
 
2965
  msgid "Account dashboard"
2966
  msgstr ""
2967
 
2968
- #: framework/premium/features/content-blocks/hooks-manager.php:731
 
2969
  msgid "After my account"
2970
  msgstr ""
2971
 
2972
  #: framework/premium/features/content-blocks/hooks-manager.php:733,
2973
  #: framework/features/header/items/account/options.php:17,
2974
- #: framework/features/header/items/account/options.php:18
 
 
 
2975
  msgid "WooCommerce Account"
2976
  msgstr ""
2977
 
2978
- #: framework/premium/features/content-blocks/hooks-manager.php:739
 
2979
  msgid "WP footer"
2980
  msgstr ""
2981
 
2982
  #: framework/premium/features/content-blocks/hooks-manager.php:740,
2983
  #: framework/premium/features/content-blocks/hooks-manager.php:748,
2984
- #: framework/premium/features/content-blocks/hooks-manager.php:756
 
 
 
2985
  msgid "Footer"
2986
  msgstr ""
2987
 
2988
- #: framework/premium/features/content-blocks/hooks-manager.php:747
 
2989
  msgid "Footer before"
2990
  msgstr ""
2991
 
2992
- #: framework/premium/features/content-blocks/hooks-manager.php:755
 
2993
  msgid "Footer after"
2994
  msgstr ""
2995
 
2996
- #: framework/premium/features/content-blocks/hooks-manager.php:770
 
2997
  msgid "Custom Hook (%s)"
2998
  msgstr ""
2999
 
3000
  #: framework/premium/features/content-blocks/hooks-manager.php:776,
3001
- #: framework/premium/features/content-blocks/options/hook.php:192
 
 
3002
  #: framework/premium/static/js/options/MultipleLocationsSelect.js:87
3003
  msgid "After Block Number"
3004
  msgstr ""
3005
 
3006
  #: framework/premium/features/content-blocks/hooks-manager.php:782,
3007
- #: framework/premium/features/content-blocks/options/hook.php:209
 
 
3008
  #: framework/premium/static/js/options/MultipleLocationsSelect.js:106
3009
  msgid "Before Heading Number"
3010
  msgstr ""
3011
 
3012
  #: framework/extensions/widgets/widgets/ct-about-me/options.php:18,
3013
  #: framework/extensions/widgets/widgets/ct-about-me/view.php:12,
3014
- #: framework/extensions/widgets/widgets/ct-about-me/widget.php:14
 
 
 
3015
  msgid "About me"
3016
  msgstr ""
3017
 
3018
- #: framework/extensions/widgets/widgets/ct-about-me/options.php:31
 
3019
  msgid "Simple"
3020
  msgstr ""
3021
 
3022
- #: framework/extensions/widgets/widgets/ct-about-me/options.php:45
 
3023
  msgid "From WP"
3024
  msgstr ""
3025
 
3026
- #: framework/extensions/widgets/widgets/ct-about-me/options.php:57
 
3027
  msgid "User"
3028
  msgstr ""
3029
 
3030
  #: framework/extensions/widgets/widgets/ct-about-me/options.php:72,
3031
- #: framework/features/header/items/account/options.php:122
 
 
3032
  msgid "Avatar"
3033
  msgstr ""
3034
 
3035
  #: framework/extensions/widgets/widgets/ct-about-me/options.php:84,
3036
  #: framework/extensions/widgets/widgets/ct-about-me/view.php:40,
3037
  #: framework/extensions/widgets/widgets/ct-quote/options.php:35,
3038
- #: framework/extensions/widgets/widgets/ct-quote/view.php:18
 
 
 
 
3039
  msgid "John Doe"
3040
  msgstr ""
3041
 
3042
  #: framework/extensions/widgets/widgets/ct-about-me/options.php:89,
3043
- #: framework/extensions/widgets/widgets/ct-posts/widget.php:14
 
 
3044
  msgid "Description"
3045
  msgstr ""
3046
 
3047
  #: framework/extensions/widgets/widgets/ct-about-me/options.php:100,
3048
  #: framework/extensions/widgets/widgets/ct-about-me/options.php:107,
3049
- #: framework/features/header/items/account/options.php:135
 
 
 
3050
  msgid "Avatar Size"
3051
  msgstr ""
3052
 
3053
  #: framework/extensions/widgets/widgets/ct-about-me/options.php:113,
3054
  #: framework/extensions/widgets/widgets/ct-about-me/options.php:194,
3055
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:265,
3056
- #: framework/extensions/widgets/widgets/ct-socials/options.php:72
 
 
 
 
3057
  msgid "Small"
3058
  msgstr ""
3059
 
3060
  #: framework/extensions/widgets/widgets/ct-about-me/options.php:115,
3061
  #: framework/extensions/widgets/widgets/ct-about-me/options.php:196,
3062
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:267,
3063
- #: framework/extensions/widgets/widgets/ct-socials/options.php:74
 
 
 
 
3064
  msgid "Large"
3065
  msgstr ""
3066
 
3067
- #: framework/extensions/widgets/widgets/ct-about-me/options.php:120
 
3068
  msgid "Avatar Shape"
3069
  msgstr ""
3070
 
3071
  #: framework/extensions/widgets/widgets/ct-about-me/options.php:128,
3072
  #: framework/extensions/widgets/widgets/ct-about-me/options.php:209,
3073
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:280,
3074
- #: framework/extensions/widgets/widgets/ct-socials/options.php:87,
3075
- #: framework/premium/features/premium-header/items/contacts/options.php:278
 
 
 
 
 
3076
  msgid "Rounded"
3077
  msgstr ""
3078
 
3079
  #: framework/extensions/widgets/widgets/ct-about-me/options.php:129,
3080
  #: framework/extensions/widgets/widgets/ct-about-me/options.php:210,
3081
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:281,
3082
- #: framework/extensions/widgets/widgets/ct-socials/options.php:88,
3083
- #: framework/premium/features/premium-header/items/contacts/options.php:279
 
 
 
 
 
3084
  msgid "Square"
3085
  msgstr ""
3086
 
3087
- #: framework/extensions/widgets/widgets/ct-about-me/options.php:151
 
 
 
 
 
 
3088
  msgid "Social Channels"
3089
  msgstr ""
3090
 
3091
  #: framework/extensions/widgets/widgets/ct-about-me/options.php:154,
3092
- #: framework/extensions/widgets/widgets/ct-socials/options.php:27
 
 
3093
  msgid "You can configure social URLs in %s."
3094
  msgstr ""
3095
 
3096
  #: framework/extensions/widgets/widgets/ct-about-me/options.php:201,
3097
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:272,
3098
- #: framework/extensions/widgets/widgets/ct-socials/options.php:79,
3099
- #: framework/premium/features/premium-header/items/contacts/options.php:270
 
 
 
 
3100
  msgid "Icons Shape Type"
3101
  msgstr ""
3102
 
3103
  #: framework/extensions/widgets/widgets/ct-about-me/options.php:220,
3104
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:291,
3105
- #: framework/extensions/widgets/widgets/ct-socials/options.php:98,
3106
- #: framework/premium/features/premium-header/items/contacts/options.php:290
 
 
 
 
3107
  msgid "Shape Fill Type"
3108
  msgstr ""
3109
 
3110
  #: framework/extensions/widgets/widgets/ct-about-me/options.php:227,
3111
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:298,
3112
- #: framework/extensions/widgets/widgets/ct-socials/options.php:105,
3113
- #: framework/premium/features/premium-header/items/contacts/options.php:297
 
 
 
 
3114
  msgid "Solid"
3115
  msgstr ""
3116
 
3117
  #: framework/extensions/widgets/widgets/ct-about-me/options.php:228,
3118
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:299,
3119
- #: framework/extensions/widgets/widgets/ct-socials/options.php:106,
3120
- #: framework/premium/features/premium-header/items/contacts/options.php:298
 
 
 
 
3121
  msgid "Outline"
3122
  msgstr ""
3123
 
3124
- #: framework/extensions/widgets/widgets/ct-about-me/view.php:99
 
3125
  msgid "View Profile"
3126
  msgstr ""
3127
 
3128
- #: framework/extensions/widgets/widgets/ct-about-me/widget.php:13
 
3129
  msgid "About Me"
3130
  msgstr ""
3131
 
3132
  #: framework/extensions/widgets/widgets/ct-advertisement/options.php:18,
3133
  #: framework/extensions/widgets/widgets/ct-advertisement/view.php:12,
3134
  #: framework/extensions/widgets/widgets/ct-advertisement/widget.php:13,
3135
- #: framework/extensions/widgets/widgets/ct-advertisement/widget.php:14
 
 
 
 
3136
  msgid "Advertisement"
3137
  msgstr ""
3138
 
3139
- #: framework/extensions/widgets/widgets/ct-advertisement/options.php:31
 
3140
  msgid "Code"
3141
  msgstr ""
3142
 
3143
- #: framework/extensions/widgets/widgets/ct-advertisement/options.php:32
 
3144
  msgid "Image"
3145
  msgstr ""
3146
 
3147
- #: framework/extensions/widgets/widgets/ct-advertisement/options.php:42
 
3148
  msgid "Ad Code"
3149
  msgstr ""
3150
 
3151
- #: framework/extensions/widgets/widgets/ct-advertisement/options.php:58
 
3152
  msgid "Upload Image"
3153
  msgstr ""
3154
 
3155
  #: framework/extensions/widgets/widgets/ct-advertisement/options.php:62,
3156
- #: framework/extensions/widgets/widgets/ct-quote/options.php:51
 
 
3157
  msgid "Select Image"
3158
  msgstr ""
3159
 
3160
  #: framework/extensions/widgets/widgets/ct-advertisement/options.php:63,
3161
- #: framework/extensions/widgets/widgets/ct-quote/options.php:52
 
 
3162
  msgid "Change Image"
3163
  msgstr ""
3164
 
3165
- #: framework/extensions/widgets/widgets/ct-advertisement/options.php:75
 
 
 
 
 
 
 
 
3166
  msgid "Ad URL"
3167
  msgstr ""
3168
 
3169
  #: framework/extensions/widgets/widgets/ct-advertisement/options.php:83,
3170
- #: framework/extensions/widgets/widgets/ct-contact-info/options.php:308
 
 
3171
  msgid "Open link in new tab"
3172
  msgstr ""
3173
 
3174
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:18,
3175
  #: framework/extensions/widgets/widgets/ct-contact-info/view.php:12,
3176
- #: framework/extensions/widgets/widgets/ct-contact-info/widget.php:13
 
 
 
3177
  msgid "Contact Info"
3178
  msgstr ""
3179
 
@@ -3182,7 +4502,13 @@ msgstr ""
3182
  #: framework/extensions/widgets/widgets/ct-contact-info/view.php:24,
3183
  #: framework/premium/features/premium-header/items/contacts/options.php:20,
3184
  #: framework/premium/features/premium-header/items/contacts/options.php:49,
3185
- #: framework/premium/features/premium-header/items/contacts/view.php:22
 
 
 
 
 
 
3186
  msgid "Address:"
3187
  msgstr ""
3188
 
@@ -3191,7 +4517,13 @@ msgstr ""
3191
  #: framework/extensions/widgets/widgets/ct-contact-info/view.php:31,
3192
  #: framework/premium/features/premium-header/items/contacts/options.php:27,
3193
  #: framework/premium/features/premium-header/items/contacts/options.php:75,
3194
- #: framework/premium/features/premium-header/items/contacts/view.php:29
 
 
 
 
 
 
3195
  msgid "Phone:"
3196
  msgstr ""
3197
 
@@ -3200,12 +4532,20 @@ msgstr ""
3200
  #: framework/extensions/widgets/widgets/ct-contact-info/view.php:39,
3201
  #: framework/premium/features/premium-header/items/contacts/options.php:35,
3202
  #: framework/premium/features/premium-header/items/contacts/options.php:102,
3203
- #: framework/premium/features/premium-header/items/contacts/view.php:37
 
 
 
 
 
 
3204
  msgid "Mobile:"
3205
  msgstr ""
3206
 
3207
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:61,
3208
- #: framework/premium/features/premium-header/items/contacts/options.php:44
 
 
3209
  msgid "Address"
3210
  msgstr ""
3211
 
@@ -3222,303 +4562,430 @@ msgstr ""
3222
  #: framework/premium/features/premium-header/items/contacts/options.php:142,
3223
  #: framework/premium/features/premium-header/items/contacts/options.php:169,
3224
  #: framework/premium/features/premium-header/items/contacts/options.php:196,
3225
- #: framework/premium/features/premium-header/items/contacts/options.php:223
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3226
  msgid "Link (optional)"
3227
  msgstr ""
3228
 
3229
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:145,
3230
- #: framework/premium/features/premium-header/items/contacts/options.php:124
 
 
3231
  msgid "Work Hours"
3232
  msgstr ""
3233
 
3234
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:151,
3235
- #: framework/premium/features/premium-header/items/contacts/options.php:129
 
 
3236
  msgid "Opening hours"
3237
  msgstr ""
3238
 
3239
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:173,
3240
- #: framework/premium/features/premium-header/items/contacts/options.php:151
 
 
3241
  msgid "Fax"
3242
  msgstr ""
3243
 
3244
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:179,
3245
- #: framework/premium/features/premium-header/items/contacts/options.php:156
 
 
3246
  msgid "Fax:"
3247
  msgstr ""
3248
 
3249
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:207,
3250
- #: framework/premium/features/premium-header/items/contacts/options.php:183
 
 
3251
  msgid "Email:"
3252
  msgstr ""
3253
 
3254
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:229,
3255
- #: framework/premium/features/premium-header/items/contacts/options.php:205
 
 
3256
  msgid "Website"
3257
  msgstr ""
3258
 
3259
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:235,
3260
- #: framework/premium/features/premium-header/items/contacts/options.php:210
 
 
3261
  msgid "Website:"
3262
  msgstr ""
3263
 
3264
- #: framework/extensions/widgets/widgets/ct-contact-info/widget.php:14
 
3265
  msgid "Contact info"
3266
  msgstr ""
3267
 
3268
- #: framework/extensions/widgets/widgets/ct-facebook/options.php:22
 
3269
  msgid "Page URL"
3270
  msgstr ""
3271
 
3272
- #: framework/extensions/widgets/widgets/ct-facebook/options.php:30
 
3273
  msgid "Profile Photos"
3274
  msgstr ""
3275
 
3276
- #: framework/extensions/widgets/widgets/ct-facebook/options.php:36
 
3277
  msgid "Timeline"
3278
  msgstr ""
3279
 
3280
- #: framework/extensions/widgets/widgets/ct-facebook/options.php:42
 
3281
  msgid "Cover Photo"
3282
  msgstr ""
3283
 
3284
- #: framework/extensions/widgets/widgets/ct-facebook/options.php:48
 
3285
  msgid "Small Header"
3286
  msgstr ""
3287
 
3288
- #: framework/extensions/widgets/widgets/ct-facebook/widget.php:14
 
3289
  msgid "Facebook like box"
3290
  msgstr ""
3291
 
3292
- #: framework/extensions/widgets/widgets/ct-posts/options.php:103
 
3293
  msgid "Widget Design"
3294
  msgstr ""
3295
 
3296
- #: framework/extensions/widgets/widgets/ct-posts/options.php:108
 
3297
  msgid "Without Thumbnails"
3298
  msgstr ""
3299
 
3300
- #: framework/extensions/widgets/widgets/ct-posts/options.php:109
 
3301
  msgid "Small Thumbnails"
3302
  msgstr ""
3303
 
3304
- #: framework/extensions/widgets/widgets/ct-posts/options.php:110
 
3305
  msgid "Large Thumbnails"
3306
  msgstr ""
3307
 
3308
- #: framework/extensions/widgets/widgets/ct-posts/options.php:111
 
3309
  msgid "First Thumbnail Large"
3310
  msgstr ""
3311
 
3312
- #: framework/extensions/widgets/widgets/ct-posts/options.php:112
 
3313
  msgid "Rounded Thumbnails"
3314
  msgstr ""
3315
 
3316
- #: framework/extensions/widgets/widgets/ct-posts/options.php:113
 
3317
  msgid "Numbered"
3318
  msgstr ""
3319
 
3320
- #: framework/extensions/widgets/widgets/ct-posts/options.php:137
 
3321
  msgid "Post Type"
3322
  msgstr ""
3323
 
3324
- #: framework/extensions/widgets/widgets/ct-posts/options.php:193
 
3325
  msgid "Sort by"
3326
  msgstr ""
3327
 
3328
- #: framework/extensions/widgets/widgets/ct-posts/options.php:199
 
3329
  msgid "Recent"
3330
  msgstr ""
3331
 
3332
- #: framework/extensions/widgets/widgets/ct-posts/options.php:200
 
3333
  msgid "Most Commented"
3334
  msgstr ""
3335
 
3336
- #: framework/extensions/widgets/widgets/ct-posts/options.php:207
 
 
 
 
 
 
3337
  msgid "Order by"
3338
  msgstr ""
3339
 
3340
- #: framework/extensions/widgets/widgets/ct-posts/options.php:213
 
3341
  msgid "1 Week"
3342
  msgstr ""
3343
 
3344
- #: framework/extensions/widgets/widgets/ct-posts/options.php:214
 
3345
  msgid "1 Month"
3346
  msgstr ""
3347
 
3348
- #: framework/extensions/widgets/widgets/ct-posts/options.php:215
 
3349
  msgid "3 Months"
3350
  msgstr ""
3351
 
3352
- #: framework/extensions/widgets/widgets/ct-posts/options.php:216
 
3353
  msgid "6 Months"
3354
  msgstr ""
3355
 
3356
- #: framework/extensions/widgets/widgets/ct-posts/options.php:217
 
3357
  msgid "1 Year"
3358
  msgstr ""
3359
 
3360
- #: framework/extensions/widgets/widgets/ct-posts/options.php:224
 
3361
  msgid "Posts Count"
3362
  msgstr ""
3363
 
3364
- #: framework/extensions/widgets/widgets/ct-posts/options.php:286
 
 
 
 
 
 
 
 
 
 
 
3365
  msgid "Pages Count"
3366
  msgstr ""
3367
 
3368
- #: framework/extensions/widgets/widgets/ct-posts/options.php:297
 
3369
  msgid "Show Date"
3370
  msgstr ""
3371
 
3372
- #: framework/extensions/widgets/widgets/ct-posts/options.php:303
 
3373
  msgid "Show Comments"
3374
  msgstr ""
3375
 
3376
- #: framework/extensions/widgets/widgets/ct-posts/options.php:309
 
3377
  msgid "Show Excerpt"
3378
  msgstr ""
3379
 
3380
- #: framework/extensions/widgets/widgets/ct-posts/options.php:320
 
3381
  msgid "Excerpt Lenght"
3382
  msgstr ""
3383
 
3384
  #: framework/extensions/widgets/widgets/ct-quote/options.php:18,
3385
  #: framework/extensions/widgets/widgets/ct-quote/view.php:12,
3386
  #: framework/extensions/widgets/widgets/ct-quote/widget.php:13,
3387
- #: framework/extensions/widgets/widgets/ct-quote/widget.php:14
 
 
 
 
3388
  msgid "Quote"
3389
  msgstr ""
3390
 
3391
- #: framework/extensions/widgets/widgets/ct-quote/options.php:23
 
3392
  msgid "Quote text"
3393
  msgstr ""
3394
 
3395
- #: framework/extensions/widgets/widgets/ct-quote/options.php:32
 
3396
  msgid "Author Name"
3397
  msgstr ""
3398
 
3399
- #: framework/extensions/widgets/widgets/ct-quote/options.php:41
 
3400
  msgid "Author Label"
3401
  msgstr ""
3402
 
3403
- #: framework/extensions/widgets/widgets/ct-quote/options.php:47
 
3404
  msgid "Author Avatar"
3405
  msgstr ""
3406
 
3407
  #. translators: %s here is the author name
3408
- #: framework/extensions/widgets/widgets/ct-quote/view.php:49
 
 
3409
  msgid "By %s"
3410
  msgstr ""
3411
 
3412
  #: framework/extensions/widgets/widgets/ct-socials/options.php:18,
3413
  #: framework/extensions/widgets/widgets/ct-socials/view.php:11,
3414
- #: framework/extensions/widgets/widgets/ct-socials/widget.php:14
 
 
 
3415
  msgid "Social Icons"
3416
  msgstr ""
3417
 
3418
  #: framework/extensions/widgets/widgets/ct-socials/options.php:59,
3419
- #: framework/premium/features/premium-header/items/contacts/options.php:239
3420
- msgid "Open Links In New Tab"
3421
  msgstr ""
3422
 
3423
- #: framework/extensions/widgets/widgets/ct-socials/widget.php:15
 
 
 
 
 
 
3424
  msgid "Social channels icons"
3425
  msgstr ""
3426
 
3427
- #: framework/features/header/items/account/options.php:4
 
3428
  msgid "Profile Page"
3429
  msgstr ""
3430
 
3431
- #: framework/features/header/items/account/options.php:5
 
3432
  msgid "Dashboard Page"
3433
  msgstr ""
3434
 
3435
  #: framework/features/header/items/account/options.php:7,
3436
- #: framework/features/header/items/account/options.php:13
 
 
3437
  msgid "Custom Link"
3438
  msgstr ""
3439
 
3440
- #: framework/features/header/items/account/options.php:8
 
3441
  msgid "Logout"
3442
  msgstr ""
3443
 
3444
- #: framework/features/header/items/account/options.php:12
 
3445
  msgid "Modal"
3446
  msgstr ""
3447
 
3448
- #: framework/features/header/items/account/options.php:24
 
3449
  msgid "Customizing: Logged in State"
3450
  msgstr ""
3451
 
3452
- #: framework/features/header/items/account/options.php:36
 
3453
  msgid "Logged In Options"
3454
  msgstr ""
3455
 
3456
- #: framework/features/header/items/account/options.php:41
 
3457
  msgid "Logged Out Options"
3458
  msgstr ""
3459
 
3460
  #: framework/features/header/items/account/options.php:61,
3461
- #: framework/features/header/items/account/options.php:311
 
 
3462
  msgid "Account Action"
3463
  msgstr ""
3464
 
3465
- #: framework/features/header/items/account/options.php:74
 
3466
  msgid "Select Menu"
3467
  msgstr ""
3468
 
3469
- #: framework/features/header/items/account/options.php:80
 
3470
  msgid "Select menu..."
3471
  msgstr ""
3472
 
3473
  #. translators: placeholder here means the actual URL.
3474
- #: framework/features/header/items/account/options.php:84
 
 
3475
  msgid "Manage your menu items in the %sMenus screen%s."
3476
  msgstr ""
3477
 
3478
  #: framework/features/header/items/account/options.php:101,
3479
- #: framework/features/header/items/account/options.php:326
 
 
3480
  msgid "Custom Page Link"
3481
  msgstr ""
3482
 
3483
  #: framework/features/header/items/account/options.php:116,
3484
- #: framework/features/header/items/account/options.php:342
 
 
3485
  msgid "Account Image"
3486
  msgstr ""
3487
 
3488
  #: framework/features/header/items/account/options.php:187,
3489
- #: framework/features/header/items/account/options.php:393
 
 
3490
  msgid "Type 5"
3491
  msgstr ""
3492
 
3493
  #: framework/features/header/items/account/options.php:192,
3494
- #: framework/features/header/items/account/options.php:398
 
 
3495
  msgid "Type 6"
3496
  msgstr ""
3497
 
3498
- #: framework/features/header/items/account/options.php:269
 
3499
  msgid "Label Type"
3500
  msgstr ""
3501
 
3502
  #: framework/features/header/items/account/options.php:288,
3503
  #: framework/features/header/items/account/options.php:475,
3504
- #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:105
 
 
 
3505
  msgid "Label Text"
3506
  msgstr ""
3507
 
3508
  #: framework/features/header/items/account/options.php:293,
3509
- #: framework/features/header/items/account/views/login.php:67
 
 
3510
  msgid "My Account"
3511
  msgstr ""
3512
 
3513
  #: framework/features/header/items/account/options.php:503,
3514
- #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:135
 
 
3515
  msgid "Label Font"
3516
  msgstr ""
3517
 
3518
  #: framework/features/header/items/account/options.php:514,
3519
  #: framework/features/header/items/account/options.php:543,
3520
  #: framework/features/header/items/account/options.php:575,
3521
- #: framework/features/header/items/account/options.php:605
 
 
 
 
3522
  msgid "Label Color"
3523
  msgstr ""
3524
 
@@ -3534,7 +5001,20 @@ msgstr ""
3534
  #: framework/premium/features/premium-header/items/search-input/options.php:189,
3535
  #: framework/premium/features/premium-header/items/search-input/options.php:319,
3536
  #: framework/premium/features/premium-header/items/search-input/options.php:449,
3537
- #: framework/premium/features/premium-header/items/search-input/options.php:585
 
 
 
 
 
 
 
 
 
 
 
 
 
3538
  msgid "Default State"
3539
  msgstr ""
3540
 
@@ -3550,7 +5030,20 @@ msgstr ""
3550
  #: framework/premium/features/premium-header/items/search-input/options.php:194,
3551
  #: framework/premium/features/premium-header/items/search-input/options.php:324,
3552
  #: framework/premium/features/premium-header/items/search-input/options.php:454,
3553
- #: framework/premium/features/premium-header/items/search-input/options.php:590
 
 
 
 
 
 
 
 
 
 
 
 
 
3554
  msgid "Transparent State"
3555
  msgstr ""
3556
 
@@ -3566,15 +5059,30 @@ msgstr ""
3566
  #: framework/premium/features/premium-header/items/search-input/options.php:203,
3567
  #: framework/premium/features/premium-header/items/search-input/options.php:333,
3568
  #: framework/premium/features/premium-header/items/search-input/options.php:463,
3569
- #: framework/premium/features/premium-header/items/search-input/options.php:599
 
 
 
 
 
 
 
 
 
 
 
 
 
3570
  msgid "Sticky State"
3571
  msgstr ""
3572
 
3573
- #: framework/features/header/items/account/options.php:785
 
3574
  msgid "Item Margin"
3575
  msgstr ""
3576
 
3577
- #: framework/features/header/items/account/options.php:804
 
3578
  msgid "Modal Options"
3579
  msgstr ""
3580
 
@@ -3582,7 +5090,12 @@ msgstr ""
3582
  #: framework/premium/features/premium-header/items/search-input/options.php:184,
3583
  #: framework/premium/features/premium-header/items/search-input/options.php:213,
3584
  #: framework/premium/features/premium-header/items/search-input/options.php:245,
3585
- #: framework/premium/features/premium-header/items/search-input/options.php:275
 
 
 
 
 
3586
  msgid "Input Font Color"
3587
  msgstr ""
3588
 
@@ -3600,7 +5113,22 @@ msgstr ""
3600
  #: framework/premium/features/premium-header/items/search-input/options.php:558,
3601
  #: framework/premium/features/premium-header/items/search-input/options.php:631,
3602
  #: framework/premium/features/premium-header/items/search-input/options.php:661,
3603
- #: framework/premium/features/premium-header/items/search-input/options.php:691
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3604
  msgid "Focus"
3605
  msgstr ""
3606
 
@@ -3608,7 +5136,12 @@ msgstr ""
3608
  #: framework/premium/features/premium-header/items/search-input/options.php:444,
3609
  #: framework/premium/features/premium-header/items/search-input/options.php:473,
3610
  #: framework/premium/features/premium-header/items/search-input/options.php:505,
3611
- #: framework/premium/features/premium-header/items/search-input/options.php:535
 
 
 
 
 
3612
  msgid "Input Border Color"
3613
  msgstr ""
3614
 
@@ -3616,23 +5149,32 @@ msgstr ""
3616
  #: framework/premium/features/premium-header/items/search-input/options.php:580,
3617
  #: framework/premium/features/premium-header/items/search-input/options.php:608,
3618
  #: framework/premium/features/premium-header/items/search-input/options.php:638,
3619
- #: framework/premium/features/premium-header/items/search-input/options.php:668
 
 
 
 
 
3620
  msgid "Input Background Color"
3621
  msgstr ""
3622
 
3623
- #: framework/features/header/items/account/options.php:939
 
3624
  msgid "Modal Shadow"
3625
  msgstr ""
3626
 
3627
- #: framework/features/header/items/account/options.php:1021
 
3628
  msgid "Modal Background"
3629
  msgstr ""
3630
 
3631
- #: framework/features/header/items/account/options.php:1036
 
3632
  msgid "Modal Backdrop"
3633
  msgstr ""
3634
 
3635
- #: framework/features/header/items/account/options.php:1066
 
3636
  msgid "Element Visibility"
3637
  msgstr ""
3638
 
@@ -3641,127 +5183,167 @@ msgstr ""
3641
  #: framework/features/header/items/account/view.php:20,
3642
  #: framework/features/header/items/account/view.php:23,
3643
  #: framework/features/header/items/account/view.php:25,
3644
- #: framework/features/header/items/account/view.php:27
 
 
 
 
 
 
3645
  msgid "Account header icon"
3646
  msgstr ""
3647
 
3648
- #: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:363
 
3649
  msgid "You have no %s fields declared for this custom post type."
3650
  msgstr ""
3651
 
3652
- #: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:375,
3653
- #: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:764,
3654
- #: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:775
 
 
 
3655
  msgid "Field"
3656
  msgstr ""
3657
 
3658
- #: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:387,
3659
- #: framework/premium/features/premium-header/items/language-switcher/options.php:60
 
 
3660
  msgid "Label"
3661
  msgstr ""
3662
 
3663
- #: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:427
 
3664
  msgid "Fallback"
3665
  msgstr ""
3666
 
3667
- #: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:435
 
3668
  msgid "%s Field"
3669
  msgstr ""
3670
 
3671
- #: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:762
 
3672
  msgid "%s %s Font"
3673
  msgstr ""
3674
 
3675
- #: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:773
 
3676
  msgid "%s %s Color"
3677
  msgstr ""
3678
 
3679
  #: framework/premium/extensions/post-types-extra/includes/estimated-read-time.php:9,
3680
- #: framework/premium/extensions/post-types-extra/includes/estimated-read-time.php:37
 
 
3681
  msgid "Read Time"
3682
  msgstr ""
3683
 
3684
- #: framework/premium/extensions/post-types-extra/includes/estimated-read-time.php:75
 
3685
  msgid " min"
3686
  msgstr ""
3687
 
3688
- #: framework/premium/extensions/post-types-extra/includes/estimated-read-time.php:78
 
3689
  msgid " mins"
3690
  msgstr ""
3691
 
3692
- #: framework/premium/extensions/post-types-extra/includes/filtering.php:282
 
3693
  msgid "All"
3694
  msgstr ""
3695
 
3696
- #: framework/premium/extensions/post-types-extra/includes/taxonomies-options.php:129
 
3697
  msgid "Featured Image"
3698
  msgstr ""
3699
 
3700
- #: framework/premium/extensions/post-types-extra/includes/taxonomies-options.php:134
 
3701
  msgid "Accent Color"
3702
  msgstr ""
3703
 
3704
  #: framework/premium/extensions/shortcuts/views/bar.php:31,
3705
- #: framework/premium/extensions/woocommerce-extra/includes/wish-list.php:137
 
 
3706
  msgid "Wish List"
3707
  msgstr ""
3708
 
3709
  #: framework/premium/extensions/woocommerce-extra/includes/wish-list-helpers.php:42,
3710
- #: framework/premium/extensions/woocommerce-extra/includes/wish-list-helpers.php:50
 
 
3711
  msgid "Add to wishlist"
3712
  msgstr ""
3713
 
3714
- #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:9
 
3715
  msgid "Select a page"
3716
  msgstr ""
3717
 
3718
- #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:18
 
3719
  msgid "Products Wishlist"
3720
  msgstr ""
3721
 
3722
- #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:28
 
3723
  msgid "Show Wishlist For"
3724
  msgstr ""
3725
 
3726
- #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:34
 
3727
  msgid "Logged Users"
3728
  msgstr ""
3729
 
3730
- #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:35
 
3731
  msgid "All Users"
3732
  msgstr ""
3733
 
3734
- #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:45
 
3735
  msgid "Wish List Page"
3736
  msgstr ""
3737
 
3738
- #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:51
 
3739
  msgid ""
3740
  "The page you select here will display the wish list for your logged out "
3741
  "users."
3742
  msgstr ""
3743
 
3744
- #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:60
 
3745
  msgid "Display Wishlist Button On"
3746
  msgstr ""
3747
 
3748
- #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:64
 
3749
  msgid "Archive Pages"
3750
  msgstr ""
3751
 
3752
- #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:73
 
3753
  msgid "Single Product Pages"
3754
  msgstr ""
3755
 
3756
- #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:82
 
3757
  msgid "Quick View Modal"
3758
  msgstr ""
3759
 
3760
- #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:95
 
3761
  msgid "AJAX Add To Cart"
3762
  msgstr ""
3763
 
3764
- #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:131
 
3765
  msgid "Archive Button"
3766
  msgstr ""
3767
 
@@ -3773,386 +5355,514 @@ msgstr ""
3773
  #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:243,
3774
  #: framework/premium/features/premium-header/items/language-switcher/options.php:254,
3775
  #: framework/premium/features/premium-header/items/language-switcher/options.php:284,
3776
- #: framework/premium/features/premium-header/items/language-switcher/options.php:313
 
 
 
 
 
 
 
 
 
3777
  msgid "Hover/Active"
3778
  msgstr ""
3779
 
3780
- #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:208
 
3781
  msgid "Single Product Button"
3782
  msgstr ""
3783
 
3784
- #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:284
 
3785
  msgid "Quick View Modal Button"
3786
  msgstr ""
3787
 
3788
- #: framework/premium/extensions/woocommerce-extra/includes/wish-list-table.php:152
 
3789
  msgid "You don't have any products in your wish list yet."
3790
  msgstr ""
3791
 
3792
- #: framework/premium/extensions/woocommerce-extra/includes/wish-list-table.php:13
 
3793
  msgid "Product"
3794
  msgstr ""
3795
 
3796
- #: framework/premium/extensions/woocommerce-extra/includes/wish-list-table.php:14
 
3797
  msgid "Add to cart"
3798
  msgstr ""
3799
 
3800
  #: framework/premium/extensions/woocommerce-extra/includes/wish-list-table.php:89,
3801
- #: framework/premium/extensions/woocommerce-extra/includes/wish-list-table.php:113
 
 
3802
  msgid "Remove Product"
3803
  msgstr ""
3804
 
3805
- #: framework/premium/extensions/woocommerce-extra/includes/woo-import-export.php:34
 
3806
  msgid "Blocksy Variation Images"
3807
  msgstr ""
3808
 
3809
  #: framework/premium/features/content-blocks/options/404.php:19,
3810
  #: framework/premium/features/content-blocks/options/header.php:19,
3811
  #: framework/premium/features/content-blocks/options/hook.php:19,
3812
- #: framework/premium/features/content-blocks/options/popup.php:25
 
 
 
 
3813
  msgid "Other"
3814
  msgstr ""
3815
 
3816
  #: framework/premium/features/content-blocks/options/404.php:33,
3817
  #: framework/premium/features/content-blocks/options/header.php:35,
3818
  #: framework/premium/features/content-blocks/options/hook.php:35,
3819
- #: framework/premium/features/content-blocks/options/popup.php:42
 
 
 
 
3820
  msgid "Container Structure"
3821
  msgstr ""
3822
 
3823
  #: framework/premium/features/content-blocks/options/404.php:59,
3824
  #: framework/premium/features/content-blocks/options/header.php:63,
3825
- #: framework/premium/features/content-blocks/options/hook.php:63
 
 
 
3826
  msgid "Narrow Width"
3827
  msgstr ""
3828
 
3829
  #: framework/premium/features/content-blocks/options/404.php:64,
3830
  #: framework/premium/features/content-blocks/options/header.php:68,
3831
- #: framework/premium/features/content-blocks/options/hook.php:68
 
 
 
3832
  msgid "Normal Width"
3833
  msgstr ""
3834
 
3835
  #: framework/premium/features/content-blocks/options/404.php:70,
3836
  #: framework/premium/features/content-blocks/options/header.php:74,
3837
- #: framework/premium/features/content-blocks/options/hook.php:74
 
 
 
3838
  msgid "Content Area Style"
3839
  msgstr ""
3840
 
3841
  #: framework/premium/features/content-blocks/options/404.php:84,
3842
  #: framework/premium/features/content-blocks/options/header.php:88,
3843
- #: framework/premium/features/content-blocks/options/hook.php:88
 
 
 
3844
  msgid "Content Area Vertical Spacing"
3845
  msgstr ""
3846
 
3847
  #: framework/premium/features/content-blocks/options/404.php:95,
3848
  #: framework/premium/features/content-blocks/options/header.php:99,
3849
- #: framework/premium/features/content-blocks/options/hook.php:99
 
 
 
3850
  msgid "Top & Bottom"
3851
  msgstr ""
3852
 
3853
  #: framework/premium/features/content-blocks/options/404.php:98,
3854
  #: framework/premium/features/content-blocks/options/header.php:102,
3855
- #: framework/premium/features/content-blocks/options/hook.php:102
 
 
 
3856
  msgid "Only Top"
3857
  msgstr ""
3858
 
3859
  #: framework/premium/features/content-blocks/options/404.php:101,
3860
  #: framework/premium/features/content-blocks/options/header.php:105,
3861
- #: framework/premium/features/content-blocks/options/hook.php:105
 
 
 
3862
  msgid "Only Bottom"
3863
  msgstr ""
3864
 
3865
- #: framework/premium/features/content-blocks/options/hook.php:143
 
3866
  msgid "Location & Priority"
3867
  msgstr ""
3868
 
3869
- #: framework/premium/features/content-blocks/options/hook.php:153
 
3870
  #: framework/premium/static/js/options/MultipleLocationsSelect.js:47
3871
  msgid "Select location"
3872
  msgstr ""
3873
 
3874
- #: framework/premium/features/content-blocks/options/hook.php:176
 
3875
  #: framework/premium/static/js/options/MultipleLocationsSelect.js:72
3876
  msgid "Custom Hook"
3877
  msgstr ""
3878
 
3879
  #: framework/premium/features/content-blocks/options/hook.php:251,
3880
- #: framework/premium/features/content-blocks/options/popup.php:296
 
 
3881
  msgid "Expiration Date/Time"
3882
  msgstr ""
3883
 
3884
- #: framework/premium/features/content-blocks/options/hook.php:278
 
3885
  msgid "Block Position"
3886
  msgstr ""
3887
 
3888
- #: framework/premium/features/content-blocks/options/hook.php:285
 
3889
  msgid "Fixed"
3890
  msgstr ""
3891
 
3892
- #: framework/premium/features/content-blocks/options/hook.php:295
 
3893
  msgid "Location"
3894
  msgstr ""
3895
 
3896
- #: framework/premium/features/content-blocks/options/popup.php:50
 
3897
  msgid "Popup Position"
3898
  msgstr ""
3899
 
3900
- #: framework/premium/features/content-blocks/options/popup.php:57
 
3901
  msgid "Popup Size"
3902
  msgstr ""
3903
 
3904
- #: framework/premium/features/content-blocks/options/popup.php:63
 
3905
  msgid "Small Size"
3906
  msgstr ""
3907
 
3908
- #: framework/premium/features/content-blocks/options/popup.php:64
 
3909
  msgid "Medium Size"
3910
  msgstr ""
3911
 
3912
- #: framework/premium/features/content-blocks/options/popup.php:65
 
3913
  msgid "Large Size"
3914
  msgstr ""
3915
 
3916
- #: framework/premium/features/content-blocks/options/popup.php:66
 
3917
  msgid "Custom Size"
3918
  msgstr ""
3919
 
3920
- #: framework/premium/features/content-blocks/options/popup.php:76
 
3921
  msgid "Max Width"
3922
  msgstr ""
3923
 
3924
- #: framework/premium/features/content-blocks/options/popup.php:92
 
3925
  msgid "Max Height"
3926
  msgstr ""
3927
 
3928
- #: framework/premium/features/content-blocks/options/popup.php:111
 
3929
  msgid "Popup Animation"
3930
  msgstr ""
3931
 
3932
- #: framework/premium/features/content-blocks/options/popup.php:117
 
3933
  msgid "Fade in fade out"
3934
  msgstr ""
3935
 
3936
- #: framework/premium/features/content-blocks/options/popup.php:118
 
3937
  msgid "Zoom in zoom out"
3938
  msgstr ""
3939
 
3940
- #: framework/premium/features/content-blocks/options/popup.php:119
 
3941
  msgid "Slide in from left"
3942
  msgstr ""
3943
 
3944
- #: framework/premium/features/content-blocks/options/popup.php:120
 
3945
  msgid "Slide in from right"
3946
  msgstr ""
3947
 
3948
- #: framework/premium/features/content-blocks/options/popup.php:121
 
3949
  msgid "Slide in from top"
3950
  msgstr ""
3951
 
3952
- #: framework/premium/features/content-blocks/options/popup.php:122
 
3953
  msgid "Slide in from bottom"
3954
  msgstr ""
3955
 
3956
- #: framework/premium/features/content-blocks/options/popup.php:127
 
3957
  msgid "Animation Speed"
3958
  msgstr ""
3959
 
3960
- #: framework/premium/features/content-blocks/options/popup.php:144
 
3961
  msgid "Entrance Value"
3962
  msgstr ""
3963
 
3964
- #: framework/premium/features/content-blocks/options/popup.php:156
 
3965
  msgid "Trigger Condition"
3966
  msgstr ""
3967
 
3968
- #: framework/premium/features/content-blocks/options/popup.php:181
 
3969
  msgid "Element Class"
3970
  msgstr ""
3971
 
3972
- #: framework/premium/features/content-blocks/options/popup.php:188
 
3973
  msgid "Separate each class by comma if you have multiple elements."
3974
  msgstr ""
3975
 
3976
- #: framework/premium/features/content-blocks/options/popup.php:200
 
3977
  msgid "Scroll Direction"
3978
  msgstr ""
3979
 
3980
- #: framework/premium/features/content-blocks/options/popup.php:205
 
3981
  msgid "Scroll Down"
3982
  msgstr ""
3983
 
3984
- #: framework/premium/features/content-blocks/options/popup.php:206
 
3985
  msgid "Scroll Up"
3986
  msgstr ""
3987
 
3988
- #: framework/premium/features/content-blocks/options/popup.php:211
 
3989
  msgid "Scroll Distance"
3990
  msgstr ""
3991
 
3992
- #: framework/premium/features/content-blocks/options/popup.php:221
 
3993
  msgid "Set the scroll distance till the popup block will appear."
3994
  msgstr ""
3995
 
3996
- #: framework/premium/features/content-blocks/options/popup.php:233
 
3997
  msgid "Inactivity Time"
3998
  msgstr ""
3999
 
4000
- #: framework/premium/features/content-blocks/options/popup.php:239
 
4001
  msgid "Set the inactivity time (in seconds) till the popup block will appear."
4002
  msgstr ""
4003
 
4004
- #: framework/premium/features/content-blocks/options/popup.php:251
 
4005
  msgid "After X Time"
4006
  msgstr ""
4007
 
4008
- #: framework/premium/features/content-blocks/options/popup.php:257
 
4009
  msgid "Set after how much time (in seconds) the popup block will appear."
4010
  msgstr ""
4011
 
4012
- #: framework/premium/features/content-blocks/options/popup.php:269
 
4013
  msgid "Trigger Popup Only Once"
4014
  msgstr ""
4015
 
4016
- #: framework/premium/features/content-blocks/options/popup.php:272
 
4017
  msgid ""
4018
  "If the close button is clicked the popup won't be triggered anymore for the "
4019
  "current visitor."
4020
  msgstr ""
4021
 
4022
- #: framework/premium/features/content-blocks/options/popup.php:347
 
4023
  msgid "Padding"
4024
  msgstr ""
4025
 
4026
  #: framework/premium/features/content-blocks/options/popup.php:357,
4027
  #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:266,
4028
- #: framework/premium/features/premium-header/items/language-switcher/options.php:465
 
 
 
4029
  msgid "Border Radius"
4030
  msgstr ""
4031
 
4032
- #: framework/premium/features/content-blocks/options/popup.php:386
 
4033
  msgid "Popup Offset"
4034
  msgstr ""
4035
 
4036
- #: framework/premium/features/content-blocks/options/popup.php:396
 
4037
  msgid "Container Overflow"
4038
  msgstr ""
4039
 
4040
- #: framework/premium/features/content-blocks/options/popup.php:403
 
4041
  msgid "Hidden"
4042
  msgstr ""
4043
 
4044
- #: framework/premium/features/content-blocks/options/popup.php:404
 
4045
  msgid "Visible"
4046
  msgstr ""
4047
 
4048
- #: framework/premium/features/content-blocks/options/popup.php:405
 
4049
  msgid "Scroll"
4050
  msgstr ""
4051
 
4052
- #: framework/premium/features/content-blocks/options/popup.php:407
 
4053
  msgid ""
4054
  "Control what happens to the content that is too big to fit into the popup."
4055
  msgstr ""
4056
 
4057
- #: framework/premium/features/content-blocks/options/popup.php:411
 
4058
  msgid "Close Button"
4059
  msgstr ""
4060
 
4061
- #: framework/premium/features/content-blocks/options/popup.php:419
 
4062
  msgid "Inside"
4063
  msgstr ""
4064
 
4065
- #: framework/premium/features/content-blocks/options/popup.php:420
 
4066
  msgid "Outside"
4067
  msgstr ""
4068
 
4069
- #: framework/premium/features/content-blocks/options/popup.php:494
 
4070
  msgid "Popup Background"
4071
  msgstr ""
4072
 
4073
- #: framework/premium/features/content-blocks/options/popup.php:508
 
4074
  msgid "Popup Backdrop Background"
4075
  msgstr ""
4076
 
4077
- #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:25
 
4078
  msgid "Posts Filter"
4079
  msgstr ""
4080
 
4081
- #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:60
 
4082
  msgid "Filtering Behavior"
4083
  msgstr ""
4084
 
4085
- #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:68
 
4086
  msgid "Instant Reload"
4087
  msgstr ""
4088
 
4089
- #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:69
 
4090
  msgid "Page Reload"
4091
  msgstr ""
4092
 
4093
- #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:92
 
4094
  msgid "Items Horizontal Spacing"
4095
  msgstr ""
4096
 
4097
  #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:104,
4098
- #: framework/premium/features/premium-header/items/language-switcher/options.php:360
 
 
4099
  msgid "Items Vertical Spacing"
4100
  msgstr ""
4101
 
4102
- #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:116
 
4103
  msgid "Container Bottom Spacing"
4104
  msgstr ""
4105
 
4106
- #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:128
 
4107
  msgid "Horizontal Alignment"
4108
  msgstr ""
4109
 
4110
- #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:251
 
4111
  msgid "Button Padding"
4112
  msgstr ""
4113
 
4114
- #: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:4
 
4115
  msgid "Read Progress"
4116
  msgstr ""
4117
 
4118
- #: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:24
 
4119
  msgid "Indicator Height"
4120
  msgstr ""
4121
 
4122
- #: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:34
 
4123
  msgid "Auto Hide"
4124
  msgstr ""
4125
 
4126
- #: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:38
 
4127
  msgid ""
4128
  "Automatically hide the read progress bar once you arrive at the bottom of "
4129
  "the article."
4130
  msgstr ""
4131
 
4132
- #: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:71
 
4133
  msgid "Main Color"
4134
  msgstr ""
4135
 
4136
- #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:49
 
4137
  msgid "Icon Badge"
4138
  msgstr ""
4139
 
4140
- #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:146
 
4141
  msgid "Label Font Color"
4142
  msgstr ""
4143
 
4144
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/view.php:21,
4145
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/view.php:24,
4146
- #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/view.php:30
 
 
 
4147
  msgid "Wishlist header icon"
4148
  msgstr ""
4149
 
4150
- #: framework/premium/features/premium-header/items/contacts/config.php:4
 
4151
  msgid "Contacts"
4152
  msgstr ""
4153
 
 
 
 
 
 
4154
  #: framework/premium/features/premium-header/items/contacts/options.php:259,
4155
- #: framework/premium/features/premium-header/items/language-switcher/options.php:95
 
 
4156
  msgid "Items Spacing"
4157
  msgstr ""
4158
 
@@ -4160,114 +5870,148 @@ msgstr ""
4160
  #: framework/premium/features/premium-header/items/divider/options.php:107,
4161
  #: framework/premium/features/premium-header/items/divider/options.php:126,
4162
  #: framework/premium/features/premium-header/items/language-switcher/options.php:323,
4163
- #: framework/premium/features/premium-header/items/search-input/options.php:724
 
 
 
 
 
4164
  msgid "Margin"
4165
  msgstr ""
4166
 
4167
- #: framework/premium/features/premium-header/items/dark-mode-switcher/config.php:5
 
4168
  msgid "Dark Mode"
4169
  msgstr ""
4170
 
4171
- #: framework/premium/features/premium-header/items/divider/config.php:4
 
4172
  msgid "Divider"
4173
  msgstr ""
4174
 
4175
- #: framework/premium/features/premium-header/items/divider/options.php:6
 
4176
  msgid "Size"
4177
  msgstr ""
4178
 
4179
- #: framework/premium/features/premium-header/items/language-switcher/config.php:6
 
4180
  msgid "Languages"
4181
  msgstr ""
4182
 
4183
- #: framework/premium/features/premium-header/items/language-switcher/options.php:17
 
4184
  msgid "Top Level Options"
4185
  msgstr ""
4186
 
4187
- #: framework/premium/features/premium-header/items/language-switcher/options.php:37
 
4188
  msgid "Dropdown"
4189
  msgstr ""
4190
 
4191
- #: framework/premium/features/premium-header/items/language-switcher/options.php:47
 
4192
  msgid "Display"
4193
  msgstr ""
4194
 
4195
- #: framework/premium/features/premium-header/items/language-switcher/options.php:59
 
4196
  msgid "Flag"
4197
  msgstr ""
4198
 
4199
- #: framework/premium/features/premium-header/items/language-switcher/options.php:73
 
4200
  msgid "Label Style"
4201
  msgstr ""
4202
 
4203
- #: framework/premium/features/premium-header/items/language-switcher/options.php:79
 
4204
  msgid "Long"
4205
  msgstr ""
4206
 
4207
- #: framework/premium/features/premium-header/items/language-switcher/options.php:80
 
4208
  msgid "Short"
4209
  msgstr ""
4210
 
4211
- #: framework/premium/features/premium-header/items/language-switcher/options.php:112
 
4212
  msgid "Hide Current Language"
4213
  msgstr ""
4214
 
4215
- #: framework/premium/features/premium-header/items/language-switcher/options.php:343
 
4216
  msgid "Dropdown Options"
4217
  msgstr ""
4218
 
4219
- #: framework/premium/features/premium-header/items/language-switcher/options.php:352
 
4220
  msgid "Dropdown Top Offset"
4221
  msgstr ""
4222
 
4223
- #: framework/premium/features/premium-header/items/search-input/config.php:4
 
4224
  msgid "Search Box"
4225
  msgstr ""
4226
 
4227
- #: framework/premium/features/premium-header/items/search-input/options.php:42
 
4228
  msgid "Placeholder Text"
4229
  msgstr ""
4230
 
4231
- #: framework/premium/features/premium-header/items/search-input/options.php:52
 
4232
  msgid "Input Maximum Width"
4233
  msgstr ""
4234
 
4235
- #: framework/premium/features/premium-header/items/search-input/options.php:64
 
4236
  msgid "Input Height"
4237
  msgstr ""
4238
 
4239
- #: framework/premium/features/premium-header/items/search-input/options.php:79
 
4240
  msgid "Live Results"
4241
  msgstr ""
4242
 
4243
- #: framework/premium/features/premium-header/items/search-input/options.php:90
 
4244
  msgid "Live Results Images"
4245
  msgstr ""
4246
 
4247
- #: framework/premium/features/premium-header/items/search-input/options.php:101
 
4248
  msgid "Search Through Criteria"
4249
  msgstr ""
4250
 
4251
- #: framework/premium/features/premium-header/items/search-input/options.php:102
 
4252
  msgid "Chose in which post types do you want to perform searches."
4253
  msgstr ""
4254
 
4255
  #: framework/premium/features/premium-header/items/search-input/options.php:314,
4256
  #: framework/premium/features/premium-header/items/search-input/options.php:343,
4257
  #: framework/premium/features/premium-header/items/search-input/options.php:375,
4258
- #: framework/premium/features/premium-header/items/search-input/options.php:405
 
 
 
 
4259
  msgid "Input Icon Color"
4260
  msgstr ""
4261
 
4262
- #: framework/premium/features/premium-header/items/search-input/options.php:744
 
4263
  msgid "Dropdown Text Color"
4264
  msgstr ""
4265
 
4266
- #: framework/premium/features/premium-header/items/search-input/options.php:775
 
4267
  msgid "Dropdown Background"
4268
  msgstr ""
4269
 
4270
- #: framework/premium/features/premium-header/items/widget-area-1/config.php:4
 
4271
  msgid "Widget Area"
4272
  msgstr ""
4273
 
19
  "x-generator: babel-plugin-wp-i18n\n"
20
 
21
  #. translators: %s: PHP version
22
+ #. translators: %s: PHP version
23
+ #: blocksy-companion.php:137, build_tmp/build/blocksy-companion.php:137
24
  msgid "Blocksy requires PHP version %s+, plugin is currently NOT RUNNING."
25
  msgstr ""
26
 
27
  #. translators: %s: WordPress version
28
+ #. translators: %s: WordPress version
29
+ #: blocksy-companion.php:148, build_tmp/build/blocksy-companion.php:148
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/config.php:4,
51
  #: framework/premium/extensions/code-snippets/extension.php:23,
52
  #: framework/premium/extensions/code-snippets/extension.php:63,
53
  #: framework/premium/extensions/code-snippets/extension.php:99,
54
+ #: framework/premium/extensions/code-snippets/readme.php:38,
55
+ #: build_tmp/build/framework/premium/extensions/code-snippets/config.php:4,
56
+ #: build_tmp/build/framework/premium/extensions/code-snippets/extension.php:23,
57
+ #: build_tmp/build/framework/premium/extensions/code-snippets/extension.php:63,
58
+ #: build_tmp/build/framework/premium/extensions/code-snippets/extension.php:99,
59
+ #: build_tmp/build/framework/premium/extensions/code-snippets/readme.php:38
60
  msgid "Custom Code Snippets"
61
  msgstr ""
62
 
63
+ #: framework/extensions-manager.php:258,
64
+ #: build_tmp/build/framework/extensions-manager.php:258
65
  msgid ""
66
  "Add custom code snippets in your header and footer, globally and per post or "
67
  "page individually."
68
  msgstr ""
69
 
70
  #: framework/extensions-manager.php:269,
71
+ #: build_tmp/build/framework/extensions-manager.php:269,
72
+ #: framework/premium/extensions/custom-fonts/extension.php:142,
73
+ #: build_tmp/build/framework/premium/extensions/custom-fonts/extension.php:142
74
  msgid "Custom Fonts"
75
  msgstr ""
76
 
77
+ #: framework/extensions-manager.php:270,
78
+ #: build_tmp/build/framework/extensions-manager.php:270
79
  msgid ""
80
  "Upload unlimited number of custom fonts or variable fonts and use them in "
81
  "any typography option."
82
  msgstr ""
83
 
84
  #: framework/extensions-manager.php:281,
85
+ #: build_tmp/build/framework/extensions-manager.php:281,
86
+ #: framework/premium/extensions/local-google-fonts/extension.php:121,
87
+ #: build_tmp/build/framework/premium/extensions/local-google-fonts/extension.php:121
88
  msgid "Local Google Fonts"
89
  msgstr ""
90
 
91
+ #: framework/extensions-manager.php:282,
92
+ #: build_tmp/build/framework/extensions-manager.php:282
93
  msgid "Serve Google Fonts from your own server for full GDPR compliancy."
94
  msgstr ""
95
 
96
  #: framework/extensions-manager.php:293,
97
+ #: build_tmp/build/framework/extensions-manager.php:293,
98
+ #: framework/premium/extensions/mega-menu/config.php:4,
99
+ #: build_tmp/build/framework/premium/extensions/mega-menu/config.php:4
100
  msgid "Advanced Menu"
101
  msgstr ""
102
 
103
+ #: framework/extensions-manager.php:294,
104
+ #: build_tmp/build/framework/extensions-manager.php:294
105
  msgid ""
106
  "Create beautiful mega menus, assign icons add badges to menu items, and "
107
  "content blocks inside menu items."
108
  msgstr ""
109
 
110
  #: framework/extensions-manager.php:305,
111
+ #: build_tmp/build/framework/extensions-manager.php:305,
112
  #: framework/premium/extensions/shortcuts/config.php:4,
113
+ #: framework/premium/extensions/shortcuts/customizer.php:503,
114
+ #: build_tmp/build/framework/premium/extensions/shortcuts/config.php:4,
115
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:503
116
  msgid "Shortcuts Bar"
117
  msgstr ""
118
 
119
+ #: framework/extensions-manager.php:306,
120
+ #: build_tmp/build/framework/extensions-manager.php:306
121
  msgid ""
122
  "Transform your website into a app like by displaying a neat shortcuts bar at "
123
  "the bottom of the vieport."
124
  msgstr ""
125
 
126
  #: framework/extensions-manager.php:317,
127
+ #: build_tmp/build/framework/extensions-manager.php:317,
128
+ #: framework/premium/extensions/sidebars/config.php:4,
129
+ #: build_tmp/build/framework/premium/extensions/sidebars/config.php:4
130
  msgid "Multiple Sidebars"
131
  msgstr ""
132
 
133
+ #: framework/extensions-manager.php:318,
134
+ #: build_tmp/build/framework/extensions-manager.php:318
135
  msgid ""
136
  "Create unlimited number of sidebars and display them conditionaly on any "
137
  "page or post."
138
  msgstr ""
139
 
140
+ #: framework/extensions-manager.php:329,
141
+ #: build_tmp/build/framework/extensions-manager.php:329
142
  msgid "White Label (Agency Package)"
143
  msgstr ""
144
 
145
+ #: framework/extensions-manager.php:330,
146
+ #: build_tmp/build/framework/extensions-manager.php:330
147
  msgid "Change the theme and companion plugin branding to your own custom one."
148
  msgstr ""
149
 
150
  #: framework/extensions-manager.php:341,
151
+ #: build_tmp/build/framework/extensions-manager.php:341,
152
+ #: framework/premium/extensions/woocommerce-extra/config.php:4,
153
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/config.php:4
154
  msgid "WooCommerce Extra"
155
  msgstr ""
156
 
157
+ #: framework/extensions-manager.php:342,
158
+ #: build_tmp/build/framework/extensions-manager.php:342
159
  msgid ""
160
  "Increase the conversion rate by adding a product quick view modal, a "
161
  "floating cart. Control the single product gallery/slider and the layout, add "
163
  msgstr ""
164
 
165
  #: framework/theme-integration.php:266,
166
+ #: build_tmp/build/framework/theme-integration.php:266,
167
  #: framework/extensions/widgets/widgets/ct-facebook/options.php:16,
168
  #: framework/extensions/widgets/widgets/ct-facebook/view.php:12,
169
+ #: framework/extensions/widgets/widgets/ct-facebook/widget.php:13,
170
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-facebook/options.php:16,
171
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-facebook/view.php:12,
172
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-facebook/widget.php:13
173
  msgid "Facebook"
174
  msgstr ""
175
 
176
+ #: framework/theme-integration.php:267,
177
+ #: build_tmp/build/framework/theme-integration.php:267
178
  msgid "Twitter"
179
  msgstr ""
180
 
181
+ #: framework/theme-integration.php:268,
182
+ #: build_tmp/build/framework/theme-integration.php:268
183
  msgid "LinkedIn"
184
  msgstr ""
185
 
186
+ #: framework/theme-integration.php:269,
187
+ #: build_tmp/build/framework/theme-integration.php:269
188
  msgid "Dribbble"
189
  msgstr ""
190
 
191
+ #: framework/theme-integration.php:270,
192
+ #: build_tmp/build/framework/theme-integration.php:270
193
  msgid "Instagram"
194
  msgstr ""
195
 
196
+ #: framework/theme-integration.php:271,
197
+ #: build_tmp/build/framework/theme-integration.php:271
198
  msgid "Pinterest"
199
  msgstr ""
200
 
201
+ #: framework/theme-integration.php:272,
202
+ #: build_tmp/build/framework/theme-integration.php:272
203
  msgid "WordPress"
204
  msgstr ""
205
 
206
+ #: framework/theme-integration.php:273,
207
+ #: build_tmp/build/framework/theme-integration.php:273
208
  msgid "GitHub"
209
  msgstr ""
210
 
211
  #: framework/theme-integration.php:274,
212
+ #: build_tmp/build/framework/theme-integration.php:274,
213
  #: framework/extensions/widgets/widgets/ct-about-me/options.php:114,
214
  #: framework/extensions/widgets/widgets/ct-about-me/options.php:195,
215
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:266,
216
+ #: framework/extensions/widgets/widgets/ct-socials/options.php:81,
217
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-about-me/options.php:114,
218
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-about-me/options.php:195,
219
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:266,
220
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-socials/options.php:81
221
  msgid "Medium"
222
  msgstr ""
223
 
224
+ #: framework/theme-integration.php:275,
225
+ #: build_tmp/build/framework/theme-integration.php:275
226
  msgid "YouTube"
227
  msgstr ""
228
 
229
+ #: framework/theme-integration.php:276,
230
+ #: build_tmp/build/framework/theme-integration.php:276
231
  msgid "Vimeo"
232
  msgstr ""
233
 
234
+ #: framework/theme-integration.php:277,
235
+ #: build_tmp/build/framework/theme-integration.php:277
236
  msgid "VKontakte"
237
  msgstr ""
238
 
239
+ #: framework/theme-integration.php:278,
240
+ #: build_tmp/build/framework/theme-integration.php:278
241
  msgid "Odnoklassniki"
242
  msgstr ""
243
 
244
+ #: framework/theme-integration.php:279,
245
+ #: build_tmp/build/framework/theme-integration.php:279
246
  msgid "TikTok"
247
  msgstr ""
248
 
249
+ #: framework/theme-integration.php:351,
250
+ #: build_tmp/build/framework/theme-integration.php:351
251
  msgid "Companion"
252
  msgstr ""
253
 
254
+ #: framework/theme-integration.php:367,
255
+ #: build_tmp/build/framework/theme-integration.php:367
256
+ #: static/js/screens/SiteExport.js:106
257
  msgid "PRO"
258
  msgstr ""
259
 
260
+ #: framework/theme-integration.php:496,
261
+ #: build_tmp/build/framework/theme-integration.php:496
262
  msgid "Check your email"
263
  msgstr ""
264
 
265
+ #: framework/theme-integration.php:502,
266
+ #: build_tmp/build/framework/theme-integration.php:502
267
  msgid "Registration Form"
268
  msgstr ""
269
 
270
+ #: framework/theme-integration.php:503,
271
+ #: build_tmp/build/framework/theme-integration.php:503
272
  msgid "Register For This Site"
273
  msgstr ""
274
 
275
+ #: framework/widgets-manager.php:75,
276
+ #: build_tmp/build/framework/widgets-manager.php:75
277
  msgid "Default widget name"
278
  msgstr ""
279
 
280
+ #: framework/widgets-manager.php:81,
281
+ #: build_tmp/build/framework/widgets-manager.php:81
282
  msgid "Display online support infomation"
283
  msgstr ""
284
 
285
+ #: framework/widgets-manager.php:144,
286
+ #: build_tmp/build/framework/widgets-manager.php:144
287
  msgid "Widget Title"
288
  msgstr ""
289
 
290
+ #: framework/features/conditions-manager.php:313,
291
+ #: build_tmp/build/framework/features/conditions-manager.php:313
292
  msgid "%s Single"
293
  msgstr ""
294
 
295
+ #: framework/features/conditions-manager.php:321,
296
+ #: build_tmp/build/framework/features/conditions-manager.php:321
297
  msgid "%s Archive"
298
  msgstr ""
299
 
300
+ #: framework/features/conditions-manager.php:333,
301
+ #: build_tmp/build/framework/features/conditions-manager.php:333
302
  msgid "Entire Website"
303
  msgstr ""
304
 
305
+ #: framework/features/conditions-manager.php:339,
306
+ #: build_tmp/build/framework/features/conditions-manager.php:339
307
  msgid "Basic"
308
  msgstr ""
309
 
310
+ #: framework/features/conditions-manager.php:343,
311
+ #: build_tmp/build/framework/features/conditions-manager.php:343
312
  msgid "Singulars"
313
  msgstr ""
314
 
315
+ #: framework/features/conditions-manager.php:348,
316
+ #: build_tmp/build/framework/features/conditions-manager.php:348
317
  msgid "Archives"
318
  msgstr ""
319
 
320
+ #: framework/features/conditions-manager.php:354,
321
  #: framework/extensions/trending/customizer.php:4,
322
+ #: build_tmp/build/framework/features/conditions-manager.php:354,
323
+ #: build_tmp/build/framework/extensions/trending/customizer.php:4,
324
  #: framework/extensions/widgets/widgets/ct-posts/options.php:11,
325
  #: framework/extensions/widgets/widgets/ct-posts/options.php:98,
326
+ #: framework/extensions/widgets/widgets/ct-posts/view.php:139,
327
  #: framework/extensions/widgets/widgets/ct-posts/widget.php:13,
328
+ #: framework/premium/features/premium-header/items/search-input/options.php:4,
329
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:11,
330
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:98,
331
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/view.php:139,
332
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/widget.php:13,
333
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:4
334
  msgid "Posts"
335
  msgstr ""
336
 
337
+ #: framework/features/conditions-manager.php:358,
338
+ #: build_tmp/build/framework/features/conditions-manager.php:358,
339
  #: framework/premium/features/content-blocks/hooks-manager.php:280,
340
  #: framework/premium/features/content-blocks/hooks-manager.php:288,
341
  #: framework/premium/features/content-blocks/hooks-manager.php:296,
342
  #: framework/premium/features/content-blocks/hooks-manager.php:303,
343
  #: framework/premium/features/content-blocks/hooks-manager.php:310,
344
+ #: framework/premium/features/content-blocks/hooks-manager.php:318,
345
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:280,
346
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:288,
347
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:296,
348
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:303,
349
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:310,
350
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:318
351
  msgid "Single Post"
352
  msgstr ""
353
 
354
+ #: framework/features/conditions-manager.php:363,
355
+ #: build_tmp/build/framework/features/conditions-manager.php:363
356
  msgid "All Post Archives"
357
  msgstr ""
358
 
359
+ #: framework/features/conditions-manager.php:368,
360
+ #: build_tmp/build/framework/features/conditions-manager.php:368
361
  msgid "Post Categories"
362
  msgstr ""
363
 
364
+ #: framework/features/conditions-manager.php:373,
365
+ #: build_tmp/build/framework/features/conditions-manager.php:373
366
  msgid "Post Tags"
367
  msgstr ""
368
 
369
+ #: framework/features/conditions-manager.php:379,
370
+ #: build_tmp/build/framework/features/conditions-manager.php:379,
371
  #: framework/extensions/widgets/widgets/ct-posts/options.php:12,
372
+ #: framework/premium/features/premium-header/items/search-input/options.php:5,
373
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:12,
374
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:5
375
  msgid "Pages"
376
  msgstr ""
377
 
378
+ #: framework/features/conditions-manager.php:383,
379
+ #: build_tmp/build/framework/features/conditions-manager.php:383
380
  msgid "Single Page"
381
  msgstr ""
382
 
383
+ #: framework/features/conditions-manager.php:430,
384
+ #: build_tmp/build/framework/features/conditions-manager.php:430
385
  msgid "Specific"
386
  msgstr ""
387
 
388
+ #: framework/features/conditions-manager.php:434,
389
+ #: build_tmp/build/framework/features/conditions-manager.php:434
390
  msgid "Post ID"
391
  msgstr ""
392
 
393
+ #: framework/features/conditions-manager.php:439,
394
+ #: build_tmp/build/framework/features/conditions-manager.php:439
395
  msgid "Page ID"
396
  msgstr ""
397
 
398
+ #: framework/features/conditions-manager.php:444,
399
+ #: build_tmp/build/framework/features/conditions-manager.php:444
400
  #: static/js/options/ConditionsManager/PostIdPicker.js:76
401
  msgid "Custom Post Type ID"
402
  msgstr ""
403
 
404
+ #: framework/features/conditions-manager.php:449,
405
+ #: build_tmp/build/framework/features/conditions-manager.php:449
406
  msgid "Taxonomy ID"
407
  msgstr ""
408
 
409
+ #: framework/features/conditions-manager.php:454,
410
+ #: build_tmp/build/framework/features/conditions-manager.php:454
411
  msgid "Post with Taxonomy ID"
412
  msgstr ""
413
 
414
+ #: framework/features/conditions-manager.php:460,
415
+ #: build_tmp/build/framework/features/conditions-manager.php:460
416
  msgid "Other Pages"
417
  msgstr ""
418
 
419
+ #: framework/features/conditions-manager.php:464,
420
+ #: build_tmp/build/framework/features/conditions-manager.php:464
421
  msgid "404"
422
  msgstr ""
423
 
424
+ #: framework/features/conditions-manager.php:469,
425
+ #: build_tmp/build/framework/features/conditions-manager.php:469,
426
  #: framework/premium/features/premium-header/items/search-input/options.php:45,
427
+ #: framework/premium/features/premium-header/items/search-input/view.php:66,
428
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:45,
429
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/view.php:66
430
  msgid "Search"
431
  msgstr ""
432
 
433
+ #: framework/features/conditions-manager.php:474,
434
+ #: build_tmp/build/framework/features/conditions-manager.php:474
435
  msgid "Blog"
436
  msgstr ""
437
 
438
+ #: framework/features/conditions-manager.php:479,
439
+ #: build_tmp/build/framework/features/conditions-manager.php:479
440
  msgid "Front Page"
441
  msgstr ""
442
 
443
+ #: framework/features/conditions-manager.php:491,
444
+ #: build_tmp/build/framework/features/conditions-manager.php:491
445
  msgid "Author"
446
  msgstr ""
447
 
448
+ #: framework/features/conditions-manager.php:497,
449
+ #: build_tmp/build/framework/features/conditions-manager.php:497
450
  msgid "User Auth"
451
  msgstr ""
452
 
453
+ #: framework/features/conditions-manager.php:501,
454
+ #: build_tmp/build/framework/features/conditions-manager.php:501
455
  msgid "User Logged In"
456
  msgstr ""
457
 
458
+ #: framework/features/conditions-manager.php:506,
459
+ #: build_tmp/build/framework/features/conditions-manager.php:506
460
  msgid "User Logged Out"
461
  msgstr ""
462
 
463
+ #: framework/features/conditions-manager.php:512,
464
+ #: build_tmp/build/framework/features/conditions-manager.php:512
465
  msgid "User Roles"
466
  msgstr ""
467
 
468
+ #: framework/features/conditions-manager.php:603,
469
+ #: build_tmp/build/framework/features/conditions-manager.php:603
470
  msgid "Language"
471
  msgstr ""
472
 
473
+ #: framework/features/demo-install.php:229,
474
+ #: build_tmp/build/framework/features/demo-install.php:229
475
  msgid ""
476
  "Your PHP installation doesn't have support for XML. Please install the "
477
  "<i>xml</i> or <i>simplexml</i> PHP extension in order to be able to install "
479
  "in doing so."
480
  msgstr ""
481
 
482
+ #: framework/features/dynamic-css.php:46,
483
+ #: build_tmp/build/framework/features/dynamic-css.php:46
484
  msgid "Dynamic CSS Output"
485
  msgstr ""
486
 
487
+ #: framework/features/dynamic-css.php:50,
488
+ #: build_tmp/build/framework/features/dynamic-css.php:50
489
  msgid ""
490
  "The strategy of outputting the dynamic CSS. File - all the CSS code will be "
491
  "placed in a static file, otherwise it will be placed inline in head."
492
  msgstr ""
493
 
494
+ #: framework/features/dynamic-css.php:52,
495
+ #: build_tmp/build/framework/features/dynamic-css.php:52
496
  msgid "File"
497
  msgstr ""
498
 
499
  #: framework/features/dynamic-css.php:53,
500
+ #: build_tmp/build/framework/features/dynamic-css.php:53,
501
+ #: framework/premium/features/premium-header/items/language-switcher/options.php:32,
502
+ #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:32
503
  msgid "Inline"
504
  msgstr ""
505
 
506
+ #: framework/features/google-analytics.php:69,
507
+ #: build_tmp/build/framework/features/google-analytics.php:69
508
  msgid "Google Analytics v3"
509
  msgstr ""
510
 
511
+ #: framework/features/google-analytics.php:74,
512
+ #: build_tmp/build/framework/features/google-analytics.php:74
513
  msgid "Link your Google Analytics 3 tracking ID."
514
  msgstr ""
515
 
516
+ #: framework/features/google-analytics.php:80,
517
+ #: build_tmp/build/framework/features/google-analytics.php:80
518
  msgid "Google Analytics v4"
519
  msgstr ""
520
 
521
+ #: framework/features/google-analytics.php:86,
522
+ #: build_tmp/build/framework/features/google-analytics.php:86
523
  msgid ""
524
  "Link your Google Analytics 4 tracking ID. More info and instructions can be "
525
  "found %shere%s."
526
  msgstr ""
527
 
528
+ #: framework/features/google-analytics.php:98,
529
+ #: build_tmp/build/framework/features/google-analytics.php:98
530
  msgid "IP Anonymization"
531
  msgstr ""
532
 
533
+ #: framework/features/google-analytics.php:102,
534
+ #: build_tmp/build/framework/features/google-analytics.php:102
535
  msgid ""
536
  "Enable Google Analytics IP Anonymization for enhanced privacy. More info and "
537
  "instructions can be found %shere%s."
538
  msgstr ""
539
 
540
+ #: framework/features/opengraph-meta-data.php:17,
541
+ #: build_tmp/build/framework/features/opengraph-meta-data.php:17
542
  msgid "OpenGraph Meta Data"
543
  msgstr ""
544
 
545
+ #: framework/features/opengraph-meta-data.php:20,
546
+ #: build_tmp/build/framework/features/opengraph-meta-data.php:20
547
  msgid "Enable the OpenGraph rich meta data features for your website."
548
  msgstr ""
549
 
550
+ #: framework/features/opengraph-meta-data.php:29,
551
+ #: build_tmp/build/framework/features/opengraph-meta-data.php:29
552
  msgid "Facebook Page URL"
553
  msgstr ""
554
 
555
+ #: framework/features/opengraph-meta-data.php:36,
556
+ #: build_tmp/build/framework/features/opengraph-meta-data.php:36
557
  msgid "Facebook App ID"
558
  msgstr ""
559
 
560
+ #: framework/features/opengraph-meta-data.php:43,
561
+ #: build_tmp/build/framework/features/opengraph-meta-data.php:43
562
  msgid "Twitter Username"
563
  msgstr ""
564
 
565
+ #: framework/extensions/cookies-consent/config.php:4,
566
+ #: build_tmp/build/framework/extensions/cookies-consent/config.php:4
567
  msgid "Cookies Consent"
568
  msgstr ""
569
 
570
+ #: framework/extensions/cookies-consent/config.php:5,
571
+ #: build_tmp/build/framework/extensions/cookies-consent/config.php:5
572
  msgid ""
573
  "Display a cookie acceptance box in order to comply with the privacy "
574
  "regulations in your country."
575
  msgstr ""
576
 
577
+ #: framework/extensions/cookies-consent/customizer.php:4,
578
+ #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:4
579
  msgid "Cookie Consent"
580
  msgstr ""
581
 
584
  #: framework/extensions/product-reviews/metabox.php:6,
585
  #: framework/extensions/trending/customizer.php:109,
586
  #: framework/premium/extensions/mega-menu/options.php:6,
587
+ #: framework/premium/extensions/shortcuts/customizer.php:513,
588
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:11,
589
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:164,
590
+ #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:18,
591
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:12,
592
+ #: build_tmp/build/framework/extensions/product-reviews/metabox.php:6,
593
+ #: build_tmp/build/framework/extensions/trending/customizer.php:109,
594
  #: framework/features/header/items/account/options.php:51,
595
  #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:23,
596
  #: framework/premium/features/content-blocks/options/popup.php:30,
597
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:6,
598
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:513,
599
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/floating-cart.php:11,
600
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:164,
601
  #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:35,
602
  #: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:19,
603
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:5,
604
  #: framework/premium/features/premium-header/items/contacts/options.php:5,
605
  #: framework/premium/features/premium-header/items/language-switcher/options.php:21,
606
  #: framework/premium/features/premium-header/items/language-switcher/options.php:347,
607
+ #: framework/premium/features/premium-header/items/search-input/options.php:37,
608
+ #: build_tmp/build/framework/features/header/items/account/options.php:51,
609
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:23,
610
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:30,
611
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:35,
612
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:19,
613
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:5,
614
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:5,
615
+ #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:21,
616
+ #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:347,
617
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:37
618
  #: framework/premium/extensions/white-label/dashboard-static/js/EditSettings.js:126
619
  msgid "General"
620
  msgstr ""
621
 
622
  #: framework/extensions/cookies-consent/customizer.php:31,
623
+ #: framework/premium/extensions/shortcuts/customizer.php:525,
624
  #: framework/premium/extensions/woocommerce-extra/extension.php:72,
625
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:186,
626
+ #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:31,
627
  #: framework/features/header/items/account/options.php:167,
628
  #: framework/features/header/items/account/options.php:373,
629
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:525,
630
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/extension.php:72,
631
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:186,
632
  #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:48,
633
+ #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:23,
634
+ #: build_tmp/build/framework/features/header/items/account/options.php:167,
635
+ #: build_tmp/build/framework/features/header/items/account/options.php:373,
636
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:48,
637
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:23
638
  msgid "Type 1"
639
  msgstr ""
640
 
641
  #: framework/extensions/cookies-consent/customizer.php:36,
642
+ #: framework/premium/extensions/shortcuts/customizer.php:530,
643
  #: framework/premium/extensions/woocommerce-extra/extension.php:77,
644
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:191,
645
+ #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:36,
646
  #: framework/features/header/items/account/options.php:172,
647
  #: framework/features/header/items/account/options.php:378,
648
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:530,
649
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/extension.php:77,
650
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:191,
651
  #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:53,
652
+ #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:28,
653
+ #: build_tmp/build/framework/features/header/items/account/options.php:172,
654
+ #: build_tmp/build/framework/features/header/items/account/options.php:378,
655
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:53,
656
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:28
657
  msgid "Type 2"
658
  msgstr ""
659
 
660
+ #: framework/extensions/cookies-consent/customizer.php:43,
661
+ #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:43
662
  msgid "Cookie period"
663
  msgstr ""
664
 
665
+ #: framework/extensions/cookies-consent/customizer.php:51,
666
+ #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:51
667
  msgid "One hour"
668
  msgstr ""
669
 
670
+ #: framework/extensions/cookies-consent/customizer.php:52,
671
+ #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:52
672
  msgid "One day"
673
  msgstr ""
674
 
675
+ #: framework/extensions/cookies-consent/customizer.php:53,
676
+ #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:53
677
  msgid "One week"
678
  msgstr ""
679
 
680
+ #: framework/extensions/cookies-consent/customizer.php:54,
681
+ #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:54
682
  msgid "One month"
683
  msgstr ""
684
 
685
+ #: framework/extensions/cookies-consent/customizer.php:55,
686
+ #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:55
687
  msgid "Three months"
688
  msgstr ""
689
 
690
+ #: framework/extensions/cookies-consent/customizer.php:56,
691
+ #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:56
692
  msgid "Six months"
693
  msgstr ""
694
 
695
+ #: framework/extensions/cookies-consent/customizer.php:57,
696
+ #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:57
697
  msgid "One year"
698
  msgstr ""
699
 
700
+ #: framework/extensions/cookies-consent/customizer.php:58,
701
+ #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:58
702
  msgid "Forever"
703
  msgstr ""
704
 
707
  #: framework/premium/features/content-blocks/hooks-manager.php:186,
708
  #: framework/premium/features/content-blocks/hooks-manager.php:194,
709
  #: framework/premium/features/content-blocks/hooks-manager.php:202,
710
+ #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:65,
711
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:72,
712
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:101,
713
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:129,
715
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:185,
716
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:213,
717
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:241,
718
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:178,
719
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:186,
720
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:194,
721
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:202,
722
  #: framework/premium/features/premium-header/items/contacts/options.php:55,
723
  #: framework/premium/features/premium-header/items/contacts/options.php:81,
724
  #: framework/premium/features/premium-header/items/contacts/options.php:108,
725
  #: framework/premium/features/premium-header/items/contacts/options.php:135,
726
  #: framework/premium/features/premium-header/items/contacts/options.php:162,
727
  #: framework/premium/features/premium-header/items/contacts/options.php:189,
728
+ #: framework/premium/features/premium-header/items/contacts/options.php:216,
729
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:72,
730
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:101,
731
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:129,
732
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:157,
733
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:185,
734
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:213,
735
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:241,
736
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:55,
737
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:81,
738
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:108,
739
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:135,
740
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:162,
741
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:189,
742
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:216
743
  msgid "Content"
744
  msgstr ""
745
 
746
  #: framework/extensions/cookies-consent/customizer.php:67,
747
+ #: framework/extensions/cookies-consent/helpers.php:30,
748
+ #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:67,
749
+ #: build_tmp/build/framework/extensions/cookies-consent/helpers.php:30
750
  msgid ""
751
  "We use cookies to ensure that we give you the best experience on our website."
752
  msgstr ""
753
 
754
+ #: framework/extensions/cookies-consent/customizer.php:79,
755
+ #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:79
756
  msgid "Button text"
757
  msgstr ""
758
 
759
  #: framework/extensions/cookies-consent/customizer.php:82,
760
+ #: framework/extensions/cookies-consent/helpers.php:33,
761
+ #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:82,
762
+ #: build_tmp/build/framework/extensions/cookies-consent/helpers.php:33
763
  msgid "Accept"
764
  msgstr ""
765
 
767
  #: framework/extensions/newsletter-subscribe/customizer.php:147,
768
  #: framework/extensions/trending/customizer.php:290,
769
  #: framework/premium/extensions/mega-menu/options.php:514,
770
+ #: framework/premium/extensions/shortcuts/customizer.php:757,
771
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:81,
772
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:31,
773
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:279,
774
+ #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:90,
775
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:147,
776
+ #: build_tmp/build/framework/extensions/trending/customizer.php:290,
777
  #: framework/features/header/items/account/options.php:497,
778
  #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:120,
779
  #: framework/premium/features/content-blocks/options/popup.php:342,
780
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:514,
781
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:757,
782
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/floating-cart.php:81,
783
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:31,
784
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:279,
785
  #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:167,
786
  #: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:66,
787
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:119,
788
  #: framework/premium/features/premium-header/items/contacts/options.php:343,
789
  #: framework/premium/features/premium-header/items/language-switcher/options.php:186,
790
  #: framework/premium/features/premium-header/items/language-switcher/options.php:371,
791
+ #: framework/premium/features/premium-header/items/search-input/options.php:178,
792
+ #: build_tmp/build/framework/features/header/items/account/options.php:497,
793
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:120,
794
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:342,
795
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:167,
796
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:66,
797
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:119,
798
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:343,
799
+ #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:186,
800
+ #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:371,
801
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:178
802
  msgid "Design"
803
  msgstr ""
804
 
805
  #: framework/extensions/cookies-consent/customizer.php:95,
806
  #: framework/extensions/trending/customizer.php:305,
807
  #: framework/premium/extensions/mega-menu/options.php:794,
808
+ #: framework/premium/extensions/shortcuts/customizer.php:773,
809
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:86,
810
+ #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:95,
811
+ #: build_tmp/build/framework/extensions/trending/customizer.php:305,
812
  #: framework/features/header/items/account/options.php:808,
813
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:794,
814
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:773,
815
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/floating-cart.php:86,
816
  #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:184,
817
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:174,
818
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:205,
825
  #: framework/premium/features/premium-header/items/language-switcher/options.php:232,
826
  #: framework/premium/features/premium-header/items/language-switcher/options.php:262,
827
  #: framework/premium/features/premium-header/items/language-switcher/options.php:291,
828
+ #: framework/premium/features/premium-header/items/language-switcher/options.php:382,
829
+ #: build_tmp/build/framework/features/header/items/account/options.php:808,
830
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:184,
831
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:174,
832
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:205,
833
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:234,
834
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:359,
835
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:388,
836
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:431,
837
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:471,
838
+ #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:203,
839
+ #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:232,
840
+ #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:262,
841
+ #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:291,
842
+ #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:382
843
  msgid "Font Color"
844
  msgstr ""
845
 
853
  #: framework/premium/extensions/mega-menu/options.php:760,
854
  #: framework/premium/extensions/mega-menu/options.php:807,
855
  #: framework/premium/extensions/mega-menu/options.php:826,
856
+ #: framework/premium/extensions/shortcuts/customizer.php:791,
857
+ #: framework/premium/extensions/shortcuts/customizer.php:823,
858
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:99,
859
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:73,
860
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:352,
861
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:381,
862
+ #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:112,
863
+ #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:142,
864
+ #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:167,
865
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:169,
866
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:200,
867
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:225,
868
+ #: build_tmp/build/framework/extensions/trending/customizer.php:323,
869
  #: framework/features/header/items/account/options.php:561,
870
  #: framework/features/header/items/account/options.php:593,
871
  #: framework/features/header/items/account/options.php:623,
882
  #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:185,
883
  #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:229,
884
  #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:305,
885
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:760,
886
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:807,
887
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:826,
888
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:791,
889
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:823,
890
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/floating-cart.php:99,
891
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:73,
892
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:352,
893
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:381,
894
  #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:201,
895
  #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:237,
896
  #: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:84,
928
  #: framework/premium/features/premium-header/items/search-input/options.php:656,
929
  #: framework/premium/features/premium-header/items/search-input/options.php:686,
930
  #: framework/premium/features/premium-header/items/search-input/options.php:762,
931
+ #: framework/premium/features/premium-header/items/search-input/options.php:790,
932
+ #: build_tmp/build/framework/features/header/items/account/options.php:561,
933
+ #: build_tmp/build/framework/features/header/items/account/options.php:593,
934
+ #: build_tmp/build/framework/features/header/items/account/options.php:623,
935
+ #: build_tmp/build/framework/features/header/items/account/options.php:705,
936
+ #: build_tmp/build/framework/features/header/items/account/options.php:736,
937
+ #: build_tmp/build/framework/features/header/items/account/options.php:765,
938
+ #: build_tmp/build/framework/features/header/items/account/options.php:826,
939
+ #: build_tmp/build/framework/features/header/items/account/options.php:856,
940
+ #: build_tmp/build/framework/features/header/items/account/options.php:886,
941
+ #: build_tmp/build/framework/features/header/items/account/options.php:922,
942
+ #: build_tmp/build/framework/features/header/items/account/options.php:976,
943
+ #: build_tmp/build/framework/features/header/items/account/options.php:1007,
944
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:153,
945
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:185,
946
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:229,
947
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:305,
948
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:201,
949
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:237,
950
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:84,
951
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:105,
952
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:191,
953
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:222,
954
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:251,
955
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:318,
956
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:349,
957
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:378,
958
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:576,
959
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:607,
960
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:637,
961
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:737,
962
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:776,
963
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:815,
964
+ #: build_tmp/build/framework/premium/features/premium-header/items/dark-mode-switcher/options.php:75,
965
+ #: build_tmp/build/framework/premium/features/premium-header/items/dark-mode-switcher/options.php:106,
966
+ #: build_tmp/build/framework/premium/features/premium-header/items/dark-mode-switcher/options.php:135,
967
+ #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:249,
968
+ #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:279,
969
+ #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:308,
970
+ #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:399,
971
+ #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:425,
972
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:231,
973
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:263,
974
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:293,
975
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:361,
976
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:393,
977
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:423,
978
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:491,
979
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:523,
980
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:553,
981
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:626,
982
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:656,
983
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:686,
984
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:762,
985
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:790
986
  msgid "Initial"
987
  msgstr ""
988
 
992
  #: framework/extensions/newsletter-subscribe/customizer.php:205,
993
  #: framework/extensions/trending/customizer.php:329,
994
  #: framework/premium/extensions/mega-menu/options.php:765,
995
+ #: framework/premium/extensions/shortcuts/customizer.php:797,
996
+ #: framework/premium/extensions/shortcuts/customizer.php:829,
997
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:357,
998
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:386,
999
+ #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:118,
1000
+ #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:147,
1001
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:175,
1002
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:205,
1003
+ #: build_tmp/build/framework/extensions/trending/customizer.php:329,
1004
  #: framework/features/header/items/account/options.php:567,
1005
  #: framework/features/header/items/account/options.php:598,
1006
  #: framework/features/header/items/account/options.php:628,
1010
  #: framework/features/header/items/account/options.php:832,
1011
  #: framework/features/header/items/account/options.php:982,
1012
  #: framework/features/header/items/account/options.php:1013,
1013
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:765,
1014
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:797,
1015
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:829,
1016
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:357,
1017
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:386,
1018
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:197,
1019
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:227,
1020
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:256,
1031
  #: framework/premium/features/premium-header/items/dark-mode-switcher/options.php:111,
1032
  #: framework/premium/features/premium-header/items/dark-mode-switcher/options.php:140,
1033
  #: framework/premium/features/premium-header/items/language-switcher/options.php:404,
1034
+ #: framework/premium/features/premium-header/items/search-input/options.php:767,
1035
+ #: build_tmp/build/framework/features/header/items/account/options.php:567,
1036
+ #: build_tmp/build/framework/features/header/items/account/options.php:598,
1037
+ #: build_tmp/build/framework/features/header/items/account/options.php:628,
1038
+ #: build_tmp/build/framework/features/header/items/account/options.php:711,
1039
+ #: build_tmp/build/framework/features/header/items/account/options.php:741,
1040
+ #: build_tmp/build/framework/features/header/items/account/options.php:770,
1041
+ #: build_tmp/build/framework/features/header/items/account/options.php:832,
1042
+ #: build_tmp/build/framework/features/header/items/account/options.php:982,
1043
+ #: build_tmp/build/framework/features/header/items/account/options.php:1013,
1044
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:197,
1045
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:227,
1046
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:256,
1047
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:324,
1048
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:354,
1049
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:383,
1050
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:581,
1051
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:612,
1052
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:642,
1053
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:742,
1054
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:781,
1055
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:820,
1056
+ #: build_tmp/build/framework/premium/features/premium-header/items/dark-mode-switcher/options.php:81,
1057
+ #: build_tmp/build/framework/premium/features/premium-header/items/dark-mode-switcher/options.php:111,
1058
+ #: build_tmp/build/framework/premium/features/premium-header/items/dark-mode-switcher/options.php:140,
1059
+ #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:404,
1060
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:767
1061
  msgid "Hover"
1062
  msgstr ""
1063
 
1064
  #: framework/extensions/cookies-consent/customizer.php:126,
1065
  #: framework/extensions/newsletter-subscribe/customizer.php:183,
1066
+ #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:126,
1067
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:183,
1068
+ #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:220,
1069
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:220
1070
  msgid "Button Color"
1071
  msgstr ""
1072
 
1073
  #: framework/extensions/cookies-consent/customizer.php:154,
1074
  #: framework/extensions/newsletter-subscribe/customizer.php:212,
1075
  #: framework/premium/extensions/mega-menu/options.php:814,
1076
+ #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:154,
1077
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:212,
1078
  #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:167,
1079
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:814,
1080
  #: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:92,
1081
+ #: framework/premium/features/premium-header/items/language-switcher/options.php:412,
1082
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:167,
1083
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:92,
1084
+ #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:412
1085
  msgid "Background Color"
1086
  msgstr ""
1087
 
1088
+ #: framework/extensions/cookies-consent/customizer.php:179,
1089
+ #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:179
1090
  msgid "Maximum Width"
1091
  msgstr ""
1092
 
1093
+ #: framework/extensions/cookies-consent/customizer.php:202,
1094
+ #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:202
1095
  msgid "I accept the %sPrivacy Policy%s*"
1096
  msgstr ""
1097
 
1098
+ #: framework/extensions/cookies-consent/customizer.php:206,
1099
+ #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:206
1100
  msgid "This text will appear under each comment form and subscribe form."
1101
  msgstr ""
1102
 
1103
+ #: framework/extensions/cookies-consent/helpers.php:78,
1104
+ #: build_tmp/build/framework/extensions/cookies-consent/helpers.php:78
1105
  msgid "I accept the %sPrivacy Policy%s"
1106
  msgstr ""
1107
 
1109
  #: framework/extensions/newsletter-subscribe/readme.php:1,
1110
  #: framework/premium/extensions/code-snippets/readme.php:1,
1111
  #: framework/premium/extensions/post-types-extra/readme.php:1,
1112
+ #: framework/premium/extensions/woocommerce-extra/readme.php:1,
1113
+ #: build_tmp/build/framework/extensions/cookies-consent/readme.php:1,
1114
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/readme.php:1,
1115
+ #: build_tmp/build/framework/premium/extensions/code-snippets/readme.php:1,
1116
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/readme.php:1,
1117
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/readme.php:1
1118
  msgid "Instructions"
1119
  msgstr ""
1120
 
1121
+ #: framework/extensions/cookies-consent/readme.php:4,
1122
+ #: build_tmp/build/framework/extensions/cookies-consent/readme.php:4
1123
  msgid ""
1124
  "After installing and activating the Cookies Consent extension you will be "
1125
  "able to configure it from this location:"
1126
  msgstr ""
1127
 
1128
  #: framework/extensions/cookies-consent/readme.php:9,
1129
+ #: build_tmp/build/framework/extensions/cookies-consent/readme.php:9,
1130
  #: framework/extensions/widgets/widgets/ct-about-me/options.php:158,
1131
+ #: framework/extensions/widgets/widgets/ct-socials/options.php:31,
1132
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-about-me/options.php:158,
1133
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-socials/options.php:31
1134
  msgid "Customizer"
1135
  msgstr ""
1136
 
1137
+ #: framework/extensions/cookies-consent/readme.php:13,
1138
+ #: build_tmp/build/framework/extensions/cookies-consent/readme.php:13
1139
  msgid "Navigate to %s and customize the notification to meet your needs."
1140
  msgstr ""
1141
 
1142
+ #: framework/extensions/cookies-consent/readme.php:16,
1143
+ #: build_tmp/build/framework/extensions/cookies-consent/readme.php:16
1144
  msgid "Customizer ➝ Cookie Consent"
1145
  msgstr ""
1146
 
1147
  #: framework/extensions/newsletter-subscribe/config.php:4,
1148
+ #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/widget.php:13,
1149
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/config.php:4,
1150
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/widget.php:13
1151
  msgid "Newsletter Subscribe"
1152
  msgstr ""
1153
 
1154
+ #: framework/extensions/newsletter-subscribe/config.php:5,
1155
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/config.php:5
1156
  msgid ""
1157
  "Easily capture new leads for your newsletter with the help of a widget, "
1158
  "shortcode or even a block inserted on your pages or posts."
1159
  msgstr ""
1160
 
1161
+ #: framework/extensions/newsletter-subscribe/customizer.php:4,
1162
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:4
1163
  msgid "Subscribe Form"
1164
  msgstr ""
1165
 
1166
  #: framework/extensions/newsletter-subscribe/customizer.php:18,
1167
  #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:14,
1168
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:18,
1169
  #: framework/extensions/widgets/widgets/ct-about-me/options.php:15,
1170
  #: framework/extensions/widgets/widgets/ct-advertisement/options.php:15,
1171
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:15,
1180
  #: framework/extensions/widgets/widgets/ct-posts/options.php:95,
1181
  #: framework/extensions/widgets/widgets/ct-quote/options.php:15,
1182
  #: framework/extensions/widgets/widgets/ct-socials/options.php:15,
1183
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:14,
1184
  #: framework/premium/features/premium-header/items/contacts/options.php:48,
1185
  #: framework/premium/features/premium-header/items/contacts/options.php:74,
1186
  #: framework/premium/features/premium-header/items/contacts/options.php:101,
1187
  #: framework/premium/features/premium-header/items/contacts/options.php:128,
1188
  #: framework/premium/features/premium-header/items/contacts/options.php:155,
1189
  #: framework/premium/features/premium-header/items/contacts/options.php:182,
1190
+ #: framework/premium/features/premium-header/items/contacts/options.php:209,
1191
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-about-me/options.php:15,
1192
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-advertisement/options.php:15,
1193
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:15,
1194
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:65,
1195
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:94,
1196
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:122,
1197
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:150,
1198
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:178,
1199
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:206,
1200
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:234,
1201
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-facebook/options.php:13,
1202
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:95,
1203
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-quote/options.php:15,
1204
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-socials/options.php:15,
1205
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:48,
1206
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:74,
1207
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:101,
1208
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:128,
1209
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:155,
1210
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:182,
1211
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:209
1212
  msgid "Title"
1213
  msgstr ""
1214
 
1215
  #: framework/extensions/newsletter-subscribe/customizer.php:21,
1216
  #: framework/extensions/newsletter-subscribe/helpers.php:42,
1217
+ #: framework/extensions/newsletter-subscribe/helpers.php:96,
1218
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:21,
1219
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/helpers.php:42,
1220
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/helpers.php:96
1221
  msgid "Newsletter Updates"
1222
  msgstr ""
1223
 
1224
  #: framework/extensions/newsletter-subscribe/customizer.php:27,
1225
+ #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:22,
1226
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:27,
1227
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:22
1228
  msgid "Message"
1229
  msgstr ""
1230
 
1232
  #: framework/extensions/newsletter-subscribe/helpers.php:45,
1233
  #: framework/extensions/newsletter-subscribe/helpers.php:97,
1234
  #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:24,
1235
+ #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/view.php:16,
1236
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:29,
1237
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/helpers.php:45,
1238
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/helpers.php:97,
1239
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:24,
1240
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/view.php:16
1241
  msgid "Enter your email address below to subscribe to our newsletter"
1242
  msgstr ""
1243
 
1244
  #: framework/extensions/newsletter-subscribe/customizer.php:42,
1245
+ #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:31,
1246
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:42,
1247
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:31
1248
  msgid "List Source"
1249
  msgstr ""
1250
 
1252
  #: framework/features/header/header-options.php:71,
1253
  #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:38,
1254
  #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:105,
1255
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:49,
1256
+ #: build_tmp/build/framework/features/header/header-options.php:71,
1257
  #: framework/extensions/widgets/widgets/ct-posts/options.php:173,
1258
  #: framework/extensions/widgets/widgets/ct-posts/options.php:198,
1259
+ #: framework/premium/features/content-blocks/options/hook.php:284,
1260
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:38,
1261
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:105,
1262
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:173,
1263
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:198,
1264
+ #: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:284
1265
  msgid "Default"
1266
  msgstr ""
1267
 
1268
  #: framework/extensions/newsletter-subscribe/customizer.php:50,
1269
  #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:39,
1270
+ #: framework/premium/extensions/shortcuts/customizer.php:250,
1271
+ #: framework/premium/extensions/shortcuts/customizer.php:276,
1272
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:50,
1273
+ #: framework/extensions/widgets/widgets/ct-about-me/options.php:46,
1274
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:39,
1275
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:250,
1276
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:276,
1277
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-about-me/options.php:46
1278
  #: framework/premium/static/js/options/IconPicker/Modal.js:148
1279
  msgid "Custom"
1280
  msgstr ""
1281
 
1282
  #: framework/extensions/newsletter-subscribe/customizer.php:62,
1283
+ #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:49,
1284
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:62,
1285
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:49
1286
  #: framework/extensions/newsletter-subscribe/dashboard-static/js/EditCredentials.js:187
1287
  msgid "List ID"
1288
  msgstr ""
1289
 
1290
  #: framework/extensions/newsletter-subscribe/customizer.php:80,
1291
+ #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:61,
1292
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:80,
1293
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:61
1294
  msgid "Name Field"
1295
  msgstr ""
1296
 
1297
  #: framework/extensions/newsletter-subscribe/customizer.php:93,
1298
+ #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:73,
1299
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:93,
1300
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:73
1301
  msgid "Name Label"
1302
  msgstr ""
1303
 
1306
  #: framework/extensions/newsletter-subscribe/helpers.php:57,
1307
  #: framework/extensions/newsletter-subscribe/helpers.php:108,
1308
  #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:75,
1309
+ #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/view.php:69,
1310
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:95,
1311
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/extension.php:186,
1312
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/helpers.php:57,
1313
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/helpers.php:108,
1314
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:75,
1315
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/view.php:69
1316
  msgid "Your name"
1317
  msgstr ""
1318
 
1319
  #: framework/extensions/newsletter-subscribe/customizer.php:105,
1320
+ #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:84,
1321
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:105,
1322
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:84
1323
  msgid "Mail Label"
1324
  msgstr ""
1325
 
1328
  #: framework/extensions/newsletter-subscribe/helpers.php:61,
1329
  #: framework/extensions/newsletter-subscribe/helpers.php:109,
1330
  #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:86,
1331
+ #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/view.php:70,
1332
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:107,
1333
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/extension.php:187,
1334
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/helpers.php:61,
1335
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/helpers.php:109,
1336
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:86,
1337
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/view.php:70
1338
  msgid "Your email"
1339
  msgstr ""
1340
 
1341
  #: framework/extensions/newsletter-subscribe/customizer.php:114,
1342
+ #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:92,
1343
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:114,
1344
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:92
1345
  msgid "Button Label"
1346
  msgstr ""
1347
 
1350
  #: framework/extensions/newsletter-subscribe/helpers.php:52,
1351
  #: framework/extensions/newsletter-subscribe/helpers.php:101,
1352
  #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:94,
1353
+ #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/view.php:19,
1354
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:116,
1355
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/extension.php:181,
1356
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/helpers.php:52,
1357
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/helpers.php:101,
1358
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:94,
1359
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/view.php:19
1360
  msgid "Subscribe"
1361
  msgstr ""
1362
 
1363
  #: framework/extensions/newsletter-subscribe/customizer.php:126,
1364
+ #: framework/premium/extensions/shortcuts/customizer.php:45,
1365
+ #: framework/premium/extensions/shortcuts/customizer.php:107,
1366
+ #: framework/premium/extensions/shortcuts/customizer.php:169,
1367
+ #: framework/premium/extensions/shortcuts/customizer.php:225,
1368
+ #: framework/premium/extensions/shortcuts/customizer.php:292,
1369
+ #: framework/premium/extensions/shortcuts/customizer.php:351,
1370
+ #: framework/premium/extensions/shortcuts/customizer.php:407,
1371
+ #: framework/premium/extensions/shortcuts/customizer.php:463,
1372
+ #: framework/premium/extensions/shortcuts/customizer.php:721,
1373
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:126,
1374
  #: framework/premium/features/content-blocks/options/404.php:140,
1375
  #: framework/premium/features/content-blocks/options/header.php:166,
1376
  #: framework/premium/features/content-blocks/options/hook.php:320,
1377
  #: framework/premium/features/content-blocks/options/popup.php:321,
1378
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:45,
1379
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:107,
1380
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:169,
1381
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:225,
1382
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:292,
1383
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:351,
1384
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:407,
1385
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:463,
1386
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:721,
1387
  #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:144,
1388
+ #: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:43,
1389
+ #: build_tmp/build/framework/premium/features/content-blocks/options/404.php:140,
1390
+ #: build_tmp/build/framework/premium/features/content-blocks/options/header.php:166,
1391
+ #: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:320,
1392
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:321,
1393
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:144,
1394
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:43
1395
  msgid "Visibility"
1396
  msgstr ""
1397
 
1399
  #: framework/extensions/trending/customizer.php:235,
1400
  #: framework/features/header/header-options.php:89,
1401
  #: framework/features/header/header-options.php:171,
1402
+ #: framework/premium/extensions/shortcuts/customizer.php:59,
1403
+ #: framework/premium/extensions/shortcuts/customizer.php:121,
1404
+ #: framework/premium/extensions/shortcuts/customizer.php:183,
1405
+ #: framework/premium/extensions/shortcuts/customizer.php:239,
1406
+ #: framework/premium/extensions/shortcuts/customizer.php:307,
1407
+ #: framework/premium/extensions/shortcuts/customizer.php:365,
1408
+ #: framework/premium/extensions/shortcuts/customizer.php:421,
1409
+ #: framework/premium/extensions/shortcuts/customizer.php:477,
1410
+ #: framework/premium/extensions/shortcuts/customizer.php:613,
1411
+ #: framework/premium/extensions/shortcuts/customizer.php:735,
1412
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:47,
1413
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:71,
1414
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:219,
1415
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:137,
1416
+ #: build_tmp/build/framework/extensions/trending/customizer.php:235,
1417
+ #: build_tmp/build/framework/features/header/header-options.php:89,
1418
+ #: build_tmp/build/framework/features/header/header-options.php:171,
1419
  #: framework/features/header/items/account/options.php:228,
1420
  #: framework/features/header/items/account/options.php:434,
1421
  #: framework/premium/features/content-blocks/options/404.php:151,
1422
  #: framework/premium/features/content-blocks/options/header.php:177,
1423
  #: framework/premium/features/content-blocks/options/hook.php:331,
1424
  #: framework/premium/features/content-blocks/options/popup.php:332,
1425
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:59,
1426
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:121,
1427
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:183,
1428
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:239,
1429
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:307,
1430
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:365,
1431
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:421,
1432
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:477,
1433
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:613,
1434
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:735,
1435
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/floating-cart.php:47,
1436
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/floating-cart.php:71,
1437
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:219,
1438
  #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:157,
1439
  #: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:56,
1440
+ #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:73,
1441
+ #: build_tmp/build/framework/features/header/items/account/options.php:228,
1442
+ #: build_tmp/build/framework/features/header/items/account/options.php:434,
1443
+ #: build_tmp/build/framework/premium/features/content-blocks/options/404.php:151,
1444
+ #: build_tmp/build/framework/premium/features/content-blocks/options/header.php:177,
1445
+ #: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:331,
1446
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:332,
1447
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:157,
1448
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:56,
1449
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:73
1450
  msgid "Desktop"
1451
  msgstr ""
1452
 
1453
  #: framework/extensions/newsletter-subscribe/customizer.php:138,
1454
  #: framework/extensions/trending/customizer.php:236,
1455
+ #: framework/premium/extensions/shortcuts/customizer.php:60,
1456
+ #: framework/premium/extensions/shortcuts/customizer.php:122,
1457
+ #: framework/premium/extensions/shortcuts/customizer.php:184,
1458
+ #: framework/premium/extensions/shortcuts/customizer.php:240,
1459
+ #: framework/premium/extensions/shortcuts/customizer.php:308,
1460
+ #: framework/premium/extensions/shortcuts/customizer.php:366,
1461
+ #: framework/premium/extensions/shortcuts/customizer.php:422,
1462
+ #: framework/premium/extensions/shortcuts/customizer.php:478,
1463
+ #: framework/premium/extensions/shortcuts/customizer.php:614,
1464
+ #: framework/premium/extensions/shortcuts/customizer.php:736,
1465
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:48,
1466
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:72,
1467
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:220,
1468
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:138,
1469
+ #: build_tmp/build/framework/extensions/trending/customizer.php:236,
1470
  #: framework/features/header/items/account/options.php:229,
1471
  #: framework/features/header/items/account/options.php:435,
1472
  #: framework/features/header/items/account/options.php:1077,
1474
  #: framework/premium/features/content-blocks/options/header.php:178,
1475
  #: framework/premium/features/content-blocks/options/hook.php:332,
1476
  #: framework/premium/features/content-blocks/options/popup.php:333,
1477
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:60,
1478
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:122,
1479
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:184,
1480
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:240,
1481
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:308,
1482
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:366,
1483
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:422,
1484
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:478,
1485
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:614,
1486
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:736,
1487
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/floating-cart.php:48,
1488
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/floating-cart.php:72,
1489
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:220,
1490
  #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:158,
1491
  #: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:57,
1492
+ #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:74,
1493
+ #: build_tmp/build/framework/features/header/items/account/options.php:229,
1494
+ #: build_tmp/build/framework/features/header/items/account/options.php:435,
1495
+ #: build_tmp/build/framework/features/header/items/account/options.php:1077,
1496
+ #: build_tmp/build/framework/premium/features/content-blocks/options/404.php:152,
1497
+ #: build_tmp/build/framework/premium/features/content-blocks/options/header.php:178,
1498
+ #: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:332,
1499
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:333,
1500
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:158,
1501
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:57,
1502
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:74
1503
  msgid "Tablet"
1504
  msgstr ""
1505
 
1507
  #: framework/extensions/trending/customizer.php:237,
1508
  #: framework/features/header/header-options.php:91,
1509
  #: framework/features/header/header-options.php:173,
1510
+ #: framework/premium/extensions/shortcuts/customizer.php:61,
1511
+ #: framework/premium/extensions/shortcuts/customizer.php:123,
1512
+ #: framework/premium/extensions/shortcuts/customizer.php:185,
1513
+ #: framework/premium/extensions/shortcuts/customizer.php:241,
1514
+ #: framework/premium/extensions/shortcuts/customizer.php:309,
1515
+ #: framework/premium/extensions/shortcuts/customizer.php:367,
1516
+ #: framework/premium/extensions/shortcuts/customizer.php:423,
1517
+ #: framework/premium/extensions/shortcuts/customizer.php:479,
1518
+ #: framework/premium/extensions/shortcuts/customizer.php:615,
1519
+ #: framework/premium/extensions/shortcuts/customizer.php:737,
1520
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:49,
1521
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:73,
1522
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:221,
1523
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:139,
1524
+ #: build_tmp/build/framework/extensions/trending/customizer.php:237,
1525
+ #: build_tmp/build/framework/features/header/header-options.php:91,
1526
+ #: build_tmp/build/framework/features/header/header-options.php:173,
1527
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:117,
1528
  #: framework/features/header/items/account/options.php:230,
1529
  #: framework/features/header/items/account/options.php:436,
1532
  #: framework/premium/features/content-blocks/options/header.php:179,
1533
  #: framework/premium/features/content-blocks/options/hook.php:333,
1534
  #: framework/premium/features/content-blocks/options/popup.php:334,
1535
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:61,
1536
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:123,
1537
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:185,
1538
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:241,
1539
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:309,
1540
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:367,
1541
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:423,
1542
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:479,
1543
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:615,
1544
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:737,
1545
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/floating-cart.php:49,
1546
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/floating-cart.php:73,
1547
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:221,
1548
  #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:159,
1549
  #: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:58,
1550
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:75,
1551
+ #: framework/premium/features/premium-header/items/contacts/options.php:97,
1552
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:117,
1553
+ #: build_tmp/build/framework/features/header/items/account/options.php:230,
1554
+ #: build_tmp/build/framework/features/header/items/account/options.php:436,
1555
+ #: build_tmp/build/framework/features/header/items/account/options.php:1078,
1556
+ #: build_tmp/build/framework/premium/features/content-blocks/options/404.php:153,
1557
+ #: build_tmp/build/framework/premium/features/content-blocks/options/header.php:179,
1558
+ #: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:333,
1559
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:334,
1560
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:159,
1561
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:58,
1562
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:75,
1563
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:97
1564
  msgid "Mobile"
1565
  msgstr ""
1566
 
1567
+ #: framework/extensions/newsletter-subscribe/customizer.php:152,
1568
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:152
1569
  msgid "Content Color"
1570
  msgstr ""
1571
 
1572
  #: framework/extensions/newsletter-subscribe/customizer.php:233,
1573
+ #: framework/extensions/trending/customizer.php:353,
1574
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:233,
1575
+ #: build_tmp/build/framework/extensions/trending/customizer.php:353
1576
  msgid "Container Inner Spacing"
1577
  msgstr ""
1578
 
1579
+ #: framework/extensions/newsletter-subscribe/extension.php:134,
1580
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/extension.php:134
1581
  msgid "Disable Subscribe Form"
1582
  msgstr ""
1583
 
1584
  #: framework/extensions/newsletter-subscribe/helpers.php:163,
1585
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/helpers.php:163,
1586
  #: framework/extensions/widgets/widgets/ct-about-me/options.php:81,
1587
+ #: framework/features/header/items/account/options.php:278,
1588
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-about-me/options.php:81,
1589
+ #: build_tmp/build/framework/features/header/items/account/options.php:278
1590
  #: static/js/screens/SiteExport.js:85
1591
  msgid "Name"
1592
  msgstr ""
1593
 
1594
  #: framework/extensions/newsletter-subscribe/helpers.php:166,
1595
  #: framework/features/header/modal/register.php:11,
1596
+ #: framework/premium/extensions/shortcuts/customizer.php:130,
1597
+ #: framework/premium/extensions/shortcuts/customizer.php:153,
1598
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/helpers.php:166,
1599
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:201,
1600
  #: framework/premium/extensions/shortcuts/views/bar.php:27,
1601
+ #: build_tmp/build/framework/features/header/modal/register.php:11,
1602
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:130,
1603
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:153,
1604
+ #: framework/premium/features/premium-header/items/contacts/options.php:178,
1605
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:201,
1606
+ #: build_tmp/build/framework/premium/extensions/shortcuts/views/bar.php:27,
1607
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:178
1608
  msgid "Email"
1609
  msgstr ""
1610
 
1611
+ #: framework/extensions/newsletter-subscribe/readme.php:4,
1612
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/readme.php:4
1613
  msgid ""
1614
  "After installing and activating the Newsletter Subscribe\n"
1615
  " extension you will have two possibilities to show your subscribe form:"
1616
  msgstr ""
1617
 
1618
+ #: framework/extensions/newsletter-subscribe/readme.php:10,
1619
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/readme.php:10
1620
  msgid "Widget"
1621
  msgstr ""
1622
 
1623
+ #: framework/extensions/newsletter-subscribe/readme.php:14,
1624
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/readme.php:14
1625
  msgid "Navigate to %s and place the widget in any widget area you want."
1626
  msgstr ""
1627
 
1628
+ #: framework/extensions/newsletter-subscribe/readme.php:17,
1629
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/readme.php:17
1630
  msgid "Appearance ➝ Widgets"
1631
  msgstr ""
1632
 
1633
+ #: framework/extensions/newsletter-subscribe/readme.php:25,
1634
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/readme.php:25
1635
  msgid "Single Page Block"
1636
  msgstr ""
1637
 
1638
+ #: framework/extensions/newsletter-subscribe/readme.php:29,
1639
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/readme.php:29
1640
  msgid "Navigate to %s and customize the form and more."
1641
  msgstr ""
1642
 
1643
+ #: framework/extensions/newsletter-subscribe/readme.php:32,
1644
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/readme.php:32
1645
  msgid "Customizer ➝ Single Posts"
1646
  msgstr ""
1647
 
1648
  #: framework/extensions/product-reviews/config.php:4,
1649
+ #: framework/extensions/product-reviews/extension.php:156,
1650
+ #: framework/extensions/product-reviews/extension.php:157,
1651
+ #: framework/extensions/product-reviews/extension.php:160,
1652
+ #: framework/extensions/product-reviews/extension.php:162,
1653
+ #: build_tmp/build/framework/extensions/product-reviews/config.php:4,
1654
+ #: build_tmp/build/framework/extensions/product-reviews/extension.php:156,
1655
+ #: build_tmp/build/framework/extensions/product-reviews/extension.php:157,
1656
+ #: build_tmp/build/framework/extensions/product-reviews/extension.php:160,
1657
+ #: build_tmp/build/framework/extensions/product-reviews/extension.php:162
1658
  msgid "Product Reviews"
1659
  msgstr ""
1660
 
1661
+ #: framework/extensions/product-reviews/config.php:5,
1662
+ #: build_tmp/build/framework/extensions/product-reviews/config.php:5
1663
  msgid ""
1664
  "This extension lets you easily create an affiliate marketing type of website "
1665
  "by giving you options to create a personalized product review and use your "
1666
  "affiliate links to direct your readers to the purchase page."
1667
  msgstr ""
1668
 
1669
+ #: framework/extensions/product-reviews/extension.php:136,
1670
+ #: build_tmp/build/framework/extensions/product-reviews/extension.php:136
1671
+ msgid "Read More Button"
1672
+ msgstr ""
1673
+
1674
+ #: framework/extensions/product-reviews/extension.php:161,
1675
+ #: build_tmp/build/framework/extensions/product-reviews/extension.php:161
1676
  msgid "Product Review"
1677
  msgstr ""
1678
 
1679
+ #: framework/extensions/product-reviews/extension.php:163,
1680
+ #: build_tmp/build/framework/extensions/product-reviews/extension.php:163
1681
  msgid "Parent Product Review"
1682
  msgstr ""
1683
 
1684
+ #: framework/extensions/product-reviews/extension.php:164,
1685
+ #: build_tmp/build/framework/extensions/product-reviews/extension.php:164
1686
  msgid "All Reviews"
1687
  msgstr ""
1688
 
1689
+ #: framework/extensions/product-reviews/extension.php:165,
1690
+ #: build_tmp/build/framework/extensions/product-reviews/extension.php:165
1691
  msgid "View Product Review"
1692
  msgstr ""
1693
 
1694
+ #: framework/extensions/product-reviews/extension.php:166,
1695
+ #: build_tmp/build/framework/extensions/product-reviews/extension.php:166
1696
  msgid "Add New Product Review"
1697
  msgstr ""
1698
 
1699
+ #: framework/extensions/product-reviews/extension.php:167,
1700
+ #: build_tmp/build/framework/extensions/product-reviews/extension.php:167
1701
  msgid "Add New Review"
1702
  msgstr ""
1703
 
1704
+ #: framework/extensions/product-reviews/extension.php:168,
1705
+ #: build_tmp/build/framework/extensions/product-reviews/extension.php:168
1706
  msgid "Edit Product Review"
1707
  msgstr ""
1708
 
1709
+ #: framework/extensions/product-reviews/extension.php:169,
1710
+ #: build_tmp/build/framework/extensions/product-reviews/extension.php:169
1711
  msgid "Update Product Review"
1712
  msgstr ""
1713
 
1714
+ #: framework/extensions/product-reviews/extension.php:170,
1715
+ #: build_tmp/build/framework/extensions/product-reviews/extension.php:170
1716
  msgid "Search Product Review"
1717
  msgstr ""
1718
 
1719
+ #: framework/extensions/product-reviews/extension.php:171,
1720
+ #: build_tmp/build/framework/extensions/product-reviews/extension.php:171
1721
  msgid "Not Found"
1722
  msgstr ""
1723
 
1724
+ #: framework/extensions/product-reviews/extension.php:172,
1725
+ #: build_tmp/build/framework/extensions/product-reviews/extension.php:172
1726
  msgid "Not found in Trash"
1727
  msgstr ""
1728
 
1729
+ #: framework/extensions/product-reviews/extension.php:206,
1730
+ #: framework/extensions/product-reviews/extension.php:216,
1731
+ #: build_tmp/build/framework/extensions/product-reviews/extension.php:206,
1732
+ #: build_tmp/build/framework/extensions/product-reviews/extension.php:216
1733
  msgid "Categories"
1734
  msgstr ""
1735
 
1736
+ #: framework/extensions/product-reviews/extension.php:207,
1737
  #: framework/extensions/trending/customizer.php:35,
1738
+ #: build_tmp/build/framework/extensions/product-reviews/extension.php:207,
1739
+ #: build_tmp/build/framework/extensions/trending/customizer.php:35,
1740
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:37,
1741
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:37
1742
  msgid "Category"
1743
  msgstr ""
1744
 
1745
+ #: framework/extensions/product-reviews/extension.php:208,
1746
+ #: build_tmp/build/framework/extensions/product-reviews/extension.php:208
1747
  msgid "Search Category"
1748
  msgstr ""
1749
 
1750
+ #: framework/extensions/product-reviews/extension.php:209,
1751
+ #: build_tmp/build/framework/extensions/product-reviews/extension.php:209
1752
  msgid "All Categories"
1753
  msgstr ""
1754
 
1755
+ #: framework/extensions/product-reviews/extension.php:210,
1756
+ #: build_tmp/build/framework/extensions/product-reviews/extension.php:210
1757
  msgid "Parent Category"
1758
  msgstr ""
1759
 
1760
+ #: framework/extensions/product-reviews/extension.php:211,
1761
+ #: build_tmp/build/framework/extensions/product-reviews/extension.php:211
1762
  msgid "Parent Category:"
1763
  msgstr ""
1764
 
1765
+ #: framework/extensions/product-reviews/extension.php:212,
1766
+ #: build_tmp/build/framework/extensions/product-reviews/extension.php:212
1767
  msgid "Edit Category"
1768
  msgstr ""
1769
 
1770
+ #: framework/extensions/product-reviews/extension.php:213,
1771
+ #: build_tmp/build/framework/extensions/product-reviews/extension.php:213
1772
  msgid "Update Category"
1773
  msgstr ""
1774
 
1775
+ #: framework/extensions/product-reviews/extension.php:214,
1776
+ #: build_tmp/build/framework/extensions/product-reviews/extension.php:214
1777
  msgid "Add New Category"
1778
  msgstr ""
1779
 
1780
+ #: framework/extensions/product-reviews/extension.php:215,
1781
+ #: build_tmp/build/framework/extensions/product-reviews/extension.php:215
1782
  msgid "New Category Name"
1783
  msgstr ""
1784
 
1785
  #: framework/extensions/product-reviews/helpers.php:30,
1786
+ #: framework/extensions/product-reviews/metabox.php:89,
1787
+ #: build_tmp/build/framework/extensions/product-reviews/helpers.php:30,
1788
+ #: build_tmp/build/framework/extensions/product-reviews/metabox.php:89
1789
  msgid "Rating"
1790
  msgstr ""
1791
 
1792
+ #: framework/extensions/product-reviews/metabox.php:12,
1793
+ #: build_tmp/build/framework/extensions/product-reviews/metabox.php:12
1794
  msgid "Gallery"
1795
  msgstr ""
1796
 
1797
+ #: framework/extensions/product-reviews/metabox.php:23,
1798
+ #: build_tmp/build/framework/extensions/product-reviews/metabox.php:23
1799
  msgid "Affiliate Button Label"
1800
  msgstr ""
1801
 
1802
  #: framework/extensions/product-reviews/metabox.php:25,
1803
+ #: framework/extensions/product-reviews/views/single-top.php:141,
1804
+ #: build_tmp/build/framework/extensions/product-reviews/metabox.php:25,
1805
+ #: build_tmp/build/framework/extensions/product-reviews/views/single-top.php:141
1806
  msgid "Buy Now"
1807
  msgstr ""
1808
 
1809
+ #: framework/extensions/product-reviews/metabox.php:30,
1810
+ #: build_tmp/build/framework/extensions/product-reviews/metabox.php:30
1811
  msgid "Affiliate Link"
1812
  msgstr ""
1813
 
1814
+ #: framework/extensions/product-reviews/metabox.php:36,
1815
+ #: build_tmp/build/framework/extensions/product-reviews/metabox.php:36
1816
  msgid "Open Link In New Tab"
1817
  msgstr ""
1818
 
1819
+ #: framework/extensions/product-reviews/metabox.php:58,
1820
+ #: build_tmp/build/framework/extensions/product-reviews/metabox.php:58
1821
  msgid "Read More Button Label"
1822
  msgstr ""
1823
 
1824
  #: framework/extensions/product-reviews/metabox.php:60,
1825
+ #: framework/extensions/product-reviews/views/single-top.php:147,
1826
+ #: build_tmp/build/framework/extensions/product-reviews/metabox.php:60,
1827
+ #: build_tmp/build/framework/extensions/product-reviews/views/single-top.php:147
1828
  msgid "Read More"
1829
  msgstr ""
1830
 
1831
+ #: framework/extensions/product-reviews/metabox.php:80,
1832
+ #: build_tmp/build/framework/extensions/product-reviews/metabox.php:80
1833
  msgid "Small Description"
1834
  msgstr ""
1835
 
1836
+ #: framework/extensions/product-reviews/metabox.php:95,
1837
+ #: build_tmp/build/framework/extensions/product-reviews/metabox.php:95
1838
  msgid "Scores"
1839
  msgstr ""
1840
 
1841
+ #: framework/extensions/product-reviews/metabox.php:135,
1842
+ #: build_tmp/build/framework/extensions/product-reviews/metabox.php:135
1843
  msgid "Product specs"
1844
  msgstr ""
1845
 
1846
+ #: framework/extensions/product-reviews/metabox.php:160,
1847
+ #: framework/extensions/product-reviews/views/single-top.php:236,
1848
+ #: build_tmp/build/framework/extensions/product-reviews/metabox.php:160,
1849
+ #: build_tmp/build/framework/extensions/product-reviews/views/single-top.php:236
1850
  msgid "Pros"
1851
  msgstr ""
1852
 
1853
+ #: framework/extensions/product-reviews/metabox.php:180,
1854
+ #: framework/extensions/product-reviews/views/single-top.php:259,
1855
+ #: build_tmp/build/framework/extensions/product-reviews/metabox.php:180,
1856
+ #: build_tmp/build/framework/extensions/product-reviews/views/single-top.php:259
1857
  msgid "Cons"
1858
  msgstr ""
1859
 
1860
  #: framework/extensions/trending/config.php:4,
1861
  #: framework/extensions/trending/customizer.php:96,
1862
+ #: framework/extensions/trending/customizer.php:105,
1863
+ #: build_tmp/build/framework/extensions/trending/config.php:4,
1864
+ #: build_tmp/build/framework/extensions/trending/customizer.php:96,
1865
+ #: build_tmp/build/framework/extensions/trending/customizer.php:105
1866
  msgid "Trending Posts"
1867
  msgstr ""
1868
 
1869
+ #: framework/extensions/trending/config.php:5,
1870
+ #: build_tmp/build/framework/extensions/trending/config.php:5
1871
  msgid ""
1872
  "Highlight your most popular posts or products based on the number of "
1873
  "comments or reviews they have gotten in the specified period of time."
1874
  msgstr ""
1875
 
1876
  #: framework/extensions/trending/customizer.php:8,
1877
+ #: build_tmp/build/framework/extensions/trending/customizer.php:8,
1878
  #: framework/premium/extensions/shortcuts/views/bar.php:30,
1879
+ #: framework/premium/features/premium-header/items/search-input/options.php:6,
1880
+ #: build_tmp/build/framework/premium/extensions/shortcuts/views/bar.php:30,
1881
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:6
1882
  msgid "Products"
1883
  msgstr ""
1884
 
1885
  #: framework/extensions/trending/customizer.php:36,
1886
+ #: build_tmp/build/framework/extensions/trending/customizer.php:36,
1887
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:38,
1888
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:38
1889
  msgid "All categories"
1890
  msgstr ""
1891
 
1892
  #: framework/extensions/trending/customizer.php:41,
1893
+ #: build_tmp/build/framework/extensions/trending/customizer.php:41,
1894
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:43,
1895
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:43
1896
  msgid "Taxonomy"
1897
  msgstr ""
1898
 
1899
  #: framework/extensions/trending/customizer.php:42,
1900
+ #: build_tmp/build/framework/extensions/trending/customizer.php:42,
1901
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:44,
1902
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:44
1903
  msgid "All taxonomies"
1904
  msgstr ""
1905
 
1906
+ #: framework/extensions/trending/customizer.php:114,
1907
+ #: build_tmp/build/framework/extensions/trending/customizer.php:114
1908
  msgid "Module Title"
1909
  msgstr ""
1910
 
1911
  #: framework/extensions/trending/customizer.php:117,
1912
+ #: framework/extensions/trending/helpers.php:216,
1913
+ #: build_tmp/build/framework/extensions/trending/customizer.php:117,
1914
+ #: build_tmp/build/framework/extensions/trending/helpers.php:216
1915
  msgid "Trending now"
1916
  msgstr ""
1917
 
1918
  #: framework/extensions/trending/customizer.php:145,
1919
+ #: build_tmp/build/framework/extensions/trending/customizer.php:145,
1920
  #: framework/extensions/widgets/widgets/ct-about-me/options.php:37,
1921
  #: framework/extensions/widgets/widgets/ct-advertisement/options.php:23,
1922
  #: framework/extensions/widgets/widgets/ct-posts/options.php:149,
1923
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:168,
1924
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-about-me/options.php:37,
1925
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-advertisement/options.php:23,
1926
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:149,
1927
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:168
1928
  msgid "Source"
1929
  msgstr ""
1930
 
1931
  #: framework/extensions/trending/customizer.php:150,
1932
+ #: build_tmp/build/framework/extensions/trending/customizer.php:150,
1933
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:154,
1934
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:154
1935
  msgid "Taxonomies"
1936
  msgstr ""
1937
 
1938
  #: framework/extensions/trending/customizer.php:151,
1939
+ #: build_tmp/build/framework/extensions/trending/customizer.php:151,
1940
  #: framework/extensions/widgets/widgets/ct-posts/options.php:155,
1941
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:174,
1942
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:155,
1943
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:174
1944
  msgid "Custom Query"
1945
  msgstr ""
1946
 
1947
+ #: framework/extensions/trending/customizer.php:174,
1948
+ #: build_tmp/build/framework/extensions/trending/customizer.php:174,
1949
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:243,
1950
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:243
1951
  msgid "Posts ID"
1952
  msgstr ""
1953
 
1954
+ #: framework/extensions/trending/customizer.php:178,
1955
+ #: build_tmp/build/framework/extensions/trending/customizer.php:178,
1956
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:247,
1957
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:247
1958
  msgid "Separate posts ID by comma. How to find the %spost ID%s."
1959
  msgstr ""
1960
 
1961
+ #: framework/extensions/trending/customizer.php:194,
1962
+ #: build_tmp/build/framework/extensions/trending/customizer.php:194
1963
  msgid "Trending From"
1964
  msgstr ""
1965
 
1966
  #: framework/extensions/trending/customizer.php:203,
1967
+ #: build_tmp/build/framework/extensions/trending/customizer.php:203,
1968
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:213,
1969
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:213
1970
  msgid "All Time"
1971
  msgstr ""
1972
 
1973
+ #: framework/extensions/trending/customizer.php:204,
1974
+ #: build_tmp/build/framework/extensions/trending/customizer.php:204
1975
  msgid "Last 24 Hours"
1976
  msgstr ""
1977
 
1978
+ #: framework/extensions/trending/customizer.php:205,
1979
+ #: build_tmp/build/framework/extensions/trending/customizer.php:205
1980
  msgid "Last 7 Days"
1981
  msgstr ""
1982
 
1983
+ #: framework/extensions/trending/customizer.php:206,
1984
+ #: build_tmp/build/framework/extensions/trending/customizer.php:206
1985
  msgid "Last Month"
1986
  msgstr ""
1987
 
1988
+ #: framework/extensions/trending/customizer.php:223,
1989
+ #: build_tmp/build/framework/extensions/trending/customizer.php:223
1990
  msgid "Container Visibility"
1991
  msgstr ""
1992
 
1993
+ #: framework/extensions/trending/customizer.php:296,
1994
+ #: build_tmp/build/framework/extensions/trending/customizer.php:296
1995
  msgid "Posts Font"
1996
  msgstr ""
1997
 
1998
  #: framework/extensions/trending/customizer.php:337,
1999
+ #: framework/premium/extensions/shortcuts/customizer.php:890,
2000
+ #: build_tmp/build/framework/extensions/trending/customizer.php:337,
2001
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:890
2002
  msgid "Container Background"
2003
  msgstr ""
2004
 
2005
+ #: framework/extensions/widgets/config.php:4,
2006
+ #: build_tmp/build/framework/extensions/widgets/config.php:4
2007
  msgid ""
2008
  "Add new handcrafted widgets to your sidebars! Social Network Icons, "
2009
  "Newsletter Subscribe, Contact Info, Custom Ads and even a Popular/Recent "
2011
  msgstr ""
2012
 
2013
  #: framework/features/header/account-modal.php:47,
2014
+ #: build_tmp/build/framework/features/header/account-modal.php:47,
2015
  #: framework/features/header/items/account/options.php:481,
2016
+ #: framework/features/header/items/account/views/logout.php:48,
2017
+ #: build_tmp/build/framework/features/header/items/account/options.php:481,
2018
+ #: build_tmp/build/framework/features/header/items/account/views/logout.php:48
2019
  msgid "Login"
2020
  msgstr ""
2021
 
2022
+ #: framework/features/header/account-modal.php:51,
2023
+ #: build_tmp/build/framework/features/header/account-modal.php:51
2024
  msgid "Sign Up"
2025
  msgstr ""
2026
 
2027
+ #: framework/features/header/account-modal.php:70,
2028
+ #: build_tmp/build/framework/features/header/account-modal.php:70
2029
  msgid "Back to login"
2030
  msgstr ""
2031
 
2032
+ #: framework/features/header/header-options.php:6,
2033
+ #: build_tmp/build/framework/features/header/header-options.php:6
2034
  msgid "Sticky Functionality"
2035
  msgstr ""
2036
 
2037
+ #: framework/features/header/header-options.php:32,
2038
+ #: build_tmp/build/framework/features/header/header-options.php:32
2039
+ msgid "Only Main Row"
2040
+ msgstr ""
2041
+
2042
+ #: framework/features/header/header-options.php:37,
2043
+ #: build_tmp/build/framework/features/header/header-options.php:37
2044
+ msgid "Top & Main Row"
2045
+ msgstr ""
2046
+
2047
+ #: framework/features/header/header-options.php:42,
2048
+ #: build_tmp/build/framework/features/header/header-options.php:42
2049
+ msgid "All Rows"
2050
+ msgstr ""
2051
+
2052
+ #: framework/features/header/header-options.php:47,
2053
+ #: build_tmp/build/framework/features/header/header-options.php:47
2054
+ msgid "Main & Bottom Row"
2055
+ msgstr ""
2056
+
2057
+ #: framework/features/header/header-options.php:52,
2058
+ #: build_tmp/build/framework/features/header/header-options.php:52
2059
+ msgid "Only Top Row"
2060
+ msgstr ""
2061
+
2062
+ #: framework/features/header/header-options.php:57,
2063
+ #: build_tmp/build/framework/features/header/header-options.php:57
2064
+ msgid "Only Bottom Row"
2065
+ msgstr ""
2066
+
2067
+ #: framework/features/header/header-options.php:63,
2068
+ #: build_tmp/build/framework/features/header/header-options.php:63
2069
  msgid "Sticky Effect"
2070
  msgstr ""
2071
 
2072
+ #: framework/features/header/header-options.php:72,
2073
+ #: build_tmp/build/framework/features/header/header-options.php:72
2074
  msgid "Slide Down"
2075
  msgstr ""
2076
 
2077
+ #: framework/features/header/header-options.php:73,
2078
+ #: build_tmp/build/framework/features/header/header-options.php:73
2079
  msgid "Fade"
2080
  msgstr ""
2081
 
2082
+ #: framework/features/header/header-options.php:74,
2083
+ #: build_tmp/build/framework/features/header/header-options.php:74
2084
  msgid "Auto Hide/Show"
2085
  msgstr ""
2086
 
2087
  #: framework/features/header/header-options.php:79,
2088
+ #: framework/features/header/header-options.php:160,
2089
+ #: build_tmp/build/framework/features/header/header-options.php:79,
2090
+ #: build_tmp/build/framework/features/header/header-options.php:160
2091
  msgid "Enable on"
2092
  msgstr ""
2093
 
2094
+ #: framework/features/header/header-options.php:106,
2095
+ #: build_tmp/build/framework/features/header/header-options.php:106
2096
  msgid "Transparent Functionality"
2097
  msgstr ""
2098
 
2099
  #: framework/features/header/header-options.php:144,
2100
+ #: framework/premium/extensions/shortcuts/customizer.php:742,
2101
+ #: build_tmp/build/framework/features/header/header-options.php:144,
2102
  #: framework/premium/features/content-blocks/options/header.php:142,
2103
  #: framework/premium/features/content-blocks/options/hook.php:231,
2104
+ #: framework/premium/features/content-blocks/options/popup.php:279,
2105
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:742,
2106
+ #: build_tmp/build/framework/premium/features/content-blocks/options/header.php:142,
2107
+ #: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:231,
2108
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:279
2109
  #: framework/premium/extensions/sidebars/static/js/SettingsManager.js:44
2110
  #: framework/premium/static/js/footer/EditConditions.js:97
2111
  #: static/js/header/EditConditions.js:96
2112
  msgid "Display Conditions"
2113
  msgstr ""
2114
 
2115
+ #: framework/premium/features/content-blocks.php:39,
2116
+ #: build_tmp/build/framework/premium/features/content-blocks.php:39
2117
  msgid "Hooks Locations"
2118
  msgstr ""
2119
 
2120
  #: framework/premium/features/content-blocks.php:204,
2121
+ #: framework/premium/extensions/shortcuts/customizer.php:517,
2122
+ #: build_tmp/build/framework/premium/features/content-blocks.php:204,
2123
+ #: framework/extensions/widgets/widgets/ct-about-me/options.php:23,
2124
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:517,
2125
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-about-me/options.php:23
2126
  msgid "Type"
2127
  msgstr ""
2128
 
2129
+ #: framework/premium/features/content-blocks.php:205,
2130
+ #: build_tmp/build/framework/premium/features/content-blocks.php:205
2131
  msgid "Location/Trigger"
2132
  msgstr ""
2133
 
2134
+ #: framework/premium/features/content-blocks.php:206,
2135
+ #: build_tmp/build/framework/premium/features/content-blocks.php:206
2136
  msgid "Conditions"
2137
  msgstr ""
2138
 
2139
+ #: framework/premium/features/content-blocks.php:207,
2140
+ #: build_tmp/build/framework/premium/features/content-blocks.php:207
2141
  msgid "Output"
2142
  msgstr ""
2143
 
2144
+ #: framework/premium/features/content-blocks.php:208,
2145
+ #: build_tmp/build/framework/premium/features/content-blocks.php:208
2146
  msgid "Enable/Disable"
2147
  msgstr ""
2148
 
2149
  #: framework/premium/features/content-blocks.php:228,
2150
+ #: framework/premium/extensions/shortcuts/customizer.php:705,
2151
+ #: build_tmp/build/framework/premium/features/content-blocks.php:228,
2152
  #: framework/extensions/widgets/widgets/ct-about-me/options.php:208,
2153
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:279,
2154
+ #: framework/extensions/widgets/widgets/ct-socials/options.php:94,
2155
  #: framework/features/header/items/account/options.php:124,
2156
  #: framework/features/header/items/account/options.php:349,
2157
  #: framework/premium/features/content-blocks/options/popup.php:162,
2158
  #: framework/premium/features/content-blocks/options/popup.php:418,
2159
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:705,
2160
+ #: framework/premium/features/premium-header/items/contacts/options.php:277,
2161
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-about-me/options.php:208,
2162
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:279,
2163
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-socials/options.php:94,
2164
+ #: build_tmp/build/framework/features/header/items/account/options.php:124,
2165
+ #: build_tmp/build/framework/features/header/items/account/options.php:349,
2166
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:162,
2167
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:418,
2168
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:277
2169
  msgid "None"
2170
  msgstr ""
2171
 
2172
  #: framework/premium/features/content-blocks.php:229,
2173
+ #: build_tmp/build/framework/premium/features/content-blocks.php:229,
2174
+ #: framework/premium/features/content-blocks/options/popup.php:163,
2175
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:163
2176
  msgid "On scroll"
2177
  msgstr ""
2178
 
2179
  #: framework/premium/features/content-blocks.php:230,
2180
+ #: build_tmp/build/framework/premium/features/content-blocks.php:230,
2181
+ #: framework/premium/features/content-blocks/options/popup.php:164,
2182
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:164
2183
  msgid "On scroll to element"
2184
  msgstr ""
2185
 
2186
  #: framework/premium/features/content-blocks.php:231,
2187
+ #: build_tmp/build/framework/premium/features/content-blocks.php:231,
2188
+ #: framework/premium/features/content-blocks/options/popup.php:165,
2189
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:165
2190
  msgid "On page load"
2191
  msgstr ""
2192
 
2193
  #: framework/premium/features/content-blocks.php:232,
2194
+ #: build_tmp/build/framework/premium/features/content-blocks.php:232,
2195
+ #: framework/premium/features/content-blocks/options/popup.php:166,
2196
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:166
2197
  msgid "After inactivity"
2198
  msgstr ""
2199
 
2200
  #: framework/premium/features/content-blocks.php:233,
2201
+ #: build_tmp/build/framework/premium/features/content-blocks.php:233,
2202
+ #: framework/premium/features/content-blocks/options/popup.php:167,
2203
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:167
2204
  msgid "After x time"
2205
  msgstr ""
2206
 
2207
  #: framework/premium/features/content-blocks.php:234,
2208
+ #: build_tmp/build/framework/premium/features/content-blocks.php:234,
2209
+ #: framework/premium/features/content-blocks/options/popup.php:168,
2210
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:168
2211
  msgid "On page exit intent"
2212
  msgstr ""
2213
 
2214
+ #: framework/premium/features/content-blocks.php:238,
2215
+ #: build_tmp/build/framework/premium/features/content-blocks.php:238
2216
  msgid "Down"
2217
  msgstr ""
2218
 
2219
+ #: framework/premium/features/content-blocks.php:239,
2220
+ #: build_tmp/build/framework/premium/features/content-blocks.php:239
2221
  msgid "Up"
2222
  msgstr ""
2223
 
2224
  #: framework/premium/features/content-blocks.php:607,
2225
+ #: framework/premium/features/content-blocks.php:613,
2226
+ #: build_tmp/build/framework/premium/features/content-blocks.php:607,
2227
+ #: build_tmp/build/framework/premium/features/content-blocks.php:613
2228
  msgid "Content Blocks"
2229
  msgstr ""
2230
 
2231
+ #: framework/premium/features/content-blocks.php:608,
2232
+ #: build_tmp/build/framework/premium/features/content-blocks.php:608
2233
  msgid "Content Block"
2234
  msgstr ""
2235
 
2236
+ #: framework/premium/features/content-blocks.php:609,
2237
+ #: build_tmp/build/framework/premium/features/content-blocks.php:609
2238
  msgid "Add New"
2239
  msgstr ""
2240
 
2241
+ #: framework/premium/features/content-blocks.php:610,
2242
+ #: build_tmp/build/framework/premium/features/content-blocks.php:610
2243
  msgid "Add New Content Block"
2244
  msgstr ""
2245
 
2246
+ #: framework/premium/features/content-blocks.php:611,
2247
+ #: build_tmp/build/framework/premium/features/content-blocks.php:611
2248
  msgid "Edit Content Block"
2249
  msgstr ""
2250
 
2251
+ #: framework/premium/features/content-blocks.php:612,
2252
+ #: build_tmp/build/framework/premium/features/content-blocks.php:612
2253
  #: framework/premium/static/js/hooks/CreateHook.js:32
2254
  msgid "New Content Block"
2255
  msgstr ""
2256
 
2257
+ #: framework/premium/features/content-blocks.php:614,
2258
+ #: build_tmp/build/framework/premium/features/content-blocks.php:614
2259
  msgid "View Content Block"
2260
  msgstr ""
2261
 
2262
+ #: framework/premium/features/content-blocks.php:615,
2263
+ #: build_tmp/build/framework/premium/features/content-blocks.php:615
2264
  msgid "Search Content Blocks"
2265
  msgstr ""
2266
 
2267
+ #: framework/premium/features/content-blocks.php:616,
2268
+ #: build_tmp/build/framework/premium/features/content-blocks.php:616
2269
  msgid "Nothing found"
2270
  msgstr ""
2271
 
2272
+ #: framework/premium/features/content-blocks.php:617,
2273
+ #: build_tmp/build/framework/premium/features/content-blocks.php:617
2274
  msgid "Nothing found in Trash"
2275
  msgstr ""
2276
 
2277
  #: framework/premium/features/premium-footer.php:30,
2278
+ #: framework/premium/features/premium-footer.php:41,
2279
+ #: build_tmp/build/framework/premium/features/premium-footer.php:30,
2280
+ #: build_tmp/build/framework/premium/features/premium-footer.php:41
2281
  msgid "Footer Menu 1"
2282
  msgstr ""
2283
 
2284
  #: framework/premium/features/premium-footer.php:42,
2285
+ #: build_tmp/build/framework/premium/features/premium-footer.php:42,
2286
+ #: framework/premium/features/premium-footer/items/menu-secondary/config.php:4,
2287
+ #: build_tmp/build/framework/premium/features/premium-footer/items/menu-secondary/config.php:4
2288
  msgid "Footer Menu 2"
2289
  msgstr ""
2290
 
2291
+ #: framework/premium/features/premium-header.php:42,
2292
+ #: build_tmp/build/framework/premium/features/premium-header.php:42
2293
  msgid "Header Menu 3"
2294
  msgstr ""
2295
 
2296
+ #: framework/premium/features/premium-header.php:102,
2297
+ #: build_tmp/build/framework/premium/features/premium-header.php:102
2298
  msgid "Header Widget Area "
2299
  msgstr ""
2300
 
2301
  #: framework/premium/features/premium-header.php:158,
2302
  #: framework/premium/extensions/mega-menu/options.php:420,
2303
+ #: build_tmp/build/framework/premium/features/premium-header.php:158,
2304
  #: framework/features/header/items/account/options.php:123,
2305
  #: framework/features/header/items/account/options.php:348,
2306
+ #: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:404,
2307
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:420,
2308
+ #: build_tmp/build/framework/features/header/items/account/options.php:123,
2309
+ #: build_tmp/build/framework/features/header/items/account/options.php:348,
2310
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/dynamic-data.php:404
2311
  msgid "Icon"
2312
  msgstr ""
2313
 
2314
  #: framework/premium/features/premium-header.php:172,
2315
  #: framework/premium/extensions/mega-menu/options.php:434,
2316
+ #: build_tmp/build/framework/premium/features/premium-header.php:172,
2317
  #: framework/extensions/widgets/widgets/ct-about-me/options.php:187,
2318
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:258,
2319
+ #: framework/extensions/widgets/widgets/ct-socials/options.php:73,
2320
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:434,
2321
+ #: framework/premium/features/premium-header/items/contacts/options.php:249,
2322
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-about-me/options.php:187,
2323
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:258,
2324
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-socials/options.php:73,
2325
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:249
2326
  msgid "Icons Size"
2327
  msgstr ""
2328
 
2329
  #: framework/premium/features/premium-header.php:184,
2330
+ #: framework/premium/extensions/mega-menu/options.php:456,
2331
+ #: build_tmp/build/framework/premium/features/premium-header.php:184,
2332
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:456
2333
  msgid "Icon Position"
2334
  msgstr ""
2335
 
2336
  #: framework/premium/features/premium-header.php:191,
2337
  #: framework/premium/extensions/mega-menu/options.php:463,
2338
+ #: framework/premium/extensions/shortcuts/customizer.php:638,
2339
+ #: build_tmp/build/framework/premium/features/premium-header.php:191,
2340
  #: framework/features/header/items/account/options.php:259,
2341
  #: framework/features/header/items/account/options.php:465,
2342
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:463,
2343
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:638,
2344
+ #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:98,
2345
+ #: build_tmp/build/framework/features/header/items/account/options.php:259,
2346
+ #: build_tmp/build/framework/features/header/items/account/options.php:465,
2347
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:98
2348
  msgid "Left"
2349
  msgstr ""
2350
 
2351
  #: framework/premium/features/premium-header.php:192,
2352
  #: framework/premium/extensions/mega-menu/options.php:464,
2353
+ #: framework/premium/extensions/shortcuts/customizer.php:639,
2354
+ #: build_tmp/build/framework/premium/features/premium-header.php:192,
2355
  #: framework/features/header/items/account/options.php:260,
2356
  #: framework/features/header/items/account/options.php:466,
2357
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:464,
2358
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:639,
2359
+ #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:99,
2360
+ #: build_tmp/build/framework/features/header/items/account/options.php:260,
2361
+ #: build_tmp/build/framework/features/header/items/account/options.php:466,
2362
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:99
2363
  msgid "Right"
2364
  msgstr ""
2365
 
2366
  #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:17,
2367
+ #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/view.php:12,
2368
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:17,
2369
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/view.php:12
2370
  msgid "Newsletter"
2371
  msgstr ""
2372
 
2373
+ #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:99,
2374
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:99
2375
  msgid "Container Type"
2376
  msgstr ""
2377
 
2378
  #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:106,
2379
+ #: framework/extensions/widgets/widgets/ct-about-me/options.php:32,
2380
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:106,
2381
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-about-me/options.php:32
2382
  msgid "Boxed"
2383
  msgstr ""
2384
 
2385
+ #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:112,
2386
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:112
2387
  msgid "Content Alignment"
2388
  msgstr ""
2389
 
2390
+ #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/widget.php:14,
2391
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/widget.php:14
2392
  msgid "Newsletter subscribe form"
2393
  msgstr ""
2394
 
2395
+ #: framework/extensions/newsletter-subscribe/includes/BlocksyMailerliteManager.php:99,
2396
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/includes/BlocksyMailerliteManager.php:99
2397
  msgid "Thank you for subscribing!"
2398
  msgstr ""
2399
 
2400
+ #: framework/extensions/product-reviews/views/single-top.php:128,
2401
+ #: build_tmp/build/framework/extensions/product-reviews/views/single-top.php:128
2402
  msgid "Overall Score"
2403
  msgstr ""
2404
 
2405
+ #: framework/extensions/product-reviews/views/single-top.php:212,
2406
+ #: build_tmp/build/framework/extensions/product-reviews/views/single-top.php:212
2407
  msgid "Specs"
2408
  msgstr ""
2409
 
2410
+ #: framework/features/header/modal/login.php:17,
2411
+ #: build_tmp/build/framework/features/header/modal/login.php:17
2412
  msgid "Email Address"
2413
  msgstr ""
2414
 
2415
+ #: framework/features/header/modal/login.php:22,
2416
+ #: build_tmp/build/framework/features/header/modal/login.php:22
2417
  msgid "Password"
2418
  msgstr ""
2419
 
2420
+ #: framework/features/header/modal/login.php:29,
2421
+ #: build_tmp/build/framework/features/header/modal/login.php:29
2422
  msgid "Remember Me"
2423
  msgstr ""
2424
 
2425
+ #: framework/features/header/modal/login.php:33,
2426
+ #: build_tmp/build/framework/features/header/modal/login.php:33
2427
  msgid "Forgot Password?"
2428
  msgstr ""
2429
 
2430
+ #: framework/features/header/modal/login.php:41,
2431
+ #: build_tmp/build/framework/features/header/modal/login.php:41
2432
  msgid "Log In"
2433
  msgstr ""
2434
 
2435
+ #: framework/features/header/modal/lostpassword.php:5,
2436
+ #: build_tmp/build/framework/features/header/modal/lostpassword.php:5
2437
  msgid "Username or Email Address"
2438
  msgstr ""
2439
 
2440
+ #: framework/features/header/modal/lostpassword.php:11,
2441
+ #: build_tmp/build/framework/features/header/modal/lostpassword.php:11
2442
  msgid "Get New Password"
2443
  msgstr ""
2444
 
2445
+ #: framework/features/header/modal/register.php:6,
2446
+ #: build_tmp/build/framework/features/header/modal/register.php:6
2447
  msgid "Username"
2448
  msgstr ""
2449
 
2450
+ #: framework/features/header/modal/register.php:18,
2451
+ #: build_tmp/build/framework/features/header/modal/register.php:18
2452
  msgid "Registration confirmation will be emailed to you"
2453
  msgstr ""
2454
 
2455
+ #: framework/features/header/modal/register.php:23,
2456
+ #: build_tmp/build/framework/features/header/modal/register.php:23
2457
  msgid "Register"
2458
  msgstr ""
2459
 
2460
+ #: framework/premium/extensions/adobe-typekit/config.php:4,
2461
+ #: build_tmp/build/framework/premium/extensions/adobe-typekit/config.php:4
2462
  msgid "Adobe Fonts"
2463
  msgstr ""
2464
 
2465
+ #: framework/premium/extensions/adobe-typekit/config.php:5,
2466
+ #: build_tmp/build/framework/premium/extensions/adobe-typekit/config.php:5
2467
  msgid ""
2468
  "Connect your Adobe Fonts project and use the selected fonts throughout "
2469
  "Blocksy and your favorite page builder."
2470
  msgstr ""
2471
 
2472
+ #: framework/premium/extensions/code-snippets/config.php:5,
2473
+ #: build_tmp/build/framework/premium/extensions/code-snippets/config.php:5
2474
  msgid ""
2475
  "Inject custom code snippets throughout your website. The extension works "
2476
  "globally or on a per post/page basis."
2478
 
2479
  #: framework/premium/extensions/code-snippets/extension.php:38,
2480
  #: framework/premium/extensions/code-snippets/extension.php:78,
2481
+ #: framework/premium/extensions/code-snippets/extension.php:117,
2482
+ #: build_tmp/build/framework/premium/extensions/code-snippets/extension.php:38,
2483
+ #: build_tmp/build/framework/premium/extensions/code-snippets/extension.php:78,
2484
+ #: build_tmp/build/framework/premium/extensions/code-snippets/extension.php:117
2485
  msgid "After body open scripts"
2486
  msgstr ""
2487
 
2488
+ #: framework/premium/extensions/code-snippets/readme.php:4,
2489
+ #: build_tmp/build/framework/premium/extensions/code-snippets/readme.php:4
2490
  msgid ""
2491
  "After activating the Custom Code Snippets extension you will have two ways "
2492
  "to manage your snippets:"
2493
  msgstr ""
2494
 
2495
+ #: framework/premium/extensions/code-snippets/readme.php:9,
2496
+ #: build_tmp/build/framework/premium/extensions/code-snippets/readme.php:9
2497
  msgid "Globally"
2498
  msgstr ""
2499
 
2500
+ #: framework/premium/extensions/code-snippets/readme.php:13,
2501
+ #: build_tmp/build/framework/premium/extensions/code-snippets/readme.php:13
2502
  msgid "Navigate to %s and place there your header, body or footer scripts."
2503
  msgstr ""
2504
 
2505
+ #: framework/premium/extensions/code-snippets/readme.php:16,
2506
+ #: build_tmp/build/framework/premium/extensions/code-snippets/readme.php:16
2507
  msgid "Customizer ➝ Custom Code Snippets"
2508
  msgstr ""
2509
 
2510
+ #: framework/premium/extensions/code-snippets/readme.php:24,
2511
+ #: build_tmp/build/framework/premium/extensions/code-snippets/readme.php:24
2512
  msgid "Per page/post"
2513
  msgstr ""
2514
 
2515
+ #: framework/premium/extensions/code-snippets/readme.php:28,
2516
+ #: build_tmp/build/framework/premium/extensions/code-snippets/readme.php:28
2517
  msgid ""
2518
  "Edit your page or post, click on %s, scroll down and you will see the %2s "
2519
  "panel."
2520
  msgstr ""
2521
 
2522
+ #: framework/premium/extensions/code-snippets/readme.php:32,
2523
+ #: build_tmp/build/framework/premium/extensions/code-snippets/readme.php:32
2524
  msgid "%s Page Settings"
2525
  msgstr ""
2526
 
2527
+ #: framework/premium/extensions/custom-fonts/config.php:4,
2528
+ #: build_tmp/build/framework/premium/extensions/custom-fonts/config.php:4
2529
  msgid ""
2530
  "Upload an unlimited number of custom fonts or variable fonts and use them "
2531
  "throughout Blocksy and your favorite page builder."
2532
  msgstr ""
2533
 
2534
+ #: framework/premium/extensions/local-google-fonts/config.php:4,
2535
+ #: build_tmp/build/framework/premium/extensions/local-google-fonts/config.php:4
2536
  msgid ""
2537
  "Serve your chosen Google Fonts from your own web server. This will increase "
2538
  "the loading speed and makes sure your website complies with the privacy "
2539
  "regulations."
2540
  msgstr ""
2541
 
2542
+ #: framework/premium/extensions/mega-menu/config.php:5,
2543
+ #: build_tmp/build/framework/premium/extensions/mega-menu/config.php:5
2544
  msgid ""
2545
  "Create beautiful personalised menus that set your website apart from the "
2546
  "others. Add icons and badges to your entries and even add Content Blocks "
2547
  "inside your dropdowns."
2548
  msgstr ""
2549
 
2550
+ #: framework/premium/extensions/mega-menu/config.php:9,
2551
+ #: build_tmp/build/framework/premium/extensions/mega-menu/config.php:9
2552
  #: framework/extensions/newsletter-subscribe/dashboard-static/js/hooks/useActivationWithRequirements.js:60
2553
  #: framework/extensions/product-reviews/static/js/EditSettings.js:30
2554
  #: framework/premium/extensions/white-label/dashboard-static/js/EditSettings.js:96
2555
  msgid "Configure"
2556
  msgstr ""
2557
 
2558
+ #: framework/premium/extensions/mega-menu/extension.php:99,
2559
+ #: build_tmp/build/framework/premium/extensions/mega-menu/extension.php:99
2560
  msgid "Menu Item Settings"
2561
  msgstr ""
2562
 
2563
+ #: framework/premium/extensions/mega-menu/extension.php:257,
2564
+ #: build_tmp/build/framework/premium/extensions/mega-menu/extension.php:257
2565
  msgid "New"
2566
  msgstr ""
2567
 
2568
  #: framework/premium/extensions/mega-menu/options.php:16,
2569
+ #: framework/premium/extensions/mega-menu/options.php:528,
2570
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:16,
2571
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:528
2572
  msgid "Mega Menu Settings"
2573
  msgstr ""
2574
 
2575
+ #: framework/premium/extensions/mega-menu/options.php:27,
2576
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:27
2577
  msgid "Dropdown Width"
2578
  msgstr ""
2579
 
2580
  #: framework/premium/extensions/mega-menu/options.php:35,
2581
+ #: framework/premium/extensions/mega-menu/options.php:48,
2582
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:35,
2583
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:48
2584
  msgid "Content Width"
2585
  msgstr ""
2586
 
2587
  #: framework/premium/extensions/mega-menu/options.php:36,
2588
+ #: framework/premium/extensions/mega-menu/options.php:57,
2589
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:36,
2590
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:57
2591
  msgid "Full Width"
2592
  msgstr ""
2593
 
2594
+ #: framework/premium/extensions/mega-menu/options.php:37,
2595
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:37
2596
  msgid "Custom Width"
2597
  msgstr ""
2598
 
2599
+ #: framework/premium/extensions/mega-menu/options.php:56,
2600
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:56
2601
  msgid "Default Width"
2602
  msgstr ""
2603
 
2604
+ #: framework/premium/extensions/mega-menu/options.php:85,
2605
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:85
2606
  msgid "Columns"
2607
  msgstr ""
2608
 
2609
+ #: framework/premium/extensions/mega-menu/options.php:320,
2610
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:320
2611
  msgid "Custom Content"
2612
  msgstr ""
2613
 
2614
+ #: framework/premium/extensions/mega-menu/options.php:324,
2615
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:324
2616
  msgid "Content Type"
2617
  msgstr ""
2618
 
2619
+ #: framework/premium/extensions/mega-menu/options.php:331,
2620
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:331
2621
  msgid "Default (Menu Item)"
2622
  msgstr ""
2623
 
2624
+ #: framework/premium/extensions/mega-menu/options.php:332,
2625
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:332
2626
  msgid "Custom Text"
2627
  msgstr ""
2628
 
2629
+ #: framework/premium/extensions/mega-menu/options.php:333,
2630
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:333
2631
  msgid "Content Block/Hook"
2632
  msgstr ""
2633
 
2634
  #: framework/premium/extensions/mega-menu/options.php:392,
2635
+ #: framework/premium/extensions/mega-menu/options.php:708,
2636
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:392,
2637
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:708
2638
  msgid "Item Label Settings"
2639
  msgstr ""
2640
 
2641
+ #: framework/premium/extensions/mega-menu/options.php:397,
2642
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:397
2643
  msgid "Item Label"
2644
  msgstr ""
2645
 
2646
+ #: framework/premium/extensions/mega-menu/options.php:405,
2647
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:405
2648
  msgid "Enabled"
2649
  msgstr ""
2650
 
2651
  #: framework/premium/extensions/mega-menu/options.php:406,
2652
  #: framework/premium/features/content-blocks/options/404.php:104,
2653
  #: framework/premium/features/content-blocks/options/header.php:108,
2654
+ #: framework/premium/features/content-blocks/options/hook.php:108,
2655
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:406,
2656
+ #: build_tmp/build/framework/premium/features/content-blocks/options/404.php:104,
2657
+ #: build_tmp/build/framework/premium/features/content-blocks/options/header.php:108,
2658
+ #: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:108
2659
  msgid "Disabled"
2660
  msgstr ""
2661
 
2662
+ #: framework/premium/extensions/mega-menu/options.php:407,
2663
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:407
2664
  msgid "Heading"
2665
  msgstr ""
2666
 
2667
+ #: framework/premium/extensions/mega-menu/options.php:413,
2668
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:413
2669
  msgid "Label Link"
2670
  msgstr ""
2671
 
2672
  #: framework/premium/extensions/mega-menu/options.php:479,
2673
+ #: framework/premium/extensions/mega-menu/options.php:790,
2674
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:479,
2675
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:790
2676
  msgid "Menu Badge Settings"
2677
  msgstr ""
2678
 
2679
  #: framework/premium/extensions/mega-menu/options.php:491,
2680
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:23,
2681
+ #: framework/features/header/items/account/options.php:277,
2682
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:491,
2683
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:23,
2684
+ #: build_tmp/build/framework/features/header/items/account/options.php:277
2685
  msgid "Text"
2686
  msgstr ""
2687
 
2688
  #: framework/premium/extensions/mega-menu/options.php:497,
2689
+ #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:260,
2690
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:497,
2691
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:260
2692
  msgid "Vertical Alignment"
2693
  msgstr ""
2694
 
2695
+ #: framework/premium/extensions/mega-menu/options.php:532,
2696
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:532
2697
  msgid "Background"
2698
  msgstr ""
2699
 
2700
+ #: framework/premium/extensions/mega-menu/options.php:546,
2701
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:546
2702
  msgid "Link Color"
2703
  msgstr ""
2704
 
2705
  #: framework/premium/extensions/mega-menu/options.php:566,
2706
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:144,
2707
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:566,
2708
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:144,
2709
  #: framework/premium/features/premium-header/items/contacts/options.php:417,
2710
  #: framework/premium/features/premium-header/items/contacts/options.php:459,
2711
+ #: framework/premium/features/premium-header/items/contacts/options.php:499,
2712
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:417,
2713
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:459,
2714
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:499
2715
  msgid "Link Initial"
2716
  msgstr ""
2717
 
2718
+ #: framework/premium/extensions/mega-menu/options.php:571,
2719
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:571
2720
  msgid "Link Hover/Active"
2721
  msgstr ""
2722
 
2723
+ #: framework/premium/extensions/mega-menu/options.php:576,
2724
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:576
2725
  msgid "Background Hover"
2726
  msgstr ""
2727
 
2728
  #: framework/premium/extensions/mega-menu/options.php:583,
2729
+ #: framework/premium/extensions/mega-menu/options.php:717,
2730
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:583,
2731
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:717
2732
  msgid "Heading Color"
2733
  msgstr ""
2734
 
2735
  #: framework/premium/extensions/mega-menu/options.php:595,
2736
  #: framework/premium/extensions/mega-menu/options.php:615,
2737
+ #: framework/premium/extensions/mega-menu/options.php:729,
2738
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:595,
2739
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:615,
2740
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:729
2741
  msgid "Initial Color"
2742
  msgstr ""
2743
 
2744
+ #: framework/premium/extensions/mega-menu/options.php:603,
2745
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:603
2746
  msgid "Text Color"
2747
  msgstr ""
2748
 
2749
  #: framework/premium/extensions/mega-menu/options.php:622,
2750
+ #: framework/premium/extensions/shortcuts/customizer.php:837,
2751
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:622,
2752
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:837,
2753
  #: framework/premium/features/premium-header/items/language-switcher/options.php:432,
2754
+ #: framework/premium/features/premium-header/items/search-input/options.php:815,
2755
+ #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:432,
2756
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:815
2757
  msgid "Items Divider"
2758
  msgstr ""
2759
 
2760
+ #: framework/premium/extensions/mega-menu/options.php:637,
2761
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:637
2762
  msgid "Columns Divider"
2763
  msgstr ""
2764
 
2765
  #: framework/premium/extensions/mega-menu/options.php:652,
2766
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:652,
2767
+ #: framework/premium/features/premium-header/items/search-input/options.php:797,
2768
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:797
2769
  msgid "Dropdown Shadow"
2770
  msgstr ""
2771
 
2772
+ #: framework/premium/extensions/mega-menu/options.php:684,
2773
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:684
2774
  msgid "Column Settings"
2775
  msgstr ""
2776
 
2777
+ #: framework/premium/extensions/mega-menu/options.php:688,
2778
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:688
2779
  msgid "Column Spacing"
2780
  msgstr ""
2781
 
2787
  #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:135,
2788
  #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:212,
2789
  #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:288,
2790
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:740,
2791
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:273,
2792
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:301,
2793
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:332,
2795
  #: framework/premium/features/premium-header/items/dark-mode-switcher/options.php:30,
2796
  #: framework/premium/features/premium-header/items/dark-mode-switcher/options.php:58,
2797
  #: framework/premium/features/premium-header/items/dark-mode-switcher/options.php:89,
2798
+ #: framework/premium/features/premium-header/items/dark-mode-switcher/options.php:118,
2799
+ #: build_tmp/build/framework/features/header/items/account/options.php:660,
2800
+ #: build_tmp/build/framework/features/header/items/account/options.php:688,
2801
+ #: build_tmp/build/framework/features/header/items/account/options.php:719,
2802
+ #: build_tmp/build/framework/features/header/items/account/options.php:748,
2803
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:135,
2804
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:212,
2805
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:288,
2806
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:273,
2807
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:301,
2808
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:332,
2809
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:361,
2810
+ #: build_tmp/build/framework/premium/features/premium-header/items/dark-mode-switcher/options.php:30,
2811
+ #: build_tmp/build/framework/premium/features/premium-header/items/dark-mode-switcher/options.php:58,
2812
+ #: build_tmp/build/framework/premium/features/premium-header/items/dark-mode-switcher/options.php:89,
2813
+ #: build_tmp/build/framework/premium/features/premium-header/items/dark-mode-switcher/options.php:118
2814
  msgid "Icon Color"
2815
  msgstr ""
2816
 
2817
+ #: framework/premium/extensions/mega-menu/options.php:770,
2818
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:770
2819
  msgid "Active"
2820
  msgstr ""
2821
 
2822
+ #: framework/premium/extensions/post-types-extra/config.php:4,
2823
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/config.php:4
2824
  msgid "Post Types Extra"
2825
  msgstr ""
2826
 
2827
+ #: framework/premium/extensions/post-types-extra/config.php:5,
2828
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/config.php:5
2829
  msgid ""
2830
  "Enables support for Custom Fields inside archive cards and single page post "
2831
  "title, adds a reading progress bar for your posts and lets you set featured "
2832
  "images and colors for your categories archives."
2833
  msgstr ""
2834
 
2835
+ #: framework/premium/extensions/post-types-extra/readme.php:4,
2836
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/readme.php:4
2837
  msgid ""
2838
  "After activating this extension you will be able to enable the read progress "
2839
  "bar for your single posts, add a featured image and set different colors to "
2842
  "taxonomies archive filters."
2843
  msgstr ""
2844
 
2845
+ #: framework/premium/extensions/post-types-extra/readme.php:10,
2846
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/readme.php:10
2847
  msgid "Custom Fields"
2848
  msgstr ""
2849
 
2850
+ #: framework/premium/extensions/post-types-extra/readme.php:14,
2851
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/readme.php:14
2852
  msgid ""
2853
  "After setting up your custom fields you will be able to output them from %s "
2854
  "or from %2s."
2855
  msgstr ""
2856
 
2857
+ #: framework/premium/extensions/post-types-extra/readme.php:17,
2858
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/readme.php:17
2859
  msgid "Customizer ➝ Blog Posts ➝ Card Options"
2860
  msgstr ""
2861
 
2862
+ #: framework/premium/extensions/post-types-extra/readme.php:21,
2863
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/readme.php:21
2864
  msgid "Customizer ➝ Single Posts ➝ Post Title"
2865
  msgstr ""
2866
 
2867
+ #: framework/premium/extensions/post-types-extra/readme.php:29,
2868
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/readme.php:29
2869
  msgid "Taxonomies Filters"
2870
  msgstr ""
2871
 
2872
+ #: framework/premium/extensions/post-types-extra/readme.php:33,
2873
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/readme.php:33
2874
  msgid "You can enable the taxonomies filters from %s."
2875
  msgstr ""
2876
 
2877
+ #: framework/premium/extensions/post-types-extra/readme.php:36,
2878
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/readme.php:36
2879
  msgid "Customizer ➝ Blog Posts ➝ Filters"
2880
  msgstr ""
2881
 
2882
+ #: framework/premium/extensions/post-types-extra/readme.php:44,
2883
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/readme.php:44
2884
  msgid "Read Progress Bar"
2885
  msgstr ""
2886
 
2887
+ #: framework/premium/extensions/post-types-extra/readme.php:48,
2888
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/readme.php:48
2889
  msgid "This options could be enabled from %s."
2890
  msgstr ""
2891
 
2892
+ #: framework/premium/extensions/post-types-extra/readme.php:51,
2893
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/readme.php:51
2894
  msgid "Customizer ➝ Single Posts ➝ Read Progress Bar"
2895
  msgstr ""
2896
 
2897
+ #: framework/premium/extensions/post-types-extra/readme.php:59,
2898
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/readme.php:59
2899
  msgid "Taxonomy Featured Image & Custom Colors"
2900
  msgstr ""
2901
 
2902
+ #: framework/premium/extensions/post-types-extra/readme.php:63,
2903
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/readme.php:63
2904
  msgid ""
2905
  "To customize these options simply navigate to %s and edit one of your "
2906
  "categories."
2907
  msgstr ""
2908
 
2909
+ #: framework/premium/extensions/post-types-extra/readme.php:66,
2910
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/readme.php:66
2911
  msgid "Dashboard ➝ Posts ➝ Categories"
2912
  msgstr ""
2913
 
2914
+ #: framework/premium/extensions/shortcuts/config.php:5,
2915
+ #: build_tmp/build/framework/premium/extensions/shortcuts/config.php:5
2916
  msgid ""
2917
  "Easily turn your websites into mobile first experiences. You can easily add "
2918
  "the most important actions at the bottom of the screen for easy access."
2920
 
2921
  #: framework/premium/extensions/shortcuts/customizer.php:12,
2922
  #: framework/premium/extensions/shortcuts/customizer.php:35,
2923
+ #: framework/premium/extensions/shortcuts/customizer.php:542,
2924
+ #: framework/premium/extensions/shortcuts/views/bar.php:25,
2925
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:12,
2926
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:35,
2927
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:542,
2928
+ #: build_tmp/build/framework/premium/extensions/shortcuts/views/bar.php:25
2929
  msgid "Home"
2930
  msgstr ""
2931
 
2932
+ #: framework/premium/extensions/shortcuts/customizer.php:68,
2933
+ #: framework/premium/extensions/shortcuts/customizer.php:91,
2934
+ #: framework/premium/extensions/shortcuts/customizer.php:551,
2935
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:88,
2936
  #: framework/premium/extensions/shortcuts/views/bar.php:26,
2937
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:68,
2938
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:91,
2939
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:551,
2940
+ #: framework/premium/features/premium-header/items/contacts/options.php:69,
2941
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:88,
2942
+ #: build_tmp/build/framework/premium/extensions/shortcuts/views/bar.php:26,
2943
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:69
2944
  msgid "Phone"
2945
  msgstr ""
2946
 
2947
+ #: framework/premium/extensions/shortcuts/customizer.php:192,
2948
+ #: framework/premium/extensions/shortcuts/customizer.php:215,
2949
+ #: framework/premium/extensions/shortcuts/views/bar.php:28,
2950
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:192,
2951
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:215,
2952
+ #: build_tmp/build/framework/premium/extensions/shortcuts/views/bar.php:28
2953
  msgid "Scroll Top"
2954
  msgstr ""
2955
 
2956
+ #: framework/premium/extensions/shortcuts/customizer.php:318,
2957
+ #: framework/premium/extensions/shortcuts/customizer.php:341,
2958
+ #: framework/premium/extensions/shortcuts/views/bar.php:29,
2959
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:318,
2960
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:341,
2961
+ #: build_tmp/build/framework/premium/extensions/shortcuts/views/bar.php:29
2962
  msgid "Cart"
2963
  msgstr ""
2964
 
2965
+ #: framework/premium/extensions/shortcuts/customizer.php:374,
2966
+ #: framework/premium/extensions/shortcuts/customizer.php:397,
2967
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:374,
2968
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:397
2969
  msgid "Shop"
2970
  msgstr ""
2971
 
2972
+ #: framework/premium/extensions/shortcuts/customizer.php:430,
2973
+ #: framework/premium/extensions/shortcuts/customizer.php:453,
2974
  #: framework/premium/extensions/woocommerce-extra/readme.php:70,
2975
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:430,
2976
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:453,
2977
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/readme.php:70,
2978
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/config.php:4,
2979
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:109,
2980
+ #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/view.php:88,
2981
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/config.php:4,
2982
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:109,
2983
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/view.php:88
2984
  msgid "Wishlist"
2985
  msgstr ""
2986
 
2987
+ #: framework/premium/extensions/shortcuts/customizer.php:536,
2988
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:536
2989
  msgid "Shortcuts"
2990
  msgstr ""
2991
 
2992
+ #: framework/premium/extensions/shortcuts/customizer.php:591,
2993
  #: framework/features/header/items/account/options.php:216,
2994
  #: framework/features/header/items/account/options.php:422,
2995
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:591,
2996
+ #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:61,
2997
+ #: build_tmp/build/framework/features/header/items/account/options.php:216,
2998
+ #: build_tmp/build/framework/features/header/items/account/options.php:422,
2999
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:61
3000
  msgid "Label Visibility"
3001
  msgstr ""
3002
 
3003
+ #: framework/premium/extensions/shortcuts/customizer.php:631,
3004
  #: framework/features/header/items/account/options.php:252,
3005
  #: framework/features/header/items/account/options.php:458,
3006
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:631,
3007
+ #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:91,
3008
+ #: build_tmp/build/framework/features/header/items/account/options.php:252,
3009
+ #: build_tmp/build/framework/features/header/items/account/options.php:458,
3010
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:91
3011
  msgid "Label Position"
3012
  msgstr ""
3013
 
3014
+ #: framework/premium/extensions/shortcuts/customizer.php:640,
3015
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:25,
3016
  #: framework/premium/features/content-blocks/hooks-manager.php:317,
3017
  #: framework/features/header/items/account/options.php:261,
3018
  #: framework/features/header/items/account/options.php:467,
3019
  #: framework/premium/features/content-blocks/options/hook.php:302,
3020
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:640,
3021
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/floating-cart.php:25,
3022
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:317,
3023
+ #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:100,
3024
+ #: build_tmp/build/framework/features/header/items/account/options.php:261,
3025
+ #: build_tmp/build/framework/features/header/items/account/options.php:467,
3026
+ #: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:302,
3027
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:100
3028
  msgid "Bottom"
3029
  msgstr ""
3030
 
3031
+ #: framework/premium/extensions/shortcuts/customizer.php:651,
3032
  #: framework/features/header/items/account/options.php:198,
3033
  #: framework/features/header/items/account/options.php:404,
3034
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:651,
3035
+ #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:39,
3036
+ #: build_tmp/build/framework/features/header/items/account/options.php:198,
3037
+ #: build_tmp/build/framework/features/header/items/account/options.php:404,
3038
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:39
3039
  msgid "Icon Size"
3040
  msgstr ""
3041
 
3042
+ #: framework/premium/extensions/shortcuts/customizer.php:661,
3043
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:661
3044
  msgid "Container Height"
3045
  msgstr ""
3046
 
3047
+ #: framework/premium/extensions/shortcuts/customizer.php:676,
3048
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:676
3049
  msgid "Container Max Width"
3050
  msgstr ""
3051
 
3052
+ #: framework/premium/extensions/shortcuts/customizer.php:700,
3053
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:700
3054
  msgid "Scroll Interaction"
3055
  msgstr ""
3056
 
3057
+ #: framework/premium/extensions/shortcuts/customizer.php:706,
3058
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:706
3059
  msgid "Hide"
3060
  msgstr ""
3061
 
3062
+ #: framework/premium/extensions/shortcuts/customizer.php:748,
3063
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:748
3064
  msgid "Shortcuts Bar Display Conditions"
3065
  msgstr ""
3066
 
3067
+ #: framework/premium/extensions/shortcuts/customizer.php:749,
3068
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:749
3069
  msgid "Add one or more conditions to display the shortcuts bar."
3070
  msgstr ""
3071
 
3072
+ #: framework/premium/extensions/shortcuts/customizer.php:763,
3073
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:763,
3074
  #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:173,
3075
  #: framework/premium/features/premium-header/items/contacts/options.php:349,
3076
  #: framework/premium/features/premium-header/items/language-switcher/options.php:192,
3077
+ #: framework/premium/features/premium-header/items/language-switcher/options.php:376,
3078
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:173,
3079
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:349,
3080
+ #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:192,
3081
+ #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:376
3082
  msgid "Font"
3083
  msgstr ""
3084
 
3085
+ #: framework/premium/extensions/shortcuts/customizer.php:805,
3086
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:805,
3087
  #: framework/premium/features/premium-header/items/contacts/options.php:529,
3088
  #: framework/premium/features/premium-header/items/contacts/options.php:558,
3089
  #: framework/premium/features/premium-header/items/contacts/options.php:589,
3090
+ #: framework/premium/features/premium-header/items/contacts/options.php:619,
3091
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:529,
3092
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:558,
3093
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:589,
3094
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:619
3095
  msgid "Icons Color"
3096
  msgstr ""
3097
 
3098
+ #: framework/premium/extensions/shortcuts/customizer.php:857,
3099
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:857
3100
  msgid "Items Divider Height"
3101
  msgstr ""
3102
 
3103
+ #: framework/premium/extensions/shortcuts/customizer.php:871,
3104
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:123,
3105
  #: framework/premium/features/content-blocks/options/popup.php:368,
3106
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:871,
3107
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/floating-cart.php:123,
3108
+ #: framework/premium/features/premium-header/items/language-switcher/options.php:446,
3109
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:368,
3110
+ #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:446
3111
  msgid "Shadow"
3112
  msgstr ""
3113
 
3114
+ #: framework/premium/extensions/shortcuts/customizer.php:911,
3115
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:911
3116
  msgid "Container Border Radius"
3117
  msgstr ""
3118
 
3119
+ #: framework/premium/extensions/sidebars/config.php:5,
3120
+ #: build_tmp/build/framework/premium/extensions/sidebars/config.php:5
3121
  msgid ""
3122
  "Create unlimited personalized sets of widget areas and display them on any "
3123
  "page or post using our conditional logic functionality."
3124
  msgstr ""
3125
 
3126
+ #: framework/premium/extensions/sidebars/config.php:9,
3127
+ #: build_tmp/build/framework/premium/extensions/sidebars/config.php:9
3128
  msgid "Create New Sidebar"
3129
  msgstr ""
3130
 
3131
+ #: framework/premium/extensions/sidebars/form.php:3,
3132
+ #: build_tmp/build/framework/premium/extensions/sidebars/form.php:3
3133
  #: framework/premium/extensions/sidebars/static/js/main.js:42
3134
  msgid "Create Sidebar/Widget Area"
3135
  msgstr ""
3136
 
3137
+ #: framework/premium/extensions/sidebars/form.php:6,
3138
+ #: build_tmp/build/framework/premium/extensions/sidebars/form.php:6
3139
  msgid ""
3140
  "In order to create a new sidebar/widget area simply enter a name in the "
3141
  "input below and click the Create Sidebar button."
3142
  msgstr ""
3143
 
3144
+ #: framework/premium/extensions/sidebars/form.php:16,
3145
+ #: build_tmp/build/framework/premium/extensions/sidebars/form.php:16
3146
  #: framework/premium/extensions/sidebars/static/js/main.js:58
3147
  msgid "Create Sidebar"
3148
  msgstr ""
3149
 
3150
+ #: framework/premium/extensions/sidebars/form.php:20,
3151
+ #: build_tmp/build/framework/premium/extensions/sidebars/form.php:20
3152
  msgid "Available Sidebars/Widget Areas"
3153
  msgstr ""
3154
 
3155
+ #: framework/premium/extensions/white-label/config.php:4,
3156
+ #: build_tmp/build/framework/premium/extensions/white-label/config.php:4
3157
  msgid ""
3158
  "Replace Blocksy's branding with your own. Easily hide licensing info and "
3159
  "other sections of the theme and companion plugin from your clients and make "
3160
  "your final product look more professional."
3161
  msgstr ""
3162
 
3163
+ #: framework/premium/extensions/woocommerce-extra/config.php:5,
3164
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/config.php:5
3165
  msgid ""
3166
  "Make the shopping experience better for your visitors! Add features such as "
3167
  "Product Quick View, Wishlist functionality and a Floating Add to Cart "
3168
  "button. Customize the single product gallery/slider and the layout."
3169
  msgstr ""
3170
 
3171
+ #: framework/premium/extensions/woocommerce-extra/customizer.php:5,
3172
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/customizer.php:5
3173
  msgid "Quick View Button"
3174
  msgstr ""
3175
 
3176
+ #: framework/premium/extensions/woocommerce-extra/customizer.php:21,
3177
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/customizer.php:21
3178
  msgid "Trigger On"
3179
  msgstr ""
3180
 
3181
+ #: framework/premium/extensions/woocommerce-extra/customizer.php:29,
3182
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/customizer.php:29
3183
  msgid "Button click"
3184
  msgstr ""
3185
 
3186
+ #: framework/premium/extensions/woocommerce-extra/customizer.php:30,
3187
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/customizer.php:30
3188
  msgid "Image click"
3189
  msgstr ""
3190
 
3191
+ #: framework/premium/extensions/woocommerce-extra/customizer.php:31,
3192
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/customizer.php:31
3193
  msgid "Card click"
3194
  msgstr ""
3195
 
3197
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:196,
3198
  #: framework/features/header/items/account/options.php:177,
3199
  #: framework/features/header/items/account/options.php:383,
3200
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/extension.php:82,
3201
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:196,
3202
+ #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:33,
3203
+ #: build_tmp/build/framework/features/header/items/account/options.php:177,
3204
+ #: build_tmp/build/framework/features/header/items/account/options.php:383,
3205
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:33
3206
  msgid "Type 3"
3207
  msgstr ""
3208
 
3209
  #: framework/premium/extensions/woocommerce-extra/extension.php:87,
3210
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:201,
3211
  #: framework/features/header/items/account/options.php:182,
3212
+ #: framework/features/header/items/account/options.php:388,
3213
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/extension.php:87,
3214
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:201,
3215
+ #: build_tmp/build/framework/features/header/items/account/options.php:182,
3216
+ #: build_tmp/build/framework/features/header/items/account/options.php:388
3217
  msgid "Type 4"
3218
  msgstr ""
3219
 
3220
  #: framework/premium/extensions/woocommerce-extra/extension.php:110,
3221
+ #: framework/premium/extensions/woocommerce-extra/extension.php:129,
3222
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/extension.php:110,
3223
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/extension.php:129
3224
  msgid "Number of Columns"
3225
  msgstr ""
3226
 
3227
+ #: framework/premium/extensions/woocommerce-extra/extension.php:607,
3228
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/extension.php:607
3229
  msgid "Available Filters"
3230
  msgstr ""
3231
 
3232
+ #: framework/premium/extensions/woocommerce-extra/extension.php:685,
3233
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/extension.php:685
3234
  msgid "Quick view title before"
3235
  msgstr ""
3236
 
3237
+ #: framework/premium/extensions/woocommerce-extra/extension.php:690,
3238
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/extension.php:690
3239
  msgid "Quick view title after"
3240
  msgstr ""
3241
 
3242
+ #: framework/premium/extensions/woocommerce-extra/extension.php:695,
3243
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/extension.php:695
3244
  msgid "Quick view price before"
3245
  msgstr ""
3246
 
3247
+ #: framework/premium/extensions/woocommerce-extra/extension.php:700,
3248
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/extension.php:700
3249
  msgid "Quick view price after"
3250
  msgstr ""
3251
 
3252
+ #: framework/premium/extensions/woocommerce-extra/extension.php:705,
3253
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/extension.php:705
3254
  msgid "Quick view summary before"
3255
  msgstr ""
3256
 
3257
+ #: framework/premium/extensions/woocommerce-extra/extension.php:710,
3258
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/extension.php:710
3259
  msgid "Quick view summary after"
3260
  msgstr ""
3261
 
3262
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:4,
3263
+ #: framework/premium/extensions/woocommerce-extra/readme.php:25,
3264
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/floating-cart.php:4,
3265
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/readme.php:25
3266
  msgid "Floating Cart"
3267
  msgstr ""
3268
 
3269
+ #: framework/premium/extensions/woocommerce-extra/floating-cart.php:17,
3270
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/floating-cart.php:17
3271
  msgid "Position"
3272
  msgstr ""
3273
 
3274
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:24,
3275
  #: framework/premium/features/content-blocks/hooks-manager.php:279,
3276
+ #: framework/premium/features/content-blocks/options/hook.php:301,
3277
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/floating-cart.php:24,
3278
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:279,
3279
+ #: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:301
3280
  msgid "Top"
3281
  msgstr ""
3282
 
3283
+ #: framework/premium/extensions/woocommerce-extra/floating-cart.php:34,
3284
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/floating-cart.php:34
3285
  msgid "Product Title Visibility"
3286
  msgstr ""
3287
 
3288
+ #: framework/premium/extensions/woocommerce-extra/floating-cart.php:58,
3289
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/floating-cart.php:58
3290
  msgid "Floating Cart Visibility"
3291
  msgstr ""
3292
 
3293
+ #: framework/premium/extensions/woocommerce-extra/helpers.php:101,
3294
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/helpers.php:101
3295
  msgid "Go to product page"
3296
  msgstr ""
3297
 
3298
+ #: framework/premium/extensions/woocommerce-extra/helpers.php:321,
3299
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/helpers.php:321
3300
  msgid "Filter"
3301
  msgstr ""
3302
 
3303
+ #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:3,
3304
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:3
3305
  msgid "Off Canvas Filter"
3306
  msgstr ""
3307
 
3308
+ #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:14,
3309
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:14
3310
  msgid "Filter Widgets"
3311
  msgstr ""
3312
 
3313
+ #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:18,
3314
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:18
3315
  msgid "Widgets"
3316
  msgstr ""
3317
 
3318
+ #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:36,
3319
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:36
3320
  msgid "Widgets Vertical Spacing"
3321
  msgstr ""
3322
 
3323
+ #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:51,
3324
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:51
3325
  msgid "Widgets Title Font"
3326
  msgstr ""
3327
 
3328
+ #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:59,
3329
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:59
3330
  msgid "Widgets Title Font Color"
3331
  msgstr ""
3332
 
3333
+ #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:107,
3334
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:107
3335
  msgid "Widgets Font"
3336
  msgstr ""
3337
 
3338
+ #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:116,
3339
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:116
3340
  msgid "Widgets Font Color"
3341
  msgstr ""
3342
 
3343
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:138,
3344
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:138,
3345
  #: framework/premium/features/premium-header/items/contacts/options.php:411,
3346
  #: framework/premium/features/premium-header/items/contacts/options.php:454,
3347
+ #: framework/premium/features/premium-header/items/contacts/options.php:494,
3348
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:411,
3349
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:454,
3350
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:494
3351
  msgid "Text Initial"
3352
  msgstr ""
3353
 
3354
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:149,
3355
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:149,
3356
  #: framework/premium/features/premium-header/items/contacts/options.php:423,
3357
  #: framework/premium/features/premium-header/items/contacts/options.php:464,
3358
+ #: framework/premium/features/premium-header/items/contacts/options.php:504,
3359
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:423,
3360
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:464,
3361
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:504
3362
  msgid "Link Hover"
3363
  msgstr ""
3364
 
3365
+ #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:160,
3366
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:160
3367
  msgid "Filter Button & Panel"
3368
  msgstr ""
3369
 
3370
+ #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:169,
3371
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:169
3372
  msgid "Filter Icon Type"
3373
  msgstr ""
3374
 
3375
+ #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:207,
3376
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:207
3377
  msgid "Filter Button Visibility"
3378
  msgstr ""
3379
 
3380
+ #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:230,
3381
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:230
3382
  msgid "Panel Reveal"
3383
  msgstr ""
3384
 
3385
+ #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:237,
3386
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:237
3387
  msgid "Left Side"
3388
  msgstr ""
3389
 
3390
+ #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:238,
3391
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:238
3392
  msgid "Right Side"
3393
  msgstr ""
3394
 
3395
+ #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:243,
3396
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:243
3397
  msgid "Panel Width"
3398
  msgstr ""
3399
 
3400
+ #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:284,
3401
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:284
3402
  msgid "Panel Shadow"
3403
  msgstr ""
3404
 
3405
+ #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:302,
3406
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:302
3407
  msgid "Panel Background"
3408
  msgstr ""
3409
 
3410
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:334,
3411
+ #: framework/features/header/items/account/options.php:958,
3412
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:334,
3413
+ #: build_tmp/build/framework/features/header/items/account/options.php:958
3414
  msgid "Close Icon Color"
3415
  msgstr ""
3416
 
3417
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:364,
3418
+ #: framework/features/header/items/account/options.php:990,
3419
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:364,
3420
+ #: build_tmp/build/framework/features/header/items/account/options.php:990
3421
  msgid "Close Icon Background"
3422
  msgstr ""
3423
 
3424
+ #: framework/premium/extensions/woocommerce-extra/readme.php:4,
3425
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/readme.php:4
3426
  msgid ""
3427
  "After installing and activating the WooCommerce Extra extension you will "
3428
  "have these features:"
3429
  msgstr ""
3430
 
3431
+ #: framework/premium/extensions/woocommerce-extra/readme.php:10,
3432
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/readme.php:10
3433
  msgid "Product Quick View"
3434
  msgstr ""
3435
 
3437
  #: framework/premium/extensions/woocommerce-extra/readme.php:29,
3438
  #: framework/premium/extensions/woocommerce-extra/readme.php:44,
3439
  #: framework/premium/extensions/woocommerce-extra/readme.php:59,
3440
+ #: framework/premium/extensions/woocommerce-extra/readme.php:74,
3441
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/readme.php:14,
3442
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/readme.php:29,
3443
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/readme.php:44,
3444
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/readme.php:59,
3445
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/readme.php:74
3446
  msgid "Navigate to %s."
3447
  msgstr ""
3448
 
3449
+ #: framework/premium/extensions/woocommerce-extra/readme.php:17,
3450
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/readme.php:17
3451
  msgid "Customizer ➝ WooCommerce ➝ Product Archives ➝ Card Options ➝ Quick View"
3452
  msgstr ""
3453
 
3454
+ #: framework/premium/extensions/woocommerce-extra/readme.php:32,
3455
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/readme.php:32
3456
  msgid "Customizer ➝ WooCommerce ➝ Single Product ➝ Floating Cart"
3457
  msgstr ""
3458
 
3459
+ #: framework/premium/extensions/woocommerce-extra/readme.php:40,
3460
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/readme.php:40
3461
  msgid "Advanced Gallery & Slider"
3462
  msgstr ""
3463
 
3464
+ #: framework/premium/extensions/woocommerce-extra/readme.php:47,
3465
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/readme.php:47
3466
  msgid "Customizer ➝ WooCommerce ➝ Single Product ➝ Gallery Options"
3467
  msgstr ""
3468
 
3469
+ #: framework/premium/extensions/woocommerce-extra/readme.php:55,
3470
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/readme.php:55
3471
  msgid "Share Box"
3472
  msgstr ""
3473
 
3474
+ #: framework/premium/extensions/woocommerce-extra/readme.php:62,
3475
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/readme.php:62
3476
  msgid "Customizer ➝ WooCommerce ➝ Single Product ➝ Share Box"
3477
  msgstr ""
3478
 
3479
+ #: framework/premium/extensions/woocommerce-extra/readme.php:77,
3480
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/readme.php:77
3481
  msgid "Customizer ➝ WooCommerce ➝ General ➝ Products Wishlist"
3482
  msgstr ""
3483
 
3484
+ #: framework/premium/features/content-blocks/hooks-manager.php:11,
3485
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:11
3486
  msgid "WP head"
3487
  msgstr ""
3488
 
3489
  #: framework/premium/features/content-blocks/hooks-manager.php:13,
3490
  #: framework/premium/features/content-blocks/hooks-manager.php:22,
3491
+ #: framework/premium/features/content-blocks/hooks-manager.php:32,
3492
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:13,
3493
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:22,
3494
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:32
3495
  msgid "Head"
3496
  msgstr ""
3497
 
3498
+ #: framework/premium/features/content-blocks/hooks-manager.php:20,
3499
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:20
3500
  msgid "WP head start"
3501
  msgstr ""
3502
 
3503
+ #: framework/premium/features/content-blocks/hooks-manager.php:30,
3504
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:30
3505
  msgid "WP head end"
3506
  msgstr ""
3507
 
3508
+ #: framework/premium/features/content-blocks/hooks-manager.php:39,
3509
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:39
3510
  msgid "Header before"
3511
  msgstr ""
3512
 
3513
  #: framework/premium/features/content-blocks/hooks-manager.php:41,
3514
+ #: framework/premium/features/content-blocks/hooks-manager.php:50,
3515
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:41,
3516
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:50
3517
  msgid "Header"
3518
  msgstr ""
3519
 
3520
+ #: framework/premium/features/content-blocks/hooks-manager.php:48,
3521
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:48
3522
  msgid "Header after"
3523
  msgstr ""
3524
 
3525
+ #: framework/premium/features/content-blocks/hooks-manager.php:57,
3526
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:57
3527
  msgid "Desktop top"
3528
  msgstr ""
3529
 
3530
  #: framework/premium/features/content-blocks/hooks-manager.php:59,
3531
  #: framework/premium/features/content-blocks/hooks-manager.php:68,
3532
  #: framework/premium/features/content-blocks/hooks-manager.php:77,
3533
+ #: framework/premium/features/content-blocks/hooks-manager.php:86,
3534
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:59,
3535
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:68,
3536
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:77,
3537
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:86
3538
  msgid "Header offcanvas"
3539
  msgstr ""
3540
 
3541
+ #: framework/premium/features/content-blocks/hooks-manager.php:66,
3542
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:66
3543
  msgid "Desktop bottom"
3544
  msgstr ""
3545
 
3546
+ #: framework/premium/features/content-blocks/hooks-manager.php:75,
3547
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:75
3548
  msgid "Mobile top"
3549
  msgstr ""
3550
 
3551
+ #: framework/premium/features/content-blocks/hooks-manager.php:84,
3552
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:84
3553
  msgid "Mobile bottom"
3554
  msgstr ""
3555
 
3556
+ #: framework/premium/features/content-blocks/hooks-manager.php:93,
3557
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:93
3558
  msgid "Sidebar before"
3559
  msgstr ""
3560
 
3561
  #: framework/premium/features/content-blocks/hooks-manager.php:94,
3562
  #: framework/premium/features/content-blocks/hooks-manager.php:101,
3563
  #: framework/premium/features/content-blocks/hooks-manager.php:108,
3564
+ #: framework/premium/features/content-blocks/hooks-manager.php:115,
3565
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:94,
3566
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:101,
3567
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:108,
3568
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:115
3569
  msgid "Left/Right sidebar"
3570
  msgstr ""
3571
 
3572
+ #: framework/premium/features/content-blocks/hooks-manager.php:100,
3573
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:100
3574
  msgid "Sidebar start"
3575
  msgstr ""
3576
 
3577
+ #: framework/premium/features/content-blocks/hooks-manager.php:107,
3578
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:107
3579
  msgid "Sidebar end"
3580
  msgstr ""
3581
 
3582
+ #: framework/premium/features/content-blocks/hooks-manager.php:114,
3583
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:114
3584
  msgid "Sidebar after"
3585
  msgstr ""
3586
 
3587
+ #: framework/premium/features/content-blocks/hooks-manager.php:121,
3588
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:121
3589
  msgid "Dynamic sidebar before"
3590
  msgstr ""
3591
 
3592
  #: framework/premium/features/content-blocks/hooks-manager.php:122,
3593
  #: framework/premium/features/content-blocks/hooks-manager.php:129,
3594
+ #: framework/premium/features/content-blocks/hooks-manager.php:137,
3595
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:122,
3596
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:129,
3597
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:137
3598
  msgid "All widget areas"
3599
  msgstr ""
3600
 
3601
+ #: framework/premium/features/content-blocks/hooks-manager.php:128,
3602
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:128
3603
  msgid "Dynamic sidebar"
3604
  msgstr ""
3605
 
3606
+ #: framework/premium/features/content-blocks/hooks-manager.php:136,
3607
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:136
3608
  msgid "Dynamic sidebar after"
3609
  msgstr ""
3610
 
3611
+ #: framework/premium/features/content-blocks/hooks-manager.php:145,
3612
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:145
3613
  msgid "Before section"
3614
  msgstr ""
3615
 
3616
  #: framework/premium/features/content-blocks/hooks-manager.php:146,
3617
  #: framework/premium/features/content-blocks/hooks-manager.php:154,
3618
  #: framework/premium/features/content-blocks/hooks-manager.php:162,
3619
+ #: framework/premium/features/content-blocks/hooks-manager.php:170,
3620
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:146,
3621
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:154,
3622
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:162,
3623
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:170
3624
  msgid "Page/post title"
3625
  msgstr ""
3626
 
3627
  #: framework/premium/features/content-blocks/hooks-manager.php:153,
3628
+ #: framework/premium/features/content-blocks/hooks-manager.php:223,
3629
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:153,
3630
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:223
3631
  msgid "Before title"
3632
  msgstr ""
3633
 
3634
  #: framework/premium/features/content-blocks/hooks-manager.php:161,
3635
+ #: framework/premium/features/content-blocks/hooks-manager.php:230,
3636
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:161,
3637
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:230
3638
  msgid "After title"
3639
  msgstr ""
3640
 
3641
+ #: framework/premium/features/content-blocks/hooks-manager.php:169,
3642
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:169
3643
  msgid "After section"
3644
  msgstr ""
3645
 
3646
+ #: framework/premium/features/content-blocks/hooks-manager.php:177,
3647
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:177
3648
  msgid "Before content"
3649
  msgstr ""
3650
 
3651
  #: framework/premium/features/content-blocks/hooks-manager.php:185,
3652
+ #: framework/premium/features/content-blocks/hooks-manager.php:287,
3653
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:185,
3654
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:287
3655
  msgid "Top content"
3656
  msgstr ""
3657
 
3658
  #: framework/premium/features/content-blocks/hooks-manager.php:193,
3659
+ #: framework/premium/features/content-blocks/hooks-manager.php:309,
3660
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:193,
3661
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:309
3662
  msgid "Bottom content"
3663
  msgstr ""
3664
 
3665
+ #: framework/premium/features/content-blocks/hooks-manager.php:201,
3666
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:201
3667
  msgid "After content"
3668
  msgstr ""
3669
 
3670
+ #: framework/premium/features/content-blocks/hooks-manager.php:209,
3671
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:209
3672
  msgid "Before comments"
3673
  msgstr ""
3674
 
3677
  #: framework/premium/features/content-blocks/hooks-manager.php:224,
3678
  #: framework/premium/features/content-blocks/hooks-manager.php:231,
3679
  #: framework/premium/features/content-blocks/hooks-manager.php:238,
3680
+ #: framework/premium/features/content-blocks/hooks-manager.php:245,
3681
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:210,
3682
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:217,
3683
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:224,
3684
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:231,
3685
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:238,
3686
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:245
3687
  msgid "Comments"
3688
  msgstr ""
3689
 
3690
+ #: framework/premium/features/content-blocks/hooks-manager.php:216,
3691
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:216
3692
  msgid "Top comments"
3693
  msgstr ""
3694
 
3695
+ #: framework/premium/features/content-blocks/hooks-manager.php:237,
3696
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:237
3697
  msgid "Bottom comments"
3698
  msgstr ""
3699
 
3700
+ #: framework/premium/features/content-blocks/hooks-manager.php:244,
3701
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:244
3702
  msgid "After comments"
3703
  msgstr ""
3704
 
3705
  #: framework/premium/features/content-blocks/hooks-manager.php:251,
3706
+ #: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:416,
3707
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:251,
3708
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/dynamic-data.php:416
3709
  msgid "Before"
3710
  msgstr ""
3711
 
3712
  #: framework/premium/features/content-blocks/hooks-manager.php:252,
3713
+ #: framework/premium/features/content-blocks/hooks-manager.php:259,
3714
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:252,
3715
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:259
3716
  msgid "Loop"
3717
  msgstr ""
3718
 
3719
  #: framework/premium/features/content-blocks/hooks-manager.php:258,
3720
+ #: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:427,
3721
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:258,
3722
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/dynamic-data.php:427
3723
  msgid "After"
3724
  msgstr ""
3725
 
3726
+ #: framework/premium/features/content-blocks/hooks-manager.php:265,
3727
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:265
3728
  msgid "Start"
3729
  msgstr ""
3730
 
3731
  #: framework/premium/features/content-blocks/hooks-manager.php:266,
3732
+ #: framework/premium/features/content-blocks/hooks-manager.php:273,
3733
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:266,
3734
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:273
3735
  msgid "Loop card"
3736
  msgstr ""
3737
 
3738
+ #: framework/premium/features/content-blocks/hooks-manager.php:272,
3739
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:272
3740
  msgid "End"
3741
  msgstr ""
3742
 
3743
+ #: framework/premium/features/content-blocks/hooks-manager.php:295,
3744
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:295
3745
  msgid "After certain number of blocks"
3746
  msgstr ""
3747
 
3748
+ #: framework/premium/features/content-blocks/hooks-manager.php:302,
3749
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:302
3750
  msgid "Before certain number of headings"
3751
  msgstr ""
3752
 
3753
+ #: framework/premium/features/content-blocks/hooks-manager.php:325,
3754
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:325
3755
  msgid "Login form start"
3756
  msgstr ""
3757
 
3764
  #: framework/premium/features/content-blocks/hooks-manager.php:368,
3765
  #: framework/premium/features/content-blocks/hooks-manager.php:375,
3766
  #: framework/premium/features/content-blocks/hooks-manager.php:382,
3767
+ #: framework/premium/features/content-blocks/hooks-manager.php:389,
3768
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:326,
3769
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:333,
3770
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:340,
3771
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:347,
3772
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:354,
3773
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:361,
3774
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:368,
3775
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:375,
3776
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:382,
3777
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:389
3778
  msgid "Auth forms"
3779
  msgstr ""
3780
 
3781
+ #: framework/premium/features/content-blocks/hooks-manager.php:332,
3782
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:332
3783
  msgid "Login form end"
3784
  msgstr ""
3785
 
3786
+ #: framework/premium/features/content-blocks/hooks-manager.php:339,
3787
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:339
3788
  msgid "Login form modal start"
3789
  msgstr ""
3790
 
3791
+ #: framework/premium/features/content-blocks/hooks-manager.php:346,
3792
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:346
3793
  msgid "Login form modal end"
3794
  msgstr ""
3795
 
3796
+ #: framework/premium/features/content-blocks/hooks-manager.php:353,
3797
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:353
3798
  msgid "Register form start"
3799
  msgstr ""
3800
 
3801
+ #: framework/premium/features/content-blocks/hooks-manager.php:360,
3802
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:360
3803
  msgid "Register form end"
3804
  msgstr ""
3805
 
3806
+ #: framework/premium/features/content-blocks/hooks-manager.php:367,
3807
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:367
3808
  msgid "Register form modal start"
3809
  msgstr ""
3810
 
3811
+ #: framework/premium/features/content-blocks/hooks-manager.php:374,
3812
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:374
3813
  msgid "Register form modal end"
3814
  msgstr ""
3815
 
3816
+ #: framework/premium/features/content-blocks/hooks-manager.php:381,
3817
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:381
3818
  msgid "Lost password form modal start"
3819
  msgstr ""
3820
 
3821
+ #: framework/premium/features/content-blocks/hooks-manager.php:388,
3822
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:388
3823
  msgid "Lost password form modal end"
3824
  msgstr ""
3825
 
3826
+ #: framework/premium/features/content-blocks/hooks-manager.php:396,
3827
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:396
3828
  msgid "Before main content"
3829
  msgstr ""
3830
 
3831
+ #: framework/premium/features/content-blocks/hooks-manager.php:402,
3832
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:402
3833
  msgid "After main content"
3834
  msgstr ""
3835
 
3836
+ #: framework/premium/features/content-blocks/hooks-manager.php:405,
3837
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:405
3838
  msgid "WooCommerce Global"
3839
  msgstr ""
3840
 
3841
+ #: framework/premium/features/content-blocks/hooks-manager.php:410,
3842
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:410
3843
  msgid "Archive description"
3844
  msgstr ""
3845
 
3846
+ #: framework/premium/features/content-blocks/hooks-manager.php:415,
3847
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:415
3848
  msgid "Before shop loop"
3849
  msgstr ""
3850
 
3851
+ #: framework/premium/features/content-blocks/hooks-manager.php:432,
3852
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:432
3853
  msgid "Before shop loop item title"
3854
  msgstr ""
3855
 
3856
+ #: framework/premium/features/content-blocks/hooks-manager.php:437,
3857
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:437
3858
  msgid "After shop loop item title"
3859
  msgstr ""
3860
 
3861
+ #: framework/premium/features/content-blocks/hooks-manager.php:442,
3862
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:442
3863
  msgid "Before shop loop item price"
3864
  msgstr ""
3865
 
3866
+ #: framework/premium/features/content-blocks/hooks-manager.php:447,
3867
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:447
3868
  msgid "After shop loop item price"
3869
  msgstr ""
3870
 
3871
+ #: framework/premium/features/content-blocks/hooks-manager.php:452,
3872
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:452
3873
  msgid "After shop loop"
3874
  msgstr ""
3875
 
3876
+ #: framework/premium/features/content-blocks/hooks-manager.php:454,
3877
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:454
3878
  msgid "WooCommerce Archive"
3879
  msgstr ""
3880
 
3881
+ #: framework/premium/features/content-blocks/hooks-manager.php:459,
3882
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:459
3883
  msgid "Before single product"
3884
  msgstr ""
3885
 
3886
+ #: framework/premium/features/content-blocks/hooks-manager.php:477,
3887
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:477
3888
  msgid "Product meta start"
3889
  msgstr ""
3890
 
3891
+ #: framework/premium/features/content-blocks/hooks-manager.php:481,
3892
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:481
3893
  msgid "Product meta end"
3894
  msgstr ""
3895
 
3896
+ #: framework/premium/features/content-blocks/hooks-manager.php:485,
3897
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:485
3898
  msgid "Share"
3899
  msgstr ""
3900
 
3901
+ #: framework/premium/features/content-blocks/hooks-manager.php:489,
3902
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:489
3903
  msgid "After single product"
3904
  msgstr ""
3905
 
3906
+ #: framework/premium/features/content-blocks/hooks-manager.php:495,
3907
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:495
3908
  msgid "Before single product excerpt"
3909
  msgstr ""
3910
 
3911
+ #: framework/premium/features/content-blocks/hooks-manager.php:500,
3912
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:500
3913
  msgid "After single product excerpt"
3914
  msgstr ""
3915
 
3916
+ #: framework/premium/features/content-blocks/hooks-manager.php:505,
3917
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:505
3918
  msgid "Before single product tabs"
3919
  msgstr ""
3920
 
3921
+ #: framework/premium/features/content-blocks/hooks-manager.php:511,
3922
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:511
3923
  msgid "After single product tabs"
3924
  msgstr ""
3925
 
3926
+ #: framework/premium/features/content-blocks/hooks-manager.php:515,
3927
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:515
3928
  msgid "WooCommerce Product"
3929
  msgstr ""
3930
 
3931
+ #: framework/premium/features/content-blocks/hooks-manager.php:520,
3932
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:520
3933
  msgid "Cart is empty"
3934
  msgstr ""
3935
 
3936
+ #: framework/premium/features/content-blocks/hooks-manager.php:524,
3937
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:524
3938
  msgid "Before cart"
3939
  msgstr ""
3940
 
3941
+ #: framework/premium/features/content-blocks/hooks-manager.php:528,
3942
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:528
3943
  msgid "Before cart table"
3944
  msgstr ""
3945
 
3946
+ #: framework/premium/features/content-blocks/hooks-manager.php:532,
3947
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:532
3948
  msgid "Before cart contents"
3949
  msgstr ""
3950
 
3951
+ #: framework/premium/features/content-blocks/hooks-manager.php:536,
3952
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:536
3953
  msgid "Cart contents"
3954
  msgstr ""
3955
 
3956
+ #: framework/premium/features/content-blocks/hooks-manager.php:540,
3957
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:540
3958
  msgid "After cart contents"
3959
  msgstr ""
3960
 
3961
+ #: framework/premium/features/content-blocks/hooks-manager.php:544,
3962
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:544
3963
  msgid "Cart coupon"
3964
  msgstr ""
3965
 
3966
+ #: framework/premium/features/content-blocks/hooks-manager.php:548,
3967
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:548
3968
  msgid "Cart actions"
3969
  msgstr ""
3970
 
3971
+ #: framework/premium/features/content-blocks/hooks-manager.php:552,
3972
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:552
3973
  msgid "After cart table"
3974
  msgstr ""
3975
 
3976
+ #: framework/premium/features/content-blocks/hooks-manager.php:556,
3977
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:556
3978
  msgid "Cart collaterals"
3979
  msgstr ""
3980
 
3981
+ #: framework/premium/features/content-blocks/hooks-manager.php:560,
3982
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:560
3983
  msgid "Before cart totals"
3984
  msgstr ""
3985
 
3986
+ #: framework/premium/features/content-blocks/hooks-manager.php:564,
3987
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:564
3988
  msgid "Cart totals before order total"
3989
  msgstr ""
3990
 
3991
+ #: framework/premium/features/content-blocks/hooks-manager.php:568,
3992
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:568
3993
  msgid "Cart totals after order total"
3994
  msgstr ""
3995
 
3996
+ #: framework/premium/features/content-blocks/hooks-manager.php:572,
3997
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:572
3998
  msgid "Proceed to checkout"
3999
  msgstr ""
4000
 
4001
+ #: framework/premium/features/content-blocks/hooks-manager.php:576,
4002
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:576
4003
  msgid "After cart totals"
4004
  msgstr ""
4005
 
4006
+ #: framework/premium/features/content-blocks/hooks-manager.php:580,
4007
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:580
4008
  msgid "After cart"
4009
  msgstr ""
4010
 
4011
+ #: framework/premium/features/content-blocks/hooks-manager.php:585,
4012
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:585
4013
  msgid "Before Mini Cart"
4014
  msgstr ""
4015
 
4016
+ #: framework/premium/features/content-blocks/hooks-manager.php:590,
4017
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:590
4018
  msgid "Before Mini Cart Contents"
4019
  msgstr ""
4020
 
4021
+ #: framework/premium/features/content-blocks/hooks-manager.php:595,
4022
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:595
4023
  msgid "Mini Cart Contents"
4024
  msgstr ""
4025
 
4026
+ #: framework/premium/features/content-blocks/hooks-manager.php:600,
4027
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:600
4028
  msgid "Widget Shopping Cart Before Buttons"
4029
  msgstr ""
4030
 
4031
+ #: framework/premium/features/content-blocks/hooks-manager.php:605,
4032
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:605
4033
  msgid "Widget Shopping Cart After Buttons"
4034
  msgstr ""
4035
 
4036
+ #: framework/premium/features/content-blocks/hooks-manager.php:610,
4037
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:610
4038
  msgid "After Mini Cart"
4039
  msgstr ""
4040
 
4041
+ #: framework/premium/features/content-blocks/hooks-manager.php:612,
4042
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:612
4043
  msgid "WooCommerce Cart"
4044
  msgstr ""
4045
 
4046
+ #: framework/premium/features/content-blocks/hooks-manager.php:618,
4047
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:618
4048
  msgid "Before checkout form"
4049
  msgstr ""
4050
 
4051
+ #: framework/premium/features/content-blocks/hooks-manager.php:622,
4052
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:622
4053
  msgid "Before customer details"
4054
  msgstr ""
4055
 
4056
+ #: framework/premium/features/content-blocks/hooks-manager.php:626,
4057
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:626
4058
  msgid "After customer details"
4059
  msgstr ""
4060
 
4061
+ #: framework/premium/features/content-blocks/hooks-manager.php:630,
4062
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:630
4063
  msgid "Checkout billing"
4064
  msgstr ""
4065
 
4066
+ #: framework/premium/features/content-blocks/hooks-manager.php:634,
4067
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:634
4068
  msgid "Before checkout billing form"
4069
  msgstr ""
4070
 
4071
+ #: framework/premium/features/content-blocks/hooks-manager.php:638,
4072
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:638
4073
  msgid "After checkout billing form"
4074
  msgstr ""
4075
 
4076
+ #: framework/premium/features/content-blocks/hooks-manager.php:642,
4077
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:642
4078
  msgid "Before order notes"
4079
  msgstr ""
4080
 
4081
+ #: framework/premium/features/content-blocks/hooks-manager.php:646,
4082
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:646
4083
  msgid "After order notes"
4084
  msgstr ""
4085
 
4086
+ #: framework/premium/features/content-blocks/hooks-manager.php:650,
4087
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:650
4088
  msgid "Checkout shipping"
4089
  msgstr ""
4090
 
4091
+ #: framework/premium/features/content-blocks/hooks-manager.php:654,
4092
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:654
4093
  msgid "Checkout before order review"
4094
  msgstr ""
4095
 
4096
+ #: framework/premium/features/content-blocks/hooks-manager.php:658,
4097
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:658
4098
  msgid "Checkout order review"
4099
  msgstr ""
4100
 
4101
+ #: framework/premium/features/content-blocks/hooks-manager.php:662,
4102
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:662
4103
  msgid "Review order before cart contents"
4104
  msgstr ""
4105
 
4106
+ #: framework/premium/features/content-blocks/hooks-manager.php:666,
4107
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:666
4108
  msgid "Review order after cart contents"
4109
  msgstr ""
4110
 
4111
+ #: framework/premium/features/content-blocks/hooks-manager.php:670,
4112
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:670
4113
  msgid "Review order before order total"
4114
  msgstr ""
4115
 
4116
+ #: framework/premium/features/content-blocks/hooks-manager.php:674,
4117
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:674
4118
  msgid "Review order after order total"
4119
  msgstr ""
4120
 
4121
+ #: framework/premium/features/content-blocks/hooks-manager.php:678,
4122
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:678
4123
  msgid "Review order before payment"
4124
  msgstr ""
4125
 
4126
+ #: framework/premium/features/content-blocks/hooks-manager.php:682,
4127
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:682
4128
  msgid "Review order before submit"
4129
  msgstr ""
4130
 
4131
+ #: framework/premium/features/content-blocks/hooks-manager.php:686,
4132
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:686
4133
  msgid "Review order after submit"
4134
  msgstr ""
4135
 
4136
+ #: framework/premium/features/content-blocks/hooks-manager.php:690,
4137
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:690
4138
  msgid "Review order after payment"
4139
  msgstr ""
4140
 
4141
+ #: framework/premium/features/content-blocks/hooks-manager.php:694,
4142
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:694
4143
  msgid "Checkout after order review"
4144
  msgstr ""
4145
 
4146
+ #: framework/premium/features/content-blocks/hooks-manager.php:698,
4147
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:698
4148
  msgid "After checkout form"
4149
  msgstr ""
4150
 
4151
+ #: framework/premium/features/content-blocks/hooks-manager.php:701,
4152
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:701
4153
  msgid "WooCommerce Checkout"
4154
  msgstr ""
4155
 
4156
+ #: framework/premium/features/content-blocks/hooks-manager.php:707,
4157
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:707
4158
  msgid "Before my account"
4159
  msgstr ""
4160
 
4161
+ #: framework/premium/features/content-blocks/hooks-manager.php:711,
4162
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:711
4163
  msgid "Before account navigation"
4164
  msgstr ""
4165
 
4166
+ #: framework/premium/features/content-blocks/hooks-manager.php:715,
4167
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:715
4168
  msgid "Account navigation"
4169
  msgstr ""
4170
 
4171
+ #: framework/premium/features/content-blocks/hooks-manager.php:719,
4172
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:719
4173
  msgid "After account navigation"
4174
  msgstr ""
4175
 
4176
+ #: framework/premium/features/content-blocks/hooks-manager.php:723,
4177
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:723
4178
  msgid "Account content"
4179
  msgstr ""
4180
 
4181
+ #: framework/premium/features/content-blocks/hooks-manager.php:727,
4182
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:727
4183
  msgid "Account dashboard"
4184
  msgstr ""
4185
 
4186
+ #: framework/premium/features/content-blocks/hooks-manager.php:731,
4187
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:731
4188
  msgid "After my account"
4189
  msgstr ""
4190
 
4191
  #: framework/premium/features/content-blocks/hooks-manager.php:733,
4192
  #: framework/features/header/items/account/options.php:17,
4193
+ #: framework/features/header/items/account/options.php:18,
4194
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:733,
4195
+ #: build_tmp/build/framework/features/header/items/account/options.php:17,
4196
+ #: build_tmp/build/framework/features/header/items/account/options.php:18
4197
  msgid "WooCommerce Account"
4198
  msgstr ""
4199
 
4200
+ #: framework/premium/features/content-blocks/hooks-manager.php:739,
4201
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:739
4202
  msgid "WP footer"
4203
  msgstr ""
4204
 
4205
  #: framework/premium/features/content-blocks/hooks-manager.php:740,
4206
  #: framework/premium/features/content-blocks/hooks-manager.php:748,
4207
+ #: framework/premium/features/content-blocks/hooks-manager.php:756,
4208
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:740,
4209
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:748,
4210
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:756
4211
  msgid "Footer"
4212
  msgstr ""
4213
 
4214
+ #: framework/premium/features/content-blocks/hooks-manager.php:747,
4215
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:747
4216
  msgid "Footer before"
4217
  msgstr ""
4218
 
4219
+ #: framework/premium/features/content-blocks/hooks-manager.php:755,
4220
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:755
4221
  msgid "Footer after"
4222
  msgstr ""
4223
 
4224
+ #: framework/premium/features/content-blocks/hooks-manager.php:770,
4225
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:770
4226
  msgid "Custom Hook (%s)"
4227
  msgstr ""
4228
 
4229
  #: framework/premium/features/content-blocks/hooks-manager.php:776,
4230
+ #: framework/premium/features/content-blocks/options/hook.php:192,
4231
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:776,
4232
+ #: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:192
4233
  #: framework/premium/static/js/options/MultipleLocationsSelect.js:87
4234
  msgid "After Block Number"
4235
  msgstr ""
4236
 
4237
  #: framework/premium/features/content-blocks/hooks-manager.php:782,
4238
+ #: framework/premium/features/content-blocks/options/hook.php:209,
4239
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:782,
4240
+ #: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:209
4241
  #: framework/premium/static/js/options/MultipleLocationsSelect.js:106
4242
  msgid "Before Heading Number"
4243
  msgstr ""
4244
 
4245
  #: framework/extensions/widgets/widgets/ct-about-me/options.php:18,
4246
  #: framework/extensions/widgets/widgets/ct-about-me/view.php:12,
4247
+ #: framework/extensions/widgets/widgets/ct-about-me/widget.php:14,
4248
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-about-me/options.php:18,
4249
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-about-me/view.php:12,
4250
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-about-me/widget.php:14
4251
  msgid "About me"
4252
  msgstr ""
4253
 
4254
+ #: framework/extensions/widgets/widgets/ct-about-me/options.php:31,
4255
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-about-me/options.php:31
4256
  msgid "Simple"
4257
  msgstr ""
4258
 
4259
+ #: framework/extensions/widgets/widgets/ct-about-me/options.php:45,
4260
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-about-me/options.php:45
4261
  msgid "From WP"
4262
  msgstr ""
4263
 
4264
+ #: framework/extensions/widgets/widgets/ct-about-me/options.php:57,
4265
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-about-me/options.php:57
4266
  msgid "User"
4267
  msgstr ""
4268
 
4269
  #: framework/extensions/widgets/widgets/ct-about-me/options.php:72,
4270
+ #: framework/features/header/items/account/options.php:122,
4271
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-about-me/options.php:72,
4272
+ #: build_tmp/build/framework/features/header/items/account/options.php:122
4273
  msgid "Avatar"
4274
  msgstr ""
4275
 
4276
  #: framework/extensions/widgets/widgets/ct-about-me/options.php:84,
4277
  #: framework/extensions/widgets/widgets/ct-about-me/view.php:40,
4278
  #: framework/extensions/widgets/widgets/ct-quote/options.php:35,
4279
+ #: framework/extensions/widgets/widgets/ct-quote/view.php:18,
4280
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-about-me/options.php:84,
4281
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-about-me/view.php:40,
4282
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-quote/options.php:35,
4283
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-quote/view.php:18
4284
  msgid "John Doe"
4285
  msgstr ""
4286
 
4287
  #: framework/extensions/widgets/widgets/ct-about-me/options.php:89,
4288
+ #: framework/extensions/widgets/widgets/ct-posts/widget.php:14,
4289
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-about-me/options.php:89,
4290
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/widget.php:14
4291
  msgid "Description"
4292
  msgstr ""
4293
 
4294
  #: framework/extensions/widgets/widgets/ct-about-me/options.php:100,
4295
  #: framework/extensions/widgets/widgets/ct-about-me/options.php:107,
4296
+ #: framework/features/header/items/account/options.php:135,
4297
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-about-me/options.php:100,
4298
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-about-me/options.php:107,
4299
+ #: build_tmp/build/framework/features/header/items/account/options.php:135
4300
  msgid "Avatar Size"
4301
  msgstr ""
4302
 
4303
  #: framework/extensions/widgets/widgets/ct-about-me/options.php:113,
4304
  #: framework/extensions/widgets/widgets/ct-about-me/options.php:194,
4305
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:265,
4306
+ #: framework/extensions/widgets/widgets/ct-socials/options.php:80,
4307
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-about-me/options.php:113,
4308
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-about-me/options.php:194,
4309
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:265,
4310
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-socials/options.php:80
4311
  msgid "Small"
4312
  msgstr ""
4313
 
4314
  #: framework/extensions/widgets/widgets/ct-about-me/options.php:115,
4315
  #: framework/extensions/widgets/widgets/ct-about-me/options.php:196,
4316
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:267,
4317
+ #: framework/extensions/widgets/widgets/ct-socials/options.php:82,
4318
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-about-me/options.php:115,
4319
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-about-me/options.php:196,
4320
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:267,
4321
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-socials/options.php:82
4322
  msgid "Large"
4323
  msgstr ""
4324
 
4325
+ #: framework/extensions/widgets/widgets/ct-about-me/options.php:120,
4326
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-about-me/options.php:120
4327
  msgid "Avatar Shape"
4328
  msgstr ""
4329
 
4330
  #: framework/extensions/widgets/widgets/ct-about-me/options.php:128,
4331
  #: framework/extensions/widgets/widgets/ct-about-me/options.php:209,
4332
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:280,
4333
+ #: framework/extensions/widgets/widgets/ct-socials/options.php:95,
4334
+ #: framework/premium/features/premium-header/items/contacts/options.php:278,
4335
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-about-me/options.php:128,
4336
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-about-me/options.php:209,
4337
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:280,
4338
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-socials/options.php:95,
4339
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:278
4340
  msgid "Rounded"
4341
  msgstr ""
4342
 
4343
  #: framework/extensions/widgets/widgets/ct-about-me/options.php:129,
4344
  #: framework/extensions/widgets/widgets/ct-about-me/options.php:210,
4345
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:281,
4346
+ #: framework/extensions/widgets/widgets/ct-socials/options.php:96,
4347
+ #: framework/premium/features/premium-header/items/contacts/options.php:279,
4348
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-about-me/options.php:129,
4349
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-about-me/options.php:210,
4350
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:281,
4351
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-socials/options.php:96,
4352
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:279
4353
  msgid "Square"
4354
  msgstr ""
4355
 
4356
+ #: framework/extensions/widgets/widgets/ct-about-me/options.php:135,
4357
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-about-me/options.php:135
4358
+ msgid "Alignment"
4359
+ msgstr ""
4360
+
4361
+ #: framework/extensions/widgets/widgets/ct-about-me/options.php:151,
4362
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-about-me/options.php:151
4363
  msgid "Social Channels"
4364
  msgstr ""
4365
 
4366
  #: framework/extensions/widgets/widgets/ct-about-me/options.php:154,
4367
+ #: framework/extensions/widgets/widgets/ct-socials/options.php:27,
4368
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-about-me/options.php:154,
4369
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-socials/options.php:27
4370
  msgid "You can configure social URLs in %s."
4371
  msgstr ""
4372
 
4373
  #: framework/extensions/widgets/widgets/ct-about-me/options.php:201,
4374
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:272,
4375
+ #: framework/extensions/widgets/widgets/ct-socials/options.php:87,
4376
+ #: framework/premium/features/premium-header/items/contacts/options.php:270,
4377
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-about-me/options.php:201,
4378
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:272,
4379
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-socials/options.php:87,
4380
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:270
4381
  msgid "Icons Shape Type"
4382
  msgstr ""
4383
 
4384
  #: framework/extensions/widgets/widgets/ct-about-me/options.php:220,
4385
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:291,
4386
+ #: framework/extensions/widgets/widgets/ct-socials/options.php:106,
4387
+ #: framework/premium/features/premium-header/items/contacts/options.php:290,
4388
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-about-me/options.php:220,
4389
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:291,
4390
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-socials/options.php:106,
4391
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:290
4392
  msgid "Shape Fill Type"
4393
  msgstr ""
4394
 
4395
  #: framework/extensions/widgets/widgets/ct-about-me/options.php:227,
4396
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:298,
4397
+ #: framework/extensions/widgets/widgets/ct-socials/options.php:113,
4398
+ #: framework/premium/features/premium-header/items/contacts/options.php:297,
4399
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-about-me/options.php:227,
4400
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:298,
4401
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-socials/options.php:113,
4402
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:297
4403
  msgid "Solid"
4404
  msgstr ""
4405
 
4406
  #: framework/extensions/widgets/widgets/ct-about-me/options.php:228,
4407
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:299,
4408
+ #: framework/extensions/widgets/widgets/ct-socials/options.php:114,
4409
+ #: framework/premium/features/premium-header/items/contacts/options.php:298,
4410
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-about-me/options.php:228,
4411
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:299,
4412
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-socials/options.php:114,
4413
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:298
4414
  msgid "Outline"
4415
  msgstr ""
4416
 
4417
+ #: framework/extensions/widgets/widgets/ct-about-me/view.php:99,
4418
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-about-me/view.php:99
4419
  msgid "View Profile"
4420
  msgstr ""
4421
 
4422
+ #: framework/extensions/widgets/widgets/ct-about-me/widget.php:13,
4423
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-about-me/widget.php:13
4424
  msgid "About Me"
4425
  msgstr ""
4426
 
4427
  #: framework/extensions/widgets/widgets/ct-advertisement/options.php:18,
4428
  #: framework/extensions/widgets/widgets/ct-advertisement/view.php:12,
4429
  #: framework/extensions/widgets/widgets/ct-advertisement/widget.php:13,
4430
+ #: framework/extensions/widgets/widgets/ct-advertisement/widget.php:14,
4431
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-advertisement/options.php:18,
4432
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-advertisement/view.php:12,
4433
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-advertisement/widget.php:13,
4434
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-advertisement/widget.php:14
4435
  msgid "Advertisement"
4436
  msgstr ""
4437
 
4438
+ #: framework/extensions/widgets/widgets/ct-advertisement/options.php:31,
4439
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-advertisement/options.php:31
4440
  msgid "Code"
4441
  msgstr ""
4442
 
4443
+ #: framework/extensions/widgets/widgets/ct-advertisement/options.php:32,
4444
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-advertisement/options.php:32
4445
  msgid "Image"
4446
  msgstr ""
4447
 
4448
+ #: framework/extensions/widgets/widgets/ct-advertisement/options.php:42,
4449
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-advertisement/options.php:42
4450
  msgid "Ad Code"
4451
  msgstr ""
4452
 
4453
+ #: framework/extensions/widgets/widgets/ct-advertisement/options.php:58,
4454
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-advertisement/options.php:58
4455
  msgid "Upload Image"
4456
  msgstr ""
4457
 
4458
  #: framework/extensions/widgets/widgets/ct-advertisement/options.php:62,
4459
+ #: framework/extensions/widgets/widgets/ct-quote/options.php:52,
4460
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-advertisement/options.php:62,
4461
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-quote/options.php:52
4462
  msgid "Select Image"
4463
  msgstr ""
4464
 
4465
  #: framework/extensions/widgets/widgets/ct-advertisement/options.php:63,
4466
+ #: framework/extensions/widgets/widgets/ct-quote/options.php:53,
4467
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-advertisement/options.php:63,
4468
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-quote/options.php:53
4469
  msgid "Change Image"
4470
  msgstr ""
4471
 
4472
+ #: framework/extensions/widgets/widgets/ct-advertisement/options.php:67,
4473
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:126,
4474
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-advertisement/options.php:67,
4475
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:126
4476
+ msgid "Image Ratio"
4477
+ msgstr ""
4478
+
4479
+ #: framework/extensions/widgets/widgets/ct-advertisement/options.php:75,
4480
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-advertisement/options.php:75
4481
  msgid "Ad URL"
4482
  msgstr ""
4483
 
4484
  #: framework/extensions/widgets/widgets/ct-advertisement/options.php:83,
4485
+ #: framework/extensions/widgets/widgets/ct-contact-info/options.php:308,
4486
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-advertisement/options.php:83,
4487
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:308
4488
  msgid "Open link in new tab"
4489
  msgstr ""
4490
 
4491
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:18,
4492
  #: framework/extensions/widgets/widgets/ct-contact-info/view.php:12,
4493
+ #: framework/extensions/widgets/widgets/ct-contact-info/widget.php:13,
4494
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:18,
4495
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/view.php:12,
4496
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/widget.php:13
4497
  msgid "Contact Info"
4498
  msgstr ""
4499
 
4502
  #: framework/extensions/widgets/widgets/ct-contact-info/view.php:24,
4503
  #: framework/premium/features/premium-header/items/contacts/options.php:20,
4504
  #: framework/premium/features/premium-header/items/contacts/options.php:49,
4505
+ #: framework/premium/features/premium-header/items/contacts/view.php:22,
4506
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:37,
4507
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:66,
4508
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/view.php:24,
4509
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:20,
4510
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:49,
4511
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/view.php:22
4512
  msgid "Address:"
4513
  msgstr ""
4514
 
4517
  #: framework/extensions/widgets/widgets/ct-contact-info/view.php:31,
4518
  #: framework/premium/features/premium-header/items/contacts/options.php:27,
4519
  #: framework/premium/features/premium-header/items/contacts/options.php:75,
4520
+ #: framework/premium/features/premium-header/items/contacts/view.php:29,
4521
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:44,
4522
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:95,
4523
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/view.php:31,
4524
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:27,
4525
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:75,
4526
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/view.php:29
4527
  msgid "Phone:"
4528
  msgstr ""
4529
 
4532
  #: framework/extensions/widgets/widgets/ct-contact-info/view.php:39,
4533
  #: framework/premium/features/premium-header/items/contacts/options.php:35,
4534
  #: framework/premium/features/premium-header/items/contacts/options.php:102,
4535
+ #: framework/premium/features/premium-header/items/contacts/view.php:37,
4536
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:52,
4537
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:123,
4538
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/view.php:39,
4539
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:35,
4540
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:102,
4541
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/view.php:37
4542
  msgid "Mobile:"
4543
  msgstr ""
4544
 
4545
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:61,
4546
+ #: framework/premium/features/premium-header/items/contacts/options.php:44,
4547
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:61,
4548
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:44
4549
  msgid "Address"
4550
  msgstr ""
4551
 
4562
  #: framework/premium/features/premium-header/items/contacts/options.php:142,
4563
  #: framework/premium/features/premium-header/items/contacts/options.php:169,
4564
  #: framework/premium/features/premium-header/items/contacts/options.php:196,
4565
+ #: framework/premium/features/premium-header/items/contacts/options.php:223,
4566
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:79,
4567
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:108,
4568
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:136,
4569
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:164,
4570
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:192,
4571
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:220,
4572
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:248,
4573
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:62,
4574
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:88,
4575
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:115,
4576
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:142,
4577
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:169,
4578
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:196,
4579
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:223
4580
  msgid "Link (optional)"
4581
  msgstr ""
4582
 
4583
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:145,
4584
+ #: framework/premium/features/premium-header/items/contacts/options.php:124,
4585
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:145,
4586
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:124
4587
  msgid "Work Hours"
4588
  msgstr ""
4589
 
4590
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:151,
4591
+ #: framework/premium/features/premium-header/items/contacts/options.php:129,
4592
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:151,
4593
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:129
4594
  msgid "Opening hours"
4595
  msgstr ""
4596
 
4597
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:173,
4598
+ #: framework/premium/features/premium-header/items/contacts/options.php:151,
4599
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:173,
4600
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:151
4601
  msgid "Fax"
4602
  msgstr ""
4603
 
4604
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:179,
4605
+ #: framework/premium/features/premium-header/items/contacts/options.php:156,
4606
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:179,
4607
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:156
4608
  msgid "Fax:"
4609
  msgstr ""
4610
 
4611
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:207,
4612
+ #: framework/premium/features/premium-header/items/contacts/options.php:183,
4613
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:207,
4614
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:183
4615
  msgid "Email:"
4616
  msgstr ""
4617
 
4618
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:229,
4619
+ #: framework/premium/features/premium-header/items/contacts/options.php:205,
4620
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:229,
4621
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:205
4622
  msgid "Website"
4623
  msgstr ""
4624
 
4625
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:235,
4626
+ #: framework/premium/features/premium-header/items/contacts/options.php:210,
4627
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:235,
4628
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:210
4629
  msgid "Website:"
4630
  msgstr ""
4631
 
4632
+ #: framework/extensions/widgets/widgets/ct-contact-info/widget.php:14,
4633
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/widget.php:14
4634
  msgid "Contact info"
4635
  msgstr ""
4636
 
4637
+ #: framework/extensions/widgets/widgets/ct-facebook/options.php:22,
4638
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-facebook/options.php:22
4639
  msgid "Page URL"
4640
  msgstr ""
4641
 
4642
+ #: framework/extensions/widgets/widgets/ct-facebook/options.php:30,
4643
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-facebook/options.php:30
4644
  msgid "Profile Photos"
4645
  msgstr ""
4646
 
4647
+ #: framework/extensions/widgets/widgets/ct-facebook/options.php:37,
4648
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-facebook/options.php:37
4649
  msgid "Timeline"
4650
  msgstr ""
4651
 
4652
+ #: framework/extensions/widgets/widgets/ct-facebook/options.php:44,
4653
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-facebook/options.php:44
4654
  msgid "Cover Photo"
4655
  msgstr ""
4656
 
4657
+ #: framework/extensions/widgets/widgets/ct-facebook/options.php:51,
4658
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-facebook/options.php:51
4659
  msgid "Small Header"
4660
  msgstr ""
4661
 
4662
+ #: framework/extensions/widgets/widgets/ct-facebook/widget.php:14,
4663
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-facebook/widget.php:14
4664
  msgid "Facebook like box"
4665
  msgstr ""
4666
 
4667
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:103,
4668
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:103
4669
  msgid "Widget Design"
4670
  msgstr ""
4671
 
4672
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:108,
4673
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:108
4674
  msgid "Without Thumbnails"
4675
  msgstr ""
4676
 
4677
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:109,
4678
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:109
4679
  msgid "Small Thumbnails"
4680
  msgstr ""
4681
 
4682
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:110,
4683
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:110
4684
  msgid "Large Thumbnails"
4685
  msgstr ""
4686
 
4687
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:111,
4688
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:111
4689
  msgid "First Thumbnail Large"
4690
  msgstr ""
4691
 
4692
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:112,
4693
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:112
4694
  msgid "Rounded Thumbnails"
4695
  msgstr ""
4696
 
4697
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:113,
4698
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:113
4699
  msgid "Numbered"
4700
  msgstr ""
4701
 
4702
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:137,
4703
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:137
4704
  msgid "Post Type"
4705
  msgstr ""
4706
 
4707
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:193,
4708
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:193
4709
  msgid "Sort by"
4710
  msgstr ""
4711
 
4712
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:199,
4713
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:199
4714
  msgid "Recent"
4715
  msgstr ""
4716
 
4717
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:200,
4718
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:200
4719
  msgid "Most Commented"
4720
  msgstr ""
4721
 
4722
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:201,
4723
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:201
4724
+ msgid "Random"
4725
+ msgstr ""
4726
+
4727
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:208,
4728
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:208
4729
  msgid "Order by"
4730
  msgstr ""
4731
 
4732
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:214,
4733
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:214
4734
  msgid "1 Week"
4735
  msgstr ""
4736
 
4737
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:215,
4738
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:215
4739
  msgid "1 Month"
4740
  msgstr ""
4741
 
4742
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:216,
4743
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:216
4744
  msgid "3 Months"
4745
  msgstr ""
4746
 
4747
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:217,
4748
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:217
4749
  msgid "6 Months"
4750
  msgstr ""
4751
 
4752
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:218,
4753
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:218
4754
  msgid "1 Year"
4755
  msgstr ""
4756
 
4757
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:225,
4758
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:225
4759
  msgid "Posts Count"
4760
  msgstr ""
4761
 
4762
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:265,
4763
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:265
4764
+ msgid "Pages ID"
4765
+ msgstr ""
4766
+
4767
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:269,
4768
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:269
4769
+ msgid "Separate pages ID by comma. More info %shere%s."
4770
+ msgstr ""
4771
+
4772
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:287,
4773
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:287
4774
  msgid "Pages Count"
4775
  msgstr ""
4776
 
4777
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:298,
4778
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:298
4779
  msgid "Show Date"
4780
  msgstr ""
4781
 
4782
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:305,
4783
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:305
4784
  msgid "Show Comments"
4785
  msgstr ""
4786
 
4787
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:312,
4788
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:312
4789
  msgid "Show Excerpt"
4790
  msgstr ""
4791
 
4792
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:324,
4793
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:324
4794
  msgid "Excerpt Lenght"
4795
  msgstr ""
4796
 
4797
  #: framework/extensions/widgets/widgets/ct-quote/options.php:18,
4798
  #: framework/extensions/widgets/widgets/ct-quote/view.php:12,
4799
  #: framework/extensions/widgets/widgets/ct-quote/widget.php:13,
4800
+ #: framework/extensions/widgets/widgets/ct-quote/widget.php:14,
4801
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-quote/options.php:18,
4802
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-quote/view.php:12,
4803
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-quote/widget.php:13,
4804
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-quote/widget.php:14
4805
  msgid "Quote"
4806
  msgstr ""
4807
 
4808
+ #: framework/extensions/widgets/widgets/ct-quote/options.php:23,
4809
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-quote/options.php:23
4810
  msgid "Quote text"
4811
  msgstr ""
4812
 
4813
+ #: framework/extensions/widgets/widgets/ct-quote/options.php:32,
4814
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-quote/options.php:32
4815
  msgid "Author Name"
4816
  msgstr ""
4817
 
4818
+ #: framework/extensions/widgets/widgets/ct-quote/options.php:41,
4819
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-quote/options.php:41
4820
  msgid "Author Label"
4821
  msgstr ""
4822
 
4823
+ #: framework/extensions/widgets/widgets/ct-quote/options.php:48,
4824
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-quote/options.php:48
4825
  msgid "Author Avatar"
4826
  msgstr ""
4827
 
4828
  #. translators: %s here is the author name
4829
+ #. translators: %s here is the author name
4830
+ #: framework/extensions/widgets/widgets/ct-quote/view.php:49,
4831
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-quote/view.php:49
4832
  msgid "By %s"
4833
  msgstr ""
4834
 
4835
  #: framework/extensions/widgets/widgets/ct-socials/options.php:18,
4836
  #: framework/extensions/widgets/widgets/ct-socials/view.php:11,
4837
+ #: framework/extensions/widgets/widgets/ct-socials/widget.php:14,
4838
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-socials/options.php:18,
4839
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-socials/view.php:11,
4840
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-socials/widget.php:14
4841
  msgid "Social Icons"
4842
  msgstr ""
4843
 
4844
  #: framework/extensions/widgets/widgets/ct-socials/options.php:59,
4845
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-socials/options.php:59
4846
+ msgid "Open links in new tab"
4847
  msgstr ""
4848
 
4849
+ #: framework/extensions/widgets/widgets/ct-socials/options.php:67,
4850
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-socials/options.php:67
4851
+ msgid "Set links to nofollow"
4852
+ msgstr ""
4853
+
4854
+ #: framework/extensions/widgets/widgets/ct-socials/widget.php:15,
4855
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-socials/widget.php:15
4856
  msgid "Social channels icons"
4857
  msgstr ""
4858
 
4859
+ #: framework/features/header/items/account/options.php:4,
4860
+ #: build_tmp/build/framework/features/header/items/account/options.php:4
4861
  msgid "Profile Page"
4862
  msgstr ""
4863
 
4864
+ #: framework/features/header/items/account/options.php:5,
4865
+ #: build_tmp/build/framework/features/header/items/account/options.php:5
4866
  msgid "Dashboard Page"
4867
  msgstr ""
4868
 
4869
  #: framework/features/header/items/account/options.php:7,
4870
+ #: framework/features/header/items/account/options.php:13,
4871
+ #: build_tmp/build/framework/features/header/items/account/options.php:7,
4872
+ #: build_tmp/build/framework/features/header/items/account/options.php:13
4873
  msgid "Custom Link"
4874
  msgstr ""
4875
 
4876
+ #: framework/features/header/items/account/options.php:8,
4877
+ #: build_tmp/build/framework/features/header/items/account/options.php:8
4878
  msgid "Logout"
4879
  msgstr ""
4880
 
4881
+ #: framework/features/header/items/account/options.php:12,
4882
+ #: build_tmp/build/framework/features/header/items/account/options.php:12
4883
  msgid "Modal"
4884
  msgstr ""
4885
 
4886
+ #: framework/features/header/items/account/options.php:24,
4887
+ #: build_tmp/build/framework/features/header/items/account/options.php:24
4888
  msgid "Customizing: Logged in State"
4889
  msgstr ""
4890
 
4891
+ #: framework/features/header/items/account/options.php:36,
4892
+ #: build_tmp/build/framework/features/header/items/account/options.php:36
4893
  msgid "Logged In Options"
4894
  msgstr ""
4895
 
4896
+ #: framework/features/header/items/account/options.php:41,
4897
+ #: build_tmp/build/framework/features/header/items/account/options.php:41
4898
  msgid "Logged Out Options"
4899
  msgstr ""
4900
 
4901
  #: framework/features/header/items/account/options.php:61,
4902
+ #: framework/features/header/items/account/options.php:311,
4903
+ #: build_tmp/build/framework/features/header/items/account/options.php:61,
4904
+ #: build_tmp/build/framework/features/header/items/account/options.php:311
4905
  msgid "Account Action"
4906
  msgstr ""
4907
 
4908
+ #: framework/features/header/items/account/options.php:74,
4909
+ #: build_tmp/build/framework/features/header/items/account/options.php:74
4910
  msgid "Select Menu"
4911
  msgstr ""
4912
 
4913
+ #: framework/features/header/items/account/options.php:80,
4914
+ #: build_tmp/build/framework/features/header/items/account/options.php:80
4915
  msgid "Select menu..."
4916
  msgstr ""
4917
 
4918
  #. translators: placeholder here means the actual URL.
4919
+ #. translators: placeholder here means the actual URL.
4920
+ #: framework/features/header/items/account/options.php:84,
4921
+ #: build_tmp/build/framework/features/header/items/account/options.php:84
4922
  msgid "Manage your menu items in the %sMenus screen%s."
4923
  msgstr ""
4924
 
4925
  #: framework/features/header/items/account/options.php:101,
4926
+ #: framework/features/header/items/account/options.php:326,
4927
+ #: build_tmp/build/framework/features/header/items/account/options.php:101,
4928
+ #: build_tmp/build/framework/features/header/items/account/options.php:326
4929
  msgid "Custom Page Link"
4930
  msgstr ""
4931
 
4932
  #: framework/features/header/items/account/options.php:116,
4933
+ #: framework/features/header/items/account/options.php:342,
4934
+ #: build_tmp/build/framework/features/header/items/account/options.php:116,
4935
+ #: build_tmp/build/framework/features/header/items/account/options.php:342
4936
  msgid "Account Image"
4937
  msgstr ""
4938
 
4939
  #: framework/features/header/items/account/options.php:187,
4940
+ #: framework/features/header/items/account/options.php:393,
4941
+ #: build_tmp/build/framework/features/header/items/account/options.php:187,
4942
+ #: build_tmp/build/framework/features/header/items/account/options.php:393
4943
  msgid "Type 5"
4944
  msgstr ""
4945
 
4946
  #: framework/features/header/items/account/options.php:192,
4947
+ #: framework/features/header/items/account/options.php:398,
4948
+ #: build_tmp/build/framework/features/header/items/account/options.php:192,
4949
+ #: build_tmp/build/framework/features/header/items/account/options.php:398
4950
  msgid "Type 6"
4951
  msgstr ""
4952
 
4953
+ #: framework/features/header/items/account/options.php:269,
4954
+ #: build_tmp/build/framework/features/header/items/account/options.php:269
4955
  msgid "Label Type"
4956
  msgstr ""
4957
 
4958
  #: framework/features/header/items/account/options.php:288,
4959
  #: framework/features/header/items/account/options.php:475,
4960
+ #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:105,
4961
+ #: build_tmp/build/framework/features/header/items/account/options.php:288,
4962
+ #: build_tmp/build/framework/features/header/items/account/options.php:475,
4963
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:105
4964
  msgid "Label Text"
4965
  msgstr ""
4966
 
4967
  #: framework/features/header/items/account/options.php:293,
4968
+ #: framework/features/header/items/account/views/login.php:67,
4969
+ #: build_tmp/build/framework/features/header/items/account/options.php:293,
4970
+ #: build_tmp/build/framework/features/header/items/account/views/login.php:67
4971
  msgid "My Account"
4972
  msgstr ""
4973
 
4974
  #: framework/features/header/items/account/options.php:503,
4975
+ #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:135,
4976
+ #: build_tmp/build/framework/features/header/items/account/options.php:503,
4977
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:135
4978
  msgid "Label Font"
4979
  msgstr ""
4980
 
4981
  #: framework/features/header/items/account/options.php:514,
4982
  #: framework/features/header/items/account/options.php:543,
4983
  #: framework/features/header/items/account/options.php:575,
4984
+ #: framework/features/header/items/account/options.php:605,
4985
+ #: build_tmp/build/framework/features/header/items/account/options.php:514,
4986
+ #: build_tmp/build/framework/features/header/items/account/options.php:543,
4987
+ #: build_tmp/build/framework/features/header/items/account/options.php:575,
4988
+ #: build_tmp/build/framework/features/header/items/account/options.php:605
4989
  msgid "Label Color"
4990
  msgstr ""
4991
 
5001
  #: framework/premium/features/premium-header/items/search-input/options.php:189,
5002
  #: framework/premium/features/premium-header/items/search-input/options.php:319,
5003
  #: framework/premium/features/premium-header/items/search-input/options.php:449,
5004
+ #: framework/premium/features/premium-header/items/search-input/options.php:585,
5005
+ #: build_tmp/build/framework/features/header/items/account/options.php:519,
5006
+ #: build_tmp/build/framework/features/header/items/account/options.php:665,
5007
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:151,
5008
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:278,
5009
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:364,
5010
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:534,
5011
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:681,
5012
+ #: build_tmp/build/framework/premium/features/premium-header/items/dark-mode-switcher/options.php:35,
5013
+ #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:208,
5014
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:189,
5015
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:319,
5016
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:449,
5017
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:585
5018
  msgid "Default State"
5019
  msgstr ""
5020
 
5030
  #: framework/premium/features/premium-header/items/search-input/options.php:194,
5031
  #: framework/premium/features/premium-header/items/search-input/options.php:324,
5032
  #: framework/premium/features/premium-header/items/search-input/options.php:454,
5033
+ #: framework/premium/features/premium-header/items/search-input/options.php:590,
5034
+ #: build_tmp/build/framework/features/header/items/account/options.php:524,
5035
+ #: build_tmp/build/framework/features/header/items/account/options.php:670,
5036
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:156,
5037
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:283,
5038
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:369,
5039
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:539,
5040
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:689,
5041
+ #: build_tmp/build/framework/premium/features/premium-header/items/dark-mode-switcher/options.php:40,
5042
+ #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:213,
5043
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:194,
5044
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:324,
5045
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:454,
5046
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:590
5047
  msgid "Transparent State"
5048
  msgstr ""
5049
 
5059
  #: framework/premium/features/premium-header/items/search-input/options.php:203,
5060
  #: framework/premium/features/premium-header/items/search-input/options.php:333,
5061
  #: framework/premium/features/premium-header/items/search-input/options.php:463,
5062
+ #: framework/premium/features/premium-header/items/search-input/options.php:599,
5063
+ #: build_tmp/build/framework/features/header/items/account/options.php:533,
5064
+ #: build_tmp/build/framework/features/header/items/account/options.php:679,
5065
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:165,
5066
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:292,
5067
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:378,
5068
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:548,
5069
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:699,
5070
+ #: build_tmp/build/framework/premium/features/premium-header/items/dark-mode-switcher/options.php:49,
5071
+ #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:222,
5072
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:203,
5073
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:333,
5074
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:463,
5075
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:599
5076
  msgid "Sticky State"
5077
  msgstr ""
5078
 
5079
+ #: framework/features/header/items/account/options.php:785,
5080
+ #: build_tmp/build/framework/features/header/items/account/options.php:785
5081
  msgid "Item Margin"
5082
  msgstr ""
5083
 
5084
+ #: framework/features/header/items/account/options.php:804,
5085
+ #: build_tmp/build/framework/features/header/items/account/options.php:804
5086
  msgid "Modal Options"
5087
  msgstr ""
5088
 
5090
  #: framework/premium/features/premium-header/items/search-input/options.php:184,
5091
  #: framework/premium/features/premium-header/items/search-input/options.php:213,
5092
  #: framework/premium/features/premium-header/items/search-input/options.php:245,
5093
+ #: framework/premium/features/premium-header/items/search-input/options.php:275,
5094
+ #: build_tmp/build/framework/features/header/items/account/options.php:840,
5095
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:184,
5096
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:213,
5097
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:245,
5098
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:275
5099
  msgid "Input Font Color"
5100
  msgstr ""
5101
 
5113
  #: framework/premium/features/premium-header/items/search-input/options.php:558,
5114
  #: framework/premium/features/premium-header/items/search-input/options.php:631,
5115
  #: framework/premium/features/premium-header/items/search-input/options.php:661,
5116
+ #: framework/premium/features/premium-header/items/search-input/options.php:691,
5117
+ #: build_tmp/build/framework/features/header/items/account/options.php:862,
5118
+ #: build_tmp/build/framework/features/header/items/account/options.php:892,
5119
+ #: build_tmp/build/framework/features/header/items/account/options.php:928,
5120
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:237,
5121
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:268,
5122
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:298,
5123
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:367,
5124
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:398,
5125
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:428,
5126
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:497,
5127
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:528,
5128
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:558,
5129
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:631,
5130
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:661,
5131
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:691
5132
  msgid "Focus"
5133
  msgstr ""
5134
 
5136
  #: framework/premium/features/premium-header/items/search-input/options.php:444,
5137
  #: framework/premium/features/premium-header/items/search-input/options.php:473,
5138
  #: framework/premium/features/premium-header/items/search-input/options.php:505,
5139
+ #: framework/premium/features/premium-header/items/search-input/options.php:535,
5140
+ #: build_tmp/build/framework/features/header/items/account/options.php:870,
5141
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:444,
5142
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:473,
5143
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:505,
5144
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:535
5145
  msgid "Input Border Color"
5146
  msgstr ""
5147
 
5149
  #: framework/premium/features/premium-header/items/search-input/options.php:580,
5150
  #: framework/premium/features/premium-header/items/search-input/options.php:608,
5151
  #: framework/premium/features/premium-header/items/search-input/options.php:638,
5152
+ #: framework/premium/features/premium-header/items/search-input/options.php:668,
5153
+ #: build_tmp/build/framework/features/header/items/account/options.php:906,
5154
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:580,
5155
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:608,
5156
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:638,
5157
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:668
5158
  msgid "Input Background Color"
5159
  msgstr ""
5160
 
5161
+ #: framework/features/header/items/account/options.php:939,
5162
+ #: build_tmp/build/framework/features/header/items/account/options.php:939
5163
  msgid "Modal Shadow"
5164
  msgstr ""
5165
 
5166
+ #: framework/features/header/items/account/options.php:1021,
5167
+ #: build_tmp/build/framework/features/header/items/account/options.php:1021
5168
  msgid "Modal Background"
5169
  msgstr ""
5170
 
5171
+ #: framework/features/header/items/account/options.php:1036,
5172
+ #: build_tmp/build/framework/features/header/items/account/options.php:1036
5173
  msgid "Modal Backdrop"
5174
  msgstr ""
5175
 
5176
+ #: framework/features/header/items/account/options.php:1066,
5177
+ #: build_tmp/build/framework/features/header/items/account/options.php:1066
5178
  msgid "Element Visibility"
5179
  msgstr ""
5180
 
5183
  #: framework/features/header/items/account/view.php:20,
5184
  #: framework/features/header/items/account/view.php:23,
5185
  #: framework/features/header/items/account/view.php:25,
5186
+ #: framework/features/header/items/account/view.php:27,
5187
+ #: build_tmp/build/framework/features/header/items/account/view.php:16,
5188
+ #: build_tmp/build/framework/features/header/items/account/view.php:18,
5189
+ #: build_tmp/build/framework/features/header/items/account/view.php:20,
5190
+ #: build_tmp/build/framework/features/header/items/account/view.php:23,
5191
+ #: build_tmp/build/framework/features/header/items/account/view.php:25,
5192
+ #: build_tmp/build/framework/features/header/items/account/view.php:27
5193
  msgid "Account header icon"
5194
  msgstr ""
5195
 
5196
+ #: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:366,
5197
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/dynamic-data.php:366
5198
  msgid "You have no %s fields declared for this custom post type."
5199
  msgstr ""
5200
 
5201
+ #: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:378,
5202
+ #: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:780,
5203
+ #: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:791,
5204
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/dynamic-data.php:378,
5205
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/dynamic-data.php:780,
5206
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/dynamic-data.php:791
5207
  msgid "Field"
5208
  msgstr ""
5209
 
5210
+ #: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:390,
5211
+ #: framework/premium/features/premium-header/items/language-switcher/options.php:60,
5212
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/dynamic-data.php:390,
5213
+ #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:60
5214
  msgid "Label"
5215
  msgstr ""
5216
 
5217
+ #: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:439,
5218
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/dynamic-data.php:439
5219
  msgid "Fallback"
5220
  msgstr ""
5221
 
5222
+ #: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:451,
5223
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/dynamic-data.php:451
5224
  msgid "%s Field"
5225
  msgstr ""
5226
 
5227
+ #: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:778,
5228
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/dynamic-data.php:778
5229
  msgid "%s %s Font"
5230
  msgstr ""
5231
 
5232
+ #: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:789,
5233
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/dynamic-data.php:789
5234
  msgid "%s %s Color"
5235
  msgstr ""
5236
 
5237
  #: framework/premium/extensions/post-types-extra/includes/estimated-read-time.php:9,
5238
+ #: framework/premium/extensions/post-types-extra/includes/estimated-read-time.php:37,
5239
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/estimated-read-time.php:9,
5240
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/estimated-read-time.php:37
5241
  msgid "Read Time"
5242
  msgstr ""
5243
 
5244
+ #: framework/premium/extensions/post-types-extra/includes/estimated-read-time.php:75,
5245
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/estimated-read-time.php:75
5246
  msgid " min"
5247
  msgstr ""
5248
 
5249
+ #: framework/premium/extensions/post-types-extra/includes/estimated-read-time.php:78,
5250
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/estimated-read-time.php:78
5251
  msgid " mins"
5252
  msgstr ""
5253
 
5254
+ #: framework/premium/extensions/post-types-extra/includes/filtering.php:282,
5255
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering.php:282
5256
  msgid "All"
5257
  msgstr ""
5258
 
5259
+ #: framework/premium/extensions/post-types-extra/includes/taxonomies-options.php:129,
5260
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/taxonomies-options.php:129
5261
  msgid "Featured Image"
5262
  msgstr ""
5263
 
5264
+ #: framework/premium/extensions/post-types-extra/includes/taxonomies-options.php:134,
5265
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/taxonomies-options.php:134
5266
  msgid "Accent Color"
5267
  msgstr ""
5268
 
5269
  #: framework/premium/extensions/shortcuts/views/bar.php:31,
5270
+ #: framework/premium/extensions/woocommerce-extra/includes/wish-list.php:137,
5271
+ #: build_tmp/build/framework/premium/extensions/shortcuts/views/bar.php:31,
5272
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list.php:137
5273
  msgid "Wish List"
5274
  msgstr ""
5275
 
5276
  #: framework/premium/extensions/woocommerce-extra/includes/wish-list-helpers.php:42,
5277
+ #: framework/premium/extensions/woocommerce-extra/includes/wish-list-helpers.php:50,
5278
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-helpers.php:42,
5279
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-helpers.php:50
5280
  msgid "Add to wishlist"
5281
  msgstr ""
5282
 
5283
+ #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:9,
5284
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:9
5285
  msgid "Select a page"
5286
  msgstr ""
5287
 
5288
+ #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:18,
5289
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:18
5290
  msgid "Products Wishlist"
5291
  msgstr ""
5292
 
5293
+ #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:28,
5294
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:28
5295
  msgid "Show Wishlist For"
5296
  msgstr ""
5297
 
5298
+ #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:34,
5299
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:34
5300
  msgid "Logged Users"
5301
  msgstr ""
5302
 
5303
+ #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:35,
5304
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:35
5305
  msgid "All Users"
5306
  msgstr ""
5307
 
5308
+ #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:45,
5309
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:45
5310
  msgid "Wish List Page"
5311
  msgstr ""
5312
 
5313
+ #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:51,
5314
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:51
5315
  msgid ""
5316
  "The page you select here will display the wish list for your logged out "
5317
  "users."
5318
  msgstr ""
5319
 
5320
+ #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:60,
5321
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:60
5322
  msgid "Display Wishlist Button On"
5323
  msgstr ""
5324
 
5325
+ #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:64,
5326
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:64
5327
  msgid "Archive Pages"
5328
  msgstr ""
5329
 
5330
+ #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:73,
5331
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:73
5332
  msgid "Single Product Pages"
5333
  msgstr ""
5334
 
5335
+ #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:82,
5336
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:82
5337
  msgid "Quick View Modal"
5338
  msgstr ""
5339
 
5340
+ #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:95,
5341
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:95
5342
  msgid "AJAX Add To Cart"
5343
  msgstr ""
5344
 
5345
+ #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:131,
5346
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:131
5347
  msgid "Archive Button"
5348
  msgstr ""
5349
 
5355
  #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:243,
5356
  #: framework/premium/features/premium-header/items/language-switcher/options.php:254,
5357
  #: framework/premium/features/premium-header/items/language-switcher/options.php:284,
5358
+ #: framework/premium/features/premium-header/items/language-switcher/options.php:313,
5359
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:159,
5360
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:191,
5361
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:235,
5362
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:311,
5363
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:207,
5364
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:243,
5365
+ #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:254,
5366
+ #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:284,
5367
+ #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:313
5368
  msgid "Hover/Active"
5369
  msgstr ""
5370
 
5371
+ #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:208,
5372
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:208
5373
  msgid "Single Product Button"
5374
  msgstr ""
5375
 
5376
+ #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:284,
5377
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:284
5378
  msgid "Quick View Modal Button"
5379
  msgstr ""
5380
 
5381
+ #: framework/premium/extensions/woocommerce-extra/includes/wish-list-table.php:152,
5382
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-table.php:152
5383
  msgid "You don't have any products in your wish list yet."
5384
  msgstr ""
5385
 
5386
+ #: framework/premium/extensions/woocommerce-extra/includes/wish-list-table.php:13,
5387
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-table.php:13
5388
  msgid "Product"
5389
  msgstr ""
5390
 
5391
+ #: framework/premium/extensions/woocommerce-extra/includes/wish-list-table.php:14,
5392
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-table.php:14
5393
  msgid "Add to cart"
5394
  msgstr ""
5395
 
5396
  #: framework/premium/extensions/woocommerce-extra/includes/wish-list-table.php:89,
5397
+ #: framework/premium/extensions/woocommerce-extra/includes/wish-list-table.php:113,
5398
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-table.php:89,
5399
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-table.php:113
5400
  msgid "Remove Product"
5401
  msgstr ""
5402
 
5403
+ #: framework/premium/extensions/woocommerce-extra/includes/woo-import-export.php:34,
5404
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/woo-import-export.php:34
5405
  msgid "Blocksy Variation Images"
5406
  msgstr ""
5407
 
5408
  #: framework/premium/features/content-blocks/options/404.php:19,
5409
  #: framework/premium/features/content-blocks/options/header.php:19,
5410
  #: framework/premium/features/content-blocks/options/hook.php:19,
5411
+ #: framework/premium/features/content-blocks/options/popup.php:25,
5412
+ #: build_tmp/build/framework/premium/features/content-blocks/options/404.php:19,
5413
+ #: build_tmp/build/framework/premium/features/content-blocks/options/header.php:19,
5414
+ #: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:19,
5415
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:25
5416
  msgid "Other"
5417
  msgstr ""
5418
 
5419
  #: framework/premium/features/content-blocks/options/404.php:33,
5420
  #: framework/premium/features/content-blocks/options/header.php:35,
5421
  #: framework/premium/features/content-blocks/options/hook.php:35,
5422
+ #: framework/premium/features/content-blocks/options/popup.php:42,
5423
+ #: build_tmp/build/framework/premium/features/content-blocks/options/404.php:33,
5424
+ #: build_tmp/build/framework/premium/features/content-blocks/options/header.php:35,
5425
+ #: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:35,
5426
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:42
5427
  msgid "Container Structure"
5428
  msgstr ""
5429
 
5430
  #: framework/premium/features/content-blocks/options/404.php:59,
5431
  #: framework/premium/features/content-blocks/options/header.php:63,
5432
+ #: framework/premium/features/content-blocks/options/hook.php:63,
5433
+ #: build_tmp/build/framework/premium/features/content-blocks/options/404.php:59,
5434
+ #: build_tmp/build/framework/premium/features/content-blocks/options/header.php:63,
5435
+ #: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:63
5436
  msgid "Narrow Width"
5437
  msgstr ""
5438
 
5439
  #: framework/premium/features/content-blocks/options/404.php:64,
5440
  #: framework/premium/features/content-blocks/options/header.php:68,
5441
+ #: framework/premium/features/content-blocks/options/hook.php:68,
5442
+ #: build_tmp/build/framework/premium/features/content-blocks/options/404.php:64,
5443
+ #: build_tmp/build/framework/premium/features/content-blocks/options/header.php:68,
5444
+ #: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:68
5445
  msgid "Normal Width"
5446
  msgstr ""
5447
 
5448
  #: framework/premium/features/content-blocks/options/404.php:70,
5449
  #: framework/premium/features/content-blocks/options/header.php:74,
5450
+ #: framework/premium/features/content-blocks/options/hook.php:74,
5451
+ #: build_tmp/build/framework/premium/features/content-blocks/options/404.php:70,
5452
+ #: build_tmp/build/framework/premium/features/content-blocks/options/header.php:74,
5453
+ #: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:74
5454
  msgid "Content Area Style"
5455
  msgstr ""
5456
 
5457
  #: framework/premium/features/content-blocks/options/404.php:84,
5458
  #: framework/premium/features/content-blocks/options/header.php:88,
5459
+ #: framework/premium/features/content-blocks/options/hook.php:88,
5460
+ #: build_tmp/build/framework/premium/features/content-blocks/options/404.php:84,
5461
+ #: build_tmp/build/framework/premium/features/content-blocks/options/header.php:88,
5462
+ #: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:88
5463
  msgid "Content Area Vertical Spacing"
5464
  msgstr ""
5465
 
5466
  #: framework/premium/features/content-blocks/options/404.php:95,
5467
  #: framework/premium/features/content-blocks/options/header.php:99,
5468
+ #: framework/premium/features/content-blocks/options/hook.php:99,
5469
+ #: build_tmp/build/framework/premium/features/content-blocks/options/404.php:95,
5470
+ #: build_tmp/build/framework/premium/features/content-blocks/options/header.php:99,
5471
+ #: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:99
5472
  msgid "Top & Bottom"
5473
  msgstr ""
5474
 
5475
  #: framework/premium/features/content-blocks/options/404.php:98,
5476
  #: framework/premium/features/content-blocks/options/header.php:102,
5477
+ #: framework/premium/features/content-blocks/options/hook.php:102,
5478
+ #: build_tmp/build/framework/premium/features/content-blocks/options/404.php:98,
5479
+ #: build_tmp/build/framework/premium/features/content-blocks/options/header.php:102,
5480
+ #: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:102
5481
  msgid "Only Top"
5482
  msgstr ""
5483
 
5484
  #: framework/premium/features/content-blocks/options/404.php:101,
5485
  #: framework/premium/features/content-blocks/options/header.php:105,
5486
+ #: framework/premium/features/content-blocks/options/hook.php:105,
5487
+ #: build_tmp/build/framework/premium/features/content-blocks/options/404.php:101,
5488
+ #: build_tmp/build/framework/premium/features/content-blocks/options/header.php:105,
5489
+ #: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:105
5490
  msgid "Only Bottom"
5491
  msgstr ""
5492
 
5493
+ #: framework/premium/features/content-blocks/options/hook.php:143,
5494
+ #: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:143
5495
  msgid "Location & Priority"
5496
  msgstr ""
5497
 
5498
+ #: framework/premium/features/content-blocks/options/hook.php:153,
5499
+ #: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:153
5500
  #: framework/premium/static/js/options/MultipleLocationsSelect.js:47
5501
  msgid "Select location"
5502
  msgstr ""
5503
 
5504
+ #: framework/premium/features/content-blocks/options/hook.php:176,
5505
+ #: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:176
5506
  #: framework/premium/static/js/options/MultipleLocationsSelect.js:72
5507
  msgid "Custom Hook"
5508
  msgstr ""
5509
 
5510
  #: framework/premium/features/content-blocks/options/hook.php:251,
5511
+ #: framework/premium/features/content-blocks/options/popup.php:296,
5512
+ #: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:251,
5513
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:296
5514
  msgid "Expiration Date/Time"
5515
  msgstr ""
5516
 
5517
+ #: framework/premium/features/content-blocks/options/hook.php:278,
5518
+ #: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:278
5519
  msgid "Block Position"
5520
  msgstr ""
5521
 
5522
+ #: framework/premium/features/content-blocks/options/hook.php:285,
5523
+ #: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:285
5524
  msgid "Fixed"
5525
  msgstr ""
5526
 
5527
+ #: framework/premium/features/content-blocks/options/hook.php:295,
5528
+ #: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:295
5529
  msgid "Location"
5530
  msgstr ""
5531
 
5532
+ #: framework/premium/features/content-blocks/options/popup.php:50,
5533
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:50
5534
  msgid "Popup Position"
5535
  msgstr ""
5536
 
5537
+ #: framework/premium/features/content-blocks/options/popup.php:57,
5538
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:57
5539
  msgid "Popup Size"
5540
  msgstr ""
5541
 
5542
+ #: framework/premium/features/content-blocks/options/popup.php:63,
5543
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:63
5544
  msgid "Small Size"
5545
  msgstr ""
5546
 
5547
+ #: framework/premium/features/content-blocks/options/popup.php:64,
5548
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:64
5549
  msgid "Medium Size"
5550
  msgstr ""
5551
 
5552
+ #: framework/premium/features/content-blocks/options/popup.php:65,
5553
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:65
5554
  msgid "Large Size"
5555
  msgstr ""
5556
 
5557
+ #: framework/premium/features/content-blocks/options/popup.php:66,
5558
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:66
5559
  msgid "Custom Size"
5560
  msgstr ""
5561
 
5562
+ #: framework/premium/features/content-blocks/options/popup.php:76,
5563
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:76
5564
  msgid "Max Width"
5565
  msgstr ""
5566
 
5567
+ #: framework/premium/features/content-blocks/options/popup.php:92,
5568
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:92
5569
  msgid "Max Height"
5570
  msgstr ""
5571
 
5572
+ #: framework/premium/features/content-blocks/options/popup.php:111,
5573
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:111
5574
  msgid "Popup Animation"
5575
  msgstr ""
5576
 
5577
+ #: framework/premium/features/content-blocks/options/popup.php:117,
5578
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:117
5579
  msgid "Fade in fade out"
5580
  msgstr ""
5581
 
5582
+ #: framework/premium/features/content-blocks/options/popup.php:118,
5583
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:118
5584
  msgid "Zoom in zoom out"
5585
  msgstr ""
5586
 
5587
+ #: framework/premium/features/content-blocks/options/popup.php:119,
5588
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:119
5589
  msgid "Slide in from left"
5590
  msgstr ""
5591
 
5592
+ #: framework/premium/features/content-blocks/options/popup.php:120,
5593
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:120
5594
  msgid "Slide in from right"
5595
  msgstr ""
5596
 
5597
+ #: framework/premium/features/content-blocks/options/popup.php:121,
5598
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:121
5599
  msgid "Slide in from top"
5600
  msgstr ""
5601
 
5602
+ #: framework/premium/features/content-blocks/options/popup.php:122,
5603
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:122
5604
  msgid "Slide in from bottom"
5605
  msgstr ""
5606
 
5607
+ #: framework/premium/features/content-blocks/options/popup.php:127,
5608
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:127
5609
  msgid "Animation Speed"
5610
  msgstr ""
5611
 
5612
+ #: framework/premium/features/content-blocks/options/popup.php:144,
5613
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:144
5614
  msgid "Entrance Value"
5615
  msgstr ""
5616
 
5617
+ #: framework/premium/features/content-blocks/options/popup.php:156,
5618
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:156
5619
  msgid "Trigger Condition"
5620
  msgstr ""
5621
 
5622
+ #: framework/premium/features/content-blocks/options/popup.php:181,
5623
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:181
5624
  msgid "Element Class"
5625
  msgstr ""
5626
 
5627
+ #: framework/premium/features/content-blocks/options/popup.php:188,
5628
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:188
5629
  msgid "Separate each class by comma if you have multiple elements."
5630
  msgstr ""
5631
 
5632
+ #: framework/premium/features/content-blocks/options/popup.php:200,
5633
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:200
5634
  msgid "Scroll Direction"
5635
  msgstr ""
5636
 
5637
+ #: framework/premium/features/content-blocks/options/popup.php:205,
5638
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:205
5639
  msgid "Scroll Down"
5640
  msgstr ""
5641
 
5642
+ #: framework/premium/features/content-blocks/options/popup.php:206,
5643
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:206
5644
  msgid "Scroll Up"
5645
  msgstr ""
5646
 
5647
+ #: framework/premium/features/content-blocks/options/popup.php:211,
5648
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:211
5649
  msgid "Scroll Distance"
5650
  msgstr ""
5651
 
5652
+ #: framework/premium/features/content-blocks/options/popup.php:221,
5653
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:221
5654
  msgid "Set the scroll distance till the popup block will appear."
5655
  msgstr ""
5656
 
5657
+ #: framework/premium/features/content-blocks/options/popup.php:233,
5658
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:233
5659
  msgid "Inactivity Time"
5660
  msgstr ""
5661
 
5662
+ #: framework/premium/features/content-blocks/options/popup.php:239,
5663
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:239
5664
  msgid "Set the inactivity time (in seconds) till the popup block will appear."
5665
  msgstr ""
5666
 
5667
+ #: framework/premium/features/content-blocks/options/popup.php:251,
5668
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:251
5669
  msgid "After X Time"
5670
  msgstr ""
5671
 
5672
+ #: framework/premium/features/content-blocks/options/popup.php:257,
5673
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:257
5674
  msgid "Set after how much time (in seconds) the popup block will appear."
5675
  msgstr ""
5676
 
5677
+ #: framework/premium/features/content-blocks/options/popup.php:269,
5678
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:269
5679
  msgid "Trigger Popup Only Once"
5680
  msgstr ""
5681
 
5682
+ #: framework/premium/features/content-blocks/options/popup.php:272,
5683
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:272
5684
  msgid ""
5685
  "If the close button is clicked the popup won't be triggered anymore for the "
5686
  "current visitor."
5687
  msgstr ""
5688
 
5689
+ #: framework/premium/features/content-blocks/options/popup.php:347,
5690
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:347
5691
  msgid "Padding"
5692
  msgstr ""
5693
 
5694
  #: framework/premium/features/content-blocks/options/popup.php:357,
5695
  #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:266,
5696
+ #: framework/premium/features/premium-header/items/language-switcher/options.php:465,
5697
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:357,
5698
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:266,
5699
+ #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:465
5700
  msgid "Border Radius"
5701
  msgstr ""
5702
 
5703
+ #: framework/premium/features/content-blocks/options/popup.php:386,
5704
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:386
5705
  msgid "Popup Offset"
5706
  msgstr ""
5707
 
5708
+ #: framework/premium/features/content-blocks/options/popup.php:396,
5709
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:396
5710
  msgid "Container Overflow"
5711
  msgstr ""
5712
 
5713
+ #: framework/premium/features/content-blocks/options/popup.php:403,
5714
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:403
5715
  msgid "Hidden"
5716
  msgstr ""
5717
 
5718
+ #: framework/premium/features/content-blocks/options/popup.php:404,
5719
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:404
5720
  msgid "Visible"
5721
  msgstr ""
5722
 
5723
+ #: framework/premium/features/content-blocks/options/popup.php:405,
5724
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:405
5725
  msgid "Scroll"
5726
  msgstr ""
5727
 
5728
+ #: framework/premium/features/content-blocks/options/popup.php:407,
5729
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:407
5730
  msgid ""
5731
  "Control what happens to the content that is too big to fit into the popup."
5732
  msgstr ""
5733
 
5734
+ #: framework/premium/features/content-blocks/options/popup.php:411,
5735
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:411
5736
  msgid "Close Button"
5737
  msgstr ""
5738
 
5739
+ #: framework/premium/features/content-blocks/options/popup.php:419,
5740
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:419
5741
  msgid "Inside"
5742
  msgstr ""
5743
 
5744
+ #: framework/premium/features/content-blocks/options/popup.php:420,
5745
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:420
5746
  msgid "Outside"
5747
  msgstr ""
5748
 
5749
+ #: framework/premium/features/content-blocks/options/popup.php:494,
5750
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:494
5751
  msgid "Popup Background"
5752
  msgstr ""
5753
 
5754
+ #: framework/premium/features/content-blocks/options/popup.php:508,
5755
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:508
5756
  msgid "Popup Backdrop Background"
5757
  msgstr ""
5758
 
5759
+ #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:25,
5760
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:25
5761
  msgid "Posts Filter"
5762
  msgstr ""
5763
 
5764
+ #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:60,
5765
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:60
5766
  msgid "Filtering Behavior"
5767
  msgstr ""
5768
 
5769
+ #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:68,
5770
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:68
5771
  msgid "Instant Reload"
5772
  msgstr ""
5773
 
5774
+ #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:69,
5775
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:69
5776
  msgid "Page Reload"
5777
  msgstr ""
5778
 
5779
+ #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:92,
5780
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:92
5781
  msgid "Items Horizontal Spacing"
5782
  msgstr ""
5783
 
5784
  #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:104,
5785
+ #: framework/premium/features/premium-header/items/language-switcher/options.php:360,
5786
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:104,
5787
+ #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:360
5788
  msgid "Items Vertical Spacing"
5789
  msgstr ""
5790
 
5791
+ #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:116,
5792
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:116
5793
  msgid "Container Bottom Spacing"
5794
  msgstr ""
5795
 
5796
+ #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:128,
5797
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:128
5798
  msgid "Horizontal Alignment"
5799
  msgstr ""
5800
 
5801
+ #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:251,
5802
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:251
5803
  msgid "Button Padding"
5804
  msgstr ""
5805
 
5806
+ #: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:4,
5807
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:4
5808
  msgid "Read Progress"
5809
  msgstr ""
5810
 
5811
+ #: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:24,
5812
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:24
5813
  msgid "Indicator Height"
5814
  msgstr ""
5815
 
5816
+ #: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:34,
5817
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:34
5818
  msgid "Auto Hide"
5819
  msgstr ""
5820
 
5821
+ #: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:38,
5822
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:38
5823
  msgid ""
5824
  "Automatically hide the read progress bar once you arrive at the bottom of "
5825
  "the article."
5826
  msgstr ""
5827
 
5828
+ #: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:71,
5829
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:71
5830
  msgid "Main Color"
5831
  msgstr ""
5832
 
5833
+ #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:49,
5834
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:49
5835
  msgid "Icon Badge"
5836
  msgstr ""
5837
 
5838
+ #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:146,
5839
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:146
5840
  msgid "Label Font Color"
5841
  msgstr ""
5842
 
5843
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/view.php:21,
5844
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/view.php:24,
5845
+ #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/view.php:30,
5846
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/view.php:21,
5847
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/view.php:24,
5848
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/view.php:30
5849
  msgid "Wishlist header icon"
5850
  msgstr ""
5851
 
5852
+ #: framework/premium/features/premium-header/items/contacts/config.php:4,
5853
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/config.php:4
5854
  msgid "Contacts"
5855
  msgstr ""
5856
 
5857
+ #: framework/premium/features/premium-header/items/contacts/options.php:239,
5858
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:239
5859
+ msgid "Open Links In New Tab"
5860
+ msgstr ""
5861
+
5862
  #: framework/premium/features/premium-header/items/contacts/options.php:259,
5863
+ #: framework/premium/features/premium-header/items/language-switcher/options.php:95,
5864
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:259,
5865
+ #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:95
5866
  msgid "Items Spacing"
5867
  msgstr ""
5868
 
5870
  #: framework/premium/features/premium-header/items/divider/options.php:107,
5871
  #: framework/premium/features/premium-header/items/divider/options.php:126,
5872
  #: framework/premium/features/premium-header/items/language-switcher/options.php:323,
5873
+ #: framework/premium/features/premium-header/items/search-input/options.php:724,
5874
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:834,
5875
+ #: build_tmp/build/framework/premium/features/premium-header/items/divider/options.php:107,
5876
+ #: build_tmp/build/framework/premium/features/premium-header/items/divider/options.php:126,
5877
+ #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:323,
5878
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:724
5879
  msgid "Margin"
5880
  msgstr ""
5881
 
5882
+ #: framework/premium/features/premium-header/items/dark-mode-switcher/config.php:5,
5883
+ #: build_tmp/build/framework/premium/features/premium-header/items/dark-mode-switcher/config.php:5
5884
  msgid "Dark Mode"
5885
  msgstr ""
5886
 
5887
+ #: framework/premium/features/premium-header/items/divider/config.php:4,
5888
+ #: build_tmp/build/framework/premium/features/premium-header/items/divider/config.php:4
5889
  msgid "Divider"
5890
  msgstr ""
5891
 
5892
+ #: framework/premium/features/premium-header/items/divider/options.php:6,
5893
+ #: build_tmp/build/framework/premium/features/premium-header/items/divider/options.php:6
5894
  msgid "Size"
5895
  msgstr ""
5896
 
5897
+ #: framework/premium/features/premium-header/items/language-switcher/config.php:6,
5898
+ #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/config.php:6
5899
  msgid "Languages"
5900
  msgstr ""
5901
 
5902
+ #: framework/premium/features/premium-header/items/language-switcher/options.php:17,
5903
+ #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:17
5904
  msgid "Top Level Options"
5905
  msgstr ""
5906
 
5907
+ #: framework/premium/features/premium-header/items/language-switcher/options.php:37,
5908
+ #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:37
5909
  msgid "Dropdown"
5910
  msgstr ""
5911
 
5912
+ #: framework/premium/features/premium-header/items/language-switcher/options.php:47,
5913
+ #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:47
5914
  msgid "Display"
5915
  msgstr ""
5916
 
5917
+ #: framework/premium/features/premium-header/items/language-switcher/options.php:59,
5918
+ #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:59
5919
  msgid "Flag"
5920
  msgstr ""
5921
 
5922
+ #: framework/premium/features/premium-header/items/language-switcher/options.php:73,
5923
+ #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:73
5924
  msgid "Label Style"
5925
  msgstr ""
5926
 
5927
+ #: framework/premium/features/premium-header/items/language-switcher/options.php:79,
5928
+ #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:79
5929
  msgid "Long"
5930
  msgstr ""
5931
 
5932
+ #: framework/premium/features/premium-header/items/language-switcher/options.php:80,
5933
+ #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:80
5934
  msgid "Short"
5935
  msgstr ""
5936
 
5937
+ #: framework/premium/features/premium-header/items/language-switcher/options.php:112,
5938
+ #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:112
5939
  msgid "Hide Current Language"
5940
  msgstr ""
5941
 
5942
+ #: framework/premium/features/premium-header/items/language-switcher/options.php:343,
5943
+ #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:343
5944
  msgid "Dropdown Options"
5945
  msgstr ""
5946
 
5947
+ #: framework/premium/features/premium-header/items/language-switcher/options.php:352,
5948
+ #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:352
5949
  msgid "Dropdown Top Offset"
5950
  msgstr ""
5951
 
5952
+ #: framework/premium/features/premium-header/items/search-input/config.php:4,
5953
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/config.php:4
5954
  msgid "Search Box"
5955
  msgstr ""
5956
 
5957
+ #: framework/premium/features/premium-header/items/search-input/options.php:42,
5958
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:42
5959
  msgid "Placeholder Text"
5960
  msgstr ""
5961
 
5962
+ #: framework/premium/features/premium-header/items/search-input/options.php:52,
5963
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:52
5964
  msgid "Input Maximum Width"
5965
  msgstr ""
5966
 
5967
+ #: framework/premium/features/premium-header/items/search-input/options.php:64,
5968
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:64
5969
  msgid "Input Height"
5970
  msgstr ""
5971
 
5972
+ #: framework/premium/features/premium-header/items/search-input/options.php:79,
5973
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:79
5974
  msgid "Live Results"
5975
  msgstr ""
5976
 
5977
+ #: framework/premium/features/premium-header/items/search-input/options.php:90,
5978
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:90
5979
  msgid "Live Results Images"
5980
  msgstr ""
5981
 
5982
+ #: framework/premium/features/premium-header/items/search-input/options.php:101,
5983
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:101
5984
  msgid "Search Through Criteria"
5985
  msgstr ""
5986
 
5987
+ #: framework/premium/features/premium-header/items/search-input/options.php:102,
5988
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:102
5989
  msgid "Chose in which post types do you want to perform searches."
5990
  msgstr ""
5991
 
5992
  #: framework/premium/features/premium-header/items/search-input/options.php:314,
5993
  #: framework/premium/features/premium-header/items/search-input/options.php:343,
5994
  #: framework/premium/features/premium-header/items/search-input/options.php:375,
5995
+ #: framework/premium/features/premium-header/items/search-input/options.php:405,
5996
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:314,
5997
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:343,
5998
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:375,
5999
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:405
6000
  msgid "Input Icon Color"
6001
  msgstr ""
6002
 
6003
+ #: framework/premium/features/premium-header/items/search-input/options.php:744,
6004
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:744
6005
  msgid "Dropdown Text Color"
6006
  msgstr ""
6007
 
6008
+ #: framework/premium/features/premium-header/items/search-input/options.php:775,
6009
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:775
6010
  msgid "Dropdown Background"
6011
  msgstr ""
6012
 
6013
+ #: framework/premium/features/premium-header/items/widget-area-1/config.php:4,
6014
+ #: build_tmp/build/framework/premium/features/premium-header/items/widget-area-1/config.php:4
6015
  msgid "Widget Area"
6016
  msgstr ""
6017
 
readme.txt CHANGED
@@ -5,7 +5,7 @@ Requires PHP: 7.0
5
  Tested up to: 5.8
6
  License: GPLv2 or later
7
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
8
- Stable tag: 1.8.8.1
9
 
10
  == Description ==
11
 
@@ -23,6 +23,12 @@ 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.8.1: 2021-08-23
27
  - New: Schema org markup for product reviews
28
  - Fix: Handle missing plugin in starter sites installer
5
  Tested up to: 5.8
6
  License: GPLv2 or later
7
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
8
+ Stable tag: 1.8.8.2
9
 
10
  == Description ==
11
 
23
  2. Activate the plugin by going to **Plugins** page in WordPress admin and clicking on **Activate** link.
24
 
25
  == Changelog ==
26
+ 1.8.8.2: 2021-08-30
27
+ - Improvement: Block widgets and legacy widgets integration
28
+ - Improvement: Post reviews extension schema org markup
29
+ - Improvement: Social widget add nofollow option
30
+ - Fix: Upon deactivation of companion pro and selecting contact support, it shows a restricted webpage
31
+
32
  1.8.8.1: 2021-08-23
33
  - New: Schema org markup for product reviews
34
  - Fix: Handle missing plugin in starter sites installer
static/bundle/dashboard.min.css CHANGED
@@ -1,5 +1,5 @@
1
  /**
2
- * - v1.8.8.1
3
  *
4
  * Copyright (c) 2021
5
  * Licensed GPLv2+
1
  /**
2
+ * - v1.8.8.2
3
  *
4
  * Copyright (c) 2021
5
  * Licensed GPLv2+
static/bundle/main.min.css CHANGED
@@ -1,5 +1,5 @@
1
  /**
2
- * - v1.8.8.1
3
  *
4
  * Copyright (c) 2021
5
  * Licensed GPLv2+
1
  /**
2
+ * - v1.8.8.2
3
  *
4
  * Copyright (c) 2021
5
  * Licensed GPLv2+
static/bundle/options.min.css CHANGED
@@ -1,5 +1,5 @@
1
  /**
2
- * - v1.8.8.1
3
  *
4
  * Copyright (c) 2021
5
  * Licensed GPLv2+
1
  /**
2
+ * - v1.8.8.2
3
  *
4
  * Copyright (c) 2021
5
  * Licensed GPLv2+
static/bundle/sticky.js CHANGED
@@ -1 +1 @@
1
- !function(t){var e={};function r(n){if(e[n])return e[n].exports;var o=e[n]={i:n,l:!1,exports:{}};return t[n].call(o.exports,o,o.exports,r),o.l=!0,o.exports}r.m=t,r.c=e,r.d=function(t,e,n){r.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:n})},r.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},r.t=function(t,e){if(1&e&&(t=r(t)),8&e)return t;if(4&e&&"object"==typeof t&&t&&t.__esModule)return t;var n=Object.create(null);if(r.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:t}),2&e&&"string"!=typeof t)for(var o in t)r.d(n,o,function(e){return t[e]}.bind(null,o));return n},r.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return r.d(e,"a",e),e},r.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},r.p="",r(r.s=2)}([function(t,e){t.exports=window.ctFrontend},function(t,e){t.exports=window.ctEvents},function(t,e,r){"use strict";r.r(e);r(1);var n=r(0),o=function(t,e,r){return Math.max(t,Math.min(e,r))},i=function(t,e,r){return e[0]+(e[1]-e[0])/(t[1]-t[0])*(r-t[0])},a=function(t){if(t.blcInitialHeight)return t.blcInitialHeight;var e=getComputedStyle(t),r=getComputedStyle(t.firstElementChild),n=0;n+=parseFloat(e.borderTopWidth),n+=parseFloat(e.borderBottomWidth),n+=parseFloat(r.borderTopWidth),n+=parseFloat(r.borderBottomWidth);var o=parseFloat(e.getPropertyValue("--height"))+n;return t.blcInitialHeight=o,o},c=function(t){var e=getComputedStyle(t).getPropertyValue("--stickyShrink");return e?parseFloat(e)/100*a(t):a(t)};function s(t){return function(t){if(Array.isArray(t))return u(t)}(t)||function(t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(t))return Array.from(t)}(t)||function(t,e){if(!t)return;if("string"==typeof t)return u(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);"Object"===r&&t.constructor&&(r=t.constructor.name);if("Map"===r||"Set"===r)return Array.from(t);if("Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return u(t,e)}(t)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function u(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=new Array(e);r<e;r++)n[r]=t[r];return n}function y(t){return function(t){if(Array.isArray(t))return l(t)}(t)||function(t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(t))return Array.from(t)}(t)||function(t,e){if(!t)return;if("string"==typeof t)return l(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);"Object"===r&&t.constructor&&(r=t.constructor.name);if("Map"===r||"Set"===r)return Array.from(t);if("Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return l(t,e)}(t)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function l(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=new Array(e);r<e;r++)n[r]=t[r];return n}var d=function(t){var e=t.stickyContainer,r=t.isSticky,n=t.startPosition,u=t.stickyComponents,l=Array.from(e.querySelectorAll("[data-row]")).reduce((function(t,e){return t+e.getBoundingClientRect().height}),0);if(0===n&&0===window.scrollY&&(e.dataset.sticky=["fixed"].concat(y(u)).join(":"),e.parentNode.style.setProperty("--minHeight","".concat(l,"px"))),r){if(u.indexOf("yes")>-1)return;k(e,"no"),e.parentNode.style.setProperty("--minHeight","".concat(l,"px")),e.dataset.sticky=["yes"].concat(y(u)).join(":"),function(t){var e=t.stickyContainer,r=t.startPosition;s(e.querySelectorAll('[data-row*="middle"]')).map((function(t){if(t.querySelector('[data-id="logo"] .site-logo-container')){var e=t.querySelector('[data-id="logo"] .site-logo-container'),n=parseFloat(getComputedStyle(e).getPropertyValue("--maxHeight")||50),s=parseFloat(getComputedStyle(e).getPropertyValue("--logoStickyShrink").toString().replace(",",".")||1),u=n*s;if(1!==s){var y=a(t),l=c(t);e.style.setProperty("--logo-shrink-height",i([r,r+Math.abs(y===l?n-u:y-l)],[1,s],o(r,r+Math.abs(y===l?n-u:y-l),scrollY)))}}}))}({stickyContainer:e,startPosition:n}),function(t){var e=t.stickyContainer,r=t.containerInitialHeight,n=t.startPosition;Array.from(e.querySelectorAll("[data-row]")).reduce((function(t,e,r){return t+c(e)}),0)!==r&&e.querySelector('[data-row*="middle"]')&&[e.querySelector('[data-row*="middle"]')].map((function(t){var e=a(t),r=c(t);e!==r&&t.style.setProperty("--shrinkHeight","".concat(i([n,n+Math.abs(e-r)],[e,r],o(n,n+Math.abs(e-r),scrollY)),"px"))}))}({stickyContainer:e,containerInitialHeight:l,startPosition:n})}else{var d=Array.from(e.querySelectorAll("[data-row]")).reduce((function(t,e){return t+a(e)}),0);Array.from(e.querySelectorAll("[data-row]")).map((function(t){return t.removeAttribute("style")})),Array.from(e.querySelectorAll('[data-row*="middle"] .site-logo-container')).map((function(t){return t.removeAttribute("style")})),k(e,"yes"),e.parentNode.style.setProperty("--minHeight","".concat(d,"px")),0===n&&0===window.scrollY?e.dataset.sticky=["fixed"].concat(y(u)).join(":"):(e.parentNode.removeAttribute("style"),e.dataset.sticky=u.join(":"))}};function f(t){return function(t){if(Array.isArray(t))return m(t)}(t)||function(t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(t))return Array.from(t)}(t)||function(t,e){if(!t)return;if("string"==typeof t)return m(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);"Object"===r&&t.constructor&&(r=t.constructor.name);if("Map"===r||"Set"===r)return Array.from(t);if("Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return m(t,e)}(t)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function m(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=new Array(e);r<e;r++)n[r]=t[r];return n}var p=window.scrollY;function h(t){return function(t){if(Array.isArray(t))return b(t)}(t)||function(t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(t))return Array.from(t)}(t)||function(t,e){if(!t)return;if("string"==typeof t)return b(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);"Object"===r&&t.constructor&&(r=t.constructor.name);if("Map"===r||"Set"===r)return Array.from(t);if("Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return b(t,e)}(t)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function b(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=new Array(e);r<e;r++)n[r]=t[r];return n}function g(t){return function(t){if(Array.isArray(t))return A(t)}(t)||function(t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(t))return Array.from(t)}(t)||function(t,e){if(!t)return;if("string"==typeof t)return A(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);"Object"===r&&t.constructor&&(r=t.constructor.name);if("Map"===r||"Set"===r)return Array.from(t);if("Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return A(t,e)}(t)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function A(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=new Array(e);r<e;r++)n[r]=t[r];return n}var k=function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"yes";Array.from(t.querySelectorAll("[data-row][data-transparent-row]")).map((function(t){t.dataset.transparentRow=e}))},S=null,v=function t(){if(S!==scrollY){S=scrollY;var e=document.querySelector('[data-device="'.concat(Object(n.getCurrentScreen)(),'"] [data-sticky]'));if(e){var r=function(t){if(-1===t.dataset.sticky.indexOf("shrink")&&-1===t.dataset.sticky.indexOf("auto-hide"))return t.parentNode.getBoundingClientRect().height+200;var e=t.parentNode;return 1===e.parentNode.children.length||e.parentNode.children[0].classList.contains("ct-sticky-container")?0:Array.from(e.parentNode.children).reduce((function(t,e,r){return t.indexOf(0)>-1||!e.dataset.row?[].concat(g(t),[0]):[].concat(g(t),[e.classList.contains("ct-sticky-container")?0:e.getBoundingClientRect().height])}),[]).reduce((function(t,e){return t+e}),0)}(e),o=r>0&&Math.abs(window.scrollY-r)<5||window.scrollY>r;o&&-1===document.body.dataset.header.indexOf("shrink")&&(document.body.dataset.header="".concat(document.body.dataset.header,":shrink")),!o&&document.body.dataset.header.indexOf("shrink")>-1&&(document.body.dataset.header=document.body.dataset.header.replace(":shrink",""));var i=e.dataset.sticky.split(":").filter((function(t){return"yes"!==t&&"no"!==t&&"fixed"!==t}));i.indexOf("shrink")>-1&&d({stickyContainer:e,isSticky:o,startPosition:r,stickyComponents:i}),i.indexOf("auto-hide")>-1&&function(t){var e=t.startPosition,r=t.stickyContainer,n=t.isSticky,o=t.stickyComponents,i=Array.from(r.querySelectorAll("[data-row]")).reduce((function(t,e){return t+e.getBoundingClientRect().height}),0);if(window.scrollY<e&&(p=window.scrollY),n&&window.scrollY-p==0&&document.body.style.setProperty("--headerStickyHeightAnimated","0px"),n&&window.scrollY-p<-5)-1===r.dataset.sticky.indexOf("yes")&&(r.dataset.sticky=["yes-start"].concat(f(o)).join(":"),requestAnimationFrame((function(){r.dataset.sticky=r.dataset.sticky.replace("yes-start","yes-end"),setTimeout((function(){r.dataset.sticky=r.dataset.sticky.replace("yes-end","yes")}),200)}))),k(r,"no"),document.body.removeAttribute("style"),r.parentNode.style.setProperty("--minHeight","".concat(i,"px"));else{if(!n)return r.dataset.sticky=o.filter((function(t){return"yes-end"!==t})).join(":"),r.parentNode.removeAttribute("style"),Array.from(r.querySelectorAll("[data-row]")).map((function(t){return t.removeAttribute("style")})),k(r,"yes"),document.body.style.setProperty("--headerStickyHeightAnimated","0px"),void(p=window.scrollY);-1===r.dataset.sticky.indexOf("yes-hide")&&r.dataset.sticky.indexOf("yes:")>-1&&window.scrollY-p>5&&(r.dataset.sticky=["yes-hide-start"].concat(f(o)).join(":"),document.body.style.setProperty("--headerStickyHeightAnimated","0px"),requestAnimationFrame((function(){r.dataset.sticky=r.dataset.sticky.replace("yes-hide-start","yes-hide-end"),setTimeout((function(){r.dataset.sticky=o.join(":"),r.parentNode.removeAttribute("style"),Array.from(r.querySelectorAll("[data-row]")).map((function(t){return t.removeAttribute("style")})),k(r,"yes")}),200)})))}p=window.scrollY}({stickyContainer:e,isSticky:o,startPosition:r,stickyComponents:i}),(i.indexOf("slide")>-1||i.indexOf("fade")>-1)&&function(t){var e=t.stickyContainer,r=t.isSticky,n=t.startPosition,o=t.stickyComponents,i=Array.from(e.querySelectorAll("[data-row]")).reduce((function(t,e){return t+e.getBoundingClientRect().height}),0);r?(-1===e.dataset.sticky.indexOf("yes")&&(e.dataset.sticky=["yes-start"].concat(h(o)).join(":"),requestAnimationFrame((function(){e.dataset.sticky=e.dataset.sticky.replace("yes-start","yes-end"),setTimeout((function(){e.dataset.sticky=e.dataset.sticky.replace("yes-end","yes")}),200)}))),k(e,"no"),e.parentNode.style.setProperty("--minHeight","".concat(i,"px"))):-1===e.dataset.sticky.indexOf("yes-hide")&&e.dataset.sticky.indexOf("yes:")>-1&&(Math.abs(window.scrollY-n)>10?(e.dataset.sticky=o.join(":"),setTimeout((function(){e.parentNode.removeAttribute("style"),Array.from(e.querySelectorAll("[data-row]")).map((function(t){return t.removeAttribute("style")}))}),300),k(e,"yes")):(e.dataset.sticky=["yes-hide-start"].concat(h(o)).join(":"),requestAnimationFrame((function(){e.dataset.sticky=e.dataset.sticky.replace("yes-hide-start","yes-hide-end"),setTimeout((function(){e.dataset.sticky=o.join(":"),setTimeout((function(){e.parentNode.removeAttribute("style"),Array.from(e.querySelectorAll("[data-row]")).map((function(t){return t.removeAttribute("style")}))}),300),k(e,"yes")}),200)}))))}({stickyContainer:e,isSticky:o,startPosition:r,stickyComponents:i}),requestAnimationFrame((function(){t()}))}}else requestAnimationFrame((function(){t()}))};document.querySelector("header [data-sticky]")&&v(),Object(n.registerDynamicChunk)("blocksy_sticky_header",{mount:function(t){}})}]);
1
+ !function(t){var e={};function r(n){if(e[n])return e[n].exports;var o=e[n]={i:n,l:!1,exports:{}};return t[n].call(o.exports,o,o.exports,r),o.l=!0,o.exports}r.m=t,r.c=e,r.d=function(t,e,n){r.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:n})},r.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},r.t=function(t,e){if(1&e&&(t=r(t)),8&e)return t;if(4&e&&"object"==typeof t&&t&&t.__esModule)return t;var n=Object.create(null);if(r.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:t}),2&e&&"string"!=typeof t)for(var o in t)r.d(n,o,function(e){return t[e]}.bind(null,o));return n},r.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return r.d(e,"a",e),e},r.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},r.p="",r(r.s=2)}([function(t,e){t.exports=window.ctFrontend},function(t,e){t.exports=window.ctEvents},function(t,e,r){"use strict";r.r(e);r(1);var n=r(0),o=function(t,e,r){return Math.max(t,Math.min(e,r))},i=function(t,e,r){return e[0]+(e[1]-e[0])/(t[1]-t[0])*(r-t[0])},a=function(t){if(t.blcInitialHeight)return t.blcInitialHeight;var e=getComputedStyle(t),r=getComputedStyle(t.firstElementChild),n=0;n+=parseFloat(e.borderTopWidth),n+=parseFloat(e.borderBottomWidth),n+=parseFloat(r.borderTopWidth),n+=parseFloat(r.borderBottomWidth);var o=parseFloat(e.getPropertyValue("--height"))+n;return t.blcInitialHeight=o,o},c=function(t){var e=getComputedStyle(t).getPropertyValue("--stickyShrink");return e?parseFloat(e)/100*a(t):a(t)};function s(t){return function(t){if(Array.isArray(t))return u(t)}(t)||function(t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(t))return Array.from(t)}(t)||function(t,e){if(!t)return;if("string"==typeof t)return u(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);"Object"===r&&t.constructor&&(r=t.constructor.name);if("Map"===r||"Set"===r)return Array.from(t);if("Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return u(t,e)}(t)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function u(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=new Array(e);r<e;r++)n[r]=t[r];return n}function y(t){return function(t){if(Array.isArray(t))return d(t)}(t)||function(t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(t))return Array.from(t)}(t)||function(t,e){if(!t)return;if("string"==typeof t)return d(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);"Object"===r&&t.constructor&&(r=t.constructor.name);if("Map"===r||"Set"===r)return Array.from(t);if("Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return d(t,e)}(t)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function d(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=new Array(e);r<e;r++)n[r]=t[r];return n}var l=function(t){var e=t.stickyContainer,r=t.isSticky,n=t.startPosition,u=t.stickyComponents,d=Array.from(e.querySelectorAll("[data-row]")).reduce((function(t,e){return t+e.getBoundingClientRect().height}),0);if(0===n&&0===window.scrollY&&(e.dataset.sticky=["fixed"].concat(y(u)).join(":"),e.parentNode.style.setProperty("--minHeight","".concat(d,"px"))),r){if(u.indexOf("yes")>-1)return;k(e,"no"),e.parentNode.style.setProperty("--minHeight","".concat(d,"px")),e.dataset.sticky=["yes"].concat(y(u)).join(":"),function(t){var e=t.stickyContainer,r=t.startPosition;s(e.querySelectorAll('[data-row*="middle"]')).map((function(t){if(t.querySelector('[data-id="logo"] .site-logo-container')){var e=t.querySelector('[data-id="logo"] .site-logo-container'),n=parseFloat(getComputedStyle(e).getPropertyValue("--maxHeight")||50),s=parseFloat(getComputedStyle(e).getPropertyValue("--logoStickyShrink").toString().replace(",",".")||1),u=n*s;if(1!==s){var y=a(t),d=c(t);e.style.setProperty("--logo-shrink-height",i([r,r+Math.abs(y===d?n-u:y-d)],[1,s],o(r,r+Math.abs(y===d?n-u:y-d),scrollY)))}}}))}({stickyContainer:e,startPosition:n}),function(t){var e=t.stickyContainer,r=t.containerInitialHeight,n=t.startPosition;Array.from(e.querySelectorAll("[data-row]")).reduce((function(t,e,r){return t+c(e)}),0)!==r&&e.querySelector('[data-row*="middle"]')&&[e.querySelector('[data-row*="middle"]')].map((function(t){var e=a(t),r=c(t);e!==r&&t.style.setProperty("--shrinkHeight","".concat(i([n,n+Math.abs(e-r)],[e,r],o(n,n+Math.abs(e-r),scrollY)),"px"))}))}({stickyContainer:e,containerInitialHeight:d,startPosition:n}),document.body.style.setProperty("--headerStickyHeightAnimated","".concat(parseInt(e.getBoundingClientRect().height),"px"))}else{var l=Array.from(e.querySelectorAll("[data-row]")).reduce((function(t,e){return t+a(e)}),0);document.body.removeAttribute("style"),Array.from(e.querySelectorAll("[data-row]")).map((function(t){return t.removeAttribute("style")})),Array.from(e.querySelectorAll('[data-row*="middle"] .site-logo-container')).map((function(t){return t.removeAttribute("style")})),k(e,"yes"),e.parentNode.style.setProperty("--minHeight","".concat(l,"px")),0===n&&0===window.scrollY?e.dataset.sticky=["fixed"].concat(y(u)).join(":"):(e.parentNode.removeAttribute("style"),e.dataset.sticky=u.join(":"))}};function f(t){return function(t){if(Array.isArray(t))return m(t)}(t)||function(t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(t))return Array.from(t)}(t)||function(t,e){if(!t)return;if("string"==typeof t)return m(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);"Object"===r&&t.constructor&&(r=t.constructor.name);if("Map"===r||"Set"===r)return Array.from(t);if("Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return m(t,e)}(t)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function m(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=new Array(e);r<e;r++)n[r]=t[r];return n}var p=window.scrollY;function h(t){return function(t){if(Array.isArray(t))return b(t)}(t)||function(t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(t))return Array.from(t)}(t)||function(t,e){if(!t)return;if("string"==typeof t)return b(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);"Object"===r&&t.constructor&&(r=t.constructor.name);if("Map"===r||"Set"===r)return Array.from(t);if("Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return b(t,e)}(t)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function b(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=new Array(e);r<e;r++)n[r]=t[r];return n}function g(t){return function(t){if(Array.isArray(t))return A(t)}(t)||function(t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(t))return Array.from(t)}(t)||function(t,e){if(!t)return;if("string"==typeof t)return A(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);"Object"===r&&t.constructor&&(r=t.constructor.name);if("Map"===r||"Set"===r)return Array.from(t);if("Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return A(t,e)}(t)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function A(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=new Array(e);r<e;r++)n[r]=t[r];return n}var k=function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"yes";Array.from(t.querySelectorAll("[data-row][data-transparent-row]")).map((function(t){t.dataset.transparentRow=e}))},S=null,v=function t(){if(S!==scrollY){S=scrollY;var e=document.querySelector('[data-device="'.concat(Object(n.getCurrentScreen)(),'"] [data-sticky]'));if(e){var r=function(t){if(-1===t.dataset.sticky.indexOf("shrink")&&-1===t.dataset.sticky.indexOf("auto-hide"))return t.parentNode.getBoundingClientRect().height+200;var e=t.parentNode;return 1===e.parentNode.children.length||e.parentNode.children[0].classList.contains("ct-sticky-container")?0:Array.from(e.parentNode.children).reduce((function(t,e,r){return t.indexOf(0)>-1||!e.dataset.row?[].concat(g(t),[0]):[].concat(g(t),[e.classList.contains("ct-sticky-container")?0:e.getBoundingClientRect().height])}),[]).reduce((function(t,e){return t+e}),0)}(e),o=r>0&&Math.abs(window.scrollY-r)<5||window.scrollY>r;o&&-1===document.body.dataset.header.indexOf("shrink")&&(document.body.dataset.header="".concat(document.body.dataset.header,":shrink")),!o&&document.body.dataset.header.indexOf("shrink")>-1&&(document.body.dataset.header=document.body.dataset.header.replace(":shrink",""));var i=e.dataset.sticky.split(":").filter((function(t){return"yes"!==t&&"no"!==t&&"fixed"!==t}));i.indexOf("shrink")>-1&&l({stickyContainer:e,isSticky:o,startPosition:r,stickyComponents:i}),i.indexOf("auto-hide")>-1&&function(t){var e=t.startPosition,r=t.stickyContainer,n=t.isSticky,o=t.stickyComponents,i=Array.from(r.querySelectorAll("[data-row]")).reduce((function(t,e){return t+e.getBoundingClientRect().height}),0);if(window.scrollY<e&&(p=window.scrollY),n&&window.scrollY-p==0&&document.body.style.setProperty("--headerStickyHeightAnimated","0px"),n&&window.scrollY-p<-5)-1===r.dataset.sticky.indexOf("yes")&&(r.dataset.sticky=["yes-start"].concat(f(o)).join(":"),requestAnimationFrame((function(){r.dataset.sticky=r.dataset.sticky.replace("yes-start","yes-end"),setTimeout((function(){r.dataset.sticky=r.dataset.sticky.replace("yes-end","yes")}),200)}))),k(r,"no"),document.body.removeAttribute("style"),r.parentNode.style.setProperty("--minHeight","".concat(i,"px"));else{if(!n)return r.dataset.sticky=o.filter((function(t){return"yes-end"!==t})).join(":"),r.parentNode.removeAttribute("style"),Array.from(r.querySelectorAll("[data-row]")).map((function(t){return t.removeAttribute("style")})),k(r,"yes"),document.body.style.setProperty("--headerStickyHeightAnimated","0px"),void(p=window.scrollY);-1===r.dataset.sticky.indexOf("yes-hide")&&r.dataset.sticky.indexOf("yes:")>-1&&window.scrollY-p>5&&(r.dataset.sticky=["yes-hide-start"].concat(f(o)).join(":"),document.body.style.setProperty("--headerStickyHeightAnimated","0px"),requestAnimationFrame((function(){r.dataset.sticky=r.dataset.sticky.replace("yes-hide-start","yes-hide-end"),setTimeout((function(){r.dataset.sticky=o.join(":"),r.parentNode.removeAttribute("style"),Array.from(r.querySelectorAll("[data-row]")).map((function(t){return t.removeAttribute("style")})),k(r,"yes")}),200)})))}p=window.scrollY}({stickyContainer:e,isSticky:o,startPosition:r,stickyComponents:i}),(i.indexOf("slide")>-1||i.indexOf("fade")>-1)&&function(t){var e=t.stickyContainer,r=t.isSticky,n=t.startPosition,o=t.stickyComponents,i=Array.from(e.querySelectorAll("[data-row]")).reduce((function(t,e){return t+e.getBoundingClientRect().height}),0);r?(-1===e.dataset.sticky.indexOf("yes")&&(e.dataset.sticky=["yes-start"].concat(h(o)).join(":"),requestAnimationFrame((function(){e.dataset.sticky=e.dataset.sticky.replace("yes-start","yes-end"),setTimeout((function(){e.dataset.sticky=e.dataset.sticky.replace("yes-end","yes")}),200)}))),k(e,"no"),e.parentNode.style.setProperty("--minHeight","".concat(i,"px"))):-1===e.dataset.sticky.indexOf("yes-hide")&&e.dataset.sticky.indexOf("yes:")>-1&&(Math.abs(window.scrollY-n)>10?(e.dataset.sticky=o.join(":"),setTimeout((function(){e.parentNode.removeAttribute("style"),Array.from(e.querySelectorAll("[data-row]")).map((function(t){return t.removeAttribute("style")}))}),300),k(e,"yes")):(e.dataset.sticky=["yes-hide-start"].concat(h(o)).join(":"),requestAnimationFrame((function(){e.dataset.sticky=e.dataset.sticky.replace("yes-hide-start","yes-hide-end"),setTimeout((function(){e.dataset.sticky=o.join(":"),setTimeout((function(){e.parentNode.removeAttribute("style"),Array.from(e.querySelectorAll("[data-row]")).map((function(t){return t.removeAttribute("style")}))}),300),k(e,"yes")}),200)}))))}({stickyContainer:e,isSticky:o,startPosition:r,stickyComponents:i}),requestAnimationFrame((function(){t()}))}}else requestAnimationFrame((function(){t()}))};document.querySelector("header [data-sticky]")&&v(),Object(n.registerDynamicChunk)("blocksy_sticky_header",{mount:function(t){}})}]);
static/js/frontend/sticky/shrink.js CHANGED
@@ -46,6 +46,11 @@ export const computeShrink = ({
46
  containerInitialHeight,
47
  startPosition,
48
  })
 
 
 
 
 
49
  } else {
50
  let containerInitialHeight = Array.from(
51
  stickyContainer.querySelectorAll('[data-row]')
@@ -53,6 +58,8 @@ export const computeShrink = ({
53
  return sum + getRowInitialHeight(el)
54
  }, 0)
55
 
 
 
56
  Array.from(stickyContainer.querySelectorAll('[data-row]')).map((row) =>
57
  row.removeAttribute('style')
58
  )
46
  containerInitialHeight,
47
  startPosition,
48
  })
49
+
50
+ document.body.style.setProperty(
51
+ '--headerStickyHeightAnimated',
52
+ `${parseInt(stickyContainer.getBoundingClientRect().height)}px`
53
+ )
54
  } else {
55
  let containerInitialHeight = Array.from(
56
  stickyContainer.querySelectorAll('[data-row]')
58
  return sum + getRowInitialHeight(el)
59
  }, 0)
60
 
61
+ document.body.removeAttribute('style')
62
+
63
  Array.from(stickyContainer.querySelectorAll('[data-row]')).map((row) =>
64
  row.removeAttribute('style')
65
  )
static/js/helpers/SubmitSupport.js CHANGED
@@ -18,7 +18,7 @@ const SubmitSupport = () => {
18
  <h2>{__('Need help or advice?', 'blc')}</h2>
19
  <p>
20
  {__(
21
- `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.`,
22
  'blc'
23
  )}
24
  </p>
@@ -27,7 +27,7 @@ const SubmitSupport = () => {
27
  className="ct-button"
28
  data-hover="blue"
29
  target="_blank">
30
- {__(`Submit a Support Ticket`, 'blc')}
31
  </a>
32
 
33
  <a
@@ -35,7 +35,7 @@ const SubmitSupport = () => {
35
  className="ct-button"
36
  data-hover="blue"
37
  target="_blank">
38
- {__(`Join Facebook Community`, 'blc')}
39
  </a>
40
  </div>
41
  )
18
  <h2>{__('Need help or advice?', 'blc')}</h2>
19
  <p>
20
  {__(
21
+ '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.',
22
  'blc'
23
  )}
24
  </p>
27
  className="ct-button"
28
  data-hover="blue"
29
  target="_blank">
30
+ {__('Submit a Support Ticket', 'blc')}
31
  </a>
32
 
33
  <a
35
  className="ct-button"
36
  data-hover="blue"
37
  target="_blank">
38
+ {__('Join Facebook Community', 'blc')}
39
  </a>
40
  </div>
41
  )