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