Blocksy Companion - Version 1.8.38

Version Description

Download this release

Release Info

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

Code changes from version 1.8.37 to 1.8.38

Files changed (29) 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/helpers.php +2 -2
  4. framework/extensions/newsletter-subscribe/static/bundle/main.min.css +1 -1
  5. framework/extensions/product-reviews/extension.php +53 -1
  6. framework/extensions/product-reviews/global.php +35 -0
  7. framework/extensions/product-reviews/static/bundle/main-admin.min.css +1 -1
  8. framework/extensions/product-reviews/static/bundle/main.min.css +1 -1
  9. framework/extensions/product-reviews/static/bundle/sync.js +1 -1
  10. framework/extensions/product-reviews/static/js/sync.js +25 -0
  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-contact-info/options.php +330 -302
  14. framework/extensions/widgets/widgets/ct-socials/options.php +13 -0
  15. framework/extensions/widgets/widgets/ct-socials/view.php +3 -2
  16. framework/helpers/helpers.php +28 -1
  17. framework/theme-integration.php +1 -0
  18. freemius/includes/class-freemius.php +51 -23
  19. freemius/includes/managers/class-fs-clone-manager.php +134 -48
  20. freemius/templates/connect.php +2 -2
  21. freemius/templates/contact.php +2 -2
  22. freemius/templates/forms/affiliation.php +2 -2
  23. languages/blocksy-companion.pot +3039 -1087
  24. readme.txt +6 -1
  25. static/bundle/account-lazy.min.css +1 -1
  26. static/bundle/account.js +1 -1
  27. static/bundle/dashboard.min.css +1 -1
  28. static/bundle/options.min.css +1 -1
  29. static/js/account.js +13 -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.37
7
  Author: CreativeThemes
8
  Author URI: https://creativethemes.com
9
  Text Domain: blocksy-companion
3
  /*
4
  Plugin Name: Blocksy Companion
5
  Description: This plugin is the companion for the Blocksy theme, it runs and adds its enhacements only if the Blocksy theme is installed and active.
6
+ Version: 1.8.38
7
  Author: CreativeThemes
8
  Author URI: https://creativethemes.com
9
  Text Domain: blocksy-companion
framework/extensions/cookies-consent/static/bundle/main.min.css CHANGED
@@ -1,5 +1,5 @@
1
  /**
2
- * - v1.8.37
3
  *
4
  * Copyright (c) 2022
5
  * Licensed GPLv2+
1
  /**
2
+ * - v1.8.38
3
  *
4
  * Copyright (c) 2022
5
  * Licensed GPLv2+
framework/extensions/newsletter-subscribe/helpers.php CHANGED
@@ -160,10 +160,10 @@ function blc_ext_newsletter_subscribe_output_form($args = []) {
160
  class="ct-newsletter-subscribe-block-form" <?php echo $skip_submit_output ?>>
161
  <section data-fields="<?php echo $fields_number ?>">
162
  <?php if ($has_name) { ?>
163
- <input type="text" name="FNAME" placeholder="<?php esc_attr_e($args['name_label'], 'blocksy-companion'); ?>" title="<?php echo __('Name', 'blocksy-companion') ?>" />
164
  <?php } ?>
165
 
166
- <input type="email" name="EMAIL" placeholder="<?php esc_attr_e($args['email_label'], 'blocksy-companion'); ?> *" title="<?php echo __('Email', 'blocksy-companion') ?>" required />
167
 
168
  <button class="button">
169
  <?php echo esc_html($args['button_text']) ?>
160
  class="ct-newsletter-subscribe-block-form" <?php echo $skip_submit_output ?>>
161
  <section data-fields="<?php echo $fields_number ?>">
162
  <?php if ($has_name) { ?>
163
+ <input type="text" name="FNAME" placeholder="<?php esc_attr_e($args['name_label'], 'blocksy-companion'); ?>" aria-label="<?php echo __('First name', 'blocksy-companion') ?>" />
164
  <?php } ?>
165
 
166
+ <input type="email" name="EMAIL" placeholder="<?php esc_attr_e($args['email_label'], 'blocksy-companion'); ?> *" aria-label="<?php echo __('Email address', 'blocksy-companion') ?>" required />
167
 
168
  <button class="button">
169
  <?php echo esc_html($args['button_text']) ?>
framework/extensions/newsletter-subscribe/static/bundle/main.min.css CHANGED
@@ -1,5 +1,5 @@
1
  /**
2
- * - v1.8.37
3
  *
4
  * Copyright (c) 2022
5
  * Licensed GPLv2+
1
  /**
2
+ * - v1.8.38
3
  *
4
  * Copyright (c) 2022
5
  * Licensed GPLv2+
framework/extensions/product-reviews/extension.php CHANGED
@@ -157,7 +157,7 @@ class BlocksyExtensionProductReviews {
157
  wp_enqueue_script(
158
  'blocksy-product-reviews-customizer-sync',
159
  BLOCKSY_URL . 'framework/extensions/product-reviews/static/bundle/sync.js',
160
- [ 'ct-scripts', 'customize-preview' ],
161
  $data['Version'],
162
  true
163
  );
@@ -200,6 +200,58 @@ class BlocksyExtensionProductReviews {
200
  return $layers;
201
  }, 10, 2);
202
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
203
  add_filter('blocksy:posts-listing:archive-order:default', function ($default, $prefix) {
204
  if ($prefix !== 'blc-product-review_archive') {
205
  return $default;
157
  wp_enqueue_script(
158
  'blocksy-product-reviews-customizer-sync',
159
  BLOCKSY_URL . 'framework/extensions/product-reviews/static/bundle/sync.js',
160
+ [ 'ct-scripts', 'customize-preview', 'blocksy-companion-sync-scripts' ],
161
  $data['Version'],
162
  true
163
  );
200
  return $layers;
201
  }, 10, 2);
202
 
203
+ add_filter(
204
+ 'blocksy:options:posts-listing:design:before_card_background',
205
+ function ($opts, $prefix) {
206
+ if ($prefix !== 'blc-product-review_archive') {
207
+ return $opts;
208
+ }
209
+
210
+ $opts[blocksy_rand_md5()] = [
211
+ 'type' => 'ct-condition',
212
+ 'condition' => [
213
+ $prefix . '_archive_order:array-ids:overall_score:enabled' => '!no'
214
+ ],
215
+ 'options' => [
216
+ $prefix . '_star_rating_color' => [
217
+ 'label' => __( 'Star Rating Color', 'blocksy-companion' ),
218
+ 'type' => 'ct-color-picker',
219
+ 'design' => 'inline',
220
+ 'divider' => 'top:full',
221
+ 'setting' => [ 'transport' => 'postMessage' ],
222
+
223
+ 'value' => [
224
+ 'default' => [
225
+ 'color' => Blocksy_Css_Injector::get_skip_rule_keyword('DEFAULT'),
226
+ ],
227
+
228
+ 'inactive' => [
229
+ 'color' => Blocksy_Css_Injector::get_skip_rule_keyword('DEFAULT'),
230
+ ],
231
+ ],
232
+
233
+ 'pickers' => [
234
+ [
235
+ 'title' => __( 'Active', 'blocksy-companion' ),
236
+ 'id' => 'default',
237
+ 'inherit' => '#FDA256'
238
+ ],
239
+
240
+ [
241
+ 'title' => __( 'Inactive', 'blocksy-companion' ),
242
+ 'id' => 'inactive',
243
+ 'inherit' => '#F9DFCC'
244
+ ],
245
+ ],
246
+ ]
247
+ ]
248
+ ];
249
+
250
+ return $opts;
251
+ },
252
+ 10, 2
253
+ );
254
+
255
  add_filter('blocksy:posts-listing:archive-order:default', function ($default, $prefix) {
256
  if ($prefix !== 'blc-product-review_archive') {
257
  return $default;
framework/extensions/product-reviews/global.php CHANGED
@@ -89,3 +89,38 @@ blocksy_output_colors([
89
  ],
90
  ]);
91
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
89
  ],
90
  ]);
91
 
92
+
93
+ $prefix = 'blc-product-review_archive';
94
+
95
+ blocksy_output_colors([
96
+ 'value' => get_theme_mod(
97
+ $prefix . '_star_rating_color',
98
+ []
99
+ ),
100
+ 'default' => [
101
+ 'default' => [
102
+ 'color' => Blocksy_Css_Injector::get_skip_rule_keyword('DEFAULT')
103
+ ],
104
+ 'inactive' => [
105
+ 'color' => Blocksy_Css_Injector::get_skip_rule_keyword('DEFAULT')
106
+ ],
107
+ ],
108
+ 'css' => $css,
109
+ 'variables' => [
110
+ 'default' => [
111
+ 'selector' => blocksy_prefix_selector(
112
+ '.star-rating',
113
+ $prefix
114
+ ),
115
+ 'variable' => 'star-rating-initial-color'
116
+ ],
117
+
118
+ 'inactive' => [
119
+ 'selector' => blocksy_prefix_selector(
120
+ '.star-rating',
121
+ $prefix
122
+ ),
123
+ 'variable' => 'star-rating-inactive-color'
124
+ ],
125
+ ],
126
+ ]);
framework/extensions/product-reviews/static/bundle/main-admin.min.css CHANGED
@@ -1,5 +1,5 @@
1
  /**
2
- * - v1.8.37
3
  *
4
  * Copyright (c) 2022
5
  * Licensed GPLv2+
1
  /**
2
+ * - v1.8.38
3
  *
4
  * Copyright (c) 2022
5
  * Licensed GPLv2+
framework/extensions/product-reviews/static/bundle/main.min.css CHANGED
@@ -1,5 +1,5 @@
1
  /**
2
- * - v1.8.37
3
  *
4
  * Copyright (c) 2022
5
  * Licensed GPLv2+
1
  /**
2
+ * - v1.8.38
3
  *
4
  * Copyright (c) 2022
5
  * Licensed GPLv2+
framework/extensions/product-reviews/static/bundle/sync.js CHANGED
@@ -1 +1 @@
1
- (()=>{"use strict";var r={n:e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return r.d(t,{a:t}),t},d:(e,t)=>{for(var o in t)r.o(t,o)&&!r.o(e,o)&&Object.defineProperty(e,o,{enumerable:!0,get:t[o]})},o:(r,e)=>Object.prototype.hasOwnProperty.call(r,e)};const e=window.blocksyCustomizerSync,t=window.ctEvents;function o(r,e){var t=Object.keys(r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(r);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(r,e).enumerable}))),t.push.apply(t,o)}return t}function c(r){for(var e=1;e<arguments.length;e++){var t=null!=arguments[e]?arguments[e]:{};e%2?o(Object(t),!0).forEach((function(e){a(r,e,t[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(r,Object.getOwnPropertyDescriptors(t)):o(Object(t)).forEach((function(e){Object.defineProperty(r,e,Object.getOwnPropertyDescriptor(t,e))}))}return r}function a(r,e,t){return e in r?Object.defineProperty(r,e,{value:t,enumerable:!0,configurable:!0,writable:!0}):r[e]=t,r}var l="blc-product-review_single";r.n(t)().on("ct:customizer:sync:collect-variable-descriptors",(function(r){var t;r.result=c(c({},r.result),{},(a(t={},"".concat(l,"_product_scores_width"),{selector:(0,e.applyPrefixFor)(".ct-product-scores",l),variable:"product-scores-width",unit:"px"}),a(t,"".concat(l,"_star_rating_color"),[{selector:(0,e.applyPrefixFor)(".ct-product-scores",l),variable:"star-rating-initial-color",type:"color:default"},{selector:(0,e.applyPrefixFor)(".ct-product-scores",l),variable:"star-rating-inactive-color",type:"color:inactive"}]),a(t,"".concat(l,"_overall_score_text"),[{selector:(0,e.applyPrefixFor)(".ct-product-scores",l),variable:"overall-score-text-color",type:"color:default"}]),a(t,"".concat(l,"_overall_score_backgroud"),[{selector:(0,e.applyPrefixFor)(".ct-product-scores",l),variable:"overall-score-box-background",type:"color:default"}]),t))}))})();
1
+ (()=>{"use strict";var r={n:e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return r.d(t,{a:t}),t},d:(e,t)=>{for(var o in t)r.o(t,o)&&!r.o(e,o)&&Object.defineProperty(e,o,{enumerable:!0,get:t[o]})},o:(r,e)=>Object.prototype.hasOwnProperty.call(r,e)};const e=window.blocksyCustomizerSync,t=window.ctEvents;var o=r.n(t);function c(r,e){var t=Object.keys(r);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(r);e&&(o=o.filter((function(e){return Object.getOwnPropertyDescriptor(r,e).enumerable}))),t.push.apply(t,o)}return t}function a(r){for(var e=1;e<arguments.length;e++){var t=null!=arguments[e]?arguments[e]:{};e%2?c(Object(t),!0).forEach((function(e){l(r,e,t[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(r,Object.getOwnPropertyDescriptors(t)):c(Object(t)).forEach((function(e){Object.defineProperty(r,e,Object.getOwnPropertyDescriptor(t,e))}))}return r}function l(r,e,t){return e in r?Object.defineProperty(r,e,{value:t,enumerable:!0,configurable:!0,writable:!0}):r[e]=t,r}var i="blc-product-review_single";o().on("ct:customizer:sync:collect-variable-descriptors",(function(r){var t;r.result=a(a({},r.result),{},(l(t={},"".concat(i,"_product_scores_width"),{selector:(0,e.applyPrefixFor)(".ct-product-scores",i),variable:"product-scores-width",unit:"px"}),l(t,"".concat(i,"_star_rating_color"),[{selector:(0,e.applyPrefixFor)(".ct-product-scores",i),variable:"star-rating-initial-color",type:"color:default"},{selector:(0,e.applyPrefixFor)(".ct-product-scores",i),variable:"star-rating-inactive-color",type:"color:inactive"}]),l(t,"".concat(i,"_overall_score_text"),[{selector:(0,e.applyPrefixFor)(".ct-product-scores",i),variable:"overall-score-text-color",type:"color:default"}]),l(t,"".concat(i,"_overall_score_backgroud"),[{selector:(0,e.applyPrefixFor)(".ct-product-scores",i),variable:"overall-score-box-background",type:"color:default"}]),t))}));var n="blc-product-review_archive";o().on("ct:customizer:sync:collect-variable-descriptors",(function(r){r.result=a(a({},r.result),{},l({},"".concat(n,"_star_rating_color"),[{selector:(0,e.applyPrefixFor)(".star-rating",n),variable:"star-rating-initial-color",type:"color:default"},{selector:(0,e.applyPrefixFor)(".star-rating",n),variable:"star-rating-inactive-color",type:"color:inactive"}]))}))})();
framework/extensions/product-reviews/static/js/sync.js CHANGED
@@ -46,3 +46,28 @@ ctEvents.on(
46
  }
47
  }
48
  )
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
46
  }
47
  }
48
  )
49
+
50
+ const archivePrefix = 'blc-product-review_archive'
51
+
52
+ ctEvents.on(
53
+ 'ct:customizer:sync:collect-variable-descriptors',
54
+ (allVariables) => {
55
+ allVariables.result = {
56
+ ...allVariables.result,
57
+
58
+ [`${archivePrefix}_star_rating_color`]: [
59
+ {
60
+ selector: applyPrefixFor('.star-rating', archivePrefix),
61
+ variable: 'star-rating-initial-color',
62
+ type: 'color:default',
63
+ },
64
+
65
+ {
66
+ selector: applyPrefixFor('.star-rating', archivePrefix),
67
+ variable: 'star-rating-inactive-color',
68
+ type: 'color:inactive',
69
+ },
70
+ ],
71
+ }
72
+ }
73
+ )
framework/extensions/trending/static/bundle/main.min.css CHANGED
@@ -1,5 +1,5 @@
1
  /**
2
- * - v1.8.37
3
  *
4
  * Copyright (c) 2022
5
  * Licensed GPLv2+
1
  /**
2
+ * - v1.8.38
3
  *
4
  * Copyright (c) 2022
5
  * Licensed GPLv2+
framework/extensions/widgets/static/bundle/main.min.css CHANGED
@@ -1,5 +1,5 @@
1
  /**
2
- * - v1.8.37
3
  *
4
  * Copyright (c) 2022
5
  * Licensed GPLv2+
1
  /**
2
+ * - v1.8.38
3
  *
4
  * Copyright (c) 2022
5
  * Licensed GPLv2+
framework/extensions/widgets/widgets/ct-contact-info/options.php CHANGED
@@ -7,6 +7,7 @@
7
  * @package Blocksy
8
  */
9
 
 
10
 
11
  $options = [
12
 
@@ -66,53 +67,57 @@ $options = [
66
  'address' => [
67
  'label' => __( 'Address', 'blocksy-companion' ),
68
  'options' => [
69
- 'title' => [
70
- 'type' => 'text',
71
- 'label' => __('Title', 'blocksy-companion'),
72
- 'value' => __('Address:', 'blocksy-companion'),
73
- 'design' => 'inline',
74
- ],
75
-
76
- 'content' => [
77
- 'type' => 'text',
78
- 'label' => __('Content', 'blocksy-companion'),
79
- 'value' => 'Street Name, NY 38954',
80
- 'design' => 'inline',
81
- ],
82
-
83
- 'link' => [
84
- 'type' => 'text',
85
- 'label' => __('Link (optional)', 'blocksy-companion'),
86
- 'design' => 'inline',
87
- ],
88
-
89
- 'icon_source' => [
90
- 'label' => __( 'Icon Source', 'blocksy' ),
91
- 'type' => 'ct-radio',
92
- 'value' => 'default',
93
- 'view' => 'text',
94
- 'design' => 'block',
95
- 'setting' => [ 'transport' => 'postMessage' ],
96
- 'choices' => [
97
- 'default' => __( 'Default', 'blocksy' ),
98
- 'custom' => __( 'Custom', 'blocksy' ),
99
  ],
100
  ],
101
-
102
- blocksy_rand_md5() => [
103
- 'type' => 'ct-condition',
104
- 'condition' => ['icon_source' => 'custom'],
105
- 'options' => [
106
- 'icon' => [
107
- 'type' => 'icon-picker',
108
- 'label' => __('Icon', 'blocksy-companion'),
109
- 'design' => 'inline',
110
- 'value' => [
111
- 'icon' => 'blc blc-map-pin'
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
112
  ]
113
  ]
114
- ]
115
- ],
116
 
117
  ],
118
 
@@ -123,55 +128,58 @@ $options = [
123
  'label' => __( 'Phone', 'blocksy-companion' ),
124
  'clone' => true,
125
  'options' => [
126
-
127
- 'title' => [
128
- 'type' => 'text',
129
- 'label' => __('Title', 'blocksy-companion'),
130
- 'value' => __('Phone:', 'blocksy-companion'),
131
- 'design' => 'inline',
132
- ],
133
-
134
- 'content' => [
135
- 'type' => 'text',
136
- 'label' => __('Content', 'blocksy-companion'),
137
- 'value' => '578-393-4937',
138
- 'design' => 'inline',
139
- ],
140
-
141
- 'link' => [
142
- 'type' => 'text',
143
- 'label' => __('Link (optional)', 'blocksy-companion'),
144
- 'value' => 'tel:578-393-4937',
145
- 'design' => 'inline',
 
146
  ],
147
 
148
- 'icon_source' => [
149
- 'label' => __( 'Icon Source', 'blocksy' ),
150
- 'type' => 'ct-radio',
151
- 'value' => 'default',
152
- 'view' => 'text',
153
- 'design' => 'block',
154
- 'setting' => [ 'transport' => 'postMessage' ],
155
- 'choices' => [
156
- 'default' => __( 'Default', 'blocksy' ),
157
- 'custom' => __( 'Custom', 'blocksy' ),
 
 
158
  ],
159
- ],
160
-
161
- blocksy_rand_md5() => [
162
- 'type' => 'ct-condition',
163
- 'condition' => ['icon_source' => 'custom'],
164
- 'options' => [
165
- 'icon' => [
166
- 'type' => 'icon-picker',
167
- 'label' => __('Icon', 'blocksy-companion'),
168
- 'design' => 'inline',
169
- 'value' => [
170
- 'icon' => 'blc blc-phone'
171
  ]
172
  ]
173
- ]
174
- ],
175
 
176
  ]
177
  ],
@@ -180,54 +188,58 @@ $options = [
180
  'label' => __( 'Mobile', 'blocksy-companion' ),
181
  'clone' => true,
182
  'options' => [
183
- 'title' => [
184
- 'type' => 'text',
185
- 'label' => __('Title', 'blocksy-companion'),
186
- 'value' => __('Mobile:', 'blocksy-companion'),
187
- 'design' => 'inline',
188
- ],
189
-
190
- 'content' => [
191
- 'type' => 'text',
192
- 'label' => __('Content', 'blocksy-companion'),
193
- 'value' => '578-393-4937',
194
- 'design' => 'inline',
195
- ],
196
-
197
- 'link' => [
198
- 'type' => 'text',
199
- 'label' => __('Link (optional)', 'blocksy-companion'),
200
- 'value' => 'tel:578-393-4937',
201
- 'design' => 'inline',
 
 
202
  ],
203
 
204
- 'icon_source' => [
205
- 'label' => __( 'Icon Source', 'blocksy' ),
206
- 'type' => 'ct-radio',
207
- 'value' => 'default',
208
- 'view' => 'text',
209
- 'design' => 'block',
210
- 'setting' => [ 'transport' => 'postMessage' ],
211
- 'choices' => [
212
- 'default' => __( 'Default', 'blocksy' ),
213
- 'custom' => __( 'Custom', 'blocksy' ),
 
 
214
  ],
215
- ],
216
-
217
- blocksy_rand_md5() => [
218
- 'type' => 'ct-condition',
219
- 'condition' => ['icon_source' => 'custom'],
220
- 'options' => [
221
- 'icon' => [
222
- 'type' => 'icon-picker',
223
- 'label' => __('Icon', 'blocksy-companion'),
224
- 'design' => 'inline',
225
- 'value' => [
226
- 'icon' => 'blc blc-mobile-phone'
227
  ]
228
  ]
229
- ]
230
- ],
231
 
232
  ]
233
  ],
@@ -236,54 +248,58 @@ $options = [
236
  'label' => __( 'Work Hours', 'blocksy-companion' ),
237
  'clone' => true,
238
  'options' => [
239
- 'title' => [
240
- 'type' => 'text',
241
- 'label' => __('Title', 'blocksy-companion'),
242
- 'value' => __('Opening hours', 'blocksy-companion'),
243
- 'design' => 'inline',
244
- ],
245
-
246
- 'content' => [
247
- 'type' => 'text',
248
- 'label' => __('Content', 'blocksy-companion'),
249
- 'value' => '9AM - 5PM',
250
- 'design' => 'inline',
251
- ],
252
-
253
- 'link' => [
254
- 'type' => 'text',
255
- 'label' => __('Link (optional)', 'blocksy-companion'),
256
- 'value' => '',
257
- 'design' => 'inline',
 
 
258
  ],
259
 
260
- 'icon_source' => [
261
- 'label' => __( 'Icon Source', 'blocksy' ),
262
- 'type' => 'ct-radio',
263
- 'value' => 'default',
264
- 'view' => 'text',
265
- 'design' => 'block',
266
- 'setting' => [ 'transport' => 'postMessage' ],
267
- 'choices' => [
268
- 'default' => __( 'Default', 'blocksy' ),
269
- 'custom' => __( 'Custom', 'blocksy' ),
 
 
270
  ],
271
- ],
272
-
273
- blocksy_rand_md5() => [
274
- 'type' => 'ct-condition',
275
- 'condition' => ['icon_source' => 'custom'],
276
- 'options' => [
277
- 'icon' => [
278
- 'type' => 'icon-picker',
279
- 'label' => __('Icon', 'blocksy-companion'),
280
- 'design' => 'inline',
281
- 'value' => [
282
- 'icon' => 'blc blc-clock'
283
  ]
284
  ]
285
- ]
286
- ],
287
 
288
  ]
289
  ],
@@ -292,54 +308,58 @@ $options = [
292
  'label' => __( 'Fax', 'blocksy-companion' ),
293
  'clone' => true,
294
  'options' => [
295
- 'title' => [
296
- 'type' => 'text',
297
- 'label' => __('Title', 'blocksy-companion'),
298
- 'value' => __('Fax:', 'blocksy-companion'),
299
- 'design' => 'inline',
300
- ],
301
-
302
- 'content' => [
303
- 'type' => 'text',
304
- 'label' => __('Content', 'blocksy-companion'),
305
- 'value' => '578-393-4937',
306
- 'design' => 'inline',
307
- ],
308
-
309
- 'link' => [
310
- 'type' => 'text',
311
- 'label' => __('Link (optional)', 'blocksy-companion'),
312
- 'value' => 'tel:578-393-4937',
313
- 'design' => 'inline',
 
 
314
  ],
315
 
316
- 'icon_source' => [
317
- 'label' => __( 'Icon Source', 'blocksy' ),
318
- 'type' => 'ct-radio',
319
- 'value' => 'default',
320
- 'view' => 'text',
321
- 'design' => 'block',
322
- 'setting' => [ 'transport' => 'postMessage' ],
323
- 'choices' => [
324
- 'default' => __( 'Default', 'blocksy' ),
325
- 'custom' => __( 'Custom', 'blocksy' ),
 
 
326
  ],
327
- ],
328
-
329
- blocksy_rand_md5() => [
330
- 'type' => 'ct-condition',
331
- 'condition' => ['icon_source' => 'custom'],
332
- 'options' => [
333
- 'icon' => [
334
- 'type' => 'icon-picker',
335
- 'label' => __('Icon', 'blocksy-companion'),
336
- 'design' => 'inline',
337
- 'value' => [
338
- 'icon' => 'blc blc-fax'
339
  ]
340
  ]
341
- ]
342
- ],
343
 
344
  ]
345
  ],
@@ -348,54 +368,58 @@ $options = [
348
  'label' => __( 'Email', 'blocksy-companion' ),
349
  'clone' => true,
350
  'options' => [
351
- 'title' => [
352
- 'type' => 'text',
353
- 'label' => __('Title', 'blocksy-companion'),
354
- 'value' => __('Email:', 'blocksy-companion'),
355
- 'design' => 'inline',
356
- ],
357
-
358
- 'content' => [
359
- 'type' => 'text',
360
- 'label' => __('Content', 'blocksy-companion'),
361
- 'value' => 'contact@yourwebsite.com',
362
- 'design' => 'inline',
363
- ],
364
-
365
- 'link' => [
366
- 'type' => 'text',
367
- 'label' => __('Link (optional)', 'blocksy-companion'),
368
- 'value' => 'mailto:contact@yourwebsite.com',
369
- 'design' => 'inline',
 
 
370
  ],
371
 
372
- 'icon_source' => [
373
- 'label' => __( 'Icon Source', 'blocksy' ),
374
- 'type' => 'ct-radio',
375
- 'value' => 'default',
376
- 'view' => 'text',
377
- 'design' => 'block',
378
- 'setting' => [ 'transport' => 'postMessage' ],
379
- 'choices' => [
380
- 'default' => __( 'Default', 'blocksy' ),
381
- 'custom' => __( 'Custom', 'blocksy' ),
 
 
382
  ],
383
- ],
384
-
385
- blocksy_rand_md5() => [
386
- 'type' => 'ct-condition',
387
- 'condition' => ['icon_source' => 'custom'],
388
- 'options' => [
389
- 'icon' => [
390
- 'type' => 'icon-picker',
391
- 'label' => __('Icon', 'blocksy-companion'),
392
- 'design' => 'inline',
393
- 'value' => [
394
- 'icon' => 'blc blc-email'
395
  ]
396
  ]
397
- ]
398
- ],
399
 
400
  ]
401
  ],
@@ -404,54 +428,58 @@ $options = [
404
  'label' => __( 'Website', 'blocksy-companion' ),
405
  'clone' => true,
406
  'options' => [
407
- 'title' => [
408
- 'type' => 'text',
409
- 'label' => __('Title', 'blocksy-companion'),
410
- 'value' => __('Website:', 'blocksy-companion'),
411
- 'design' => 'inline',
412
- ],
413
-
414
- 'content' => [
415
- 'type' => 'text',
416
- 'label' => __('Content', 'blocksy-companion'),
417
- 'value' => 'creativethemes.com',
418
- 'design' => 'inline',
419
- ],
420
-
421
- 'link' => [
422
- 'type' => 'text',
423
- 'label' => __('Link (optional)', 'blocksy-companion'),
424
- 'value' => 'https://creativethemes.com',
425
- 'design' => 'inline',
 
 
426
  ],
427
 
428
- 'icon_source' => [
429
- 'label' => __( 'Icon Source', 'blocksy' ),
430
- 'type' => 'ct-radio',
431
- 'value' => 'default',
432
- 'view' => 'text',
433
- 'design' => 'block',
434
- 'setting' => [ 'transport' => 'postMessage' ],
435
- 'choices' => [
436
- 'default' => __( 'Default', 'blocksy' ),
437
- 'custom' => __( 'Custom', 'blocksy' ),
 
 
438
  ],
439
- ],
440
-
441
- blocksy_rand_md5() => [
442
- 'type' => 'ct-condition',
443
- 'condition' => ['icon_source' => 'custom'],
444
- 'options' => [
445
- 'icon' => [
446
- 'type' => 'icon-picker',
447
- 'label' => __('Icon', 'blocksy-companion'),
448
- 'design' => 'inline',
449
- 'value' => [
450
- 'icon' => 'blc blc-globe'
451
  ]
452
  ]
453
- ]
454
- ],
455
  ]
456
  ],
457
  ],
7
  * @package Blocksy
8
  */
9
 
10
+ $is_pro = blc_fs()->can_use_premium_code();
11
 
12
  $options = [
13
 
67
  'address' => [
68
  'label' => __( 'Address', 'blocksy-companion' ),
69
  'options' => [
70
+ [
71
+ 'title' => [
72
+ 'type' => 'text',
73
+ 'label' => __('Title', 'blocksy-companion'),
74
+ 'value' => __('Address:', 'blocksy-companion'),
75
+ 'design' => 'inline',
76
+ ],
77
+
78
+ 'content' => [
79
+ 'type' => 'text',
80
+ 'label' => __('Content', 'blocksy-companion'),
81
+ 'value' => 'Street Name, NY 38954',
82
+ 'design' => 'inline',
83
+ ],
84
+
85
+ 'link' => [
86
+ 'type' => 'text',
87
+ 'label' => __('Link (optional)', 'blocksy-companion'),
88
+ 'design' => 'inline',
 
 
 
 
 
 
 
 
 
 
 
89
  ],
90
  ],
91
+
92
+ $is_pro ? [
93
+ 'icon_source' => [
94
+ 'label' => __( 'Icon Source', 'blocksy' ),
95
+ 'type' => 'ct-radio',
96
+ 'value' => 'default',
97
+ 'view' => 'text',
98
+ 'design' => 'block',
99
+ 'setting' => [ 'transport' => 'postMessage' ],
100
+ 'choices' => [
101
+ 'default' => __( 'Default', 'blocksy' ),
102
+ 'custom' => __( 'Custom', 'blocksy' ),
103
+ ],
104
+ ],
105
+
106
+ blocksy_rand_md5() => [
107
+ 'type' => 'ct-condition',
108
+ 'condition' => ['icon_source' => 'custom'],
109
+ 'options' => [
110
+ 'icon' => [
111
+ 'type' => 'icon-picker',
112
+ 'label' => __('Icon', 'blocksy-companion'),
113
+ 'design' => 'inline',
114
+ 'value' => [
115
+ 'icon' => 'blc blc-map-pin'
116
+ ]
117
  ]
118
  ]
119
+ ],
120
+ ] : []
121
 
122
  ],
123
 
128
  'label' => __( 'Phone', 'blocksy-companion' ),
129
  'clone' => true,
130
  'options' => [
131
+ [
132
+ 'title' => [
133
+ 'type' => 'text',
134
+ 'label' => __('Title', 'blocksy-companion'),
135
+ 'value' => __('Phone:', 'blocksy-companion'),
136
+ 'design' => 'inline',
137
+ ],
138
+
139
+ 'content' => [
140
+ 'type' => 'text',
141
+ 'label' => __('Content', 'blocksy-companion'),
142
+ 'value' => '578-393-4937',
143
+ 'design' => 'inline',
144
+ ],
145
+
146
+ 'link' => [
147
+ 'type' => 'text',
148
+ 'label' => __('Link (optional)', 'blocksy-companion'),
149
+ 'value' => 'tel:578-393-4937',
150
+ 'design' => 'inline',
151
+ ],
152
  ],
153
 
154
+ $is_pro ? [
155
+ 'icon_source' => [
156
+ 'label' => __( 'Icon Source', 'blocksy' ),
157
+ 'type' => 'ct-radio',
158
+ 'value' => 'default',
159
+ 'view' => 'text',
160
+ 'design' => 'block',
161
+ 'setting' => [ 'transport' => 'postMessage' ],
162
+ 'choices' => [
163
+ 'default' => __( 'Default', 'blocksy' ),
164
+ 'custom' => __( 'Custom', 'blocksy' ),
165
+ ],
166
  ],
167
+
168
+ blocksy_rand_md5() => [
169
+ 'type' => 'ct-condition',
170
+ 'condition' => ['icon_source' => 'custom'],
171
+ 'options' => [
172
+ 'icon' => [
173
+ 'type' => 'icon-picker',
174
+ 'label' => __('Icon', 'blocksy-companion'),
175
+ 'design' => 'inline',
176
+ 'value' => [
177
+ 'icon' => 'blc blc-phone'
178
+ ]
179
  ]
180
  ]
181
+ ],
182
+ ] : []
183
 
184
  ]
185
  ],
188
  'label' => __( 'Mobile', 'blocksy-companion' ),
189
  'clone' => true,
190
  'options' => [
191
+ [
192
+ 'title' => [
193
+ 'type' => 'text',
194
+ 'label' => __('Title', 'blocksy-companion'),
195
+ 'value' => __('Mobile:', 'blocksy-companion'),
196
+ 'design' => 'inline',
197
+ ],
198
+
199
+ 'content' => [
200
+ 'type' => 'text',
201
+ 'label' => __('Content', 'blocksy-companion'),
202
+ 'value' => '578-393-4937',
203
+ 'design' => 'inline',
204
+ ],
205
+
206
+ 'link' => [
207
+ 'type' => 'text',
208
+ 'label' => __('Link (optional)', 'blocksy-companion'),
209
+ 'value' => 'tel:578-393-4937',
210
+ 'design' => 'inline',
211
+ ],
212
  ],
213
 
214
+ $is_pro ? [
215
+ 'icon_source' => [
216
+ 'label' => __( 'Icon Source', 'blocksy' ),
217
+ 'type' => 'ct-radio',
218
+ 'value' => 'default',
219
+ 'view' => 'text',
220
+ 'design' => 'block',
221
+ 'setting' => [ 'transport' => 'postMessage' ],
222
+ 'choices' => [
223
+ 'default' => __( 'Default', 'blocksy' ),
224
+ 'custom' => __( 'Custom', 'blocksy' ),
225
+ ],
226
  ],
227
+
228
+ blocksy_rand_md5() => [
229
+ 'type' => 'ct-condition',
230
+ 'condition' => ['icon_source' => 'custom'],
231
+ 'options' => [
232
+ 'icon' => [
233
+ 'type' => 'icon-picker',
234
+ 'label' => __('Icon', 'blocksy-companion'),
235
+ 'design' => 'inline',
236
+ 'value' => [
237
+ 'icon' => 'blc blc-mobile-phone'
238
+ ]
239
  ]
240
  ]
241
+ ],
242
+ ] : []
243
 
244
  ]
245
  ],
248
  'label' => __( 'Work Hours', 'blocksy-companion' ),
249
  'clone' => true,
250
  'options' => [
251
+ [
252
+ 'title' => [
253
+ 'type' => 'text',
254
+ 'label' => __('Title', 'blocksy-companion'),
255
+ 'value' => __('Opening hours', 'blocksy-companion'),
256
+ 'design' => 'inline',
257
+ ],
258
+
259
+ 'content' => [
260
+ 'type' => 'text',
261
+ 'label' => __('Content', 'blocksy-companion'),
262
+ 'value' => '9AM - 5PM',
263
+ 'design' => 'inline',
264
+ ],
265
+
266
+ 'link' => [
267
+ 'type' => 'text',
268
+ 'label' => __('Link (optional)', 'blocksy-companion'),
269
+ 'value' => '',
270
+ 'design' => 'inline',
271
+ ],
272
  ],
273
 
274
+ $is_pro ? [
275
+ 'icon_source' => [
276
+ 'label' => __( 'Icon Source', 'blocksy' ),
277
+ 'type' => 'ct-radio',
278
+ 'value' => 'default',
279
+ 'view' => 'text',
280
+ 'design' => 'block',
281
+ 'setting' => [ 'transport' => 'postMessage' ],
282
+ 'choices' => [
283
+ 'default' => __( 'Default', 'blocksy' ),
284
+ 'custom' => __( 'Custom', 'blocksy' ),
285
+ ],
286
  ],
287
+
288
+ blocksy_rand_md5() => [
289
+ 'type' => 'ct-condition',
290
+ 'condition' => ['icon_source' => 'custom'],
291
+ 'options' => [
292
+ 'icon' => [
293
+ 'type' => 'icon-picker',
294
+ 'label' => __('Icon', 'blocksy-companion'),
295
+ 'design' => 'inline',
296
+ 'value' => [
297
+ 'icon' => 'blc blc-clock'
298
+ ]
299
  ]
300
  ]
301
+ ],
302
+ ] : []
303
 
304
  ]
305
  ],
308
  'label' => __( 'Fax', 'blocksy-companion' ),
309
  'clone' => true,
310
  'options' => [
311
+ [
312
+ 'title' => [
313
+ 'type' => 'text',
314
+ 'label' => __('Title', 'blocksy-companion'),
315
+ 'value' => __('Fax:', 'blocksy-companion'),
316
+ 'design' => 'inline',
317
+ ],
318
+
319
+ 'content' => [
320
+ 'type' => 'text',
321
+ 'label' => __('Content', 'blocksy-companion'),
322
+ 'value' => '578-393-4937',
323
+ 'design' => 'inline',
324
+ ],
325
+
326
+ 'link' => [
327
+ 'type' => 'text',
328
+ 'label' => __('Link (optional)', 'blocksy-companion'),
329
+ 'value' => 'tel:578-393-4937',
330
+ 'design' => 'inline',
331
+ ],
332
  ],
333
 
334
+ $is_pro ? [
335
+ 'icon_source' => [
336
+ 'label' => __( 'Icon Source', 'blocksy' ),
337
+ 'type' => 'ct-radio',
338
+ 'value' => 'default',
339
+ 'view' => 'text',
340
+ 'design' => 'block',
341
+ 'setting' => [ 'transport' => 'postMessage' ],
342
+ 'choices' => [
343
+ 'default' => __( 'Default', 'blocksy' ),
344
+ 'custom' => __( 'Custom', 'blocksy' ),
345
+ ],
346
  ],
347
+
348
+ blocksy_rand_md5() => [
349
+ 'type' => 'ct-condition',
350
+ 'condition' => ['icon_source' => 'custom'],
351
+ 'options' => [
352
+ 'icon' => [
353
+ 'type' => 'icon-picker',
354
+ 'label' => __('Icon', 'blocksy-companion'),
355
+ 'design' => 'inline',
356
+ 'value' => [
357
+ 'icon' => 'blc blc-fax'
358
+ ]
359
  ]
360
  ]
361
+ ],
362
+ ] : []
363
 
364
  ]
365
  ],
368
  'label' => __( 'Email', 'blocksy-companion' ),
369
  'clone' => true,
370
  'options' => [
371
+ [
372
+ 'title' => [
373
+ 'type' => 'text',
374
+ 'label' => __('Title', 'blocksy-companion'),
375
+ 'value' => __('Email:', 'blocksy-companion'),
376
+ 'design' => 'inline',
377
+ ],
378
+
379
+ 'content' => [
380
+ 'type' => 'text',
381
+ 'label' => __('Content', 'blocksy-companion'),
382
+ 'value' => 'contact@yourwebsite.com',
383
+ 'design' => 'inline',
384
+ ],
385
+
386
+ 'link' => [
387
+ 'type' => 'text',
388
+ 'label' => __('Link (optional)', 'blocksy-companion'),
389
+ 'value' => 'mailto:contact@yourwebsite.com',
390
+ 'design' => 'inline',
391
+ ],
392
  ],
393
 
394
+ $is_pro ? [
395
+ 'icon_source' => [
396
+ 'label' => __( 'Icon Source', 'blocksy' ),
397
+ 'type' => 'ct-radio',
398
+ 'value' => 'default',
399
+ 'view' => 'text',
400
+ 'design' => 'block',
401
+ 'setting' => [ 'transport' => 'postMessage' ],
402
+ 'choices' => [
403
+ 'default' => __( 'Default', 'blocksy' ),
404
+ 'custom' => __( 'Custom', 'blocksy' ),
405
+ ],
406
  ],
407
+
408
+ blocksy_rand_md5() => [
409
+ 'type' => 'ct-condition',
410
+ 'condition' => ['icon_source' => 'custom'],
411
+ 'options' => [
412
+ 'icon' => [
413
+ 'type' => 'icon-picker',
414
+ 'label' => __('Icon', 'blocksy-companion'),
415
+ 'design' => 'inline',
416
+ 'value' => [
417
+ 'icon' => 'blc blc-email'
418
+ ]
419
  ]
420
  ]
421
+ ],
422
+ ] : []
423
 
424
  ]
425
  ],
428
  'label' => __( 'Website', 'blocksy-companion' ),
429
  'clone' => true,
430
  'options' => [
431
+ [
432
+ 'title' => [
433
+ 'type' => 'text',
434
+ 'label' => __('Title', 'blocksy-companion'),
435
+ 'value' => __('Website:', 'blocksy-companion'),
436
+ 'design' => 'inline',
437
+ ],
438
+
439
+ 'content' => [
440
+ 'type' => 'text',
441
+ 'label' => __('Content', 'blocksy-companion'),
442
+ 'value' => 'creativethemes.com',
443
+ 'design' => 'inline',
444
+ ],
445
+
446
+ 'link' => [
447
+ 'type' => 'text',
448
+ 'label' => __('Link (optional)', 'blocksy-companion'),
449
+ 'value' => 'https://creativethemes.com',
450
+ 'design' => 'inline',
451
+ ],
452
  ],
453
 
454
+ $is_pro ? [
455
+ 'icon_source' => [
456
+ 'label' => __( 'Icon Source', 'blocksy' ),
457
+ 'type' => 'ct-radio',
458
+ 'value' => 'default',
459
+ 'view' => 'text',
460
+ 'design' => 'block',
461
+ 'setting' => [ 'transport' => 'postMessage' ],
462
+ 'choices' => [
463
+ 'default' => __( 'Default', 'blocksy' ),
464
+ 'custom' => __( 'Custom', 'blocksy' ),
465
+ ],
466
  ],
467
+
468
+ blocksy_rand_md5() => [
469
+ 'type' => 'ct-condition',
470
+ 'condition' => ['icon_source' => 'custom'],
471
+ 'options' => [
472
+ 'icon' => [
473
+ 'type' => 'icon-picker',
474
+ 'label' => __('Icon', 'blocksy-companion'),
475
+ 'design' => 'inline',
476
+ 'value' => [
477
+ 'icon' => 'blc blc-globe'
478
+ ]
479
  ]
480
  ]
481
+ ],
482
+ ] : []
483
  ]
484
  ],
485
  ],
framework/extensions/widgets/widgets/ct-socials/options.php CHANGED
@@ -75,6 +75,19 @@ $options = [
75
  'design' => 'inline-full',
76
  ],
77
 
 
 
 
 
 
 
 
 
 
 
 
 
 
78
  'social_icons_size' => [
79
  'label' => __( 'Icons Size', 'blocksy-companion' ),
80
  'type' => 'ct-radio',
75
  'design' => 'inline-full',
76
  ],
77
 
78
+ 'social_icons_color' => [
79
+ 'label' => __('Icons Color', 'blocksy'),
80
+ 'type' => 'ct-radio',
81
+ 'value' => 'default',
82
+ 'view' => 'text',
83
+ 'design' => 'block',
84
+ 'setting' => [ 'transport' => 'postMessage' ],
85
+ 'choices' => [
86
+ 'default' => __( 'Default', 'blocksy' ),
87
+ 'official' => __( 'Official', 'blocksy' ),
88
+ ],
89
+ ],
90
+
91
  'social_icons_size' => [
92
  'label' => __( 'Icons Size', 'blocksy-companion' ),
93
  'type' => 'ct-radio',
framework/extensions/widgets/widgets/ct-socials/view.php CHANGED
@@ -13,6 +13,7 @@ $title = blocksy_default_akg( 'title', $atts, __('Social Icons', 'blocksy-compan
13
  echo wp_kses_post($before_widget . $before_title . $title . $after_title);
14
 
15
  $size = blocksy_default_akg('social_icons_size', $atts, 'medium');
 
16
  $type = blocksy_default_akg('social_type', $atts, 'simple');
17
  $fill = blocksy_default_akg('social_icons_fill', $atts, 'outline');
18
 
@@ -61,6 +62,7 @@ echo blc_call_fn(
61
  ),
62
  [
63
  'size' => $size,
 
64
  'fill' => $fill,
65
  'type' => $type,
66
  'links_target' => $link_target,
@@ -68,5 +70,4 @@ echo blc_call_fn(
68
  ]
69
  );
70
 
71
- echo wp_kses_post($after_widget);
72
-
13
  echo wp_kses_post($before_widget . $before_title . $title . $after_title);
14
 
15
  $size = blocksy_default_akg('social_icons_size', $atts, 'medium');
16
+ $color = blocksy_default_akg('social_icons_color', $atts, 'default');
17
  $type = blocksy_default_akg('social_type', $atts, 'simple');
18
  $fill = blocksy_default_akg('social_icons_fill', $atts, 'outline');
19
 
62
  ),
63
  [
64
  'size' => $size,
65
+ 'icons-color' => $color,
66
  'fill' => $fill,
67
  'type' => $type,
68
  'links_target' => $link_target,
70
  ]
71
  );
72
 
73
+ echo wp_kses_post($after_widget);
 
framework/helpers/helpers.php CHANGED
@@ -102,6 +102,22 @@ function blc_get_contacts_output($args = []) {
102
  'website' => 'blc blc-globe',
103
  ];
104
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
105
  $attr = [];
106
 
107
  // if ($args['type'] !== 'simple') {
@@ -125,15 +141,26 @@ function blc_get_contacts_output($args = []) {
125
  <?php if (! $single_layer['enabled']) { continue; }?>
126
  <li>
127
  <?php
 
 
 
 
 
 
 
 
128
  if (function_exists('blc_get_icon')) {
129
- echo blc_get_icon([
130
  'icon_descriptor' => blocksy_akg(
131
  'icon',
132
  $single_layer,
133
  ['icon' => $custom_icon_defaults[$single_layer['id']]]
134
  ),
 
135
  ]);
136
  }
 
 
137
  ?>
138
 
139
  <div class="contact-info">
102
  'website' => 'blc blc-globe',
103
  ];
104
 
105
+ $svg_icons_defaults = [
106
+ 'address' => '<svg width="18" height="18" viewBox="0 0 20 20" aria-hidden="true"><path d="M10,0C6.1,0,3,3.1,3,7c0,4.5,6,11.8,6.2,12.1L10,20l0.8-0.9C11,18.8,17,11.5,17,7C17,3.1,13.9,0,10,0z M10,2c2.8,0,5,2.2,5,5c0,2.7-3.1,7.4-5,9.8C8.1,14.4,5,9.7,5,7C5,4.2,7.2,2,10,2zM10,4.5C8.6,4.5,7.5,5.6,7.5,7S8.6,9.5,10,9.5s2.5-1.1,2.5-2.5S11.4,4.5,10,4.5z"/></svg>',
107
+
108
+ 'phone' => '<svg width="18" height="18" viewBox="0 0 20 20" aria-hidden="true"><path d="M4.4,0C4,0,3.6,0.2,3.2,0.4l0,0l0,0L0.8,2.9l0,0C0,3.6-0.2,4.7,0.1,5.6c0,0,0,0,0,0c0.7,1.9,2.3,5.5,5.6,8.7c3.3,3.3,6.9,4.9,8.7,5.6h0c0.9,0.3,1.9,0.1,2.7-0.5l2.4-2.4c0.6-0.6,0.6-1.7,0-2.4l-3.1-3.1l0,0c-0.6-0.6-1.8-0.6-2.4,0l-1.5,1.5c-0.6-0.3-1.9-1-3.1-2.2C8,9.5,7.4,8.2,7.2,7.6l1.5-1.5c0.6-0.6,0.7-1.7,0-2.4l0,0L8.6,3.6L5.6,0.5l0,0l0,0C5.2,0.2,4.8,0,4.4,0zM4.4,1.5c0.1,0,0.1,0,0.2,0.1l3.1,3.1l0.1,0.1c0,0,0,0.1,0,0.2L5.7,6.9L5.3,7.3l0.2,0.5c0,0,0.9,2.4,2.7,4.1L8.4,12c1.8,1.6,3.9,2.5,3.9,2.5l0.5,0.2l2.3-2.3c0.1-0.1,0.1-0.1,0.2,0l3.1,3.1c0.1,0.1,0.1,0.1,0,0.2l-2.4,2.4c-0.4,0.3-0.7,0.4-1.2,0.2c-1.7-0.7-5.1-2.2-8.1-5.2c-3-3-4.6-6.5-5.2-8.2c-0.1-0.3,0-0.8,0.2-1l0,0l2.3-2.4C4.2,1.6,4.3,1.5,4.4,1.5z"/></svg>',
109
+
110
+ 'mobile' => '<svg width="18" height="18" viewBox="0 0 20 20" aria-hidden="true"><path d="M13.5,20H6.5c-1.6,0-2.9-1.3-2.9-2.9V2.9C3.5,1.3,4.8,0,6.5,0h7.1c1.6,0,2.9,1.3,2.9,2.9v14.1C16.5,18.7,15.2,20,13.5,20zM6.7,1.7C5.8,1.7,5,2.5,5,3.4v13.2c0,0.9,0.7,1.7,1.7,1.7h6.6c0.9,0,1.7-0.7,1.7-1.7V3.4c0-0.9-0.7-1.7-1.7-1.7H6.7z"/><path d="M11.2,4.4H8.8c-0.3,0-0.6-0.3-0.6-0.6s0.3-0.6,0.6-0.6h2.4c0.3,0,0.6,0.3,0.6,0.6S11.5,4.4,11.2,4.4z"/><circle cx="10" cy="15.7" r="1.2"/></svg>',
111
+
112
+ 'hours' => '<svg width="18" height="18" viewBox="0 0 20 20" aria-hidden="true"><path d="M10,0C4.5,0,0,4.5,0,10s4.5,10,10,10s10-4.5,10-10S15.5,0,10,0z M10,18.2c-4.5,0-8.2-3.7-8.2-8.2c0-4.5,3.7-8.2,8.2-8.2c4.5,0,8.2,3.7,8.2,8.2C18.2,14.5,14.5,18.2,10,18.2z M14.4,12.2c-0.2,0.3-0.5,0.5-0.8,0.5c-0.1,0-0.3,0-0.4-0.1l-3.6-1.8c-0.3-0.2-0.5-0.5-0.5-0.8V4.5C9.1,4,9.5,3.6,10,3.6s0.9,0.4,0.9,0.9v4.9L14,11C14.5,11.2,14.7,11.8,14.4,12.2z"/></svg>',
113
+
114
+ 'fax' => '<svg width="18" height="18" viewBox="0 0 20 20" aria-hidden="true"><path d="M17.5,5.8h-1.7v-4V0h-1.7H5.8H4.2v1.8v4H2.5C1.1,5.8,0,7,0,8.3v8.3h4.2V20h11.7v-3.3H20V8.3C20,7,18.9,5.8,17.5,5.8zM5.8,1.8h8.3v4H5.8V1.8zM14.2,18.3H5.8v-5h8.3V18.3zM18.3,15h-2.5v-3.3H4.2V15H1.7V8.3c0-0.5,0.4-0.8,0.8-0.8h15c0.5,0,0.8,0.4,0.8,0.8V15zM4.2,9.2c0,0.5-0.4,0.8-0.8,0.8S2.5,9.6,2.5,9.2s0.4-0.8,0.8-0.8S4.2,8.7,4.2,9.2z"/></svg>',
115
+
116
+ 'email' => '<svg width="18" height="18" viewBox="0 0 20 20" aria-hidden="true"><path d="M10,0C4.5,0,0,4.5,0,10s4.5,10,10,10h5v-2h-5c-4.4,0-8-3.6-8-8s3.6-8,8-8s8,3.6,8,8v1.5c0,0.8-0.7,1.5-1.5,1.5S15,12.3,15,11.5V10c0-2.7-2.3-5-5-5s-5,2.3-5,5s2.3,5,5,5c1.4,0,2.7-0.6,3.6-1.6c0.6,0.9,1.7,1.6,2.9,1.6c1.9,0,3.5-1.6,3.5-3.5V10C20,4.5,15.5,0,10,0zM10,7c1.7,0,3,1.3,3,3s-1.3,3-3,3s-3-1.3-3-3S8.3,7,10,7z"/></svg>',
117
+
118
+ 'website' => '<svg width="18" height="18" viewBox="0 0 20 20" aria-hidden="true"><path d="M9.3,0C4.4,0,0.4,4,0.4,8.9s4,8.9,8.9,8.9c0.8,0,1.5-0.1,2.2-0.3v-3.9c-0.6,1.7-1.4,2.7-2.2,2.7c-0.9,0-2-1.5-2.5-3.7h4.8v-1.5h-5c-0.1-0.7-0.1-1.4-0.1-2.2c0-0.8,0.1-1.5,0.2-2.2h5.6c0.1,0.7,0.2,1.4,0.2,2.2c0,0.2,0,0.4,0,0.6c0.4-0.4,0.9-0.6,1.5-0.6c0-0.8,0-1.5-0.1-2.2h2.8c0.2,0.7,0.3,1.4,0.3,2.2c0,0.5-0.1,1-0.2,1.5l1.3,0.9c0.2-0.8,0.3-1.6,0.3-2.4C18.1,4,14.2,0,9.3,0zM9.3,1.5c0.9,0,2,1.5,2.5,3.7h-5C7.3,2.9,8.3,1.5,9.3,1.5zM6.3,2.1C5.9,2.9,5.5,4,5.2,5.2H2.8C3.6,3.8,4.9,2.7,6.3,2.1zM12.2,2.1c1.5,0.6,2.7,1.7,3.5,3.1h-2.3C13.1,4,12.7,2.9,12.2,2.1zM2.2,6.7h2.8C4.9,7.4,4.8,8.1,4.8,8.9c0,0.8,0.1,1.5,0.1,2.2H2.2C2,10.4,1.9,9.7,1.9,8.9C1.9,8.1,2,7.4,2.2,6.7z M13.7,10.4c-0.4,0-0.7,0.3-0.8,0.7c0,0,0,0.1,0,0.1v6.6c0,0.4,0.3,0.7,0.7,0.7c0.2,0,0.4-0.1,0.5-0.2l0,0l1.4-1.6l1.5,3c0.2,0.4,0.6,0.5,1,0.3c0.4-0.2,0.5-0.6,0.3-1l-1.5-3l2.2-0.4l0,0c0.3-0.1,0.5-0.4,0.5-0.7c0-0.3-0.1-0.5-0.3-0.6l0,0l-5.1-3.6C14.1,10.4,13.9,10.4,13.7,10.4zM2.9,12.6h2.3c0.3,1.2,0.7,2.3,1.1,3.1C4.9,15.1,3.7,14,2.9,12.6z"/></svg>',
119
+ ];
120
+
121
  $attr = [];
122
 
123
  // if ($args['type'] !== 'simple') {
141
  <?php if (! $single_layer['enabled']) { continue; }?>
142
  <li>
143
  <?php
144
+ $icon = blocksy_html_tag(
145
+ 'span',
146
+ [
147
+ 'class' => 'ct-icon-container'
148
+ ],
149
+ $svg_icons_defaults[$single_layer['id']]
150
+ );
151
+
152
  if (function_exists('blc_get_icon')) {
153
+ $icon = blc_get_icon([
154
  'icon_descriptor' => blocksy_akg(
155
  'icon',
156
  $single_layer,
157
  ['icon' => $custom_icon_defaults[$single_layer['id']]]
158
  ),
159
+ 'icon_container' => true
160
  ]);
161
  }
162
+
163
+ echo $icon;
164
  ?>
165
 
166
  <div class="contact-info">
framework/theme-integration.php CHANGED
@@ -27,6 +27,7 @@ class ThemeIntegration {
27
  ),
28
  'trigger' => 'click',
29
  'has_modal_loader' => [
 
30
  'id' => 'account-modal'
31
  ]
32
  ];
27
  ),
28
  'trigger' => 'click',
29
  'has_modal_loader' => [
30
+ 'skip_if_no_template' => true,
31
  'id' => 'account-modal'
32
  ]
33
  ];
freemius/includes/class-freemius.php CHANGED
@@ -2498,7 +2498,7 @@
2498
  ) {
2499
  return;
2500
  }
2501
-
2502
  $subscription_cancellation_dialog_box_template_params = $this->apply_filters( 'show_deactivation_subscription_cancellation', true ) ?
2503
  $this->_get_subscription_cancellation_dialog_box_template_params() :
2504
  array();
@@ -3635,10 +3635,37 @@
3635
  }
3636
 
3637
  return (
3638
- fs_strip_url_protocol( trailingslashit( $this->_site->url ) ) !== fs_strip_url_protocol( trailingslashit( get_site_url() ) )
3639
  );
3640
  }
3641
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3642
  /**
3643
  * @author Leo Fajardo (@leorw)
3644
  * @since 2.5.0
@@ -3665,7 +3692,7 @@
3665
  if (
3666
  is_object( $this->_license ) &&
3667
  ! $this->_license->is_utilized(
3668
- ( WP_FS__IS_LOCALHOST_FOR_SERVER || FS_Site::is_localhost_by_address( get_site_url() ) )
3669
  )
3670
  ) {
3671
  $license_key = $this->_license->secret_key;
@@ -3977,7 +4004,7 @@
3977
  /**
3978
  * @author Leo Fajardo (@leorw)
3979
  * @since 2.5.0
3980
- *
3981
  * @return array
3982
  */
3983
  static function get_all_modules_sites() {
@@ -4231,7 +4258,7 @@
4231
  if ( $is_connected ) {
4232
  FS_GDPR_Manager::instance()->store_is_required( $pong->is_gdpr_required );
4233
  }
4234
-
4235
  $this->store_connectivity_info( $pong, $is_connected );
4236
 
4237
  return $this->_has_api_connection;
@@ -4315,7 +4342,7 @@
4315
  $unique_id = self::$_accounts->get_option( 'unique_id', null, $blog_id );
4316
 
4317
  if ( empty( $unique_id ) || ! is_string( $unique_id ) ) {
4318
- $key = fs_strip_url_protocol( get_site_url( $blog_id ) );
4319
 
4320
  $secure_auth = defined( 'SECURE_AUTH_KEY' ) ? SECURE_AUTH_KEY : '';
4321
  if ( empty( $secure_auth ) ||
@@ -8593,7 +8620,7 @@
8593
  $parent_licenses_endpoint = "/plugins/{$this->get_id()}/parent_licenses.json?filter=activatable";
8594
 
8595
  $fs = $this;
8596
-
8597
  if ( $this->is_addon() ) {
8598
  $parent_instance = $this->get_parent_instance();
8599
 
@@ -9653,7 +9680,7 @@
9653
  'language' => get_bloginfo( 'language' ),
9654
  'charset' => get_bloginfo( 'charset' ),
9655
  'title' => get_bloginfo( 'name' ),
9656
- 'url' => get_site_url(),
9657
  ) :
9658
  array();
9659
 
@@ -10324,7 +10351,7 @@
10324
 
10325
  if ( is_object( $fs ) ) {
10326
  $fs->remove_sdk_reference();
10327
-
10328
  self::require_plugin_essentials();
10329
 
10330
  if ( is_plugin_active( $fs->_free_plugin_basename ) ||
@@ -10904,7 +10931,7 @@
10904
  if ( fs_starts_with( $option_name, WP_FS__MODULE_TYPE_THEME . '_' ) ) {
10905
  $option_name = str_replace( WP_FS__MODULE_TYPE_THEME . '_', '', $option_name );
10906
  }
10907
-
10908
  switch ( $option_name ) {
10909
  case 'plugins':
10910
  case 'themes':
@@ -12558,7 +12585,7 @@
12558
  } else {
12559
  $url = is_object( $site ) ?
12560
  $site->siteurl :
12561
- get_site_url( $blog_id );
12562
 
12563
  $disconnected_site_ids[] = $blog_id;
12564
  }
@@ -13518,7 +13545,7 @@
13518
  // Subscription cancellation dialog box is currently not supported for multisite networks.
13519
  return array();
13520
  }
13521
-
13522
  if ( $this->is_whitelabeled() ) {
13523
  return array();
13524
  }
@@ -13618,7 +13645,7 @@
13618
  ! $this->is_premium() &&
13619
  /**
13620
  * Also handle the case when an upgrade was made using the free version.
13621
- *
13622
  * @author Leo Fajardo (@leorw)
13623
  * @since 2.3.2
13624
  */
@@ -13849,7 +13876,7 @@
13849
  */
13850
  function _activate_license_ajax_action() {
13851
  $this->_logger->entrance();
13852
-
13853
  $this->check_ajax_referer( 'activate_license' );
13854
 
13855
  $license_key = trim( fs_request_get( 'license_key' ) );
@@ -13919,7 +13946,7 @@
13919
  foreach ( $installs_info_by_slug_map as $slug => $install_info ) {
13920
  $install_ids[ $slug ] = $install_info['install']->id;
13921
  }
13922
-
13923
  $params['install_ids'] = implode( ',', array_values( $install_ids ) );
13924
 
13925
  $install = $this->get_api_site_scope()->call( $this->add_show_pending( '/' ), 'put', $params );
@@ -14012,7 +14039,7 @@
14012
  *
14013
  * @author Vova Feldman (@svovaf)
14014
  * @since 2.3.0
14015
- *
14016
  * @param string $license_key
14017
  * @param null|bool $is_marketing_allowed
14018
  * @param null|number $plugin_id
@@ -15813,7 +15840,7 @@
15813
  $address_to_blog_map = array();
15814
  foreach ( $sites as $site ) {
15815
  $blog_id = self::get_site_blog_id( $site );
15816
- $address = trailingslashit( fs_strip_url_protocol( get_site_url( $blog_id ) ) );
15817
  $address_to_blog_map[ $address ] = $blog_id;
15818
  }
15819
 
@@ -16049,7 +16076,7 @@
16049
  $switched = false;
16050
 
16051
  if ( is_null( $site ) ) {
16052
- $url = get_site_url();
16053
  $name = get_bloginfo( 'name' );
16054
  $blog_id = null;
16055
  } else {
@@ -16064,7 +16091,7 @@
16064
  $url = $site->siteurl;
16065
  $name = $site->blogname;
16066
  } else {
16067
- $url = get_site_url( $blog_id );
16068
  $name = get_bloginfo( 'name' );
16069
  }
16070
  }
@@ -17005,6 +17032,7 @@
17005
  }
17006
 
17007
  if (
 
17008
  $this->is_clone() &&
17009
  empty( FS_Clone_Manager::instance()->get_clone_identification_timestamp() )
17010
  ) {
@@ -18551,7 +18579,7 @@
18551
  if ( is_object( $this->_site ) && ! $this->is_registered() ) {
18552
  return;
18553
  }
18554
-
18555
  /**
18556
  * When running from a site admin with a network activated module and the connection
18557
  * was NOT delegated and the user still haven't skipped or opted-in, then hide the
@@ -22889,7 +22917,7 @@
22889
  sprintf(
22890
  $this->get_text_inline( 'We will no longer be sending any usage data of %s on %s to %s.', 'opted-out-successfully' ),
22891
  $this->get_plugin_title(),
22892
- fs_strip_url_protocol( get_site_url( $blog_id ) ),
22893
  sprintf(
22894
  '<a href="%s" target="_blank" rel="noopener">%s</a>',
22895
  'https://freemius.com',
@@ -23596,7 +23624,7 @@
23596
  ! $this->is_live(),
23597
  $this->_site->secret_key,
23598
  $this->get_sdk_version(),
23599
- get_site_url()
23600
  );
23601
  }
23602
 
@@ -23637,7 +23665,7 @@
23637
  $this->_store_site();
23638
  }
23639
 
23640
- if ( fs_strip_url_protocol( $stored_remote_url ) !== fs_strip_url_protocol( trailingslashit( get_site_url() ) ) ) {
23641
  FS_Clone_Manager::instance()->maybe_run_clone_resolution();
23642
  }
23643
  }
2498
  ) {
2499
  return;
2500
  }
2501
+
2502
  $subscription_cancellation_dialog_box_template_params = $this->apply_filters( 'show_deactivation_subscription_cancellation', true ) ?
2503
  $this->_get_subscription_cancellation_dialog_box_template_params() :
2504
  array();
3635
  }
3636
 
3637
  return (
3638
+ fs_strip_url_protocol( trailingslashit( $this->_site->url ) ) !== fs_strip_url_protocol( trailingslashit( self::get_site_url() ) )
3639
  );
3640
  }
3641
 
3642
+ /**
3643
+ * @author Leo Fajardo (@leorw)
3644
+ * @since 2.5.0
3645
+ *
3646
+ * @param int|null $blog_id
3647
+ *
3648
+ * @return string
3649
+ */
3650
+ static function get_site_url( $blog_id = null ) {
3651
+ global $wp_filter;
3652
+
3653
+ $site_url_filters = null;
3654
+
3655
+ if ( ! empty( $wp_filter['site_url'] ) ) {
3656
+ $site_url_filters = $wp_filter['site_url'];
3657
+ unset( $wp_filter['site_url'] );
3658
+ }
3659
+
3660
+ $url = get_site_url( $blog_id );
3661
+
3662
+ if ( ! empty( $site_url_filters ) ) {
3663
+ $wp_filter['site_url'] = $site_url_filters;
3664
+ }
3665
+
3666
+ return $url;
3667
+ }
3668
+
3669
  /**
3670
  * @author Leo Fajardo (@leorw)
3671
  * @since 2.5.0
3692
  if (
3693
  is_object( $this->_license ) &&
3694
  ! $this->_license->is_utilized(
3695
+ ( WP_FS__IS_LOCALHOST_FOR_SERVER || FS_Site::is_localhost_by_address( self::get_site_url() ) )
3696
  )
3697
  ) {
3698
  $license_key = $this->_license->secret_key;
4004
  /**
4005
  * @author Leo Fajardo (@leorw)
4006
  * @since 2.5.0
4007
+ *
4008
  * @return array
4009
  */
4010
  static function get_all_modules_sites() {
4258
  if ( $is_connected ) {
4259
  FS_GDPR_Manager::instance()->store_is_required( $pong->is_gdpr_required );
4260
  }
4261
+
4262
  $this->store_connectivity_info( $pong, $is_connected );
4263
 
4264
  return $this->_has_api_connection;
4342
  $unique_id = self::$_accounts->get_option( 'unique_id', null, $blog_id );
4343
 
4344
  if ( empty( $unique_id ) || ! is_string( $unique_id ) ) {
4345
+ $key = fs_strip_url_protocol( self::get_site_url( $blog_id ) );
4346
 
4347
  $secure_auth = defined( 'SECURE_AUTH_KEY' ) ? SECURE_AUTH_KEY : '';
4348
  if ( empty( $secure_auth ) ||
8620
  $parent_licenses_endpoint = "/plugins/{$this->get_id()}/parent_licenses.json?filter=activatable";
8621
 
8622
  $fs = $this;
8623
+
8624
  if ( $this->is_addon() ) {
8625
  $parent_instance = $this->get_parent_instance();
8626
 
9680
  'language' => get_bloginfo( 'language' ),
9681
  'charset' => get_bloginfo( 'charset' ),
9682
  'title' => get_bloginfo( 'name' ),
9683
+ 'url' => self::get_site_url(),
9684
  ) :
9685
  array();
9686
 
10351
 
10352
  if ( is_object( $fs ) ) {
10353
  $fs->remove_sdk_reference();
10354
+
10355
  self::require_plugin_essentials();
10356
 
10357
  if ( is_plugin_active( $fs->_free_plugin_basename ) ||
10931
  if ( fs_starts_with( $option_name, WP_FS__MODULE_TYPE_THEME . '_' ) ) {
10932
  $option_name = str_replace( WP_FS__MODULE_TYPE_THEME . '_', '', $option_name );
10933
  }
10934
+
10935
  switch ( $option_name ) {
10936
  case 'plugins':
10937
  case 'themes':
12585
  } else {
12586
  $url = is_object( $site ) ?
12587
  $site->siteurl :
12588
+ self::get_site_url( $blog_id );
12589
 
12590
  $disconnected_site_ids[] = $blog_id;
12591
  }
13545
  // Subscription cancellation dialog box is currently not supported for multisite networks.
13546
  return array();
13547
  }
13548
+
13549
  if ( $this->is_whitelabeled() ) {
13550
  return array();
13551
  }
13645
  ! $this->is_premium() &&
13646
  /**
13647
  * Also handle the case when an upgrade was made using the free version.
13648
+ *
13649
  * @author Leo Fajardo (@leorw)
13650
  * @since 2.3.2
13651
  */
13876
  */
13877
  function _activate_license_ajax_action() {
13878
  $this->_logger->entrance();
13879
+
13880
  $this->check_ajax_referer( 'activate_license' );
13881
 
13882
  $license_key = trim( fs_request_get( 'license_key' ) );
13946
  foreach ( $installs_info_by_slug_map as $slug => $install_info ) {
13947
  $install_ids[ $slug ] = $install_info['install']->id;
13948
  }
13949
+
13950
  $params['install_ids'] = implode( ',', array_values( $install_ids ) );
13951
 
13952
  $install = $this->get_api_site_scope()->call( $this->add_show_pending( '/' ), 'put', $params );
14039
  *
14040
  * @author Vova Feldman (@svovaf)
14041
  * @since 2.3.0
14042
+ *
14043
  * @param string $license_key
14044
  * @param null|bool $is_marketing_allowed
14045
  * @param null|number $plugin_id
15840
  $address_to_blog_map = array();
15841
  foreach ( $sites as $site ) {
15842
  $blog_id = self::get_site_blog_id( $site );
15843
+ $address = trailingslashit( fs_strip_url_protocol( self::get_site_url( $blog_id ) ) );
15844
  $address_to_blog_map[ $address ] = $blog_id;
15845
  }
15846
 
16076
  $switched = false;
16077
 
16078
  if ( is_null( $site ) ) {
16079
+ $url = self::get_site_url();
16080
  $name = get_bloginfo( 'name' );
16081
  $blog_id = null;
16082
  } else {
16091
  $url = $site->siteurl;
16092
  $name = $site->blogname;
16093
  } else {
16094
+ $url = self::get_site_url( $blog_id );
16095
  $name = get_bloginfo( 'name' );
16096
  }
16097
  }
17032
  }
17033
 
17034
  if (
17035
+ $this->is_user_in_admin() &&
17036
  $this->is_clone() &&
17037
  empty( FS_Clone_Manager::instance()->get_clone_identification_timestamp() )
17038
  ) {
18579
  if ( is_object( $this->_site ) && ! $this->is_registered() ) {
18580
  return;
18581
  }
18582
+
18583
  /**
18584
  * When running from a site admin with a network activated module and the connection
18585
  * was NOT delegated and the user still haven't skipped or opted-in, then hide the
22917
  sprintf(
22918
  $this->get_text_inline( 'We will no longer be sending any usage data of %s on %s to %s.', 'opted-out-successfully' ),
22919
  $this->get_plugin_title(),
22920
+ fs_strip_url_protocol( self::get_site_url( $blog_id ) ),
22921
  sprintf(
22922
  '<a href="%s" target="_blank" rel="noopener">%s</a>',
22923
  'https://freemius.com',
23624
  ! $this->is_live(),
23625
  $this->_site->secret_key,
23626
  $this->get_sdk_version(),
23627
+ self::get_site_url()
23628
  );
23629
  }
23630
 
23665
  $this->_store_site();
23666
  }
23667
 
23668
+ if ( fs_strip_url_protocol( $stored_remote_url ) !== fs_strip_url_protocol( trailingslashit( self::get_site_url() ) ) ) {
23669
  FS_Clone_Manager::instance()->maybe_run_clone_resolution();
23670
  }
23671
  }
freemius/includes/managers/class-fs-clone-manager.php CHANGED
@@ -82,6 +82,10 @@
82
  * @var string
83
  */
84
  const OPTION_TEMPORARY_DUPLICATE = 'temporary_duplicate';
 
 
 
 
85
  /**
86
  * @var string
87
  */
@@ -167,6 +171,7 @@
167
  if ( Freemius::is_ajax() ) {
168
  Freemius::add_ajax_action_static( 'handle_clone_resolution', array( $this, '_clone_resolution_action_ajax_handler' ) );
169
  } else if ( ! Freemius::is_cron() && ! Freemius::is_admin_post() ) {
 
170
  $this->maybe_show_clone_admin_notice();
171
 
172
  add_action( 'admin_footer', array( $this, '_add_clone_resolution_javascript' ) );
@@ -488,6 +493,80 @@
488
  return false;
489
  }
490
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
491
  /**
492
  * Tries to recover the install of a newly created subsite or resolve it if it's a clone.
493
  *
@@ -544,7 +623,7 @@
544
 
545
  $instance->switch_to_blog( $blog_id );
546
 
547
- $current_url = fs_strip_url_protocol( untrailingslashit( get_site_url() ) );
548
  $current_install_url = is_object( $current_install ) ?
549
  fs_strip_url_protocol( untrailingslashit( $current_install->url ) ) :
550
  null;
@@ -647,7 +726,7 @@
647
  private function try_automatic_resolution() {
648
  $this->_logger->entrance();
649
 
650
- $current_url = fs_strip_url_protocol( untrailingslashit( get_site_url() ) );
651
  $is_localhost = FS_Site::is_localhost_by_address( $current_url );
652
 
653
  $require_manual_resolution = false;
@@ -705,19 +784,7 @@
705
  ) );
706
  }
707
 
708
- $result = array();
709
-
710
- if ( self::OPTION_TEMPORARY_DUPLICATE === $clone_action ) {
711
- $this->store_temporary_duplicate_timestamp();
712
- } else {
713
- $result = $this->resolve_cloned_sites( $clone_action );
714
- }
715
-
716
- if ( 'temporary_duplicate_license_activation' !== $clone_action ) {
717
- $this->remove_clone_resolution_options_notice();
718
- } else {
719
- $this->remove_temporary_duplicate_notice();
720
- }
721
 
722
  Freemius::shoot_ajax_success( $result );
723
  }
@@ -726,53 +793,72 @@
726
  * @author Leo Fajardo (@leorw)
727
  * @since 2.5.0
728
  *
729
- * @param string $clone_action
 
 
 
730
  */
731
- private function resolve_cloned_sites( $clone_action ) {
732
  $this->_logger->entrance();
733
 
734
- $instances_with_clone_count = 0;
735
- $instance_with_error = null;
736
- $has_error = false;
737
 
738
- $instances = Freemius::_get_all_instances();
 
 
 
 
 
739
 
740
- foreach ( $instances as $instance ) {
741
- if ( ! $instance->is_registered() ) {
742
- continue;
743
- }
744
 
745
- if ( ! $instance->is_clone() ) {
746
- continue;
747
- }
 
748
 
749
- $instances_with_clone_count ++;
 
 
750
 
751
- if ( FS_Clone_Manager::OPTION_NEW_HOME === $clone_action ) {
752
- $instance->sync_install( array( 'is_new_site' => true ), true );
753
- } else {
754
- $instance->_handle_long_term_duplicate();
 
 
755
 
756
- if ( ! is_object( $instance->get_site() ) ) {
757
- $has_error = true;
758
 
759
- if ( ! is_object( $instance_with_error ) ) {
760
- $instance_with_error = $instance;
 
761
  }
762
  }
763
  }
764
- }
765
 
766
- $redirect_url = '';
767
 
768
- if (
769
- 1 === $instances_with_clone_count &&
770
- $has_error
771
- ) {
772
- $redirect_url = $instance_with_error->get_activation_url();
 
 
 
 
 
 
 
 
 
773
  }
774
 
775
- return ( array( 'redirect_url' => $redirect_url ) );
776
  }
777
 
778
  /**
@@ -874,7 +960,7 @@
874
  $product_ids,
875
  $product_titles,
876
  $site_urls,
877
- get_site_url(),
878
  ( count( $site_urls ) === count( $sites_with_license_urls ) ),
879
  ( count( $site_urls ) === $sites_with_premium_version_count ),
880
  $doc_url
@@ -984,7 +1070,7 @@
984
  continue;
985
  }
986
 
987
- $subsite_url = trailingslashit( get_site_url( $blog_id ) );
988
  $install_url = trailingslashit( $install->url );
989
 
990
  $has_clone = ( fs_strip_url_protocol( $install_url ) !== fs_strip_url_protocol( $subsite_url ) );
@@ -1190,7 +1276,7 @@
1190
  $temporary_duplicate_end_date = $this->get_temporary_duplicate_expiration_timestamp();
1191
  $temporary_duplicate_end_date = date( 'M j, Y', $temporary_duplicate_end_date );
1192
 
1193
- $current_url = get_site_url();
1194
  $current_site_link = sprintf(
1195
  '<b><a href="%s" target="_blank">%s</a></b>',
1196
  $current_url,
82
  * @var string
83
  */
84
  const OPTION_TEMPORARY_DUPLICATE = 'temporary_duplicate';
85
+ /**
86
+ * @var string
87
+ */
88
+ const OPTION_LONG_TERM_DUPLICATE = 'long_term_duplicate';
89
  /**
90
  * @var string
91
  */
171
  if ( Freemius::is_ajax() ) {
172
  Freemius::add_ajax_action_static( 'handle_clone_resolution', array( $this, '_clone_resolution_action_ajax_handler' ) );
173
  } else if ( ! Freemius::is_cron() && ! Freemius::is_admin_post() ) {
174
+ $this->try_resolve_clone_automatically_by_config();
175
  $this->maybe_show_clone_admin_notice();
176
 
177
  add_action( 'admin_footer', array( $this, '_add_clone_resolution_javascript' ) );
493
  return false;
494
  }
495
 
496
+ /**
497
+ * Try to resolve the clone situation automatically based on the config in the wp-config.php file.
498
+ *
499
+ * @author Leo Fajardo (@leorw)
500
+ * @since 2.5.0
501
+ */
502
+ private function try_resolve_clone_automatically_by_config() {
503
+ $clone_action = $this->get_clone_resolution_action_from_config();
504
+
505
+ if ( empty( $clone_action ) ) {
506
+ return;
507
+ }
508
+
509
+ $fs_instances = array();
510
+
511
+ if ( self::OPTION_LONG_TERM_DUPLICATE === $clone_action ) {
512
+ $instances = Freemius::_get_all_instances();
513
+
514
+ foreach ( $instances as $instance ) {
515
+ if ( ! $instance->is_registered() ) {
516
+ continue;
517
+ }
518
+
519
+ if ( ! $instance->is_clone() ) {
520
+ continue;
521
+ }
522
+
523
+ $license = $instance->has_features_enabled_license() ?
524
+ $instance->_get_license() :
525
+ null;
526
+
527
+ if (
528
+ is_object( $license ) &&
529
+ ! $license->is_utilized(
530
+ ( WP_FS__IS_LOCALHOST_FOR_SERVER || FS_Site::is_localhost_by_address( Freemius::get_site_url() ) )
531
+ )
532
+ ) {
533
+ $fs_instances[] = $instance;
534
+ }
535
+ }
536
+
537
+ if ( empty( $fs_instances ) ) {
538
+ return;
539
+ }
540
+ }
541
+
542
+ $this->resolve_cloned_sites( $clone_action, $fs_instances );
543
+ }
544
+
545
+ /**
546
+ * @author Leo Fajard (@leorw)
547
+ * @since 2.5.0
548
+ *
549
+ * @return string|null
550
+ */
551
+ private function get_clone_resolution_action_from_config() {
552
+ if ( ! defined( 'FS__RESOLVE_CLONE_AS' ) ) {
553
+ return null;
554
+ }
555
+
556
+ if ( ! in_array(
557
+ FS__RESOLVE_CLONE_AS,
558
+ array(
559
+ self::OPTION_NEW_HOME,
560
+ self::OPTION_TEMPORARY_DUPLICATE,
561
+ self::OPTION_LONG_TERM_DUPLICATE,
562
+ )
563
+ ) ) {
564
+ return null;
565
+ }
566
+
567
+ return FS__RESOLVE_CLONE_AS;
568
+ }
569
+
570
  /**
571
  * Tries to recover the install of a newly created subsite or resolve it if it's a clone.
572
  *
623
 
624
  $instance->switch_to_blog( $blog_id );
625
 
626
+ $current_url = fs_strip_url_protocol( untrailingslashit( Freemius::get_site_url() ) );
627
  $current_install_url = is_object( $current_install ) ?
628
  fs_strip_url_protocol( untrailingslashit( $current_install->url ) ) :
629
  null;
726
  private function try_automatic_resolution() {
727
  $this->_logger->entrance();
728
 
729
+ $current_url = fs_strip_url_protocol( untrailingslashit( Freemius::get_site_url() ) );
730
  $is_localhost = FS_Site::is_localhost_by_address( $current_url );
731
 
732
  $require_manual_resolution = false;
784
  ) );
785
  }
786
 
787
+ $result = $this->resolve_cloned_sites( $clone_action );
 
 
 
 
 
 
 
 
 
 
 
 
788
 
789
  Freemius::shoot_ajax_success( $result );
790
  }
793
  * @author Leo Fajardo (@leorw)
794
  * @since 2.5.0
795
  *
796
+ * @param string $clone_action
797
+ * @param Freemius[] $fs_instances
798
+ *
799
+ * @return array
800
  */
801
+ private function resolve_cloned_sites( $clone_action, $fs_instances = array() ) {
802
  $this->_logger->entrance();
803
 
804
+ $result = array();
 
 
805
 
806
+ if ( self::OPTION_TEMPORARY_DUPLICATE === $clone_action ) {
807
+ $this->store_temporary_duplicate_timestamp();
808
+ } else {
809
+ $instances_with_clone_count = 0;
810
+ $instance_with_error = null;
811
+ $has_error = false;
812
 
813
+ $instances = ( ! empty( $fs_instances ) ) ?
814
+ $fs_instances :
815
+ Freemius::_get_all_instances();
 
816
 
817
+ foreach ( $instances as $instance ) {
818
+ if ( ! $instance->is_registered() ) {
819
+ continue;
820
+ }
821
 
822
+ if ( ! $instance->is_clone() ) {
823
+ continue;
824
+ }
825
 
826
+ $instances_with_clone_count ++;
827
+
828
+ if ( self::OPTION_NEW_HOME === $clone_action ) {
829
+ $instance->sync_install( array( 'is_new_site' => true ), true );
830
+ } else {
831
+ $instance->_handle_long_term_duplicate();
832
 
833
+ if ( ! is_object( $instance->get_site() ) ) {
834
+ $has_error = true;
835
 
836
+ if ( ! is_object( $instance_with_error ) ) {
837
+ $instance_with_error = $instance;
838
+ }
839
  }
840
  }
841
  }
 
842
 
843
+ $redirect_url = '';
844
 
845
+ if (
846
+ 1 === $instances_with_clone_count &&
847
+ $has_error
848
+ ) {
849
+ $redirect_url = $instance_with_error->get_activation_url();
850
+ }
851
+
852
+ $result = ( array( 'redirect_url' => $redirect_url ) );
853
+ }
854
+
855
+ if ( 'temporary_duplicate_license_activation' !== $clone_action ) {
856
+ $this->remove_clone_resolution_options_notice();
857
+ } else {
858
+ $this->remove_temporary_duplicate_notice();
859
  }
860
 
861
+ return $result;
862
  }
863
 
864
  /**
960
  $product_ids,
961
  $product_titles,
962
  $site_urls,
963
+ Freemius::get_site_url(),
964
  ( count( $site_urls ) === count( $sites_with_license_urls ) ),
965
  ( count( $site_urls ) === $sites_with_premium_version_count ),
966
  $doc_url
1070
  continue;
1071
  }
1072
 
1073
+ $subsite_url = trailingslashit( Freemius::get_site_url( $blog_id ) );
1074
  $install_url = trailingslashit( $install->url );
1075
 
1076
  $has_clone = ( fs_strip_url_protocol( $install_url ) !== fs_strip_url_protocol( $subsite_url ) );
1276
  $temporary_duplicate_end_date = $this->get_temporary_duplicate_expiration_timestamp();
1277
  $temporary_duplicate_end_date = date( 'M j, Y', $temporary_duplicate_end_date );
1278
 
1279
+ $current_url = Freemius::get_site_url();
1280
  $current_site_link = sprintf(
1281
  '<b><a href="%s" target="_blank">%s</a></b>',
1282
  $current_url,
freemius/templates/connect.php CHANGED
@@ -41,7 +41,7 @@
41
  $first_name = $current_user->nickname;
42
  }
43
 
44
- $site_url = get_site_url();
45
  $protocol_pos = strpos( $site_url, '://' );
46
  if ( false !== $protocol_pos ) {
47
  $site_url = substr( $site_url, $protocol_pos + 3 );
@@ -1047,4 +1047,4 @@
1047
 
1048
  //endregion
1049
  })(jQuery);
1050
- </script>
41
  $first_name = $current_user->nickname;
42
  }
43
 
44
+ $site_url = Freemius::get_site_url();
45
  $protocol_pos = strpos( $site_url, '://' );
46
  if ( false !== $protocol_pos ) {
47
  $site_url = substr( $site_url, $protocol_pos + 3 );
1047
 
1048
  //endregion
1049
  })(jQuery);
1050
+ </script>
freemius/templates/contact.php CHANGED
@@ -69,7 +69,7 @@
69
  $query_params = array_merge( $_GET, array_merge( $context_params, array(
70
  'plugin_version' => $fs->get_plugin_version(),
71
  'wp_login_url' => wp_login_url(),
72
- 'site_url' => get_site_url(),
73
  // 'wp_admin_css' => get_bloginfo('wpurl') . "/wp-admin/load-styles.php?c=1&load=buttons,wp-admin,dashicons",
74
  ) ) );
75
 
@@ -125,4 +125,4 @@
125
  'module_slug' => $slug,
126
  'module_version' => $fs->get_plugin_version(),
127
  );
128
- fs_require_template( 'powered-by.php', $params );
69
  $query_params = array_merge( $_GET, array_merge( $context_params, array(
70
  'plugin_version' => $fs->get_plugin_version(),
71
  'wp_login_url' => wp_login_url(),
72
+ 'site_url' => Freemius::get_site_url(),
73
  // 'wp_admin_css' => get_bloginfo('wpurl') . "/wp-admin/load-styles.php?c=1&load=buttons,wp-admin,dashicons",
74
  ) ) );
75
 
125
  'module_slug' => $slug,
126
  'module_version' => $fs->get_plugin_version(),
127
  );
128
+ fs_require_template( 'powered-by.php', $params );
freemius/templates/forms/affiliation.php CHANGED
@@ -71,7 +71,7 @@
71
  $current_user = Freemius::_get_current_wp_user();
72
  $full_name = trim( $current_user->user_firstname . ' ' . $current_user->user_lastname );
73
  $email_address = $current_user->user_email;
74
- $domain = fs_strip_url_protocol( get_site_url() );
75
  }
76
 
77
  $affiliate_tracking = 30;
@@ -506,4 +506,4 @@
506
  'module_version' => $fs->get_plugin_version(),
507
  );
508
  fs_require_template( 'powered-by.php', $params );
509
- ?>
71
  $current_user = Freemius::_get_current_wp_user();
72
  $full_name = trim( $current_user->user_firstname . ' ' . $current_user->user_lastname );
73
  $email_address = $current_user->user_email;
74
+ $domain = fs_strip_url_protocol( Freemius::get_site_url() );
75
  }
76
 
77
  $affiliate_tracking = 30;
506
  'module_version' => $fs->get_plugin_version(),
507
  );
508
  fs_require_template( 'powered-by.php', $params );
509
+ ?>
languages/blocksy-companion.pot CHANGED
@@ -7,7 +7,7 @@ msgstr ""
7
  "MIME-Version: 1.0\n"
8
  "Content-Type: text/plain; charset=UTF-8\n"
9
  "Content-Transfer-Encoding: 8bit\n"
10
- "POT-Creation-Date: 2022-06-28 16:31+0000\n"
11
  "Project-Id-Version: undefined\n"
12
  "X-Poedit-Basepath: ..\n"
13
  "X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;"
@@ -21,238 +21,301 @@ msgstr ""
21
  "x-generator: babel-plugin-wp-i18n\n"
22
 
23
  #. translators: %s: PHP version
24
- #: blocksy-companion.php:128
25
  msgid "Blocksy requires PHP version %s+, plugin is currently NOT RUNNING."
26
  msgstr ""
27
 
28
  #. translators: %s: WordPress version
29
- #: blocksy-companion.php:139
30
  msgid ""
31
  "Blocksy requires WordPress version %s+. Because you are using an earlier "
32
  "version, the plugin is currently NOT RUNNING."
33
  msgstr ""
34
 
35
  #: framework/extensions-manager.php:245,
36
- #: framework/premium/extensions/adobe-typekit/extension.php:46
 
 
37
  msgid "Adobe Typekit"
38
  msgstr ""
39
 
40
- #: framework/extensions-manager.php:246
 
41
  msgid ""
42
  "Connect your Typekit account and use your fonts in any typography option."
43
  msgstr ""
44
 
45
  #: framework/extensions-manager.php:257,
46
- #: framework/premium/extensions/code-snippets/readme.php:38
 
 
47
  msgid "Custom Code Snippets"
48
  msgstr ""
49
 
50
- #: framework/extensions-manager.php:258
 
51
  msgid ""
52
  "Add custom code snippets in your header and footer, globally and per post or "
53
  "page individually."
54
  msgstr ""
55
 
56
  #: framework/extensions-manager.php:269,
57
- #: framework/premium/extensions/custom-fonts/extension.php:145
 
 
58
  msgid "Custom Fonts"
59
  msgstr ""
60
 
61
- #: framework/extensions-manager.php:270
 
62
  msgid ""
63
  "Upload unlimited number of custom fonts or variable fonts and use them in "
64
  "any typography option."
65
  msgstr ""
66
 
67
  #: framework/extensions-manager.php:281,
68
- #: framework/premium/extensions/local-google-fonts/extension.php:188
 
 
69
  msgid "Local Google Fonts"
70
  msgstr ""
71
 
72
- #: framework/extensions-manager.php:282
 
73
  msgid "Serve Google Fonts from your own server for full GDPR compliancy."
74
  msgstr ""
75
 
76
- #: framework/extensions-manager.php:293
 
77
  msgid "Advanced Menu"
78
  msgstr ""
79
 
80
- #: framework/extensions-manager.php:294
 
81
  msgid ""
82
  "Create beautiful mega menus, assign icons add badges to menu items, and "
83
  "content blocks inside menu items."
84
  msgstr ""
85
 
86
- #: framework/extensions-manager.php:305
 
87
  msgid "Shortcuts Bar"
88
  msgstr ""
89
 
90
- #: framework/extensions-manager.php:306
 
91
  msgid ""
92
  "Transform your website into a app like by displaying a neat shortcuts bar at "
93
  "the bottom of the vieport."
94
  msgstr ""
95
 
96
- #: framework/extensions-manager.php:317
 
97
  msgid "Multiple Sidebars"
98
  msgstr ""
99
 
100
- #: framework/extensions-manager.php:318
 
101
  msgid ""
102
  "Create unlimited number of sidebars and display them conditionaly on any "
103
  "page or post."
104
  msgstr ""
105
 
106
- #: framework/extensions-manager.php:329
 
107
  msgid "White Label (Agency Package)"
108
  msgstr ""
109
 
110
- #: framework/extensions-manager.php:330
 
111
  msgid "Change the theme and companion plugin branding to your own custom one."
112
  msgstr ""
113
 
114
- #: framework/extensions-manager.php:341
 
115
  msgid "WooCommerce Extra"
116
  msgstr ""
117
 
118
- #: framework/extensions-manager.php:342
 
119
  msgid ""
120
  "Increase the conversion rate by adding a product quick view modal, a "
121
  "floating cart. Control the single product gallery/slider and the layout, add "
122
  "a wishlits page."
123
  msgstr ""
124
 
125
- #: framework/theme-integration.php:309,
 
126
  #: framework/extensions/widgets/widgets/ct-facebook/options.php:16,
127
  #: framework/extensions/widgets/widgets/ct-facebook/view.php:12,
128
- #: framework/extensions/widgets/widgets/ct-facebook/widget.php:13
 
 
 
129
  msgid "Facebook"
130
  msgstr ""
131
 
132
- #: framework/theme-integration.php:310
 
133
  msgid "Twitter"
134
  msgstr ""
135
 
136
- #: framework/theme-integration.php:311
 
137
  msgid "LinkedIn"
138
  msgstr ""
139
 
140
- #: framework/theme-integration.php:312
 
141
  msgid "Dribbble"
142
  msgstr ""
143
 
144
- #: framework/theme-integration.php:313
 
145
  msgid "Instagram"
146
  msgstr ""
147
 
148
- #: framework/theme-integration.php:314
 
149
  msgid "Pinterest"
150
  msgstr ""
151
 
152
- #: framework/theme-integration.php:315
 
153
  msgid "WordPress"
154
  msgstr ""
155
 
156
- #: framework/theme-integration.php:316
 
157
  msgid "GitHub"
158
  msgstr ""
159
 
160
- #: framework/theme-integration.php:317,
161
- #: framework/extensions/widgets/widgets/ct-contact-info/options.php:469,
162
- #: framework/extensions/widgets/widgets/ct-socials/options.php:87,
163
- #: framework/premium/features/content-blocks/options/archive.php:47
 
 
 
 
164
  msgid "Medium"
165
  msgstr ""
166
 
167
- #: framework/theme-integration.php:318
 
168
  msgid "YouTube"
169
  msgstr ""
170
 
171
- #: framework/theme-integration.php:319
 
172
  msgid "Vimeo"
173
  msgstr ""
174
 
175
- #: framework/theme-integration.php:320
 
176
  msgid "VKontakte"
177
  msgstr ""
178
 
179
- #: framework/theme-integration.php:321
 
180
  msgid "Odnoklassniki"
181
  msgstr ""
182
 
183
- #: framework/theme-integration.php:322
 
184
  msgid "TikTok"
185
  msgstr ""
186
 
187
- #: framework/theme-integration.php:394
 
188
  msgid "Companion"
189
  msgstr ""
190
 
191
- #: framework/theme-integration.php:410 static/js/screens/SiteExport.js:106
 
 
192
  msgid "PRO"
193
  msgstr ""
194
 
195
- #: framework/widgets-manager.php:75
 
196
  msgid "Default widget name"
197
  msgstr ""
198
 
199
- #: framework/widgets-manager.php:81
 
200
  msgid "Display online support infomation"
201
  msgstr ""
202
 
203
- #: framework/widgets-manager.php:144
 
204
  msgid "Widget Title"
205
  msgstr ""
206
 
207
  #. translators: %s: Link to the login page.
208
- #: framework/features/account-auth.php:92
 
209
  msgid ""
210
  "Check your email for the confirmation link, then visit the <a href=\"%s"
211
  "\">login page</a>."
212
  msgstr ""
213
 
214
  #: framework/features/account-auth.php:104,
215
- #: framework/features/account-auth.php:232
 
 
216
  msgid "Check your email"
217
  msgstr ""
218
 
219
- #: framework/features/account-auth.php:199
 
220
  msgid ""
221
  "Your account was created successfully. Your login details have been sent to "
222
  "your email address. Please visit the <a href=\"%s\">login page</a>."
223
  msgstr ""
224
 
225
- #: framework/features/account-auth.php:208
 
226
  msgid ""
227
  "Your account was created successfully and a password has been sent to your "
228
  "email address. Please visit the <a href=\"%s\">login page</a>."
229
  msgstr ""
230
 
231
- #: framework/features/account-auth.php:238
 
232
  msgid "Registration Form"
233
  msgstr ""
234
 
235
- #: framework/features/account-auth.php:239
 
236
  msgid "Register For This Site"
237
  msgstr ""
238
 
239
- #: framework/features/conditions-manager.php:479
 
240
  msgid "Entire Website"
241
  msgstr ""
242
 
243
  #: framework/features/conditions-manager.php:487,
244
  #: framework/features/conditions-manager.php:529,
245
- #: framework/features/conditions-manager.php:561
 
 
 
246
  msgid "Basic"
247
  msgstr ""
248
 
249
  #: framework/features/conditions-manager.php:491,
250
- #: framework/features/conditions-manager.php:565
 
 
251
  msgid "Singulars"
252
  msgstr ""
253
 
254
  #: framework/features/conditions-manager.php:496,
255
- #: framework/features/conditions-manager.php:533
 
 
256
  msgid "Archives"
257
  msgstr ""
258
 
@@ -260,205 +323,276 @@ msgstr ""
260
  #: framework/features/conditions-manager.php:539,
261
  #: framework/features/conditions-manager.php:571,
262
  #: framework/extensions/trending/customizer.php:4,
 
 
 
 
263
  #: framework/extensions/widgets/widgets/ct-posts/options.php:11,
264
  #: framework/extensions/widgets/widgets/ct-posts/options.php:98,
265
  #: framework/extensions/widgets/widgets/ct-posts/view.php:139,
266
  #: framework/extensions/widgets/widgets/ct-posts/widget.php:13,
267
- #: framework/premium/features/premium-header/items/search-input/options.php:4
 
 
 
 
 
268
  msgid "Posts"
269
  msgstr ""
270
 
271
  #: framework/features/conditions-manager.php:506,
272
  #: framework/features/conditions-manager.php:575,
 
 
273
  #: framework/premium/features/content-blocks/hooks-manager.php:408,
274
  #: framework/premium/features/content-blocks/hooks-manager.php:416,
275
  #: framework/premium/features/content-blocks/hooks-manager.php:424,
276
  #: framework/premium/features/content-blocks/hooks-manager.php:431,
277
  #: framework/premium/features/content-blocks/hooks-manager.php:438,
278
- #: framework/premium/features/content-blocks/hooks-manager.php:446
 
 
 
 
 
 
279
  msgid "Single Post"
280
  msgstr ""
281
 
282
  #: framework/features/conditions-manager.php:511,
283
- #: framework/features/conditions-manager.php:543
 
 
284
  msgid "All Post Archives"
285
  msgstr ""
286
 
287
  #: framework/features/conditions-manager.php:516,
288
- #: framework/features/conditions-manager.php:548
 
 
289
  msgid "Post Categories"
290
  msgstr ""
291
 
292
  #: framework/features/conditions-manager.php:521,
293
- #: framework/features/conditions-manager.php:553
 
 
294
  msgid "Post Tags"
295
  msgstr ""
296
 
297
  #: framework/features/conditions-manager.php:583,
 
298
  #: framework/extensions/widgets/widgets/ct-posts/options.php:12,
299
- #: framework/premium/features/premium-header/items/search-input/options.php:5
 
 
300
  msgid "Pages"
301
  msgstr ""
302
 
303
- #: framework/features/conditions-manager.php:587
 
304
  msgid "Single Page"
305
  msgstr ""
306
 
307
- #: framework/features/conditions-manager.php:614
 
308
  msgid "%s Single"
309
  msgstr ""
310
 
311
- #: framework/features/conditions-manager.php:624
 
312
  msgid "%s Archive"
313
  msgstr ""
314
 
315
- #: framework/features/conditions-manager.php:637
 
316
  msgid "%s %s Taxonomy"
317
  msgstr ""
318
 
319
- #: framework/features/conditions-manager.php:652
 
320
  msgid "Post ID"
321
  msgstr ""
322
 
323
- #: framework/features/conditions-manager.php:657
 
324
  msgid "Page ID"
325
  msgstr ""
326
 
327
- #: framework/features/conditions-manager.php:662
 
328
  #: static/js/options/ConditionsManager/PostIdPicker.js:76
329
  msgid "Custom Post Type ID"
330
  msgstr ""
331
 
332
- #: framework/features/conditions-manager.php:667
 
333
  msgid "Post with Taxonomy ID"
334
  msgstr ""
335
 
336
- #: framework/features/conditions-manager.php:672
 
337
  msgid "Taxonomy ID"
338
  msgstr ""
339
 
340
- #: framework/features/conditions-manager.php:676
 
341
  msgid "Specific"
342
  msgstr ""
343
 
344
- #: framework/features/conditions-manager.php:682
 
345
  msgid "Other Pages"
346
  msgstr ""
347
 
348
- #: framework/features/conditions-manager.php:686
 
349
  msgid "404"
350
  msgstr ""
351
 
352
  #: framework/features/conditions-manager.php:691,
 
353
  #: framework/premium/features/premium-header/items/search-input/options.php:45,
354
- #: framework/premium/features/premium-header/items/search-input/view.php:83
 
 
355
  msgid "Search"
356
  msgstr ""
357
 
358
- #: framework/features/conditions-manager.php:696
 
359
  msgid "Blog"
360
  msgstr ""
361
 
362
- #: framework/features/conditions-manager.php:701
 
363
  msgid "Front Page"
364
  msgstr ""
365
 
366
- #: framework/features/conditions-manager.php:706
 
367
  msgid "Privacy Policy Page"
368
  msgstr ""
369
 
370
- #: framework/features/conditions-manager.php:718
 
371
  msgid "Author"
372
  msgstr ""
373
 
374
- #: framework/features/conditions-manager.php:728
 
375
  msgid "WooCommerce"
376
  msgstr ""
377
 
378
- #: framework/features/conditions-manager.php:732
 
379
  msgid "Shop Home"
380
  msgstr ""
381
 
382
- #: framework/features/conditions-manager.php:737
 
383
  msgid "Single Product"
384
  msgstr ""
385
 
386
- #: framework/features/conditions-manager.php:742
 
387
  msgid "Product Archives"
388
  msgstr ""
389
 
390
- #: framework/features/conditions-manager.php:747
 
391
  msgid "Product Categories"
392
  msgstr ""
393
 
394
- #: framework/features/conditions-manager.php:752
 
395
  msgid "Product Tags"
396
  msgstr ""
397
 
398
- #: framework/features/conditions-manager.php:760
 
399
  msgid "Custom Post Types"
400
  msgstr ""
401
 
402
- #: framework/features/conditions-manager.php:769
 
403
  msgid "User Auth"
404
  msgstr ""
405
 
406
- #: framework/features/conditions-manager.php:773
 
407
  msgid "User Logged In"
408
  msgstr ""
409
 
410
- #: framework/features/conditions-manager.php:778
 
411
  msgid "User Logged Out"
412
  msgstr ""
413
 
414
- #: framework/features/conditions-manager.php:784
 
415
  msgid "User Roles"
416
  msgstr ""
417
 
418
  #: framework/features/conditions-manager.php:789,
 
419
  #: framework/premium/features/content-blocks/options/404.php:19,
420
  #: framework/premium/features/content-blocks/options/header.php:19,
421
  #: framework/premium/features/content-blocks/options/hook.php:24,
422
- #: framework/premium/features/content-blocks/options/popup.php:25
 
 
 
 
423
  msgid "Other"
424
  msgstr ""
425
 
426
- #: framework/features/conditions-manager.php:793
 
427
  msgid "Post Author"
428
  msgstr ""
429
 
430
  #: framework/features/conditions-manager.php:805,
431
- #: framework/premium/features/premium-header/items/language-switcher/config.php:14
 
 
432
  msgid "Languages"
433
  msgstr ""
434
 
435
- #: framework/features/conditions-manager.php:809
 
436
  msgid "Current Language"
437
  msgstr ""
438
 
439
- #: framework/features/conditions-manager.php:817
 
440
  msgid "bbPress"
441
  msgstr ""
442
 
443
- #: framework/features/conditions-manager.php:821
 
444
  msgid "Profile"
445
  msgstr ""
446
 
447
- #: framework/features/conditions-manager.php:833
 
448
  #: static/js/options/ConditionsManager.js:104
449
  msgid "Include"
450
  msgstr ""
451
 
452
- #: framework/features/conditions-manager.php:833
 
453
  #: static/js/options/ConditionsManager.js:105
454
  msgid "Exclude"
455
  msgstr ""
456
 
457
- #: framework/features/conditions-manager.php:886
 
458
  msgid "Language"
459
  msgstr ""
460
 
461
- #: framework/features/demo-install.php:233
 
462
  msgid ""
463
  "Your PHP installation doesn't have support for XML. Please install the "
464
  "<i>xml</i> or <i>simplexml</i> PHP extension in order to be able to install "
@@ -466,81 +600,100 @@ msgid ""
466
  "in doing so."
467
  msgstr ""
468
 
469
- #: framework/features/dynamic-css.php:46
 
470
  msgid "Dynamic CSS Output"
471
  msgstr ""
472
 
473
- #: framework/features/dynamic-css.php:50
 
474
  msgid ""
475
  "The strategy of outputting the dynamic CSS. File - all the CSS code will be "
476
  "placed in a static file, otherwise it will be placed inline in head."
477
  msgstr ""
478
 
479
- #: framework/features/dynamic-css.php:52
 
480
  msgid "File"
481
  msgstr ""
482
 
483
  #: framework/features/dynamic-css.php:53,
484
- #: framework/premium/features/premium-header/items/language-switcher/options.php:32
 
 
485
  msgid "Inline"
486
  msgstr ""
487
 
488
- #: framework/features/google-analytics.php:69
 
489
  msgid "Google Analytics v3"
490
  msgstr ""
491
 
492
- #: framework/features/google-analytics.php:74
 
493
  msgid "Link your Google Analytics 3 tracking ID."
494
  msgstr ""
495
 
496
- #: framework/features/google-analytics.php:80
 
497
  msgid "Google Analytics v4"
498
  msgstr ""
499
 
500
- #: framework/features/google-analytics.php:86
 
501
  msgid ""
502
  "Link your Google Analytics 4 tracking ID. More info and instructions can be "
503
  "found %shere%s."
504
  msgstr ""
505
 
506
- #: framework/features/google-analytics.php:98
 
507
  msgid "IP Anonymization"
508
  msgstr ""
509
 
510
- #: framework/features/google-analytics.php:102
 
511
  msgid ""
512
  "Enable Google Analytics IP Anonymization for enhanced privacy. More info and "
513
  "instructions can be found %shere%s."
514
  msgstr ""
515
 
516
- #: framework/features/opengraph-meta-data.php:17
 
517
  msgid "OpenGraph Meta Data"
518
  msgstr ""
519
 
520
- #: framework/features/opengraph-meta-data.php:20
 
521
  msgid "Enable the OpenGraph rich meta data features for your website."
522
  msgstr ""
523
 
524
- #: framework/features/opengraph-meta-data.php:29
 
525
  msgid "Facebook Page URL"
526
  msgstr ""
527
 
528
- #: framework/features/opengraph-meta-data.php:36
 
529
  msgid "Facebook App ID"
530
  msgstr ""
531
 
532
- #: framework/features/opengraph-meta-data.php:43
 
533
  msgid "Twitter Username"
534
  msgstr ""
535
 
536
  #. translators: This is a brand name. Preferably to not be translated
537
  #: framework/extensions/cookies-consent/config.php:5,
538
- #: framework/extensions/cookies-consent/customizer.php:5
 
 
539
  msgctxt "Extension Brand Name"
540
  msgid "Cookies Consent"
541
  msgstr ""
542
 
543
- #: framework/extensions/cookies-consent/config.php:6
 
544
  msgid ""
545
  "Display a cookie acceptance box in order to comply with the privacy "
546
  "regulations in your country."
@@ -548,23 +701,42 @@ msgstr ""
548
 
549
  #: framework/extensions/cookies-consent/customizer.php:15,
550
  #: framework/extensions/newsletter-subscribe/customizer.php:12,
551
- #: framework/extensions/product-reviews/extension.php:291,
552
  #: framework/extensions/product-reviews/metabox.php:6,
553
  #: framework/extensions/trending/customizer.php:110,
554
  #: framework/premium/extensions/mega-menu/options.php:6,
555
  #: framework/premium/extensions/shortcuts/customizer.php:534,
556
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:11,
557
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:164,
 
 
 
 
 
558
  #: framework/features/header/items/account/options.php:68,
559
  #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:23,
560
  #: framework/premium/features/content-blocks/options/popup.php:30,
 
 
 
 
561
  #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:35,
562
  #: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:19,
563
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:5,
564
  #: framework/premium/features/premium-header/items/contacts/options.php:5,
565
  #: framework/premium/features/premium-header/items/language-switcher/options.php:21,
566
  #: framework/premium/features/premium-header/items/language-switcher/options.php:347,
567
- #: framework/premium/features/premium-header/items/search-input/options.php:37
 
 
 
 
 
 
 
 
 
 
568
  #: framework/premium/extensions/white-label/dashboard-static/js/EditSettings.js:128
569
  msgid "General"
570
  msgstr ""
@@ -573,10 +745,18 @@ msgstr ""
573
  #: framework/premium/extensions/shortcuts/customizer.php:546,
574
  #: framework/premium/extensions/woocommerce-extra/extension.php:73,
575
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:186,
 
576
  #: framework/features/header/items/account/options.php:217,
577
  #: framework/features/header/items/account/options.php:459,
 
 
 
578
  #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:48,
579
- #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:56
 
 
 
 
580
  msgid "Type 1"
581
  msgstr ""
582
 
@@ -584,46 +764,63 @@ msgstr ""
584
  #: framework/premium/extensions/shortcuts/customizer.php:551,
585
  #: framework/premium/extensions/woocommerce-extra/extension.php:78,
586
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:191,
 
587
  #: framework/features/header/items/account/options.php:222,
588
  #: framework/features/header/items/account/options.php:464,
 
 
 
589
  #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:53,
590
- #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:61
 
 
 
 
591
  msgid "Type 2"
592
  msgstr ""
593
 
594
- #: framework/extensions/cookies-consent/customizer.php:40
 
595
  msgid "Cookie period"
596
  msgstr ""
597
 
598
- #: framework/extensions/cookies-consent/customizer.php:48
 
599
  msgid "One hour"
600
  msgstr ""
601
 
602
- #: framework/extensions/cookies-consent/customizer.php:49
 
603
  msgid "One day"
604
  msgstr ""
605
 
606
- #: framework/extensions/cookies-consent/customizer.php:50
 
607
  msgid "One week"
608
  msgstr ""
609
 
610
- #: framework/extensions/cookies-consent/customizer.php:51
 
611
  msgid "One month"
612
  msgstr ""
613
 
614
- #: framework/extensions/cookies-consent/customizer.php:52
 
615
  msgid "Three months"
616
  msgstr ""
617
 
618
- #: framework/extensions/cookies-consent/customizer.php:53
 
619
  msgid "Six months"
620
  msgstr ""
621
 
622
- #: framework/extensions/cookies-consent/customizer.php:54
 
623
  msgid "One year"
624
  msgstr ""
625
 
626
- #: framework/extensions/cookies-consent/customizer.php:55
 
627
  msgid "Forever"
628
  msgstr ""
629
 
@@ -632,83 +829,134 @@ msgstr ""
632
  #: framework/premium/features/content-blocks/hooks-manager.php:243,
633
  #: framework/premium/features/content-blocks/hooks-manager.php:251,
634
  #: framework/premium/features/content-blocks/hooks-manager.php:259,
635
- #: framework/extensions/widgets/widgets/ct-contact-info/options.php:78,
636
- #: framework/extensions/widgets/widgets/ct-contact-info/options.php:136,
637
- #: framework/extensions/widgets/widgets/ct-contact-info/options.php:192,
638
- #: framework/extensions/widgets/widgets/ct-contact-info/options.php:248,
639
- #: framework/extensions/widgets/widgets/ct-contact-info/options.php:304,
640
- #: framework/extensions/widgets/widgets/ct-contact-info/options.php:360,
641
- #: framework/extensions/widgets/widgets/ct-contact-info/options.php:416,
 
 
 
 
 
642
  #: framework/premium/features/premium-header/items/contacts/options.php:52,
643
  #: framework/premium/features/premium-header/items/contacts/options.php:88,
644
  #: framework/premium/features/premium-header/items/contacts/options.php:124,
645
  #: framework/premium/features/premium-header/items/contacts/options.php:160,
646
  #: framework/premium/features/premium-header/items/contacts/options.php:196,
647
  #: framework/premium/features/premium-header/items/contacts/options.php:232,
648
- #: framework/premium/features/premium-header/items/contacts/options.php:268
 
 
 
 
 
 
 
 
 
 
 
 
 
 
649
  msgid "Content"
650
  msgstr ""
651
 
652
  #: framework/extensions/cookies-consent/customizer.php:64,
653
- #: framework/extensions/cookies-consent/helpers.php:30
 
 
654
  msgid ""
655
  "We use cookies to ensure that we give you the best experience on our website."
656
  msgstr ""
657
 
658
- #: framework/extensions/cookies-consent/customizer.php:76
 
659
  msgid "Accept Button text"
660
  msgstr ""
661
 
662
  #: framework/extensions/cookies-consent/customizer.php:80,
663
- #: framework/extensions/cookies-consent/helpers.php:33
 
 
664
  msgid "Accept"
665
  msgstr ""
666
 
667
- #: framework/extensions/cookies-consent/customizer.php:85
 
668
  msgid "Decline Button text"
669
  msgstr ""
670
 
671
  #: framework/extensions/cookies-consent/customizer.php:88,
672
- #: framework/extensions/cookies-consent/helpers.php:34
 
 
673
  msgid "Decline"
674
  msgstr ""
675
 
676
- #: framework/extensions/cookies-consent/customizer.php:98
 
677
  msgid "Maximum Width"
678
  msgstr ""
679
 
680
- #: framework/extensions/cookies-consent/customizer.php:119
 
681
  msgid "I accept the %sPrivacy Policy%s*"
682
  msgstr ""
683
 
684
- #: framework/extensions/cookies-consent/customizer.php:123
 
685
  msgid "This text will appear under each comment form and subscribe form."
686
  msgstr ""
687
 
688
  #: framework/extensions/cookies-consent/customizer.php:142,
689
  #: framework/extensions/newsletter-subscribe/customizer.php:147,
690
- #: framework/extensions/product-reviews/extension.php:331,
691
  #: framework/extensions/trending/customizer.php:333,
692
  #: framework/premium/extensions/mega-menu/options.php:516,
693
  #: framework/premium/extensions/shortcuts/customizer.php:778,
694
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:81,
695
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:31,
696
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:279,
 
 
 
 
697
  #: framework/features/header/items/account/options.php:602,
698
  #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:126,
699
  #: framework/premium/features/content-blocks/options/popup.php:361,
 
 
 
 
 
700
  #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:167,
701
  #: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:66,
702
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:151,
703
  #: framework/premium/features/premium-header/items/contacts/options.php:404,
704
  #: framework/premium/features/premium-header/items/language-switcher/options.php:186,
705
  #: framework/premium/features/premium-header/items/language-switcher/options.php:371,
706
- #: framework/premium/features/premium-header/items/search-input/options.php:188
 
 
 
 
 
 
 
 
 
 
707
  msgid "Design"
708
  msgstr ""
709
 
710
  #: framework/extensions/cookies-consent/customizer.php:147,
711
- #: framework/premium/extensions/mega-menu/options.php:605
 
 
712
  msgid "Text Color"
713
  msgstr ""
714
 
@@ -735,6 +983,19 @@ msgstr ""
735
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:369,
736
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:403,
737
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:442,
 
 
 
 
 
 
 
 
 
 
 
 
 
738
  #: framework/features/header/items/account/options.php:666,
739
  #: framework/features/header/items/account/options.php:698,
740
  #: framework/features/header/items/account/options.php:728,
@@ -752,6 +1013,16 @@ msgstr ""
752
  #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:191,
753
  #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:235,
754
  #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:311,
 
 
 
 
 
 
 
 
 
 
755
  #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:201,
756
  #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:237,
757
  #: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:84,
@@ -789,7 +1060,62 @@ msgstr ""
789
  #: framework/premium/features/premium-header/items/search-input/options.php:666,
790
  #: framework/premium/features/premium-header/items/search-input/options.php:696,
791
  #: framework/premium/features/premium-header/items/search-input/options.php:783,
792
- #: framework/premium/features/premium-header/items/search-input/options.php:811
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
793
  msgid "Initial"
794
  msgstr ""
795
 
@@ -807,6 +1133,14 @@ msgstr ""
807
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:374,
808
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:409,
809
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:448,
 
 
 
 
 
 
 
 
810
  #: framework/features/header/items/account/options.php:672,
811
  #: framework/features/header/items/account/options.php:703,
812
  #: framework/features/header/items/account/options.php:733,
@@ -817,6 +1151,12 @@ msgstr ""
817
  #: framework/features/header/items/account/options.php:1133,
818
  #: framework/features/header/items/account/options.php:1169,
819
  #: framework/features/header/items/account/options.php:1208,
 
 
 
 
 
 
820
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:229,
821
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:259,
822
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:288,
@@ -833,7 +1173,34 @@ msgstr ""
833
  #: framework/premium/features/premium-header/items/dark-mode-switcher/options.php:111,
834
  #: framework/premium/features/premium-header/items/dark-mode-switcher/options.php:140,
835
  #: framework/premium/features/premium-header/items/language-switcher/options.php:404,
836
- #: framework/premium/features/premium-header/items/search-input/options.php:788
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
837
  msgid "Hover"
838
  msgstr ""
839
 
@@ -842,10 +1209,19 @@ msgstr ""
842
  #: framework/extensions/cookies-consent/customizer.php:299,
843
  #: framework/premium/extensions/mega-menu/options.php:816,
844
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:425,
 
 
 
845
  #: framework/features/header/items/account/options.php:1185,
846
  #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:173,
 
 
847
  #: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:92,
848
- #: framework/premium/features/premium-header/items/language-switcher/options.php:412
 
 
 
 
849
  msgid "Background Color"
850
  msgstr ""
851
 
@@ -855,7 +1231,13 @@ msgstr ""
855
  #: framework/premium/extensions/mega-menu/options.php:796,
856
  #: framework/premium/extensions/shortcuts/customizer.php:794,
857
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:86,
 
 
 
858
  #: framework/features/header/items/account/options.php:913,
 
 
 
859
  #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:184,
860
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:206,
861
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:237,
@@ -868,11 +1250,26 @@ msgstr ""
868
  #: framework/premium/features/premium-header/items/language-switcher/options.php:232,
869
  #: framework/premium/features/premium-header/items/language-switcher/options.php:262,
870
  #: framework/premium/features/premium-header/items/language-switcher/options.php:291,
871
- #: framework/premium/features/premium-header/items/language-switcher/options.php:382
 
 
 
 
 
 
 
 
 
 
 
 
 
 
872
  msgid "Font Color"
873
  msgstr ""
874
 
875
- #: framework/extensions/cookies-consent/helpers.php:79
 
876
  msgid "I accept the %sPrivacy Policy%s"
877
  msgstr ""
878
 
@@ -880,77 +1277,116 @@ msgstr ""
880
  #: framework/extensions/newsletter-subscribe/readme.php:1,
881
  #: framework/premium/extensions/code-snippets/readme.php:1,
882
  #: framework/premium/extensions/post-types-extra/readme.php:1,
883
- #: framework/premium/extensions/woocommerce-extra/readme.php:1
 
 
 
 
 
884
  msgid "Instructions"
885
  msgstr ""
886
 
887
- #: framework/extensions/cookies-consent/readme.php:4
 
888
  msgid ""
889
  "After installing and activating the Cookies Consent extension you will be "
890
  "able to configure it from this location:"
891
  msgstr ""
892
 
893
- #: framework/extensions/cookies-consent/readme.php:9
 
894
  msgid "Customizer"
895
  msgstr ""
896
 
897
- #: framework/extensions/cookies-consent/readme.php:13
 
898
  msgid "Navigate to %s and customize the notification to meet your needs."
899
  msgstr ""
900
 
901
- #: framework/extensions/cookies-consent/readme.php:16
 
902
  msgid "Customizer ➝ Cookie Consent"
903
  msgstr ""
904
 
905
  #. translators: This is a brand name. Preferably to not be translated
906
- #: framework/extensions/newsletter-subscribe/config.php:5
 
907
  msgctxt "Extension Brand Name"
908
  msgid "Newsletter Subscribe"
909
  msgstr ""
910
 
911
- #: framework/extensions/newsletter-subscribe/config.php:6
 
912
  msgid ""
913
  "Easily capture new leads for your newsletter with the help of a widget, "
914
  "shortcode or even a block inserted on your pages or posts."
915
  msgstr ""
916
 
917
- #: framework/extensions/newsletter-subscribe/customizer.php:4
 
918
  msgid "Subscribe Form"
919
  msgstr ""
920
 
921
  #: framework/extensions/newsletter-subscribe/customizer.php:18,
922
  #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:14,
 
923
  #: framework/extensions/widgets/widgets/ct-advertisement/options.php:15,
924
- #: framework/extensions/widgets/widgets/ct-contact-info/options.php:15,
925
- #: framework/extensions/widgets/widgets/ct-contact-info/options.php:71,
926
- #: framework/extensions/widgets/widgets/ct-contact-info/options.php:129,
927
- #: framework/extensions/widgets/widgets/ct-contact-info/options.php:185,
928
- #: framework/extensions/widgets/widgets/ct-contact-info/options.php:241,
929
- #: framework/extensions/widgets/widgets/ct-contact-info/options.php:297,
930
- #: framework/extensions/widgets/widgets/ct-contact-info/options.php:353,
931
- #: framework/extensions/widgets/widgets/ct-contact-info/options.php:409,
932
  #: framework/extensions/widgets/widgets/ct-facebook/options.php:13,
933
  #: framework/extensions/widgets/widgets/ct-posts/options.php:95,
934
  #: framework/extensions/widgets/widgets/ct-quote/options.php:15,
935
  #: framework/extensions/widgets/widgets/ct-socials/options.php:15,
 
936
  #: framework/premium/features/premium-header/items/contacts/options.php:45,
937
  #: framework/premium/features/premium-header/items/contacts/options.php:81,
938
  #: framework/premium/features/premium-header/items/contacts/options.php:117,
939
  #: framework/premium/features/premium-header/items/contacts/options.php:153,
940
  #: framework/premium/features/premium-header/items/contacts/options.php:189,
941
  #: framework/premium/features/premium-header/items/contacts/options.php:225,
942
- #: framework/premium/features/premium-header/items/contacts/options.php:261
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
943
  msgid "Title"
944
  msgstr ""
945
 
946
  #: framework/extensions/newsletter-subscribe/customizer.php:21,
947
  #: framework/extensions/newsletter-subscribe/helpers.php:42,
948
- #: framework/extensions/newsletter-subscribe/helpers.php:96
 
 
 
949
  msgid "Newsletter Updates"
950
  msgstr ""
951
 
952
  #: framework/extensions/newsletter-subscribe/customizer.php:27,
953
- #: framework/extensions/widgets/widgets/ct-posts/widget.php:14
 
 
954
  msgid "Description"
955
  msgstr ""
956
 
@@ -958,12 +1394,19 @@ msgstr ""
958
  #: framework/extensions/newsletter-subscribe/helpers.php:45,
959
  #: framework/extensions/newsletter-subscribe/helpers.php:97,
960
  #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:33,
961
- #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/view.php:16
 
 
 
 
 
962
  msgid "Enter your email address below to subscribe to our newsletter"
963
  msgstr ""
964
 
965
  #: framework/extensions/newsletter-subscribe/customizer.php:42,
966
- #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:46
 
 
967
  msgid "List Source"
968
  msgstr ""
969
 
@@ -972,9 +1415,17 @@ msgstr ""
972
  #: framework/features/header/header-options.php:71,
973
  #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:53,
974
  #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:120,
 
 
 
975
  #: framework/extensions/widgets/widgets/ct-posts/options.php:173,
976
  #: framework/extensions/widgets/widgets/ct-posts/options.php:198,
977
- #: framework/premium/features/content-blocks/options/hook.php:289
 
 
 
 
 
978
  msgid "Default"
979
  msgstr ""
980
 
@@ -982,24 +1433,36 @@ msgstr ""
982
  #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:54,
983
  #: framework/premium/extensions/shortcuts/customizer.php:250,
984
  #: framework/premium/extensions/shortcuts/customizer.php:276,
 
985
  #: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:371,
986
- #: framework/premium/features/content-blocks/options/archive.php:48
 
 
 
 
 
987
  msgid "Custom"
988
  msgstr ""
989
 
990
  #: framework/extensions/newsletter-subscribe/customizer.php:62,
991
- #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:64
 
 
992
  #: framework/extensions/newsletter-subscribe/dashboard-static/js/EditCredentials.js:194
993
  msgid "List ID"
994
  msgstr ""
995
 
996
  #: framework/extensions/newsletter-subscribe/customizer.php:80,
997
- #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:76
 
 
998
  msgid "Name Field"
999
  msgstr ""
1000
 
1001
  #: framework/extensions/newsletter-subscribe/customizer.php:93,
1002
- #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:88
 
 
1003
  msgid "Name Label"
1004
  msgstr ""
1005
 
@@ -1008,12 +1471,20 @@ msgstr ""
1008
  #: framework/extensions/newsletter-subscribe/helpers.php:57,
1009
  #: framework/extensions/newsletter-subscribe/helpers.php:108,
1010
  #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:90,
1011
- #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/view.php:69
 
 
 
 
 
 
1012
  msgid "Your name"
1013
  msgstr ""
1014
 
1015
  #: framework/extensions/newsletter-subscribe/customizer.php:105,
1016
- #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:99
 
 
1017
  msgid "Mail Label"
1018
  msgstr ""
1019
 
@@ -1022,12 +1493,20 @@ msgstr ""
1022
  #: framework/extensions/newsletter-subscribe/helpers.php:61,
1023
  #: framework/extensions/newsletter-subscribe/helpers.php:109,
1024
  #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:101,
1025
- #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/view.php:70
 
 
 
 
 
 
1026
  msgid "Your email"
1027
  msgstr ""
1028
 
1029
  #: framework/extensions/newsletter-subscribe/customizer.php:114,
1030
- #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:107
 
 
1031
  msgid "Button Label"
1032
  msgstr ""
1033
 
@@ -1036,7 +1515,13 @@ msgstr ""
1036
  #: framework/extensions/newsletter-subscribe/helpers.php:52,
1037
  #: framework/extensions/newsletter-subscribe/helpers.php:101,
1038
  #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:109,
1039
- #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/view.php:19
 
 
 
 
 
 
1040
  msgid "Subscribe"
1041
  msgstr ""
1042
 
@@ -1050,12 +1535,28 @@ msgstr ""
1050
  #: framework/premium/extensions/shortcuts/customizer.php:427,
1051
  #: framework/premium/extensions/shortcuts/customizer.php:483,
1052
  #: framework/premium/extensions/shortcuts/customizer.php:742,
 
1053
  #: framework/premium/features/content-blocks/options/404.php:146,
1054
  #: framework/premium/features/content-blocks/options/header.php:166,
1055
  #: framework/premium/features/content-blocks/options/hook.php:343,
1056
  #: framework/premium/features/content-blocks/options/popup.php:339,
 
 
 
 
 
 
 
 
 
1057
  #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:144,
1058
- #: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:43
 
 
 
 
 
 
1059
  msgid "Visibility"
1060
  msgstr ""
1061
 
@@ -1078,15 +1579,43 @@ msgstr ""
1078
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:47,
1079
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:71,
1080
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:219,
 
 
 
 
1081
  #: framework/features/header/items/account/options.php:280,
1082
  #: framework/features/header/items/account/options.php:522,
1083
  #: framework/premium/features/content-blocks/options/404.php:157,
1084
  #: framework/premium/features/content-blocks/options/header.php:177,
1085
  #: framework/premium/features/content-blocks/options/hook.php:354,
1086
  #: framework/premium/features/content-blocks/options/popup.php:350,
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1087
  #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:157,
1088
  #: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:56,
1089
- #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:105
 
 
 
 
 
 
 
 
 
1090
  msgid "Desktop"
1091
  msgstr ""
1092
 
@@ -1107,6 +1636,8 @@ msgstr ""
1107
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:48,
1108
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:72,
1109
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:220,
 
 
1110
  #: framework/features/header/items/account/options.php:281,
1111
  #: framework/features/header/items/account/options.php:523,
1112
  #: framework/features/header/items/account/options.php:1250,
@@ -1114,9 +1645,34 @@ msgstr ""
1114
  #: framework/premium/features/content-blocks/options/header.php:178,
1115
  #: framework/premium/features/content-blocks/options/hook.php:355,
1116
  #: framework/premium/features/content-blocks/options/popup.php:351,
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1117
  #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:158,
1118
  #: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:57,
1119
- #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:106
 
 
 
 
 
 
 
 
 
 
1120
  msgid "Tablet"
1121
  msgstr ""
1122
 
@@ -1139,7 +1695,11 @@ msgstr ""
1139
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:49,
1140
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:73,
1141
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:221,
1142
- #: framework/extensions/widgets/widgets/ct-contact-info/options.php:180,
 
 
 
 
1143
  #: framework/features/header/items/account/options.php:282,
1144
  #: framework/features/header/items/account/options.php:524,
1145
  #: framework/features/header/items/account/options.php:1251,
@@ -1147,33 +1707,71 @@ msgstr ""
1147
  #: framework/premium/features/content-blocks/options/header.php:179,
1148
  #: framework/premium/features/content-blocks/options/hook.php:356,
1149
  #: framework/premium/features/content-blocks/options/popup.php:352,
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1150
  #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:159,
1151
  #: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:58,
1152
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:107,
1153
- #: framework/premium/features/premium-header/items/contacts/options.php:113
 
 
 
 
 
 
 
 
 
 
 
 
1154
  msgid "Mobile"
1155
  msgstr ""
1156
 
1157
- #: framework/extensions/newsletter-subscribe/customizer.php:152
 
1158
  msgid "Title Color"
1159
  msgstr ""
1160
 
1161
- #: framework/extensions/newsletter-subscribe/customizer.php:173
 
1162
  msgid "Description Color"
1163
  msgstr ""
1164
 
1165
  #: framework/extensions/newsletter-subscribe/customizer.php:204,
 
1166
  #: framework/features/header/items/account/options.php:945,
1167
  #: framework/premium/features/premium-header/items/search-input/options.php:194,
1168
  #: framework/premium/features/premium-header/items/search-input/options.php:223,
1169
  #: framework/premium/features/premium-header/items/search-input/options.php:255,
1170
- #: framework/premium/features/premium-header/items/search-input/options.php:285
 
 
 
 
 
1171
  msgid "Input Font Color"
1172
  msgstr ""
1173
 
1174
  #: framework/extensions/newsletter-subscribe/customizer.php:228,
1175
  #: framework/extensions/newsletter-subscribe/customizer.php:259,
1176
  #: framework/extensions/newsletter-subscribe/customizer.php:295,
 
 
 
1177
  #: framework/features/header/items/account/options.php:967,
1178
  #: framework/features/header/items/account/options.php:997,
1179
  #: framework/features/header/items/account/options.php:1033,
@@ -1188,766 +1786,1007 @@ msgstr ""
1188
  #: framework/premium/features/premium-header/items/search-input/options.php:568,
1189
  #: framework/premium/features/premium-header/items/search-input/options.php:641,
1190
  #: framework/premium/features/premium-header/items/search-input/options.php:671,
1191
- #: framework/premium/features/premium-header/items/search-input/options.php:701
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1192
  msgid "Focus"
1193
  msgstr ""
1194
 
1195
  #: framework/extensions/newsletter-subscribe/customizer.php:236,
 
1196
  #: framework/features/header/items/account/options.php:975,
1197
  #: framework/premium/features/premium-header/items/search-input/options.php:454,
1198
  #: framework/premium/features/premium-header/items/search-input/options.php:483,
1199
  #: framework/premium/features/premium-header/items/search-input/options.php:515,
1200
- #: framework/premium/features/premium-header/items/search-input/options.php:545
 
 
 
 
 
1201
  msgid "Input Border Color"
1202
  msgstr ""
1203
 
1204
  #: framework/extensions/newsletter-subscribe/customizer.php:273,
 
1205
  #: framework/features/header/items/account/options.php:1011,
1206
  #: framework/premium/features/premium-header/items/search-input/options.php:590,
1207
  #: framework/premium/features/premium-header/items/search-input/options.php:618,
1208
  #: framework/premium/features/premium-header/items/search-input/options.php:648,
1209
- #: framework/premium/features/premium-header/items/search-input/options.php:678
 
 
 
 
 
1210
  msgid "Input Background Color"
1211
  msgstr ""
1212
 
1213
  #: framework/extensions/newsletter-subscribe/customizer.php:305,
1214
- #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:220
 
 
1215
  msgid "Button Color"
1216
  msgstr ""
1217
 
1218
  #: framework/extensions/newsletter-subscribe/customizer.php:334,
1219
  #: framework/extensions/trending/customizer.php:380,
1220
- #: framework/premium/extensions/shortcuts/customizer.php:953
 
 
 
1221
  msgid "Container Background"
1222
  msgstr ""
1223
 
1224
- #: framework/extensions/newsletter-subscribe/customizer.php:350
 
1225
  msgid "Container Border"
1226
  msgstr ""
1227
 
1228
  #: framework/extensions/newsletter-subscribe/customizer.php:385,
1229
- #: framework/extensions/trending/customizer.php:396
 
 
1230
  msgid "Container Inner Spacing"
1231
  msgstr ""
1232
 
1233
  #: framework/extensions/newsletter-subscribe/customizer.php:400,
1234
- #: framework/premium/extensions/shortcuts/customizer.php:974
 
 
1235
  msgid "Container Border Radius"
1236
  msgstr ""
1237
 
1238
- #: framework/extensions/newsletter-subscribe/extension.php:128
 
1239
  msgid "Disable Subscribe Form"
1240
  msgstr ""
1241
 
1242
  #: framework/extensions/newsletter-subscribe/helpers.php:163,
1243
- #: framework/features/header/items/account/options.php:330
1244
- #: static/js/screens/SiteExport.js:85
1245
- msgid "Name"
1246
  msgstr ""
1247
 
1248
  #: framework/extensions/newsletter-subscribe/helpers.php:166,
1249
- #: framework/features/header/modal/register.php:36,
1250
- #: framework/premium/extensions/shortcuts/customizer.php:130,
1251
- #: framework/premium/extensions/shortcuts/customizer.php:153,
1252
- #: framework/extensions/widgets/widgets/ct-contact-info/options.php:348,
1253
- #: framework/premium/extensions/shortcuts/views/bar.php:45,
1254
- #: framework/premium/features/premium-header/items/contacts/options.php:221
1255
- msgid "Email"
1256
  msgstr ""
1257
 
1258
- #: framework/extensions/newsletter-subscribe/readme.php:4
 
1259
  msgid ""
1260
  "After installing and activating the Newsletter Subscribe\n"
1261
  " extension you will have two possibilities to show your subscribe form:"
1262
  msgstr ""
1263
 
1264
- #: framework/extensions/newsletter-subscribe/readme.php:10
 
1265
  msgid "Widget"
1266
  msgstr ""
1267
 
1268
- #: framework/extensions/newsletter-subscribe/readme.php:14
 
1269
  msgid "Navigate to %s and place the widget in any widget area you want."
1270
  msgstr ""
1271
 
1272
- #: framework/extensions/newsletter-subscribe/readme.php:17
 
1273
  msgid "Appearance ➝ Widgets"
1274
  msgstr ""
1275
 
1276
- #: framework/extensions/newsletter-subscribe/readme.php:25
 
1277
  msgid "Single Page Block"
1278
  msgstr ""
1279
 
1280
- #: framework/extensions/newsletter-subscribe/readme.php:29
 
1281
  msgid "Navigate to %s and customize the form and more."
1282
  msgstr ""
1283
 
1284
- #: framework/extensions/newsletter-subscribe/readme.php:32
 
1285
  msgid "Customizer ➝ Single Posts"
1286
  msgstr ""
1287
 
1288
  #. translators: This is a brand name. Preferably to not be translated
1289
- #: framework/extensions/product-reviews/config.php:5
 
1290
  msgctxt "Extension Brand Name"
1291
  msgid "Product Reviews"
1292
  msgstr ""
1293
 
1294
- #: framework/extensions/product-reviews/config.php:6
 
1295
  msgid ""
1296
  "This extension lets you easily create an affiliate marketing type of website "
1297
  "by giving you options to create a personalized product review and use your "
1298
  "affiliate links to direct your readers to the purchase page."
1299
  msgstr ""
1300
 
1301
- #: framework/extensions/product-reviews/extension.php:227,
1302
- #: framework/extensions/product-reviews/views/single-top.php:139
1303
- msgid "Overall Score"
 
 
1304
  msgstr ""
1305
 
1306
- #: framework/extensions/product-reviews/extension.php:285
1307
- msgid "Review Summary"
 
 
 
 
 
 
 
 
 
1308
  msgstr ""
1309
 
1310
- #: framework/extensions/product-reviews/extension.php:296
1311
- msgid "Scores Box Width"
 
 
 
1312
  msgstr ""
1313
 
1314
- #: framework/extensions/product-reviews/extension.php:306
1315
- msgid "Read More Button"
 
 
 
1316
  msgstr ""
1317
 
1318
- #: framework/extensions/product-reviews/extension.php:317
1319
- msgid "Buy Now Button"
 
1320
  msgstr ""
1321
 
1322
- #: framework/extensions/product-reviews/extension.php:336
1323
- msgid "Star Rating Color"
 
1324
  msgstr ""
1325
 
1326
- #: framework/extensions/product-reviews/extension.php:353,
1327
- #: framework/extensions/product-reviews/extension.php:381,
1328
- #: framework/extensions/product-reviews/extension.php:402,
1329
- #: framework/premium/extensions/mega-menu/options.php:772
1330
- msgid "Active"
1331
  msgstr ""
1332
 
1333
- #: framework/extensions/product-reviews/extension.php:359
1334
- msgid "Inactive"
 
1335
  msgstr ""
1336
 
1337
- #: framework/extensions/product-reviews/extension.php:367
 
1338
  msgid "Overll Score Text"
1339
  msgstr ""
1340
 
1341
- #: framework/extensions/product-reviews/extension.php:389
 
1342
  msgid "Overll Score Background"
1343
  msgstr ""
1344
 
1345
- #: framework/extensions/product-reviews/extension.php:449,
1346
- #: framework/extensions/product-reviews/extension.php:450,
1347
- #: framework/extensions/product-reviews/extension.php:453,
1348
- #: framework/extensions/product-reviews/extension.php:455
 
 
 
 
1349
  msgid "Product Reviews"
1350
  msgstr ""
1351
 
1352
- #: framework/extensions/product-reviews/extension.php:454
 
1353
  msgid "Product Review"
1354
  msgstr ""
1355
 
1356
- #: framework/extensions/product-reviews/extension.php:456
 
1357
  msgid "Parent Product Review"
1358
  msgstr ""
1359
 
1360
- #: framework/extensions/product-reviews/extension.php:457
 
1361
  msgid "All Reviews"
1362
  msgstr ""
1363
 
1364
- #: framework/extensions/product-reviews/extension.php:458
 
1365
  msgid "View Product Review"
1366
  msgstr ""
1367
 
1368
- #: framework/extensions/product-reviews/extension.php:459
 
1369
  msgid "Add New Product Review"
1370
  msgstr ""
1371
 
1372
- #: framework/extensions/product-reviews/extension.php:460
 
1373
  msgid "Add New Review"
1374
  msgstr ""
1375
 
1376
- #: framework/extensions/product-reviews/extension.php:461
 
1377
  msgid "Edit Product Review"
1378
  msgstr ""
1379
 
1380
- #: framework/extensions/product-reviews/extension.php:462
 
1381
  msgid "Update Product Review"
1382
  msgstr ""
1383
 
1384
- #: framework/extensions/product-reviews/extension.php:463
 
1385
  msgid "Search Product Review"
1386
  msgstr ""
1387
 
1388
- #: framework/extensions/product-reviews/extension.php:464
 
1389
  msgid "Not Found"
1390
  msgstr ""
1391
 
1392
- #: framework/extensions/product-reviews/extension.php:465
 
1393
  msgid "Not found in Trash"
1394
  msgstr ""
1395
 
1396
- #: framework/extensions/product-reviews/extension.php:499,
1397
- #: framework/extensions/product-reviews/extension.php:509
 
 
1398
  msgid "Categories"
1399
  msgstr ""
1400
 
1401
- #: framework/extensions/product-reviews/extension.php:500,
1402
  #: framework/extensions/trending/customizer.php:35,
1403
- #: framework/extensions/widgets/widgets/ct-posts/options.php:37
 
 
 
1404
  msgid "Category"
1405
  msgstr ""
1406
 
1407
- #: framework/extensions/product-reviews/extension.php:501
 
1408
  msgid "Search Category"
1409
  msgstr ""
1410
 
1411
- #: framework/extensions/product-reviews/extension.php:502
 
1412
  msgid "All Categories"
1413
  msgstr ""
1414
 
1415
- #: framework/extensions/product-reviews/extension.php:503
 
1416
  msgid "Parent Category"
1417
  msgstr ""
1418
 
1419
- #: framework/extensions/product-reviews/extension.php:504
 
1420
  msgid "Parent Category:"
1421
  msgstr ""
1422
 
1423
- #: framework/extensions/product-reviews/extension.php:505
 
1424
  msgid "Edit Category"
1425
  msgstr ""
1426
 
1427
- #: framework/extensions/product-reviews/extension.php:506
 
1428
  msgid "Update Category"
1429
  msgstr ""
1430
 
1431
- #: framework/extensions/product-reviews/extension.php:507
 
1432
  msgid "Add New Category"
1433
  msgstr ""
1434
 
1435
- #: framework/extensions/product-reviews/extension.php:508
 
1436
  msgid "New Category Name"
1437
  msgstr ""
1438
 
1439
  #. translators: %s is the theme name.
1440
- #: framework/extensions/product-reviews/extension.php:527
 
1441
  msgid "%s Settings"
1442
  msgstr ""
1443
 
1444
- #: framework/extensions/product-reviews/extension.php:528
 
1445
  msgid "Blocksy"
1446
  msgstr ""
1447
 
1448
  #: framework/extensions/product-reviews/helpers.php:30,
1449
- #: framework/extensions/product-reviews/metabox.php:179
 
 
1450
  msgid "Rating"
1451
  msgstr ""
1452
 
1453
- #: framework/extensions/product-reviews/metabox.php:10
 
1454
  msgid "Review Entity"
1455
  msgstr ""
1456
 
1457
  #: framework/extensions/product-reviews/metabox.php:18,
1458
- #: framework/premium/extensions/woocommerce-extra/includes/wish-list-table.php:34
 
 
1459
  msgid "Product"
1460
  msgstr ""
1461
 
1462
- #: framework/extensions/product-reviews/metabox.php:19
 
1463
  msgid "Book"
1464
  msgstr ""
1465
 
1466
- #: framework/extensions/product-reviews/metabox.php:21
 
1467
  msgid "Creative Work Season"
1468
  msgstr ""
1469
 
1470
- #: framework/extensions/product-reviews/metabox.php:22
 
1471
  msgid "Creative Work Series"
1472
  msgstr ""
1473
 
1474
- #: framework/extensions/product-reviews/metabox.php:23
 
1475
  msgid "Episode"
1476
  msgstr ""
1477
 
1478
- #: framework/extensions/product-reviews/metabox.php:25
 
1479
  msgid "Game"
1480
  msgstr ""
1481
 
1482
- #: framework/extensions/product-reviews/metabox.php:27
 
1483
  msgid "Local Business"
1484
  msgstr ""
1485
 
1486
- #: framework/extensions/product-reviews/metabox.php:28
 
1487
  msgid "Media Object"
1488
  msgstr ""
1489
 
1490
- #: framework/extensions/product-reviews/metabox.php:29
 
1491
  msgid "Movie"
1492
  msgstr ""
1493
 
1494
- #: framework/extensions/product-reviews/metabox.php:30
 
1495
  msgid "Music Playlist"
1496
  msgstr ""
1497
 
1498
- #: framework/extensions/product-reviews/metabox.php:31
 
1499
  msgid "Music Recording"
1500
  msgstr ""
1501
 
1502
- #: framework/extensions/product-reviews/metabox.php:32
 
1503
  msgid "Organization"
1504
  msgstr ""
1505
 
1506
- #: framework/extensions/product-reviews/metabox.php:38
 
1507
  msgid ""
1508
  "More info about review entity and how to choose the right one can be found "
1509
  "%shere%s."
1510
  msgstr ""
1511
 
1512
- #: framework/extensions/product-reviews/metabox.php:60
 
1513
  msgid ""
1514
  "Please note that some of this information (price, sku, brand) won't be "
1515
  "displayed on the front-end. It is solely used for Google's Schema.org markup."
1516
  msgstr ""
1517
 
1518
- #: framework/extensions/product-reviews/metabox.php:69
 
1519
  msgid "Product Price"
1520
  msgstr ""
1521
 
1522
- #: framework/extensions/product-reviews/metabox.php:76
 
1523
  msgid "Product SKU"
1524
  msgstr ""
1525
 
1526
- #: framework/extensions/product-reviews/metabox.php:83
 
1527
  msgid "Product Brand"
1528
  msgstr ""
1529
 
1530
- #: framework/extensions/product-reviews/metabox.php:96
 
1531
  msgid "Gallery"
1532
  msgstr ""
1533
 
1534
- #: framework/extensions/product-reviews/metabox.php:107
 
1535
  msgid "Affiliate Button Label"
1536
  msgstr ""
1537
 
1538
  #: framework/extensions/product-reviews/metabox.php:109,
1539
- #: framework/extensions/product-reviews/views/single-top.php:156
 
 
1540
  msgid "Buy Now"
1541
  msgstr ""
1542
 
1543
- #: framework/extensions/product-reviews/metabox.php:114
 
1544
  msgid "Affiliate Link"
1545
  msgstr ""
1546
 
1547
- #: framework/extensions/product-reviews/metabox.php:120
 
1548
  msgid "Open Link In New Tab"
1549
  msgstr ""
1550
 
1551
- #: framework/extensions/product-reviews/metabox.php:126
 
1552
  msgid "Sponsored Attribute"
1553
  msgstr ""
1554
 
1555
- #: framework/extensions/product-reviews/metabox.php:148
 
1556
  msgid "Read More Button Label"
1557
  msgstr ""
1558
 
1559
  #: framework/extensions/product-reviews/metabox.php:150,
1560
- #: framework/extensions/product-reviews/views/single-top.php:162
 
 
1561
  msgid "Read More"
1562
  msgstr ""
1563
 
1564
- #: framework/extensions/product-reviews/metabox.php:170
 
1565
  msgid "Short Description"
1566
  msgstr ""
1567
 
1568
- #: framework/extensions/product-reviews/metabox.php:185
 
1569
  msgid "Scores"
1570
  msgstr ""
1571
 
1572
- #: framework/extensions/product-reviews/metabox.php:225
 
1573
  msgid "Product specs"
1574
  msgstr ""
1575
 
1576
  #: framework/extensions/product-reviews/metabox.php:250,
1577
- #: framework/extensions/product-reviews/views/single-top.php:262
 
 
1578
  msgid "Pros"
1579
  msgstr ""
1580
 
1581
  #: framework/extensions/product-reviews/metabox.php:270,
1582
- #: framework/extensions/product-reviews/views/single-top.php:285
 
 
1583
  msgid "Cons"
1584
  msgstr ""
1585
 
1586
  #. translators: This is a brand name. Preferably to not be translated
1587
  #: framework/extensions/trending/config.php:5,
1588
- #: framework/extensions/trending/customizer.php:97
 
 
1589
  msgctxt "Extension Brand Name"
1590
  msgid "Trending Posts"
1591
  msgstr ""
1592
 
1593
- #: framework/extensions/trending/config.php:6
 
1594
  msgid ""
1595
  "Highlight your most popular posts or products based on the number of "
1596
  "comments or reviews they have gotten in the specified period of time."
1597
  msgstr ""
1598
 
1599
  #: framework/extensions/trending/customizer.php:8,
 
1600
  #: framework/premium/extensions/shortcuts/views/bar.php:48,
1601
- #: framework/premium/features/premium-header/items/search-input/options.php:6
 
 
1602
  msgid "Products"
1603
  msgstr ""
1604
 
1605
  #: framework/extensions/trending/customizer.php:36,
1606
- #: framework/extensions/widgets/widgets/ct-posts/options.php:38
 
 
1607
  msgid "All categories"
1608
  msgstr ""
1609
 
1610
  #: framework/extensions/trending/customizer.php:41,
1611
- #: framework/extensions/widgets/widgets/ct-posts/options.php:43
 
 
1612
  msgid "Taxonomy"
1613
  msgstr ""
1614
 
1615
  #: framework/extensions/trending/customizer.php:42,
1616
- #: framework/extensions/widgets/widgets/ct-posts/options.php:44
 
 
1617
  msgid "All taxonomies"
1618
  msgstr ""
1619
 
1620
- #: framework/extensions/trending/customizer.php:106
 
1621
  msgid "Trending Posts"
1622
  msgstr ""
1623
 
1624
- #: framework/extensions/trending/customizer.php:115
 
1625
  msgid "Module Title"
1626
  msgstr ""
1627
 
1628
  #: framework/extensions/trending/customizer.php:118,
1629
- #: framework/extensions/trending/helpers.php:221
 
 
1630
  msgid "Trending now"
1631
  msgstr ""
1632
 
1633
- #: framework/extensions/trending/customizer.php:123
 
1634
  msgid "Module Title Tag"
1635
  msgstr ""
1636
 
1637
  #: framework/extensions/trending/customizer.php:149,
1638
  #: framework/extensions/trending/customizer.php:162,
1639
- #: framework/extensions/widgets/widgets/ct-posts/options.php:137
 
 
 
1640
  msgid "Post Type"
1641
  msgstr ""
1642
 
1643
  #: framework/extensions/trending/customizer.php:171,
 
1644
  #: framework/extensions/widgets/widgets/ct-advertisement/options.php:23,
1645
  #: framework/extensions/widgets/widgets/ct-posts/options.php:149,
1646
- #: framework/extensions/widgets/widgets/ct-posts/options.php:168
 
 
 
1647
  msgid "Source"
1648
  msgstr ""
1649
 
1650
  #: framework/extensions/trending/customizer.php:176,
1651
- #: framework/extensions/widgets/widgets/ct-posts/options.php:154
 
 
1652
  msgid "Taxonomies"
1653
  msgstr ""
1654
 
1655
  #: framework/extensions/trending/customizer.php:177,
 
1656
  #: framework/extensions/widgets/widgets/ct-posts/options.php:155,
1657
- #: framework/extensions/widgets/widgets/ct-posts/options.php:174
 
 
1658
  msgid "Custom Query"
1659
  msgstr ""
1660
 
1661
  #: framework/extensions/trending/customizer.php:200,
1662
- #: framework/extensions/widgets/widgets/ct-posts/options.php:243
 
 
1663
  msgid "Posts ID"
1664
  msgstr ""
1665
 
1666
  #: framework/extensions/trending/customizer.php:204,
1667
- #: framework/extensions/widgets/widgets/ct-posts/options.php:247
 
 
1668
  msgid "Separate posts ID by comma. How to find the %spost ID%s."
1669
  msgstr ""
1670
 
1671
- #: framework/extensions/trending/customizer.php:220
 
1672
  msgid "Trending From"
1673
  msgstr ""
1674
 
1675
  #: framework/extensions/trending/customizer.php:229,
1676
- #: framework/extensions/widgets/widgets/ct-posts/options.php:213
 
 
1677
  msgid "All Time"
1678
  msgstr ""
1679
 
1680
- #: framework/extensions/trending/customizer.php:230
 
1681
  msgid "Last 24 Hours"
1682
  msgstr ""
1683
 
1684
- #: framework/extensions/trending/customizer.php:231
 
1685
  msgid "Last 7 Days"
1686
  msgstr ""
1687
 
1688
- #: framework/extensions/trending/customizer.php:232
 
1689
  msgid "Last Month"
1690
  msgstr ""
1691
 
1692
- #: framework/extensions/trending/customizer.php:245
 
1693
  msgid "Image Size"
1694
  msgstr ""
1695
 
1696
- #: framework/extensions/trending/customizer.php:267
 
1697
  msgid "Container Visibility"
1698
  msgstr ""
1699
 
1700
- #: framework/extensions/trending/customizer.php:288
 
1701
  msgid "Display Location"
1702
  msgstr ""
1703
 
1704
- #: framework/extensions/trending/customizer.php:296
 
1705
  msgid "Before Footer"
1706
  msgstr ""
1707
 
1708
- #: framework/extensions/trending/customizer.php:301
 
1709
  msgid "After Footer"
1710
  msgstr ""
1711
 
1712
- #: framework/extensions/trending/customizer.php:306
 
1713
  msgid "After Header"
1714
  msgstr ""
1715
 
1716
  #: framework/extensions/trending/customizer.php:312,
1717
  #: framework/features/header/header-options.php:158,
1718
  #: framework/premium/extensions/shortcuts/customizer.php:763,
 
 
1719
  #: framework/premium/features/content-blocks/options/archive.php:186,
1720
  #: framework/premium/features/content-blocks/options/header.php:142,
1721
  #: framework/premium/features/content-blocks/options/hook.php:236,
1722
  #: framework/premium/features/content-blocks/options/popup.php:297,
1723
- #: framework/premium/features/content-blocks/options/single.php:119
 
 
 
 
 
 
1724
  #: framework/premium/extensions/sidebars/static/js/SettingsManager.js:49
1725
  #: framework/premium/static/js/footer/EditConditions.js:97
1726
  #: static/js/header/EditConditions.js:103
1727
  msgid "Display Conditions"
1728
  msgstr ""
1729
 
1730
- #: framework/extensions/trending/customizer.php:323
 
1731
  msgid "Trending Block Display Conditions"
1732
  msgstr ""
1733
 
1734
- #: framework/extensions/trending/customizer.php:324
 
1735
  msgid "Add one or more conditions to display the trending block."
1736
  msgstr ""
1737
 
1738
- #: framework/extensions/trending/customizer.php:339
 
1739
  msgid "Posts Font"
1740
  msgstr ""
1741
 
1742
  #. translators: This is a brand name. Preferably to not be translated
1743
- #: framework/extensions/widgets/config.php:5
 
1744
  msgctxt "Extension Brand Name"
1745
  msgid "Widgets"
1746
  msgstr ""
1747
 
1748
- #: framework/extensions/widgets/config.php:6
 
1749
  msgid ""
1750
  "Add new handcrafted widgets to your sidebars! Social Network Icons, "
1751
  "Newsletter Subscribe, Contact Info, Custom Ads and even a Popular/Recent "
1752
  "Posts are the choices available."
1753
  msgstr ""
1754
 
1755
- #: framework/features/header/account-modal.php:37
 
1756
  msgid "Close account modal"
1757
  msgstr ""
1758
 
1759
  #: framework/features/header/account-modal.php:49,
 
1760
  #: framework/features/header/items/account/options.php:569,
1761
- #: framework/features/header/items/account/views/logout.php:7
 
 
1762
  msgid "Login"
1763
  msgstr ""
1764
 
1765
- #: framework/features/header/account-modal.php:53
 
1766
  msgid "Sign Up"
1767
  msgstr ""
1768
 
1769
- #: framework/features/header/account-modal.php:72
 
1770
  msgid "Back to login"
1771
  msgstr ""
1772
 
1773
- #: framework/features/header/header-options.php:6
 
1774
  msgid "Sticky Functionality"
1775
  msgstr ""
1776
 
1777
- #: framework/features/header/header-options.php:32
 
1778
  msgid "Only Main Row"
1779
  msgstr ""
1780
 
1781
- #: framework/features/header/header-options.php:37
 
1782
  msgid "Top & Main Row"
1783
  msgstr ""
1784
 
1785
- #: framework/features/header/header-options.php:42
 
1786
  msgid "All Rows"
1787
  msgstr ""
1788
 
1789
- #: framework/features/header/header-options.php:47
 
1790
  msgid "Main & Bottom Row"
1791
  msgstr ""
1792
 
1793
- #: framework/features/header/header-options.php:52
 
1794
  msgid "Only Top Row"
1795
  msgstr ""
1796
 
1797
- #: framework/features/header/header-options.php:57
 
1798
  msgid "Only Bottom Row"
1799
  msgstr ""
1800
 
1801
- #: framework/features/header/header-options.php:63
 
1802
  msgid "Effect"
1803
  msgstr ""
1804
 
1805
- #: framework/features/header/header-options.php:72
 
1806
  msgid "Slide Down"
1807
  msgstr ""
1808
 
1809
- #: framework/features/header/header-options.php:73
 
1810
  msgid "Fade"
1811
  msgstr ""
1812
 
1813
- #: framework/features/header/header-options.php:74
 
1814
  msgid "Auto Hide/Show"
1815
  msgstr ""
1816
 
1817
- #: framework/features/header/header-options.php:79
 
1818
  msgid "Offset"
1819
  msgstr ""
1820
 
1821
  #: framework/features/header/header-options.php:92,
1822
- #: framework/features/header/header-options.php:174
 
 
1823
  msgid "Enable on"
1824
  msgstr ""
1825
 
1826
- #: framework/features/header/header-options.php:120
 
1827
  msgid "Transparent Functionality"
1828
  msgstr ""
1829
 
1830
- #: framework/premium/features/content-blocks.php:113
 
1831
  msgid "Hide Hooks"
1832
  msgstr ""
1833
 
1834
- #: framework/premium/features/content-blocks.php:114
 
1835
  msgid "Show Hooks"
1836
  msgstr ""
1837
 
1838
- #: framework/premium/features/content-blocks.php:125
 
1839
  msgid "Hooks Locations"
1840
  msgstr ""
1841
 
1842
- #: framework/premium/features/content-blocks.php:170
 
1843
  msgid "Hide Theme Hooks"
1844
  msgstr ""
1845
 
1846
- #: framework/premium/features/content-blocks.php:171
 
1847
  msgid "Show Theme Hooks"
1848
  msgstr ""
1849
 
1850
- #: framework/premium/features/content-blocks.php:179
 
1851
  msgid "Hide WooCommerce Hooks"
1852
  msgstr ""
1853
 
1854
- #: framework/premium/features/content-blocks.php:180
 
1855
  msgid "Show WooCommerce Hooks"
1856
  msgstr ""
1857
 
1858
  #: framework/premium/features/content-blocks.php:564,
1859
- #: framework/premium/features/content-blocks.php:570
 
 
1860
  msgid "Content Blocks"
1861
  msgstr ""
1862
 
1863
  #: framework/premium/features/content-blocks.php:565,
1864
- #: framework/premium/extensions/mega-menu/options.php:333
 
 
1865
  msgid "Content Block"
1866
  msgstr ""
1867
 
1868
- #: framework/premium/features/content-blocks.php:566
 
1869
  msgid "Add New"
1870
  msgstr ""
1871
 
1872
- #: framework/premium/features/content-blocks.php:567
 
1873
  msgid "Add New Content Block"
1874
  msgstr ""
1875
 
1876
- #: framework/premium/features/content-blocks.php:568
 
1877
  msgid "Edit Content Block"
1878
  msgstr ""
1879
 
1880
- #: framework/premium/features/content-blocks.php:569
 
1881
  #: framework/premium/static/js/hooks/CreateHook.js:33
1882
  msgid "New Content Block"
1883
  msgstr ""
1884
 
1885
- #: framework/premium/features/content-blocks.php:571
 
1886
  msgid "View Content Block"
1887
  msgstr ""
1888
 
1889
- #: framework/premium/features/content-blocks.php:572
 
1890
  msgid "Search Content Blocks"
1891
  msgstr ""
1892
 
1893
- #: framework/premium/features/content-blocks.php:573
 
1894
  msgid "Nothing found"
1895
  msgstr ""
1896
 
1897
- #: framework/premium/features/content-blocks.php:574
 
1898
  msgid "Nothing found in Trash"
1899
  msgstr ""
1900
 
1901
- #: framework/premium/features/content-blocks.php:863
 
1902
  msgid "Close popup"
1903
  msgstr ""
1904
 
1905
- #: framework/premium/features/media-meta-fields.php:29
 
1906
  msgid "Attachment Video"
1907
  msgstr ""
1908
 
1909
- #: framework/premium/features/media-meta-fields.php:33
 
1910
  msgid "Video URL"
1911
  msgstr ""
1912
 
1913
  #. translators: %s: Link to wordpress.org article
1914
- #: framework/premium/features/media-meta-fields.php:39
 
1915
  msgid ""
1916
  "Enter a <a href=\"%s\" target=\"_blank\">valid media URL</a> or upload an "
1917
  "MP4 file into the media library."
1918
  msgstr ""
1919
 
1920
- #: framework/premium/features/media-meta-fields.php:42
 
1921
  msgid "Upload"
1922
  msgstr ""
1923
 
1924
- #: framework/premium/features/media-meta-fields.php:44
 
1925
  msgid "Upload Video (MP4 File)"
1926
  msgstr ""
1927
 
1928
  #: framework/premium/features/premium-footer.php:14,
1929
- #: framework/premium/features/premium-footer.php:28
 
 
1930
  msgid "Footer Menu 1"
1931
  msgstr ""
1932
 
1933
  #: framework/premium/features/premium-footer.php:29,
1934
- #: framework/premium/features/premium-footer/items/menu-secondary/config.php:4
 
 
1935
  msgid "Footer Menu 2"
1936
  msgstr ""
1937
 
1938
- #: framework/premium/features/premium-header.php:49
 
1939
  msgid "Header Menu 3"
1940
  msgstr ""
1941
 
1942
- #: framework/premium/features/premium-header.php:50
 
1943
  msgid "Mobile Menu 1"
1944
  msgstr ""
1945
 
1946
- #: framework/premium/features/premium-header.php:51
 
1947
  msgid "Mobile Menu 2"
1948
  msgstr ""
1949
 
1950
- #: framework/premium/features/premium-header.php:142
 
1951
  msgid "Header Widget Area "
1952
  msgstr ""
1953
 
@@ -1957,19 +2796,25 @@ msgstr ""
1957
  #: framework/premium/features/premium-header.php:333,
1958
  #: framework/premium/features/premium-header.php:355,
1959
  #: framework/premium/extensions/mega-menu/options.php:422,
1960
- #: framework/extensions/widgets/widgets/ct-contact-info/options.php:108,
1961
- #: framework/extensions/widgets/widgets/ct-contact-info/options.php:167,
1962
- #: framework/extensions/widgets/widgets/ct-contact-info/options.php:223,
1963
- #: framework/extensions/widgets/widgets/ct-contact-info/options.php:279,
1964
- #: framework/extensions/widgets/widgets/ct-contact-info/options.php:335,
1965
- #: framework/extensions/widgets/widgets/ct-contact-info/options.php:391,
1966
- #: framework/extensions/widgets/widgets/ct-contact-info/options.php:447,
 
 
 
 
 
1967
  #: framework/features/header/items/account/options.php:140,
1968
  #: framework/features/header/items/account/options.php:189,
1969
  #: framework/features/header/items/account/options.php:400,
1970
  #: framework/features/header/items/account/options.php:431,
1971
  #: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:447,
1972
  #: framework/premium/extensions/post-types-extra/includes/estimated-read-time.php:18,
 
1973
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:28,
1974
  #: framework/premium/features/premium-header/items/contacts/options.php:65,
1975
  #: framework/premium/features/premium-header/items/contacts/options.php:102,
@@ -1978,135 +2823,223 @@ msgstr ""
1978
  #: framework/premium/features/premium-header/items/contacts/options.php:210,
1979
  #: framework/premium/features/premium-header/items/contacts/options.php:246,
1980
  #: framework/premium/features/premium-header/items/contacts/options.php:282,
1981
- #: framework/premium/features/premium-header/items/search-input/options.php:76
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1982
  msgid "Icon"
1983
  msgstr ""
1984
 
1985
  #: framework/premium/features/premium-header.php:212,
1986
  #: framework/premium/extensions/mega-menu/options.php:436,
1987
  #: framework/premium/extensions/woocommerce-extra/extension.php:373,
1988
- #: framework/extensions/widgets/widgets/ct-contact-info/options.php:461,
1989
- #: framework/extensions/widgets/widgets/ct-socials/options.php:79,
1990
- #: framework/premium/features/premium-header/items/contacts/options.php:310
 
 
 
 
 
 
1991
  msgid "Icons Size"
1992
  msgstr ""
1993
 
1994
  #: framework/premium/features/premium-header.php:224,
1995
- #: framework/premium/extensions/mega-menu/options.php:458
 
 
1996
  msgid "Icon Position"
1997
  msgstr ""
1998
 
1999
  #: framework/premium/features/premium-header.php:231,
2000
  #: framework/premium/extensions/mega-menu/options.php:465,
2001
  #: framework/premium/extensions/shortcuts/customizer.php:659,
 
2002
  #: framework/features/header/items/account/options.php:311,
2003
  #: framework/features/header/items/account/options.php:553,
2004
- #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:130
 
 
 
 
 
2005
  msgid "Left"
2006
  msgstr ""
2007
 
2008
  #: framework/premium/features/premium-header.php:232,
2009
  #: framework/premium/extensions/mega-menu/options.php:466,
2010
  #: framework/premium/extensions/shortcuts/customizer.php:660,
 
2011
  #: framework/features/header/items/account/options.php:312,
2012
  #: framework/features/header/items/account/options.php:554,
2013
- #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:131
 
 
 
 
 
2014
  msgid "Right"
2015
  msgstr ""
2016
 
2017
  #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:17,
2018
- #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/view.php:12
 
 
2019
  msgid "Newsletter"
2020
  msgstr ""
2021
 
2022
  #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:30,
2023
  #: framework/premium/extensions/mega-menu/options.php:493,
2024
  #: framework/premium/extensions/shortcuts/customizer.php:889,
2025
- #: framework/extensions/widgets/widgets/ct-contact-info/options.php:23,
2026
  #: framework/extensions/widgets/widgets/ct-quote/options.php:31,
2027
- #: framework/features/header/items/account/options.php:329
 
 
 
 
 
 
2028
  msgid "Text"
2029
  msgstr ""
2030
 
2031
  #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:34,
2032
- #: framework/extensions/widgets/widgets/ct-contact-info/options.php:26,
2033
- #: framework/extensions/widgets/widgets/ct-quote/options.php:34
 
 
 
2034
  msgid "You can add here some arbitrary HTML code."
2035
  msgstr ""
2036
 
2037
- #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:114
 
2038
  msgid "Container Type"
2039
  msgstr ""
2040
 
2041
- #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:121
 
2042
  msgid "Boxed"
2043
  msgstr ""
2044
 
2045
- #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:127
 
2046
  msgid "Content Alignment"
2047
  msgstr ""
2048
 
2049
- #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/widget.php:13
 
2050
  msgid "Newsletter Subscribe"
2051
  msgstr ""
2052
 
2053
- #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/widget.php:14
 
2054
  msgid "Newsletter subscribe form"
2055
  msgstr ""
2056
 
2057
- #: framework/extensions/newsletter-subscribe/includes/BlocksyMailerliteManager.php:99
 
2058
  msgid "Thank you for subscribing to our newsletter!"
2059
  msgstr ""
2060
 
2061
- #: framework/extensions/product-reviews/views/single-top.php:238
 
2062
  msgid "Specs"
2063
  msgstr ""
2064
 
2065
  #: framework/features/header/modal/login.php:28,
2066
- #: framework/features/header/modal/lostpassword.php:5
 
 
2067
  msgid "Username or Email Address"
2068
  msgstr ""
2069
 
2070
  #: framework/features/header/modal/login.php:33,
2071
- #: framework/features/header/modal/register.php:42
 
 
2072
  msgid "Password"
2073
  msgstr ""
2074
 
2075
- #: framework/features/header/modal/login.php:40
 
2076
  msgid "Remember Me"
2077
  msgstr ""
2078
 
2079
- #: framework/features/header/modal/login.php:44
 
2080
  msgid "Forgot Password?"
2081
  msgstr ""
2082
 
2083
- #: framework/features/header/modal/login.php:60
 
2084
  msgid "Log In"
2085
  msgstr ""
2086
 
2087
- #: framework/features/header/modal/lostpassword.php:13
 
2088
  msgid "Get New Password"
2089
  msgstr ""
2090
 
2091
- #: framework/features/header/modal/register.php:30
 
2092
  msgid "Username"
2093
  msgstr ""
2094
 
2095
- #: framework/features/header/modal/register.php:58
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2096
  msgid "Registration confirmation will be emailed to you"
2097
  msgstr ""
2098
 
2099
- #: framework/features/header/modal/register.php:63
 
2100
  msgid "Register"
2101
  msgstr ""
2102
 
2103
  #. translators: This is a brand name. Preferably to not be translated
2104
- #: framework/premium/extensions/adobe-typekit/config.php:5
 
2105
  msgctxt "Extension Brand Name"
2106
  msgid "Adobe Fonts"
2107
  msgstr ""
2108
 
2109
- #: framework/premium/extensions/adobe-typekit/config.php:6
 
2110
  msgid ""
2111
  "Connect your Adobe Fonts project and use the selected fonts throughout "
2112
  "Blocksy and your favorite page builder."
@@ -2116,89 +3049,114 @@ msgstr ""
2116
  #: framework/premium/extensions/code-snippets/config.php:5,
2117
  #: framework/premium/extensions/code-snippets/extension.php:24,
2118
  #: framework/premium/extensions/code-snippets/extension.php:71,
2119
- #: framework/premium/extensions/code-snippets/extension.php:114
 
 
 
 
2120
  msgctxt "Extension Brand Name"
2121
  msgid "Custom Code Snippets"
2122
  msgstr ""
2123
 
2124
- #: framework/premium/extensions/code-snippets/config.php:6
 
2125
  msgid ""
2126
  "Inject custom code snippets throughout your website. The extension works "
2127
  "globally or on a per post/page basis."
2128
  msgstr ""
2129
 
2130
  #: framework/premium/extensions/code-snippets/extension.php:31,
2131
- #: framework/premium/extensions/code-snippets/extension.php:78
 
 
2132
  msgid "Header scripts"
2133
  msgstr ""
2134
 
2135
  #: framework/premium/extensions/code-snippets/extension.php:42,
2136
  #: framework/premium/extensions/code-snippets/extension.php:89,
2137
- #: framework/premium/extensions/code-snippets/extension.php:134
 
 
 
2138
  msgid "After body open scripts"
2139
  msgstr ""
2140
 
2141
  #: framework/premium/extensions/code-snippets/extension.php:53,
2142
  #: framework/premium/extensions/code-snippets/extension.php:100,
2143
- #: framework/premium/extensions/code-snippets/extension.php:145
 
 
 
2144
  msgid "Footer scripts"
2145
  msgstr ""
2146
 
2147
- #: framework/premium/extensions/code-snippets/extension.php:123
 
2148
  msgid "Header scripts2"
2149
  msgstr ""
2150
 
2151
- #: framework/premium/extensions/code-snippets/readme.php:4
 
2152
  msgid ""
2153
  "After activating the Custom Code Snippets extension you will have two ways "
2154
  "to manage your snippets:"
2155
  msgstr ""
2156
 
2157
- #: framework/premium/extensions/code-snippets/readme.php:9
 
2158
  msgid "Globally"
2159
  msgstr ""
2160
 
2161
- #: framework/premium/extensions/code-snippets/readme.php:13
 
2162
  msgid "Navigate to %s and place there your header, body or footer scripts."
2163
  msgstr ""
2164
 
2165
- #: framework/premium/extensions/code-snippets/readme.php:16
 
2166
  msgid "Customizer ➝ Custom Code Snippets"
2167
  msgstr ""
2168
 
2169
- #: framework/premium/extensions/code-snippets/readme.php:24
 
2170
  msgid "Per page/post"
2171
  msgstr ""
2172
 
2173
- #: framework/premium/extensions/code-snippets/readme.php:28
 
2174
  msgid ""
2175
  "Edit your page or post, click on %s, scroll down and you will see the %2s "
2176
  "panel."
2177
  msgstr ""
2178
 
2179
- #: framework/premium/extensions/code-snippets/readme.php:32
 
2180
  msgid "%s Page Settings"
2181
  msgstr ""
2182
 
2183
  #. translators: This is a brand name. Preferably to not be translated
2184
- #: framework/premium/extensions/custom-fonts/config.php:5
 
2185
  msgctxt "Extension Brand Name"
2186
  msgid "Custom Fonts"
2187
  msgstr ""
2188
 
2189
- #: framework/premium/extensions/custom-fonts/config.php:6
 
2190
  msgid ""
2191
  "Upload an unlimited number of custom fonts or variable fonts and use them "
2192
  "throughout Blocksy and your favorite page builder."
2193
  msgstr ""
2194
 
2195
  #. translators: This is a brand name. Preferably to not be translated
2196
- #: framework/premium/extensions/local-google-fonts/config.php:5
 
2197
  msgctxt "Extension Brand Name"
2198
  msgid "Local Google Fonts"
2199
  msgstr ""
2200
 
2201
- #: framework/premium/extensions/local-google-fonts/config.php:6
 
2202
  msgid ""
2203
  "Serve your chosen Google Fonts from your own web server. This will increase "
2204
  "the loading speed and makes sure your website complies with the privacy "
@@ -2206,12 +3164,14 @@ msgid ""
2206
  msgstr ""
2207
 
2208
  #. translators: This is a brand name. Preferably to not be translated
2209
- #: framework/premium/extensions/mega-menu/config.php:5
 
2210
  msgctxt "Extension Brand Name"
2211
  msgid "Advanced Menu"
2212
  msgstr ""
2213
 
2214
- #: framework/premium/extensions/mega-menu/config.php:6
 
2215
  msgid ""
2216
  "Create beautiful personalised menus that set your website apart from the "
2217
  "others. Add icons and badges to your entries and even add Content Blocks "
@@ -2219,88 +3179,114 @@ msgid ""
2219
  msgstr ""
2220
 
2221
  #: framework/premium/extensions/mega-menu/config.php:10,
2222
- #: framework/premium/extensions/shortcuts/config.php:13
 
 
2223
  #: framework/extensions/newsletter-subscribe/dashboard-static/js/hooks/useActivationWithRequirements.js:60
2224
  #: framework/extensions/product-reviews/static/js/EditSettings.js:30
2225
  #: framework/premium/extensions/white-label/dashboard-static/js/EditSettings.js:96
2226
  msgid "Configure"
2227
  msgstr ""
2228
 
2229
- #: framework/premium/extensions/mega-menu/extension.php:99
 
2230
  msgid "Menu Item Settings"
2231
  msgstr ""
2232
 
2233
- #: framework/premium/extensions/mega-menu/extension.php:257
 
2234
  msgid "New"
2235
  msgstr ""
2236
 
2237
  #: framework/premium/extensions/mega-menu/options.php:16,
2238
- #: framework/premium/extensions/mega-menu/options.php:530
 
 
2239
  msgid "Mega Menu Settings"
2240
  msgstr ""
2241
 
2242
- #: framework/premium/extensions/mega-menu/options.php:27
 
2243
  msgid "Dropdown Width"
2244
  msgstr ""
2245
 
2246
  #: framework/premium/extensions/mega-menu/options.php:35,
2247
- #: framework/premium/extensions/mega-menu/options.php:48
 
 
2248
  msgid "Content Width"
2249
  msgstr ""
2250
 
2251
  #: framework/premium/extensions/mega-menu/options.php:36,
2252
- #: framework/premium/extensions/mega-menu/options.php:57
 
 
2253
  msgid "Full Width"
2254
  msgstr ""
2255
 
2256
  #: framework/premium/extensions/mega-menu/options.php:37,
2257
- #: framework/premium/features/content-blocks/options/archive.php:59
 
 
2258
  msgid "Custom Width"
2259
  msgstr ""
2260
 
2261
- #: framework/premium/extensions/mega-menu/options.php:56
 
2262
  msgid "Default Width"
2263
  msgstr ""
2264
 
2265
- #: framework/premium/extensions/mega-menu/options.php:85
 
2266
  msgid "Columns"
2267
  msgstr ""
2268
 
2269
- #: framework/premium/extensions/mega-menu/options.php:320
 
2270
  msgid "Custom Content"
2271
  msgstr ""
2272
 
2273
- #: framework/premium/extensions/mega-menu/options.php:324
 
2274
  msgid "Content Type"
2275
  msgstr ""
2276
 
2277
- #: framework/premium/extensions/mega-menu/options.php:331
 
2278
  msgid "Default (Menu Item)"
2279
  msgstr ""
2280
 
2281
- #: framework/premium/extensions/mega-menu/options.php:332
 
2282
  msgid "Custom Text"
2283
  msgstr ""
2284
 
2285
  #: framework/premium/extensions/mega-menu/options.php:364,
2286
- #: framework/premium/extensions/mega-menu/options.php:371
 
 
2287
  msgid "Select Content Block"
2288
  msgstr ""
2289
 
2290
- #: framework/premium/extensions/mega-menu/options.php:367
 
2291
  msgid "Create a new content Block/Hook"
2292
  msgstr ""
2293
 
2294
  #: framework/premium/extensions/mega-menu/options.php:394,
2295
- #: framework/premium/extensions/mega-menu/options.php:710
 
 
2296
  msgid "Item Label Settings"
2297
  msgstr ""
2298
 
2299
- #: framework/premium/extensions/mega-menu/options.php:399
 
2300
  msgid "Item Label"
2301
  msgstr ""
2302
 
2303
- #: framework/premium/extensions/mega-menu/options.php:407
 
2304
  msgid "Enabled"
2305
  msgstr ""
2306
 
@@ -2309,87 +3295,125 @@ msgstr ""
2309
  #: framework/premium/features/content-blocks/options/archive.php:160,
2310
  #: framework/premium/features/content-blocks/options/header.php:108,
2311
  #: framework/premium/features/content-blocks/options/hook.php:113,
2312
- #: framework/premium/features/content-blocks/options/single.php:81
 
 
 
 
 
 
2313
  msgid "Disabled"
2314
  msgstr ""
2315
 
2316
- #: framework/premium/extensions/mega-menu/options.php:409
 
2317
  msgid "Heading"
2318
  msgstr ""
2319
 
2320
- #: framework/premium/extensions/mega-menu/options.php:415
 
2321
  msgid "Label Link"
2322
  msgstr ""
2323
 
2324
  #: framework/premium/extensions/mega-menu/options.php:481,
2325
- #: framework/premium/extensions/mega-menu/options.php:792
 
 
2326
  msgid "Menu Badge Settings"
2327
  msgstr ""
2328
 
2329
  #: framework/premium/extensions/mega-menu/options.php:499,
2330
- #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:260
 
 
2331
  msgid "Vertical Alignment"
2332
  msgstr ""
2333
 
2334
  #: framework/premium/extensions/mega-menu/options.php:534,
2335
  #: framework/premium/extensions/shortcuts/customizer.php:883,
2336
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:346,
2337
- #: framework/features/header/items/account/options.php:1104
 
 
 
 
2338
  msgid "Background"
2339
  msgstr ""
2340
 
2341
- #: framework/premium/extensions/mega-menu/options.php:548
 
2342
  msgid "Link Color"
2343
  msgstr ""
2344
 
2345
  #: framework/premium/extensions/mega-menu/options.php:568,
2346
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:144,
 
 
2347
  #: framework/premium/features/premium-header/items/contacts/options.php:478,
2348
  #: framework/premium/features/premium-header/items/contacts/options.php:520,
2349
- #: framework/premium/features/premium-header/items/contacts/options.php:560
 
 
 
2350
  msgid "Link Initial"
2351
  msgstr ""
2352
 
2353
- #: framework/premium/extensions/mega-menu/options.php:573
 
2354
  msgid "Link Hover/Active"
2355
  msgstr ""
2356
 
2357
- #: framework/premium/extensions/mega-menu/options.php:578
 
2358
  msgid "Background Hover"
2359
  msgstr ""
2360
 
2361
  #: framework/premium/extensions/mega-menu/options.php:585,
2362
- #: framework/premium/extensions/mega-menu/options.php:719
 
 
2363
  msgid "Heading Color"
2364
  msgstr ""
2365
 
2366
  #: framework/premium/extensions/mega-menu/options.php:597,
2367
  #: framework/premium/extensions/mega-menu/options.php:617,
2368
- #: framework/premium/extensions/mega-menu/options.php:731
 
 
 
2369
  msgid "Initial Color"
2370
  msgstr ""
2371
 
2372
  #: framework/premium/extensions/mega-menu/options.php:624,
2373
  #: framework/premium/extensions/shortcuts/customizer.php:900,
 
 
2374
  #: framework/premium/features/premium-header/items/language-switcher/options.php:432,
2375
- #: framework/premium/features/premium-header/items/search-input/options.php:836
 
 
2376
  msgid "Items Divider"
2377
  msgstr ""
2378
 
2379
- #: framework/premium/extensions/mega-menu/options.php:639
 
2380
  msgid "Columns Divider"
2381
  msgstr ""
2382
 
2383
  #: framework/premium/extensions/mega-menu/options.php:654,
2384
- #: framework/premium/features/premium-header/items/search-input/options.php:818
 
 
2385
  msgid "Dropdown Shadow"
2386
  msgstr ""
2387
 
2388
- #: framework/premium/extensions/mega-menu/options.php:686
 
2389
  msgid "Column Settings"
2390
  msgstr ""
2391
 
2392
- #: framework/premium/extensions/mega-menu/options.php:690
 
2393
  msgid "Column Spacing"
2394
  msgstr ""
2395
 
@@ -2403,6 +3427,8 @@ msgstr ""
2403
  #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:141,
2404
  #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:218,
2405
  #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:294,
 
 
2406
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:305,
2407
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:333,
2408
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:364,
@@ -2410,24 +3436,43 @@ msgstr ""
2410
  #: framework/premium/features/premium-header/items/dark-mode-switcher/options.php:30,
2411
  #: framework/premium/features/premium-header/items/dark-mode-switcher/options.php:58,
2412
  #: framework/premium/features/premium-header/items/dark-mode-switcher/options.php:89,
2413
- #: framework/premium/features/premium-header/items/dark-mode-switcher/options.php:118
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2414
  msgid "Icon Color"
2415
  msgstr ""
2416
 
2417
  #. translators: This is a brand name. Preferably to not be translated
2418
- #: framework/premium/extensions/post-types-extra/config.php:5
 
2419
  msgctxt "Extension Brand Name"
2420
  msgid "Post Types Extra"
2421
  msgstr ""
2422
 
2423
- #: framework/premium/extensions/post-types-extra/config.php:6
 
2424
  msgid ""
2425
  "Enables support for Custom Fields inside archive cards and single page post "
2426
  "title, adds a reading progress bar for your posts and lets you set featured "
2427
  "images and colors for your categories archives."
2428
  msgstr ""
2429
 
2430
- #: framework/premium/extensions/post-types-extra/readme.php:4
 
2431
  msgid ""
2432
  "After activating this extension you will be able to enable the read progress "
2433
  "bar for your single posts, add a featured image and set different colors to "
@@ -2436,70 +3481,86 @@ msgid ""
2436
  "taxonomies archive filters."
2437
  msgstr ""
2438
 
2439
- #: framework/premium/extensions/post-types-extra/readme.php:10
 
2440
  msgid "Custom Fields"
2441
  msgstr ""
2442
 
2443
- #: framework/premium/extensions/post-types-extra/readme.php:14
 
2444
  msgid ""
2445
  "After setting up your custom fields you will be able to output them from %s "
2446
  "or from %2s."
2447
  msgstr ""
2448
 
2449
- #: framework/premium/extensions/post-types-extra/readme.php:17
 
2450
  msgid "Customizer ➝ Blog Posts ➝ Card Options"
2451
  msgstr ""
2452
 
2453
- #: framework/premium/extensions/post-types-extra/readme.php:21
 
2454
  msgid "Customizer ➝ Single Posts ➝ Post Title"
2455
  msgstr ""
2456
 
2457
- #: framework/premium/extensions/post-types-extra/readme.php:29
 
2458
  msgid "Taxonomies Filters"
2459
  msgstr ""
2460
 
2461
- #: framework/premium/extensions/post-types-extra/readme.php:33
 
2462
  msgid "You can enable the taxonomies filters from %s."
2463
  msgstr ""
2464
 
2465
- #: framework/premium/extensions/post-types-extra/readme.php:36
 
2466
  msgid "Customizer ➝ Blog Posts ➝ Filters"
2467
  msgstr ""
2468
 
2469
- #: framework/premium/extensions/post-types-extra/readme.php:44
 
2470
  msgid "Read Progress Bar"
2471
  msgstr ""
2472
 
2473
- #: framework/premium/extensions/post-types-extra/readme.php:48
 
2474
  msgid "This options could be enabled from %s."
2475
  msgstr ""
2476
 
2477
- #: framework/premium/extensions/post-types-extra/readme.php:51
 
2478
  msgid "Customizer ➝ Single Posts ➝ Read Progress Bar"
2479
  msgstr ""
2480
 
2481
- #: framework/premium/extensions/post-types-extra/readme.php:59
 
2482
  msgid "Taxonomy Featured Image & Custom Colors"
2483
  msgstr ""
2484
 
2485
- #: framework/premium/extensions/post-types-extra/readme.php:63
 
2486
  msgid ""
2487
  "To customize these options simply navigate to %s and edit one of your "
2488
  "categories."
2489
  msgstr ""
2490
 
2491
- #: framework/premium/extensions/post-types-extra/readme.php:66
 
2492
  msgid "Dashboard ➝ Posts ➝ Categories"
2493
  msgstr ""
2494
 
2495
  #. translators: This is a brand name. Preferably to not be translated
2496
  #: framework/premium/extensions/shortcuts/config.php:5,
2497
- #: framework/premium/extensions/shortcuts/customizer.php:524
 
 
2498
  msgctxt "Extension Brand Name"
2499
  msgid "Shortcuts Bar"
2500
  msgstr ""
2501
 
2502
- #: framework/premium/extensions/shortcuts/config.php:6
 
2503
  msgid ""
2504
  "Easily turn your websites into mobile first experiences. You can easily add "
2505
  "the most important actions at the bottom of the screen for easy access."
@@ -2509,81 +3570,124 @@ msgstr ""
2509
  #: framework/premium/extensions/shortcuts/customizer.php:35,
2510
  #: framework/premium/extensions/shortcuts/customizer.php:563,
2511
  #: framework/premium/extensions/shortcuts/views/bar.php:13,
2512
- #: framework/premium/extensions/shortcuts/views/bar.php:43
 
 
 
 
 
2513
  msgid "Home"
2514
  msgstr ""
2515
 
2516
  #: framework/premium/extensions/shortcuts/customizer.php:68,
2517
  #: framework/premium/extensions/shortcuts/customizer.php:91,
2518
  #: framework/premium/extensions/shortcuts/customizer.php:572,
2519
- #: framework/extensions/widgets/widgets/ct-contact-info/options.php:123,
2520
  #: framework/premium/extensions/shortcuts/views/bar.php:22,
2521
  #: framework/premium/extensions/shortcuts/views/bar.php:44,
2522
- #: framework/premium/features/premium-header/items/contacts/options.php:76
 
 
 
 
 
 
 
2523
  msgid "Phone"
2524
  msgstr ""
2525
 
2526
  #: framework/premium/extensions/shortcuts/customizer.php:192,
2527
  #: framework/premium/extensions/shortcuts/customizer.php:215,
2528
- #: framework/premium/extensions/shortcuts/views/bar.php:46
 
 
 
2529
  msgid "Scroll Top"
2530
  msgstr ""
2531
 
2532
  #: framework/premium/extensions/shortcuts/customizer.php:293,
2533
  #: framework/extensions/widgets/widgets/ct-advertisement/options.php:83,
2534
- #: framework/extensions/widgets/widgets/ct-contact-info/options.php:511
 
 
 
2535
  msgid "Open link in new tab"
2536
  msgstr ""
2537
 
2538
- #: framework/premium/extensions/shortcuts/customizer.php:300
 
2539
  msgid "Set link to nofollow"
2540
  msgstr ""
2541
 
2542
- #: framework/premium/extensions/shortcuts/customizer.php:306
 
2543
  msgid "Custom class"
2544
  msgstr ""
2545
 
2546
  #: framework/premium/extensions/shortcuts/customizer.php:338,
2547
  #: framework/premium/extensions/shortcuts/customizer.php:361,
2548
- #: framework/premium/extensions/shortcuts/views/bar.php:47
 
 
 
2549
  msgid "Cart"
2550
  msgstr ""
2551
 
2552
  #: framework/premium/extensions/shortcuts/customizer.php:394,
2553
- #: framework/premium/extensions/shortcuts/customizer.php:417
 
 
2554
  msgid "Shop"
2555
  msgstr ""
2556
 
2557
  #: framework/premium/extensions/shortcuts/customizer.php:450,
2558
  #: framework/premium/extensions/shortcuts/customizer.php:473,
2559
  #: framework/premium/extensions/woocommerce-extra/readme.php:70,
 
 
 
2560
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/config.php:4,
2561
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:141,
2562
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/view.php:105,
2563
- #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/view.php:111
 
 
 
 
2564
  msgid "Wishlist"
2565
  msgstr ""
2566
 
2567
  #: framework/premium/extensions/shortcuts/customizer.php:538,
2568
- #: framework/premium/features/content-blocks/admin-ui.php:196
 
 
2569
  msgid "Type"
2570
  msgstr ""
2571
 
2572
- #: framework/premium/extensions/shortcuts/customizer.php:557
 
2573
  msgid "Shortcuts"
2574
  msgstr ""
2575
 
2576
  #: framework/premium/extensions/shortcuts/customizer.php:612,
2577
  #: framework/features/header/items/account/options.php:268,
2578
  #: framework/features/header/items/account/options.php:510,
2579
- #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:92
 
 
 
 
2580
  msgid "Label Visibility"
2581
  msgstr ""
2582
 
2583
  #: framework/premium/extensions/shortcuts/customizer.php:652,
2584
  #: framework/features/header/items/account/options.php:304,
2585
  #: framework/features/header/items/account/options.php:546,
2586
- #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:123
 
 
 
 
2587
  msgid "Label Position"
2588
  msgstr ""
2589
 
@@ -2593,129 +3697,182 @@ msgstr ""
2593
  #: framework/features/header/items/account/options.php:313,
2594
  #: framework/features/header/items/account/options.php:555,
2595
  #: framework/premium/features/content-blocks/options/hook.php:307,
2596
- #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:132
 
 
 
 
 
 
 
2597
  msgid "Bottom"
2598
  msgstr ""
2599
 
2600
  #: framework/premium/extensions/shortcuts/customizer.php:672,
2601
  #: framework/features/header/items/account/options.php:250,
2602
  #: framework/features/header/items/account/options.php:492,
2603
- #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:74
 
 
 
 
2604
  msgid "Icon Size"
2605
  msgstr ""
2606
 
2607
- #: framework/premium/extensions/shortcuts/customizer.php:682
 
2608
  msgid "Container Height"
2609
  msgstr ""
2610
 
2611
- #: framework/premium/extensions/shortcuts/customizer.php:697
 
2612
  msgid "Container Max Width"
2613
  msgstr ""
2614
 
2615
- #: framework/premium/extensions/shortcuts/customizer.php:721
 
2616
  msgid "Scroll Interaction"
2617
  msgstr ""
2618
 
2619
  #: framework/premium/extensions/shortcuts/customizer.php:726,
2620
  #: framework/premium/features/content-blocks/admin-ui.php:225,
2621
- #: framework/extensions/widgets/widgets/ct-contact-info/options.php:482,
2622
- #: framework/extensions/widgets/widgets/ct-socials/options.php:100,
2623
  #: framework/features/header/items/account/options.php:141,
2624
  #: framework/features/header/items/account/options.php:401,
2625
  #: framework/premium/features/content-blocks/options/hook.php:9,
2626
  #: framework/premium/features/content-blocks/options/hook.php:158,
2627
  #: framework/premium/features/content-blocks/options/popup.php:162,
2628
  #: framework/premium/features/content-blocks/options/popup.php:437,
2629
- #: framework/premium/features/premium-header/items/contacts/options.php:338
 
 
 
 
 
 
 
 
 
 
 
2630
  msgid "None"
2631
  msgstr ""
2632
 
2633
- #: framework/premium/extensions/shortcuts/customizer.php:727
 
2634
  msgid "Hide"
2635
  msgstr ""
2636
 
2637
- #: framework/premium/extensions/shortcuts/customizer.php:769
 
2638
  msgid "Shortcuts Bar Display Conditions"
2639
  msgstr ""
2640
 
2641
- #: framework/premium/extensions/shortcuts/customizer.php:770
 
2642
  msgid "Add one or more conditions to display the shortcuts bar."
2643
  msgstr ""
2644
 
2645
  #: framework/premium/extensions/shortcuts/customizer.php:784,
 
2646
  #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:173,
2647
  #: framework/premium/features/premium-header/items/contacts/options.php:410,
2648
  #: framework/premium/features/premium-header/items/language-switcher/options.php:192,
2649
- #: framework/premium/features/premium-header/items/language-switcher/options.php:376
 
 
 
 
2650
  msgid "Font"
2651
  msgstr ""
2652
 
2653
  #: framework/premium/extensions/shortcuts/customizer.php:826,
 
2654
  #: framework/premium/features/premium-header/items/contacts/options.php:590,
2655
  #: framework/premium/features/premium-header/items/contacts/options.php:619,
2656
  #: framework/premium/features/premium-header/items/contacts/options.php:650,
2657
- #: framework/premium/features/premium-header/items/contacts/options.php:680
 
 
 
 
2658
  msgid "Icons Color"
2659
  msgstr ""
2660
 
2661
- #: framework/premium/extensions/shortcuts/customizer.php:865
 
2662
  msgid "Cart Badge Color"
2663
  msgstr ""
2664
 
2665
- #: framework/premium/extensions/shortcuts/customizer.php:920
 
2666
  msgid "Items Divider Height"
2667
  msgstr ""
2668
 
2669
  #: framework/premium/extensions/shortcuts/customizer.php:934,
2670
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:123,
2671
  #: framework/premium/features/content-blocks/options/popup.php:387,
2672
- #: framework/premium/features/premium-header/items/language-switcher/options.php:446
 
 
 
 
2673
  msgid "Shadow"
2674
  msgstr ""
2675
 
2676
  #. translators: This is a brand name. Preferably to not be translated
2677
- #: framework/premium/extensions/sidebars/config.php:5
 
2678
  msgctxt "Extension Brand Name"
2679
  msgid "Multiple Sidebars"
2680
  msgstr ""
2681
 
2682
- #: framework/premium/extensions/sidebars/config.php:6
 
2683
  msgid ""
2684
  "Create unlimited personalized sets of widget areas and display them on any "
2685
  "page or post using our conditional logic functionality."
2686
  msgstr ""
2687
 
2688
- #: framework/premium/extensions/sidebars/config.php:10
 
2689
  msgid "Create New Sidebar"
2690
  msgstr ""
2691
 
2692
- #: framework/premium/extensions/sidebars/form.php:3
 
2693
  #: framework/premium/extensions/sidebars/static/js/main.js:42
2694
  msgid "Create Sidebar/Widget Area"
2695
  msgstr ""
2696
 
2697
- #: framework/premium/extensions/sidebars/form.php:6
 
2698
  msgid ""
2699
  "In order to create a new sidebar/widget area simply enter a name in the "
2700
  "input below and click the Create Sidebar button."
2701
  msgstr ""
2702
 
2703
- #: framework/premium/extensions/sidebars/form.php:16
 
2704
  #: framework/premium/extensions/sidebars/static/js/main.js:58
2705
  msgid "Create Sidebar"
2706
  msgstr ""
2707
 
2708
- #: framework/premium/extensions/sidebars/form.php:20
 
2709
  msgid "Available Sidebars/Widget Areas"
2710
  msgstr ""
2711
 
2712
  #. translators: This is a brand name. Preferably to not be translated
2713
- #: framework/premium/extensions/white-label/config.php:5
 
2714
  msgctxt "Extension Brand Name"
2715
  msgid "White Label"
2716
  msgstr ""
2717
 
2718
- #: framework/premium/extensions/white-label/config.php:6
 
2719
  msgid ""
2720
  "Replace Blocksy's branding with your own. Easily hide licensing info and "
2721
  "other sections of the theme and companion plugin from your clients and make "
@@ -2723,35 +3880,42 @@ msgid ""
2723
  msgstr ""
2724
 
2725
  #. translators: This is a brand name. Preferably to not be translated
2726
- #: framework/premium/extensions/woocommerce-extra/config.php:5
 
2727
  msgctxt "Extension Brand Name"
2728
  msgid "WooCommerce Extra"
2729
  msgstr ""
2730
 
2731
- #: framework/premium/extensions/woocommerce-extra/config.php:6
 
2732
  msgid ""
2733
  "Make the shopping experience better for your visitors! Add features such as "
2734
  "Product Quick View, Wishlist functionality and a Floating Add to Cart "
2735
  "button. Customize the single product gallery/slider and the layout."
2736
  msgstr ""
2737
 
2738
- #: framework/premium/extensions/woocommerce-extra/customizer.php:5
 
2739
  msgid "Quick View Button"
2740
  msgstr ""
2741
 
2742
- #: framework/premium/extensions/woocommerce-extra/customizer.php:21
 
2743
  msgid "Trigger On"
2744
  msgstr ""
2745
 
2746
- #: framework/premium/extensions/woocommerce-extra/customizer.php:29
 
2747
  msgid "Button click"
2748
  msgstr ""
2749
 
2750
- #: framework/premium/extensions/woocommerce-extra/customizer.php:30
 
2751
  msgid "Image click"
2752
  msgstr ""
2753
 
2754
- #: framework/premium/extensions/woocommerce-extra/customizer.php:31
 
2755
  msgid "Card click"
2756
  msgstr ""
2757
 
@@ -2759,226 +3923,298 @@ msgstr ""
2759
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:196,
2760
  #: framework/features/header/items/account/options.php:227,
2761
  #: framework/features/header/items/account/options.php:469,
2762
- #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:66
 
 
 
 
 
2763
  msgid "Type 3"
2764
  msgstr ""
2765
 
2766
  #: framework/premium/extensions/woocommerce-extra/extension.php:88,
2767
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:201,
2768
  #: framework/features/header/items/account/options.php:232,
2769
- #: framework/features/header/items/account/options.php:474
 
 
 
 
2770
  msgid "Type 4"
2771
  msgstr ""
2772
 
2773
  #: framework/premium/extensions/woocommerce-extra/extension.php:111,
2774
- #: framework/premium/extensions/woocommerce-extra/extension.php:130
 
 
2775
  msgid "Number of Columns"
2776
  msgstr ""
2777
 
2778
- #: framework/premium/extensions/woocommerce-extra/extension.php:154
 
2779
  msgid "Gallery Arrows Visibility"
2780
  msgstr ""
2781
 
2782
- #: framework/premium/extensions/woocommerce-extra/extension.php:175
 
2783
  msgid "Thumbnails Arrows Visibility"
2784
  msgstr ""
2785
 
2786
- #: framework/premium/extensions/woocommerce-extra/extension.php:384
 
2787
  msgid "Icons Spacing"
2788
  msgstr ""
2789
 
2790
- #: framework/premium/extensions/woocommerce-extra/extension.php:428
 
2791
  msgid "WooCommerce Offcanvas Filters"
2792
  msgstr ""
2793
 
2794
- #: framework/premium/extensions/woocommerce-extra/extension.php:430
 
2795
  msgid "Add widgets here."
2796
  msgstr ""
2797
 
2798
- #: framework/premium/extensions/woocommerce-extra/extension.php:703
 
2799
  msgid "Available Filters"
2800
  msgstr ""
2801
 
2802
- #: framework/premium/extensions/woocommerce-extra/extension.php:704
 
2803
  msgid "Close filters modal"
2804
  msgstr ""
2805
 
2806
- #: framework/premium/extensions/woocommerce-extra/extension.php:798
 
2807
  msgid "Quick view title before"
2808
  msgstr ""
2809
 
2810
- #: framework/premium/extensions/woocommerce-extra/extension.php:803
 
2811
  msgid "Quick view title after"
2812
  msgstr ""
2813
 
2814
- #: framework/premium/extensions/woocommerce-extra/extension.php:808
 
2815
  msgid "Quick view price before"
2816
  msgstr ""
2817
 
2818
- #: framework/premium/extensions/woocommerce-extra/extension.php:813
 
2819
  msgid "Quick view price after"
2820
  msgstr ""
2821
 
2822
- #: framework/premium/extensions/woocommerce-extra/extension.php:818
 
2823
  msgid "Quick view summary before"
2824
  msgstr ""
2825
 
2826
- #: framework/premium/extensions/woocommerce-extra/extension.php:823
 
2827
  msgid "Quick view summary after"
2828
  msgstr ""
2829
 
2830
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:4,
2831
- #: framework/premium/extensions/woocommerce-extra/readme.php:25
 
 
2832
  msgid "Floating Cart"
2833
  msgstr ""
2834
 
2835
- #: framework/premium/extensions/woocommerce-extra/floating-cart.php:17
 
2836
  msgid "Position"
2837
  msgstr ""
2838
 
2839
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:24,
2840
  #: framework/premium/features/content-blocks/hooks-manager.php:407,
2841
- #: framework/premium/features/content-blocks/options/hook.php:306
 
 
 
2842
  msgid "Top"
2843
  msgstr ""
2844
 
2845
- #: framework/premium/extensions/woocommerce-extra/floating-cart.php:34
 
2846
  msgid "Product Title Visibility"
2847
  msgstr ""
2848
 
2849
- #: framework/premium/extensions/woocommerce-extra/floating-cart.php:58
 
2850
  msgid "Floating Cart Visibility"
2851
  msgstr ""
2852
 
2853
- #: framework/premium/extensions/woocommerce-extra/helpers.php:79
 
2854
  msgid "Close quick view"
2855
  msgstr ""
2856
 
2857
- #: framework/premium/extensions/woocommerce-extra/helpers.php:106
 
2858
  msgid "Go to product page"
2859
  msgstr ""
2860
 
2861
- #: framework/premium/extensions/woocommerce-extra/helpers.php:152
 
2862
  msgid "Quick view toggle"
2863
  msgstr ""
2864
 
2865
- #: framework/premium/extensions/woocommerce-extra/helpers.php:152
 
2866
  msgid "Quick view icon"
2867
  msgstr ""
2868
 
2869
- #: framework/premium/extensions/woocommerce-extra/helpers.php:186
 
2870
  msgid "Filter"
2871
  msgstr ""
2872
 
2873
- #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:3
 
2874
  msgid "Off Canvas Filter"
2875
  msgstr ""
2876
 
2877
- #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:14
 
2878
  msgid "Filter Widgets"
2879
  msgstr ""
2880
 
2881
- #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:18
 
2882
  msgid "Widgets"
2883
  msgstr ""
2884
 
2885
- #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:36
 
2886
  msgid "Widgets Vertical Spacing"
2887
  msgstr ""
2888
 
2889
- #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:51
 
2890
  msgid "Widgets Title Font"
2891
  msgstr ""
2892
 
2893
- #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:59
 
2894
  msgid "Widgets Title Font Color"
2895
  msgstr ""
2896
 
2897
- #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:107
 
2898
  msgid "Widgets Font"
2899
  msgstr ""
2900
 
2901
- #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:116
 
2902
  msgid "Widgets Font Color"
2903
  msgstr ""
2904
 
2905
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:138,
 
2906
  #: framework/premium/features/premium-header/items/contacts/options.php:472,
2907
  #: framework/premium/features/premium-header/items/contacts/options.php:515,
2908
- #: framework/premium/features/premium-header/items/contacts/options.php:555
 
 
 
2909
  msgid "Text Initial"
2910
  msgstr ""
2911
 
2912
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:149,
 
2913
  #: framework/premium/features/premium-header/items/contacts/options.php:484,
2914
  #: framework/premium/features/premium-header/items/contacts/options.php:525,
2915
- #: framework/premium/features/premium-header/items/contacts/options.php:565
 
 
 
2916
  msgid "Link Hover"
2917
  msgstr ""
2918
 
2919
- #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:160
 
2920
  msgid "Filter Button & Panel"
2921
  msgstr ""
2922
 
2923
- #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:169
 
2924
  msgid "Filter Icon Type"
2925
  msgstr ""
2926
 
2927
- #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:207
 
2928
  msgid "Filter Button Visibility"
2929
  msgstr ""
2930
 
2931
- #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:230
 
2932
  msgid "Panel Reveal"
2933
  msgstr ""
2934
 
2935
- #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:237
 
2936
  msgid "Left Side"
2937
  msgstr ""
2938
 
2939
- #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:238
 
2940
  msgid "Right Side"
2941
  msgstr ""
2942
 
2943
- #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:243
 
2944
  msgid "Panel Width"
2945
  msgstr ""
2946
 
2947
- #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:284
 
2948
  msgid "Panel Background"
2949
  msgstr ""
2950
 
2951
- #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:316
 
2952
  msgid "Panel Shadow"
2953
  msgstr ""
2954
 
2955
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:335,
2956
- #: framework/features/header/items/account/options.php:1093
 
 
2957
  msgid "Close Button Type"
2958
  msgstr ""
2959
 
2960
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:344,
2961
- #: framework/features/header/items/account/options.php:1102
 
 
2962
  msgid "Simple"
2963
  msgstr ""
2964
 
2965
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:345,
2966
- #: framework/features/header/items/account/options.php:1103
 
 
2967
  msgid "Border"
2968
  msgstr ""
2969
 
2970
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:386,
2971
- #: framework/features/header/items/account/options.php:1146
 
 
2972
  msgid "Border Color"
2973
  msgstr ""
2974
 
2975
- #: framework/premium/extensions/woocommerce-extra/readme.php:4
 
2976
  msgid ""
2977
  "After installing and activating the WooCommerce Extra extension you will "
2978
  "have these features:"
2979
  msgstr ""
2980
 
2981
- #: framework/premium/extensions/woocommerce-extra/readme.php:10
 
2982
  msgid "Product Quick View"
2983
  msgstr ""
2984
 
@@ -2986,252 +4222,334 @@ msgstr ""
2986
  #: framework/premium/extensions/woocommerce-extra/readme.php:29,
2987
  #: framework/premium/extensions/woocommerce-extra/readme.php:44,
2988
  #: framework/premium/extensions/woocommerce-extra/readme.php:59,
2989
- #: framework/premium/extensions/woocommerce-extra/readme.php:74
 
 
 
 
 
2990
  msgid "Navigate to %s."
2991
  msgstr ""
2992
 
2993
- #: framework/premium/extensions/woocommerce-extra/readme.php:17
 
2994
  msgid "Customizer ➝ WooCommerce ➝ Product Archives ➝ Card Options ➝ Quick View"
2995
  msgstr ""
2996
 
2997
- #: framework/premium/extensions/woocommerce-extra/readme.php:32
 
2998
  msgid "Customizer ➝ WooCommerce ➝ Single Product ➝ Floating Cart"
2999
  msgstr ""
3000
 
3001
- #: framework/premium/extensions/woocommerce-extra/readme.php:40
 
3002
  msgid "Advanced Gallery & Slider"
3003
  msgstr ""
3004
 
3005
- #: framework/premium/extensions/woocommerce-extra/readme.php:47
 
3006
  msgid "Customizer ➝ WooCommerce ➝ Single Product ➝ Gallery Options"
3007
  msgstr ""
3008
 
3009
- #: framework/premium/extensions/woocommerce-extra/readme.php:55
 
3010
  msgid "Share Box"
3011
  msgstr ""
3012
 
3013
- #: framework/premium/extensions/woocommerce-extra/readme.php:62
 
3014
  msgid "Customizer ➝ WooCommerce ➝ Single Product ➝ Share Box"
3015
  msgstr ""
3016
 
3017
- #: framework/premium/extensions/woocommerce-extra/readme.php:77
 
3018
  msgid "Customizer ➝ WooCommerce ➝ General ➝ Products Wishlist"
3019
  msgstr ""
3020
 
3021
- #: framework/premium/features/content-blocks/admin-ui.php:17
 
3022
  msgid "Enable"
3023
  msgstr ""
3024
 
3025
- #: framework/premium/features/content-blocks/admin-ui.php:18
 
3026
  msgid "Disable"
3027
  msgstr ""
3028
 
3029
- #: framework/premium/features/content-blocks/admin-ui.php:69
 
3030
  msgid "Enabled %s content block."
3031
  msgid_plural "Enabled %s content blocks."
3032
  msgstr[0] ""
3033
  msgstr[1] ""
3034
 
3035
- #: framework/premium/features/content-blocks/admin-ui.php:94
 
3036
  msgid "Disabled %s content block."
3037
  msgid_plural "Disabled %s content blocks."
3038
  msgstr[0] ""
3039
  msgstr[1] ""
3040
 
3041
- #: framework/premium/features/content-blocks/admin-ui.php:120
 
3042
  #: framework/premium/static/js/hooks/CreateHook.js:68
3043
  msgid "Custom Content/Hooks"
3044
  msgstr ""
3045
 
3046
- #: framework/premium/features/content-blocks/admin-ui.php:121
 
3047
  #: framework/premium/static/js/hooks/CreateHook.js:77
3048
  msgid "Popup"
3049
  msgstr ""
3050
 
3051
- #: framework/premium/features/content-blocks/admin-ui.php:122
 
3052
  msgid "404 Page"
3053
  msgstr ""
3054
 
3055
  #: framework/premium/features/content-blocks/admin-ui.php:123,
3056
  #: framework/premium/features/content-blocks/hooks-manager.php:50,
3057
- #: framework/premium/features/content-blocks/hooks-manager.php:59
 
 
 
3058
  msgid "Header"
3059
  msgstr ""
3060
 
3061
  #: framework/premium/features/content-blocks/admin-ui.php:124,
3062
  #: framework/premium/features/content-blocks/hooks-manager.php:890,
3063
  #: framework/premium/features/content-blocks/hooks-manager.php:898,
3064
- #: framework/premium/features/content-blocks/hooks-manager.php:906
 
 
 
 
3065
  msgid "Footer"
3066
  msgstr ""
3067
 
3068
- #: framework/premium/features/content-blocks/admin-ui.php:125
 
3069
  msgid "Archive"
3070
  msgstr ""
3071
 
3072
- #: framework/premium/features/content-blocks/admin-ui.php:126
 
3073
  msgid "Single"
3074
  msgstr ""
3075
 
3076
- #: framework/premium/features/content-blocks/admin-ui.php:131
 
3077
  msgid "All types"
3078
  msgstr ""
3079
 
3080
- #: framework/premium/features/content-blocks/admin-ui.php:197
 
3081
  msgid "Location/Trigger"
3082
  msgstr ""
3083
 
3084
- #: framework/premium/features/content-blocks/admin-ui.php:198
 
3085
  msgid "Conditions"
3086
  msgstr ""
3087
 
3088
- #: framework/premium/features/content-blocks/admin-ui.php:199
 
3089
  msgid "Output"
3090
  msgstr ""
3091
 
3092
- #: framework/premium/features/content-blocks/admin-ui.php:200
 
3093
  msgid "Enable/Disable"
3094
  msgstr ""
3095
 
3096
  #: framework/premium/features/content-blocks/admin-ui.php:226,
3097
- #: framework/premium/features/content-blocks/options/popup.php:163
 
 
3098
  msgid "On scroll"
3099
  msgstr ""
3100
 
3101
  #: framework/premium/features/content-blocks/admin-ui.php:227,
3102
- #: framework/premium/features/content-blocks/options/popup.php:164
 
 
3103
  msgid "On scroll to element"
3104
  msgstr ""
3105
 
3106
  #: framework/premium/features/content-blocks/admin-ui.php:228,
3107
- #: framework/premium/features/content-blocks/options/popup.php:165
 
 
3108
  msgid "On page load"
3109
  msgstr ""
3110
 
3111
  #: framework/premium/features/content-blocks/admin-ui.php:229,
3112
- #: framework/premium/features/content-blocks/options/popup.php:166
 
 
3113
  msgid "After inactivity"
3114
  msgstr ""
3115
 
3116
  #: framework/premium/features/content-blocks/admin-ui.php:230,
3117
- #: framework/premium/features/content-blocks/options/popup.php:167
 
 
3118
  msgid "After x time"
3119
  msgstr ""
3120
 
3121
  #: framework/premium/features/content-blocks/admin-ui.php:231,
3122
- #: framework/premium/features/content-blocks/options/popup.php:168
 
 
3123
  msgid "After x pages"
3124
  msgstr ""
3125
 
3126
  #: framework/premium/features/content-blocks/admin-ui.php:232,
3127
- #: framework/premium/features/content-blocks/options/popup.php:169
 
 
3128
  msgid "On page exit intent"
3129
  msgstr ""
3130
 
3131
- #: framework/premium/features/content-blocks/admin-ui.php:236
 
3132
  msgid "Down"
3133
  msgstr ""
3134
 
3135
- #: framework/premium/features/content-blocks/admin-ui.php:237
 
3136
  msgid "Up"
3137
  msgstr ""
3138
 
3139
- #: framework/premium/features/content-blocks/hooks-manager.php:11
 
3140
  msgid "WP head"
3141
  msgstr ""
3142
 
3143
  #: framework/premium/features/content-blocks/hooks-manager.php:13,
3144
  #: framework/premium/features/content-blocks/hooks-manager.php:22,
3145
  #: framework/premium/features/content-blocks/hooks-manager.php:32,
3146
- #: framework/premium/features/content-blocks/hooks-manager.php:41
 
 
 
 
3147
  msgid "Head"
3148
  msgstr ""
3149
 
3150
- #: framework/premium/features/content-blocks/hooks-manager.php:20
 
3151
  msgid "WP head start"
3152
  msgstr ""
3153
 
3154
- #: framework/premium/features/content-blocks/hooks-manager.php:30
 
3155
  msgid "WP head end"
3156
  msgstr ""
3157
 
3158
- #: framework/premium/features/content-blocks/hooks-manager.php:39
 
3159
  msgid "WP body open"
3160
  msgstr ""
3161
 
3162
- #: framework/premium/features/content-blocks/hooks-manager.php:48
 
3163
  msgid "Header before"
3164
  msgstr ""
3165
 
3166
- #: framework/premium/features/content-blocks/hooks-manager.php:57
 
3167
  msgid "Header after"
3168
  msgstr ""
3169
 
3170
- #: framework/premium/features/content-blocks/hooks-manager.php:66
 
3171
  msgid "Desktop top"
3172
  msgstr ""
3173
 
3174
  #: framework/premium/features/content-blocks/hooks-manager.php:68,
3175
  #: framework/premium/features/content-blocks/hooks-manager.php:77,
3176
  #: framework/premium/features/content-blocks/hooks-manager.php:86,
3177
- #: framework/premium/features/content-blocks/hooks-manager.php:95
 
 
 
 
3178
  msgid "Header offcanvas"
3179
  msgstr ""
3180
 
3181
- #: framework/premium/features/content-blocks/hooks-manager.php:75
 
3182
  msgid "Desktop bottom"
3183
  msgstr ""
3184
 
3185
- #: framework/premium/features/content-blocks/hooks-manager.php:84
 
3186
  msgid "Mobile top"
3187
  msgstr ""
3188
 
3189
- #: framework/premium/features/content-blocks/hooks-manager.php:93
 
3190
  msgid "Mobile bottom"
3191
  msgstr ""
3192
 
3193
- #: framework/premium/features/content-blocks/hooks-manager.php:102
 
3194
  msgid "Sidebar before"
3195
  msgstr ""
3196
 
3197
  #: framework/premium/features/content-blocks/hooks-manager.php:103,
3198
  #: framework/premium/features/content-blocks/hooks-manager.php:110,
3199
  #: framework/premium/features/content-blocks/hooks-manager.php:117,
3200
- #: framework/premium/features/content-blocks/hooks-manager.php:124
 
 
 
 
3201
  msgid "Left/Right sidebar"
3202
  msgstr ""
3203
 
3204
- #: framework/premium/features/content-blocks/hooks-manager.php:109
 
3205
  msgid "Sidebar start"
3206
  msgstr ""
3207
 
3208
- #: framework/premium/features/content-blocks/hooks-manager.php:116
 
3209
  msgid "Sidebar end"
3210
  msgstr ""
3211
 
3212
- #: framework/premium/features/content-blocks/hooks-manager.php:123
 
3213
  msgid "Sidebar after"
3214
  msgstr ""
3215
 
3216
- #: framework/premium/features/content-blocks/hooks-manager.php:130
 
3217
  msgid "Dynamic sidebar before"
3218
  msgstr ""
3219
 
3220
  #: framework/premium/features/content-blocks/hooks-manager.php:131,
3221
  #: framework/premium/features/content-blocks/hooks-manager.php:138,
3222
- #: framework/premium/features/content-blocks/hooks-manager.php:146
 
 
 
3223
  msgid "All widget areas"
3224
  msgstr ""
3225
 
3226
- #: framework/premium/features/content-blocks/hooks-manager.php:137
 
3227
  msgid "Dynamic sidebar"
3228
  msgstr ""
3229
 
3230
- #: framework/premium/features/content-blocks/hooks-manager.php:145
 
3231
  msgid "Dynamic sidebar after"
3232
  msgstr ""
3233
 
3234
- #: framework/premium/features/content-blocks/hooks-manager.php:154
 
3235
  msgid "Before section"
3236
  msgstr ""
3237
 
@@ -3244,69 +4562,99 @@ msgstr ""
3244
  #: framework/premium/features/content-blocks/hooks-manager.php:203,
3245
  #: framework/premium/features/content-blocks/hooks-manager.php:211,
3246
  #: framework/premium/features/content-blocks/hooks-manager.php:219,
3247
- #: framework/premium/features/content-blocks/hooks-manager.php:227
 
 
 
 
 
 
 
 
 
 
3248
  msgid "Page/post title"
3249
  msgstr ""
3250
 
3251
  #: framework/premium/features/content-blocks/hooks-manager.php:162,
3252
  #: framework/premium/features/content-blocks/hooks-manager.php:280,
3253
- #: framework/premium/features/content-blocks/hooks-manager.php:322
 
 
 
3254
  msgid "Before title"
3255
  msgstr ""
3256
 
3257
- #: framework/premium/features/content-blocks/hooks-manager.php:170
 
3258
  msgid "Before description"
3259
  msgstr ""
3260
 
3261
- #: framework/premium/features/content-blocks/hooks-manager.php:178
 
3262
  msgid "Before breadcrumbs"
3263
  msgstr ""
3264
 
3265
- #: framework/premium/features/content-blocks/hooks-manager.php:186
 
3266
  msgid "Before post meta"
3267
  msgstr ""
3268
 
3269
  #: framework/premium/features/content-blocks/hooks-manager.php:194,
3270
  #: framework/premium/features/content-blocks/hooks-manager.php:287,
3271
- #: framework/premium/features/content-blocks/hooks-manager.php:329
 
 
 
3272
  msgid "After title"
3273
  msgstr ""
3274
 
3275
- #: framework/premium/features/content-blocks/hooks-manager.php:202
 
3276
  msgid "After description"
3277
  msgstr ""
3278
 
3279
- #: framework/premium/features/content-blocks/hooks-manager.php:210
 
3280
  msgid "After breadcrumbs"
3281
  msgstr ""
3282
 
3283
- #: framework/premium/features/content-blocks/hooks-manager.php:218
 
3284
  msgid "After post meta"
3285
  msgstr ""
3286
 
3287
- #: framework/premium/features/content-blocks/hooks-manager.php:226
 
3288
  msgid "After section"
3289
  msgstr ""
3290
 
3291
- #: framework/premium/features/content-blocks/hooks-manager.php:234
 
3292
  msgid "Before content"
3293
  msgstr ""
3294
 
3295
  #: framework/premium/features/content-blocks/hooks-manager.php:242,
3296
- #: framework/premium/features/content-blocks/hooks-manager.php:415
 
 
3297
  msgid "Top content"
3298
  msgstr ""
3299
 
3300
  #: framework/premium/features/content-blocks/hooks-manager.php:250,
3301
- #: framework/premium/features/content-blocks/hooks-manager.php:437
 
 
3302
  msgid "Bottom content"
3303
  msgstr ""
3304
 
3305
- #: framework/premium/features/content-blocks/hooks-manager.php:258
 
3306
  msgid "After content"
3307
  msgstr ""
3308
 
3309
- #: framework/premium/features/content-blocks/hooks-manager.php:266
 
3310
  msgid "Before comments"
3311
  msgstr ""
3312
 
@@ -3315,23 +4663,33 @@ msgstr ""
3315
  #: framework/premium/features/content-blocks/hooks-manager.php:281,
3316
  #: framework/premium/features/content-blocks/hooks-manager.php:288,
3317
  #: framework/premium/features/content-blocks/hooks-manager.php:295,
3318
- #: framework/premium/features/content-blocks/hooks-manager.php:302
 
 
 
 
 
 
3319
  msgid "Comments"
3320
  msgstr ""
3321
 
3322
- #: framework/premium/features/content-blocks/hooks-manager.php:273
 
3323
  msgid "Top comments"
3324
  msgstr ""
3325
 
3326
- #: framework/premium/features/content-blocks/hooks-manager.php:294
 
3327
  msgid "Bottom comments"
3328
  msgstr ""
3329
 
3330
- #: framework/premium/features/content-blocks/hooks-manager.php:301
 
3331
  msgid "After comments"
3332
  msgstr ""
3333
 
3334
- #: framework/premium/features/content-blocks/hooks-manager.php:308
 
3335
  msgid "Before related posts"
3336
  msgstr ""
3337
 
@@ -3344,75 +4702,105 @@ msgstr ""
3344
  #: framework/premium/features/content-blocks/hooks-manager.php:351,
3345
  #: framework/premium/features/content-blocks/hooks-manager.php:358,
3346
  #: framework/premium/features/content-blocks/hooks-manager.php:366,
3347
- #: framework/premium/features/content-blocks/hooks-manager.php:373
 
 
 
 
 
 
 
 
 
 
3348
  msgid "Related posts"
3349
  msgstr ""
3350
 
3351
- #: framework/premium/features/content-blocks/hooks-manager.php:315
 
3352
  msgid "Related posts top"
3353
  msgstr ""
3354
 
3355
- #: framework/premium/features/content-blocks/hooks-manager.php:336
 
3356
  msgid "Card top"
3357
  msgstr ""
3358
 
3359
- #: framework/premium/features/content-blocks/hooks-manager.php:343
 
3360
  msgid "Before featured image"
3361
  msgstr ""
3362
 
3363
- #: framework/premium/features/content-blocks/hooks-manager.php:350
 
3364
  msgid "After featured image"
3365
  msgstr ""
3366
 
3367
- #: framework/premium/features/content-blocks/hooks-manager.php:357
 
3368
  msgid "Card bottom"
3369
  msgstr ""
3370
 
3371
- #: framework/premium/features/content-blocks/hooks-manager.php:365
 
3372
  msgid "Related posts bottom"
3373
  msgstr ""
3374
 
3375
- #: framework/premium/features/content-blocks/hooks-manager.php:372
 
3376
  msgid "After related posts"
3377
  msgstr ""
3378
 
3379
  #: framework/premium/features/content-blocks/hooks-manager.php:379,
3380
- #: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:459
 
 
3381
  msgid "Before"
3382
  msgstr ""
3383
 
3384
  #: framework/premium/features/content-blocks/hooks-manager.php:380,
3385
- #: framework/premium/features/content-blocks/hooks-manager.php:387
 
 
3386
  msgid "Loop"
3387
  msgstr ""
3388
 
3389
  #: framework/premium/features/content-blocks/hooks-manager.php:386,
3390
- #: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:470
 
 
3391
  msgid "After"
3392
  msgstr ""
3393
 
3394
- #: framework/premium/features/content-blocks/hooks-manager.php:393
 
3395
  msgid "Start"
3396
  msgstr ""
3397
 
3398
  #: framework/premium/features/content-blocks/hooks-manager.php:394,
3399
- #: framework/premium/features/content-blocks/hooks-manager.php:401
 
 
3400
  msgid "Loop card"
3401
  msgstr ""
3402
 
3403
- #: framework/premium/features/content-blocks/hooks-manager.php:400
 
3404
  msgid "End"
3405
  msgstr ""
3406
 
3407
- #: framework/premium/features/content-blocks/hooks-manager.php:423
 
3408
  msgid "After certain number of blocks"
3409
  msgstr ""
3410
 
3411
- #: framework/premium/features/content-blocks/hooks-manager.php:430
 
3412
  msgid "Before certain number of headings"
3413
  msgstr ""
3414
 
3415
- #: framework/premium/features/content-blocks/hooks-manager.php:453
 
3416
  msgid "Login form start"
3417
  msgstr ""
3418
 
@@ -3425,879 +4813,1172 @@ msgstr ""
3425
  #: framework/premium/features/content-blocks/hooks-manager.php:496,
3426
  #: framework/premium/features/content-blocks/hooks-manager.php:503,
3427
  #: framework/premium/features/content-blocks/hooks-manager.php:510,
3428
- #: framework/premium/features/content-blocks/hooks-manager.php:517
 
 
 
 
 
 
 
 
 
 
3429
  msgid "Auth forms"
3430
  msgstr ""
3431
 
3432
- #: framework/premium/features/content-blocks/hooks-manager.php:460
 
3433
  msgid "Login form end"
3434
  msgstr ""
3435
 
3436
- #: framework/premium/features/content-blocks/hooks-manager.php:467
 
3437
  msgid "Login form modal start"
3438
  msgstr ""
3439
 
3440
- #: framework/premium/features/content-blocks/hooks-manager.php:474
 
3441
  msgid "Login form modal end"
3442
  msgstr ""
3443
 
3444
- #: framework/premium/features/content-blocks/hooks-manager.php:481
 
3445
  msgid "Register form start"
3446
  msgstr ""
3447
 
3448
- #: framework/premium/features/content-blocks/hooks-manager.php:488
 
3449
  msgid "Register form end"
3450
  msgstr ""
3451
 
3452
- #: framework/premium/features/content-blocks/hooks-manager.php:495
 
3453
  msgid "Register form modal start"
3454
  msgstr ""
3455
 
3456
- #: framework/premium/features/content-blocks/hooks-manager.php:502
 
3457
  msgid "Register form modal end"
3458
  msgstr ""
3459
 
3460
- #: framework/premium/features/content-blocks/hooks-manager.php:509
 
3461
  msgid "Lost password form modal start"
3462
  msgstr ""
3463
 
3464
- #: framework/premium/features/content-blocks/hooks-manager.php:516
 
3465
  msgid "Lost password form modal end"
3466
  msgstr ""
3467
 
3468
- #: framework/premium/features/content-blocks/hooks-manager.php:524
 
3469
  msgid "Before main content"
3470
  msgstr ""
3471
 
3472
- #: framework/premium/features/content-blocks/hooks-manager.php:530
 
3473
  msgid "After main content"
3474
  msgstr ""
3475
 
3476
- #: framework/premium/features/content-blocks/hooks-manager.php:536
 
3477
  msgid "Offcanvas Filters Top"
3478
  msgstr ""
3479
 
3480
- #: framework/premium/features/content-blocks/hooks-manager.php:542
 
3481
  msgid "Offcanvas Filters Bottom"
3482
  msgstr ""
3483
 
3484
- #: framework/premium/features/content-blocks/hooks-manager.php:545
 
3485
  msgid "WooCommerce Global"
3486
  msgstr ""
3487
 
3488
- #: framework/premium/features/content-blocks/hooks-manager.php:550
 
3489
  msgid "Archive description"
3490
  msgstr ""
3491
 
3492
- #: framework/premium/features/content-blocks/hooks-manager.php:555
 
3493
  msgid "Before shop loop"
3494
  msgstr ""
3495
 
3496
- #: framework/premium/features/content-blocks/hooks-manager.php:572
 
3497
  msgid "Before shop loop item title"
3498
  msgstr ""
3499
 
3500
- #: framework/premium/features/content-blocks/hooks-manager.php:577
 
3501
  msgid "After shop loop item title"
3502
  msgstr ""
3503
 
3504
- #: framework/premium/features/content-blocks/hooks-manager.php:582
 
3505
  msgid "Before shop loop item price"
3506
  msgstr ""
3507
 
3508
- #: framework/premium/features/content-blocks/hooks-manager.php:587
 
3509
  msgid "After shop loop item price"
3510
  msgstr ""
3511
 
3512
- #: framework/premium/features/content-blocks/hooks-manager.php:592
 
3513
  msgid "Before shop loop item actions"
3514
  msgstr ""
3515
 
3516
- #: framework/premium/features/content-blocks/hooks-manager.php:597
 
3517
  msgid "After shop loop item actions"
3518
  msgstr ""
3519
 
3520
- #: framework/premium/features/content-blocks/hooks-manager.php:602
 
3521
  msgid "After shop loop"
3522
  msgstr ""
3523
 
3524
- #: framework/premium/features/content-blocks/hooks-manager.php:604
 
3525
  msgid "WooCommerce Archive"
3526
  msgstr ""
3527
 
3528
- #: framework/premium/features/content-blocks/hooks-manager.php:609
 
3529
  msgid "Before single product"
3530
  msgstr ""
3531
 
3532
- #: framework/premium/features/content-blocks/hooks-manager.php:627
 
3533
  msgid "Product meta start"
3534
  msgstr ""
3535
 
3536
- #: framework/premium/features/content-blocks/hooks-manager.php:631
 
3537
  msgid "Product meta end"
3538
  msgstr ""
3539
 
3540
- #: framework/premium/features/content-blocks/hooks-manager.php:635
 
3541
  msgid "Share"
3542
  msgstr ""
3543
 
3544
- #: framework/premium/features/content-blocks/hooks-manager.php:639
 
3545
  msgid "After single product"
3546
  msgstr ""
3547
 
3548
- #: framework/premium/features/content-blocks/hooks-manager.php:645
 
3549
  msgid "Before single product excerpt"
3550
  msgstr ""
3551
 
3552
- #: framework/premium/features/content-blocks/hooks-manager.php:650
 
3553
  msgid "After single product excerpt"
3554
  msgstr ""
3555
 
3556
- #: framework/premium/features/content-blocks/hooks-manager.php:655
 
3557
  msgid "Before single product tabs"
3558
  msgstr ""
3559
 
3560
- #: framework/premium/features/content-blocks/hooks-manager.php:661
 
3561
  msgid "After single product tabs"
3562
  msgstr ""
3563
 
3564
- #: framework/premium/features/content-blocks/hooks-manager.php:665
 
3565
  msgid "WooCommerce Product"
3566
  msgstr ""
3567
 
3568
- #: framework/premium/features/content-blocks/hooks-manager.php:670
 
3569
  msgid "Cart is empty"
3570
  msgstr ""
3571
 
3572
- #: framework/premium/features/content-blocks/hooks-manager.php:674
 
3573
  msgid "Before cart"
3574
  msgstr ""
3575
 
3576
- #: framework/premium/features/content-blocks/hooks-manager.php:678
 
3577
  msgid "Before cart table"
3578
  msgstr ""
3579
 
3580
- #: framework/premium/features/content-blocks/hooks-manager.php:682
 
3581
  msgid "Before cart contents"
3582
  msgstr ""
3583
 
3584
- #: framework/premium/features/content-blocks/hooks-manager.php:686
 
3585
  msgid "Cart contents"
3586
  msgstr ""
3587
 
3588
- #: framework/premium/features/content-blocks/hooks-manager.php:690
 
3589
  msgid "After cart contents"
3590
  msgstr ""
3591
 
3592
- #: framework/premium/features/content-blocks/hooks-manager.php:694
 
3593
  msgid "Cart coupon"
3594
  msgstr ""
3595
 
3596
- #: framework/premium/features/content-blocks/hooks-manager.php:698
 
3597
  msgid "Cart actions"
3598
  msgstr ""
3599
 
3600
- #: framework/premium/features/content-blocks/hooks-manager.php:702
 
3601
  msgid "After cart table"
3602
  msgstr ""
3603
 
3604
- #: framework/premium/features/content-blocks/hooks-manager.php:706
 
3605
  msgid "Cart collaterals"
3606
  msgstr ""
3607
 
3608
- #: framework/premium/features/content-blocks/hooks-manager.php:710
 
3609
  msgid "Before cart totals"
3610
  msgstr ""
3611
 
3612
- #: framework/premium/features/content-blocks/hooks-manager.php:714
 
3613
  msgid "Cart totals before order total"
3614
  msgstr ""
3615
 
3616
- #: framework/premium/features/content-blocks/hooks-manager.php:718
 
3617
  msgid "Cart totals after order total"
3618
  msgstr ""
3619
 
3620
- #: framework/premium/features/content-blocks/hooks-manager.php:722
 
3621
  msgid "Proceed to checkout"
3622
  msgstr ""
3623
 
3624
- #: framework/premium/features/content-blocks/hooks-manager.php:726
 
3625
  msgid "After cart totals"
3626
  msgstr ""
3627
 
3628
- #: framework/premium/features/content-blocks/hooks-manager.php:730
 
3629
  msgid "After cart"
3630
  msgstr ""
3631
 
3632
- #: framework/premium/features/content-blocks/hooks-manager.php:735
 
3633
  msgid "Before Mini Cart"
3634
  msgstr ""
3635
 
3636
- #: framework/premium/features/content-blocks/hooks-manager.php:740
 
3637
  msgid "Before Mini Cart Contents"
3638
  msgstr ""
3639
 
3640
- #: framework/premium/features/content-blocks/hooks-manager.php:745
 
3641
  msgid "Mini Cart Contents"
3642
  msgstr ""
3643
 
3644
- #: framework/premium/features/content-blocks/hooks-manager.php:750
 
3645
  msgid "Widget Shopping Cart Before Buttons"
3646
  msgstr ""
3647
 
3648
- #: framework/premium/features/content-blocks/hooks-manager.php:755
 
3649
  msgid "Widget Shopping Cart After Buttons"
3650
  msgstr ""
3651
 
3652
- #: framework/premium/features/content-blocks/hooks-manager.php:760
 
3653
  msgid "After Mini Cart"
3654
  msgstr ""
3655
 
3656
- #: framework/premium/features/content-blocks/hooks-manager.php:762
 
3657
  msgid "WooCommerce Cart"
3658
  msgstr ""
3659
 
3660
- #: framework/premium/features/content-blocks/hooks-manager.php:768
 
3661
  msgid "Before checkout form"
3662
  msgstr ""
3663
 
3664
- #: framework/premium/features/content-blocks/hooks-manager.php:772
 
3665
  msgid "Before customer details"
3666
  msgstr ""
3667
 
3668
- #: framework/premium/features/content-blocks/hooks-manager.php:776
 
3669
  msgid "After customer details"
3670
  msgstr ""
3671
 
3672
- #: framework/premium/features/content-blocks/hooks-manager.php:780
 
3673
  msgid "Checkout billing"
3674
  msgstr ""
3675
 
3676
- #: framework/premium/features/content-blocks/hooks-manager.php:784
 
3677
  msgid "Before checkout billing form"
3678
  msgstr ""
3679
 
3680
- #: framework/premium/features/content-blocks/hooks-manager.php:788
 
3681
  msgid "After checkout billing form"
3682
  msgstr ""
3683
 
3684
- #: framework/premium/features/content-blocks/hooks-manager.php:792
 
3685
  msgid "Before order notes"
3686
  msgstr ""
3687
 
3688
- #: framework/premium/features/content-blocks/hooks-manager.php:796
 
3689
  msgid "After order notes"
3690
  msgstr ""
3691
 
3692
- #: framework/premium/features/content-blocks/hooks-manager.php:800
 
3693
  msgid "Checkout shipping"
3694
  msgstr ""
3695
 
3696
- #: framework/premium/features/content-blocks/hooks-manager.php:804
 
3697
  msgid "Checkout before order review"
3698
  msgstr ""
3699
 
3700
- #: framework/premium/features/content-blocks/hooks-manager.php:808
 
3701
  msgid "Checkout order review"
3702
  msgstr ""
3703
 
3704
- #: framework/premium/features/content-blocks/hooks-manager.php:812
 
3705
  msgid "Review order before cart contents"
3706
  msgstr ""
3707
 
3708
- #: framework/premium/features/content-blocks/hooks-manager.php:816
 
3709
  msgid "Review order after cart contents"
3710
  msgstr ""
3711
 
3712
- #: framework/premium/features/content-blocks/hooks-manager.php:820
 
3713
  msgid "Review order before order total"
3714
  msgstr ""
3715
 
3716
- #: framework/premium/features/content-blocks/hooks-manager.php:824
 
3717
  msgid "Review order after order total"
3718
  msgstr ""
3719
 
3720
- #: framework/premium/features/content-blocks/hooks-manager.php:828
 
3721
  msgid "Review order before payment"
3722
  msgstr ""
3723
 
3724
- #: framework/premium/features/content-blocks/hooks-manager.php:832
 
3725
  msgid "Review order before submit"
3726
  msgstr ""
3727
 
3728
- #: framework/premium/features/content-blocks/hooks-manager.php:836
 
3729
  msgid "Review order after submit"
3730
  msgstr ""
3731
 
3732
- #: framework/premium/features/content-blocks/hooks-manager.php:840
 
3733
  msgid "Review order after payment"
3734
  msgstr ""
3735
 
3736
- #: framework/premium/features/content-blocks/hooks-manager.php:844
 
3737
  msgid "Checkout after order review"
3738
  msgstr ""
3739
 
3740
- #: framework/premium/features/content-blocks/hooks-manager.php:848
 
3741
  msgid "After checkout form"
3742
  msgstr ""
3743
 
3744
- #: framework/premium/features/content-blocks/hooks-manager.php:851
 
3745
  msgid "WooCommerce Checkout"
3746
  msgstr ""
3747
 
3748
- #: framework/premium/features/content-blocks/hooks-manager.php:857
 
3749
  msgid "Before my account"
3750
  msgstr ""
3751
 
3752
- #: framework/premium/features/content-blocks/hooks-manager.php:861
 
3753
  msgid "Before account navigation"
3754
  msgstr ""
3755
 
3756
- #: framework/premium/features/content-blocks/hooks-manager.php:865
 
3757
  msgid "Account navigation"
3758
  msgstr ""
3759
 
3760
- #: framework/premium/features/content-blocks/hooks-manager.php:869
 
3761
  msgid "After account navigation"
3762
  msgstr ""
3763
 
3764
- #: framework/premium/features/content-blocks/hooks-manager.php:873
 
3765
  msgid "Account content"
3766
  msgstr ""
3767
 
3768
- #: framework/premium/features/content-blocks/hooks-manager.php:877
 
3769
  msgid "Account dashboard"
3770
  msgstr ""
3771
 
3772
- #: framework/premium/features/content-blocks/hooks-manager.php:881
 
3773
  msgid "After my account"
3774
  msgstr ""
3775
 
3776
  #: framework/premium/features/content-blocks/hooks-manager.php:883,
3777
  #: framework/features/header/items/account/options.php:17,
3778
- #: framework/features/header/items/account/options.php:18
 
 
 
3779
  msgid "WooCommerce Account"
3780
  msgstr ""
3781
 
3782
- #: framework/premium/features/content-blocks/hooks-manager.php:889
 
3783
  msgid "WP footer"
3784
  msgstr ""
3785
 
3786
- #: framework/premium/features/content-blocks/hooks-manager.php:897
 
3787
  msgid "Footer before"
3788
  msgstr ""
3789
 
3790
- #: framework/premium/features/content-blocks/hooks-manager.php:905
 
3791
  msgid "Footer after"
3792
  msgstr ""
3793
 
3794
- #: framework/premium/features/content-blocks/hooks-manager.php:920
 
3795
  msgid "Custom Hook (%s)"
3796
  msgstr ""
3797
 
3798
  #: framework/premium/features/content-blocks/hooks-manager.php:926,
3799
- #: framework/premium/features/content-blocks/options/hook.php:197
 
 
3800
  #: framework/premium/static/js/options/MultipleLocationsSelect.js:90
3801
  msgid "After Block Number"
3802
  msgstr ""
3803
 
3804
  #: framework/premium/features/content-blocks/hooks-manager.php:932,
3805
- #: framework/premium/features/content-blocks/options/hook.php:214
 
 
3806
  #: framework/premium/static/js/options/MultipleLocationsSelect.js:112
3807
  msgid "Before Heading Number"
3808
  msgstr ""
3809
 
3810
- #: framework/extensions/widgets/widgets/ct-about-me/widget.php:13
 
3811
  msgid "About Me"
3812
  msgstr ""
3813
 
3814
- #: framework/extensions/widgets/widgets/ct-about-me/widget.php:14
 
3815
  msgid "About me"
3816
  msgstr ""
3817
 
3818
  #: framework/extensions/widgets/widgets/ct-advertisement/options.php:18,
3819
  #: framework/extensions/widgets/widgets/ct-advertisement/view.php:12,
3820
  #: framework/extensions/widgets/widgets/ct-advertisement/widget.php:13,
3821
- #: framework/extensions/widgets/widgets/ct-advertisement/widget.php:14
 
 
 
 
3822
  msgid "Advertisement"
3823
  msgstr ""
3824
 
3825
- #: framework/extensions/widgets/widgets/ct-advertisement/options.php:31
 
3826
  msgid "Code"
3827
  msgstr ""
3828
 
3829
- #: framework/extensions/widgets/widgets/ct-advertisement/options.php:32
 
3830
  msgid "Image"
3831
  msgstr ""
3832
 
3833
- #: framework/extensions/widgets/widgets/ct-advertisement/options.php:42
 
3834
  msgid "Ad Code"
3835
  msgstr ""
3836
 
3837
- #: framework/extensions/widgets/widgets/ct-advertisement/options.php:58
 
3838
  msgid "Upload Image"
3839
  msgstr ""
3840
 
3841
  #: framework/extensions/widgets/widgets/ct-advertisement/options.php:62,
3842
- #: framework/extensions/widgets/widgets/ct-quote/options.php:66
 
 
3843
  msgid "Select Image"
3844
  msgstr ""
3845
 
3846
  #: framework/extensions/widgets/widgets/ct-advertisement/options.php:63,
3847
- #: framework/extensions/widgets/widgets/ct-quote/options.php:67
 
 
3848
  msgid "Change Image"
3849
  msgstr ""
3850
 
3851
  #: framework/extensions/widgets/widgets/ct-advertisement/options.php:67,
3852
- #: framework/extensions/widgets/widgets/ct-posts/options.php:126
 
 
3853
  msgid "Image Ratio"
3854
  msgstr ""
3855
 
3856
- #: framework/extensions/widgets/widgets/ct-advertisement/options.php:75
 
3857
  msgid "Ad URL"
3858
  msgstr ""
3859
 
3860
- #: framework/extensions/widgets/widgets/ct-contact-info/options.php:18,
3861
  #: framework/extensions/widgets/widgets/ct-contact-info/view.php:12,
3862
- #: framework/extensions/widgets/widgets/ct-contact-info/widget.php:13
 
 
 
3863
  msgid "Contact Info"
3864
  msgstr ""
3865
 
3866
- #: framework/extensions/widgets/widgets/ct-contact-info/options.php:43,
3867
- #: framework/extensions/widgets/widgets/ct-contact-info/options.php:72,
3868
  #: framework/extensions/widgets/widgets/ct-contact-info/view.php:24,
3869
  #: framework/premium/features/premium-header/items/contacts/options.php:17,
3870
  #: framework/premium/features/premium-header/items/contacts/options.php:46,
3871
- #: framework/premium/features/premium-header/items/contacts/view.php:22
 
 
 
 
 
 
3872
  msgid "Address:"
3873
  msgstr ""
3874
 
3875
- #: framework/extensions/widgets/widgets/ct-contact-info/options.php:50,
3876
- #: framework/extensions/widgets/widgets/ct-contact-info/options.php:130,
3877
  #: framework/extensions/widgets/widgets/ct-contact-info/view.php:31,
3878
  #: framework/premium/features/premium-header/items/contacts/options.php:24,
3879
  #: framework/premium/features/premium-header/items/contacts/options.php:82,
3880
- #: framework/premium/features/premium-header/items/contacts/view.php:29
 
 
 
 
 
 
3881
  msgid "Phone:"
3882
  msgstr ""
3883
 
3884
- #: framework/extensions/widgets/widgets/ct-contact-info/options.php:58,
3885
- #: framework/extensions/widgets/widgets/ct-contact-info/options.php:186,
3886
  #: framework/extensions/widgets/widgets/ct-contact-info/view.php:39,
3887
  #: framework/premium/features/premium-header/items/contacts/options.php:32,
3888
  #: framework/premium/features/premium-header/items/contacts/options.php:118,
3889
- #: framework/premium/features/premium-header/items/contacts/view.php:37
 
 
 
 
 
 
3890
  msgid "Mobile:"
3891
  msgstr ""
3892
 
3893
- #: framework/extensions/widgets/widgets/ct-contact-info/options.php:67,
3894
- #: framework/premium/features/premium-header/items/contacts/options.php:41
 
 
3895
  msgid "Address"
3896
  msgstr ""
3897
 
3898
- #: framework/extensions/widgets/widgets/ct-contact-info/options.php:85,
3899
- #: framework/extensions/widgets/widgets/ct-contact-info/options.php:143,
3900
- #: framework/extensions/widgets/widgets/ct-contact-info/options.php:199,
3901
- #: framework/extensions/widgets/widgets/ct-contact-info/options.php:255,
3902
- #: framework/extensions/widgets/widgets/ct-contact-info/options.php:311,
3903
- #: framework/extensions/widgets/widgets/ct-contact-info/options.php:367,
3904
- #: framework/extensions/widgets/widgets/ct-contact-info/options.php:423,
3905
  #: framework/premium/features/premium-header/items/contacts/options.php:59,
3906
  #: framework/premium/features/premium-header/items/contacts/options.php:95,
3907
  #: framework/premium/features/premium-header/items/contacts/options.php:131,
3908
  #: framework/premium/features/premium-header/items/contacts/options.php:167,
3909
  #: framework/premium/features/premium-header/items/contacts/options.php:203,
3910
  #: framework/premium/features/premium-header/items/contacts/options.php:239,
3911
- #: framework/premium/features/premium-header/items/contacts/options.php:275
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3912
  msgid "Link (optional)"
3913
  msgstr ""
3914
 
3915
- #: framework/extensions/widgets/widgets/ct-contact-info/options.php:236,
3916
- #: framework/premium/features/premium-header/items/contacts/options.php:149
 
 
3917
  msgid "Work Hours"
3918
  msgstr ""
3919
 
3920
- #: framework/extensions/widgets/widgets/ct-contact-info/options.php:242,
3921
- #: framework/premium/features/premium-header/items/contacts/options.php:154
 
 
3922
  msgid "Opening hours"
3923
  msgstr ""
3924
 
3925
- #: framework/extensions/widgets/widgets/ct-contact-info/options.php:292,
3926
- #: framework/premium/features/premium-header/items/contacts/options.php:185
 
 
3927
  msgid "Fax"
3928
  msgstr ""
3929
 
3930
- #: framework/extensions/widgets/widgets/ct-contact-info/options.php:298,
3931
- #: framework/premium/features/premium-header/items/contacts/options.php:190
 
 
3932
  msgid "Fax:"
3933
  msgstr ""
3934
 
3935
- #: framework/extensions/widgets/widgets/ct-contact-info/options.php:354,
3936
- #: framework/premium/features/premium-header/items/contacts/options.php:226
 
 
3937
  msgid "Email:"
3938
  msgstr ""
3939
 
3940
- #: framework/extensions/widgets/widgets/ct-contact-info/options.php:404,
3941
- #: framework/premium/features/premium-header/items/contacts/options.php:257
 
 
3942
  msgid "Website"
3943
  msgstr ""
3944
 
3945
- #: framework/extensions/widgets/widgets/ct-contact-info/options.php:410,
3946
- #: framework/premium/features/premium-header/items/contacts/options.php:262
 
 
3947
  msgid "Website:"
3948
  msgstr ""
3949
 
3950
- #: framework/extensions/widgets/widgets/ct-contact-info/options.php:468,
3951
- #: framework/extensions/widgets/widgets/ct-socials/options.php:86,
3952
- #: framework/premium/features/content-blocks/options/archive.php:46
 
 
 
3953
  msgid "Small"
3954
  msgstr ""
3955
 
3956
- #: framework/extensions/widgets/widgets/ct-contact-info/options.php:470,
3957
- #: framework/extensions/widgets/widgets/ct-socials/options.php:88
 
 
3958
  msgid "Large"
3959
  msgstr ""
3960
 
3961
- #: framework/extensions/widgets/widgets/ct-contact-info/options.php:475,
3962
- #: framework/extensions/widgets/widgets/ct-socials/options.php:93,
3963
- #: framework/premium/features/premium-header/items/contacts/options.php:331
 
 
 
3964
  msgid "Icons Shape Type"
3965
  msgstr ""
3966
 
3967
- #: framework/extensions/widgets/widgets/ct-contact-info/options.php:483,
3968
- #: framework/extensions/widgets/widgets/ct-socials/options.php:101,
3969
- #: framework/premium/features/premium-header/items/contacts/options.php:339
 
 
 
3970
  msgid "Rounded"
3971
  msgstr ""
3972
 
3973
- #: framework/extensions/widgets/widgets/ct-contact-info/options.php:484,
3974
- #: framework/extensions/widgets/widgets/ct-socials/options.php:102,
3975
- #: framework/premium/features/premium-header/items/contacts/options.php:340
 
 
 
3976
  msgid "Square"
3977
  msgstr ""
3978
 
3979
- #: framework/extensions/widgets/widgets/ct-contact-info/options.php:494,
3980
- #: framework/extensions/widgets/widgets/ct-socials/options.php:112,
3981
- #: framework/premium/features/premium-header/items/contacts/options.php:351
 
 
 
3982
  msgid "Shape Fill Type"
3983
  msgstr ""
3984
 
3985
- #: framework/extensions/widgets/widgets/ct-contact-info/options.php:501,
3986
- #: framework/extensions/widgets/widgets/ct-socials/options.php:119,
3987
- #: framework/premium/features/premium-header/items/contacts/options.php:358
 
 
 
3988
  msgid "Solid"
3989
  msgstr ""
3990
 
3991
- #: framework/extensions/widgets/widgets/ct-contact-info/options.php:502,
3992
- #: framework/extensions/widgets/widgets/ct-socials/options.php:120,
3993
- #: framework/premium/features/premium-header/items/contacts/options.php:359
 
 
 
3994
  msgid "Outline"
3995
  msgstr ""
3996
 
3997
- #: framework/extensions/widgets/widgets/ct-contact-info/widget.php:14
 
3998
  msgid "Contact info"
3999
  msgstr ""
4000
 
4001
- #: framework/extensions/widgets/widgets/ct-facebook/options.php:22
 
4002
  msgid "Page URL"
4003
  msgstr ""
4004
 
4005
- #: framework/extensions/widgets/widgets/ct-facebook/options.php:30
 
4006
  msgid "Profile Photos"
4007
  msgstr ""
4008
 
4009
- #: framework/extensions/widgets/widgets/ct-facebook/options.php:37
 
4010
  msgid "Timeline"
4011
  msgstr ""
4012
 
4013
- #: framework/extensions/widgets/widgets/ct-facebook/options.php:44
 
4014
  msgid "Cover Photo"
4015
  msgstr ""
4016
 
4017
- #: framework/extensions/widgets/widgets/ct-facebook/options.php:51
 
4018
  msgid "Small Header"
4019
  msgstr ""
4020
 
4021
- #: framework/extensions/widgets/widgets/ct-facebook/widget.php:14
 
4022
  msgid "Facebook like box"
4023
  msgstr ""
4024
 
4025
- #: framework/extensions/widgets/widgets/ct-posts/options.php:103
 
4026
  msgid "Widget Design"
4027
  msgstr ""
4028
 
4029
- #: framework/extensions/widgets/widgets/ct-posts/options.php:108
 
4030
  msgid "Without Thumbnails"
4031
  msgstr ""
4032
 
4033
- #: framework/extensions/widgets/widgets/ct-posts/options.php:109
 
4034
  msgid "Small Thumbnails"
4035
  msgstr ""
4036
 
4037
- #: framework/extensions/widgets/widgets/ct-posts/options.php:110
 
4038
  msgid "Large Thumbnails"
4039
  msgstr ""
4040
 
4041
- #: framework/extensions/widgets/widgets/ct-posts/options.php:111
 
4042
  msgid "First Thumbnail Large"
4043
  msgstr ""
4044
 
4045
- #: framework/extensions/widgets/widgets/ct-posts/options.php:112
 
4046
  msgid "Rounded Thumbnails"
4047
  msgstr ""
4048
 
4049
- #: framework/extensions/widgets/widgets/ct-posts/options.php:113
 
4050
  msgid "Numbered"
4051
  msgstr ""
4052
 
4053
- #: framework/extensions/widgets/widgets/ct-posts/options.php:193
 
4054
  msgid "Sort by"
4055
  msgstr ""
4056
 
4057
- #: framework/extensions/widgets/widgets/ct-posts/options.php:199
 
4058
  msgid "Recent"
4059
  msgstr ""
4060
 
4061
- #: framework/extensions/widgets/widgets/ct-posts/options.php:200
 
4062
  msgid "Most Commented"
4063
  msgstr ""
4064
 
4065
- #: framework/extensions/widgets/widgets/ct-posts/options.php:201
 
4066
  msgid "Random"
4067
  msgstr ""
4068
 
4069
- #: framework/extensions/widgets/widgets/ct-posts/options.php:208
 
4070
  msgid "Order by"
4071
  msgstr ""
4072
 
4073
- #: framework/extensions/widgets/widgets/ct-posts/options.php:214
 
4074
  msgid "1 Week"
4075
  msgstr ""
4076
 
4077
- #: framework/extensions/widgets/widgets/ct-posts/options.php:215
 
4078
  msgid "1 Month"
4079
  msgstr ""
4080
 
4081
- #: framework/extensions/widgets/widgets/ct-posts/options.php:216
 
4082
  msgid "3 Months"
4083
  msgstr ""
4084
 
4085
- #: framework/extensions/widgets/widgets/ct-posts/options.php:217
 
4086
  msgid "6 Months"
4087
  msgstr ""
4088
 
4089
- #: framework/extensions/widgets/widgets/ct-posts/options.php:218
 
4090
  msgid "1 Year"
4091
  msgstr ""
4092
 
4093
- #: framework/extensions/widgets/widgets/ct-posts/options.php:225
 
4094
  msgid "Posts Count"
4095
  msgstr ""
4096
 
4097
- #: framework/extensions/widgets/widgets/ct-posts/options.php:265
 
4098
  msgid "Pages ID"
4099
  msgstr ""
4100
 
4101
- #: framework/extensions/widgets/widgets/ct-posts/options.php:269
 
4102
  msgid "Separate pages ID by comma. More info %shere%s."
4103
  msgstr ""
4104
 
4105
- #: framework/extensions/widgets/widgets/ct-posts/options.php:287
 
4106
  msgid "Pages Count"
4107
  msgstr ""
4108
 
4109
- #: framework/extensions/widgets/widgets/ct-posts/options.php:298
 
4110
  msgid "Show Date"
4111
  msgstr ""
4112
 
4113
- #: framework/extensions/widgets/widgets/ct-posts/options.php:305
 
4114
  msgid "Show Comments"
4115
  msgstr ""
4116
 
4117
- #: framework/extensions/widgets/widgets/ct-posts/options.php:312
 
4118
  msgid "Show Excerpt"
4119
  msgstr ""
4120
 
4121
- #: framework/extensions/widgets/widgets/ct-posts/options.php:324
 
4122
  msgid "Excerpt Lenght"
4123
  msgstr ""
4124
 
4125
- #: framework/extensions/widgets/widgets/ct-posts/view.php:220
 
4126
  msgid "1 Comment"
4127
  msgstr ""
4128
 
4129
- #: framework/extensions/widgets/widgets/ct-posts/view.php:220
 
4130
  msgid "% Comments"
4131
  msgstr ""
4132
 
4133
  #: framework/extensions/widgets/widgets/ct-quote/options.php:18,
4134
  #: framework/extensions/widgets/widgets/ct-quote/view.php:12,
4135
  #: framework/extensions/widgets/widgets/ct-quote/widget.php:13,
4136
- #: framework/extensions/widgets/widgets/ct-quote/widget.php:14
 
 
 
 
4137
  msgid "Quote"
4138
  msgstr ""
4139
 
4140
- #: framework/extensions/widgets/widgets/ct-quote/options.php:46
 
4141
  msgid "Author Name"
4142
  msgstr ""
4143
 
4144
  #: framework/extensions/widgets/widgets/ct-quote/options.php:49,
4145
- #: framework/extensions/widgets/widgets/ct-quote/view.php:18
 
 
4146
  msgid "John Doe"
4147
  msgstr ""
4148
 
4149
- #: framework/extensions/widgets/widgets/ct-quote/options.php:55
 
4150
  msgid "Author Label"
4151
  msgstr ""
4152
 
4153
- #: framework/extensions/widgets/widgets/ct-quote/options.php:62
 
4154
  msgid "Author Avatar"
4155
  msgstr ""
4156
 
4157
  #. translators: %s here is the author name
4158
- #: framework/extensions/widgets/widgets/ct-quote/view.php:58
 
4159
  msgid "By %s"
4160
  msgstr ""
4161
 
4162
  #: framework/extensions/widgets/widgets/ct-socials/options.php:18,
4163
- #: framework/extensions/widgets/widgets/ct-socials/view.php:11
 
 
4164
  msgid "Social Icons"
4165
  msgstr ""
4166
 
4167
  #. translators: placeholder here means the actual URL.
4168
- #: framework/extensions/widgets/widgets/ct-socials/options.php:28
 
4169
  msgid ""
4170
  "Configure the social links in Customizer ➝ General ➝ %sSocial Network "
4171
  "Accounts%s."
4172
  msgstr ""
4173
 
4174
- #: framework/extensions/widgets/widgets/ct-socials/options.php:65
 
4175
  msgid "Open links in new tab"
4176
  msgstr ""
4177
 
4178
- #: framework/extensions/widgets/widgets/ct-socials/options.php:73
 
4179
  msgid "Set links to nofollow"
4180
  msgstr ""
4181
 
4182
- #: framework/features/header/items/account/options.php:4
 
4183
  msgid "Profile Page"
4184
  msgstr ""
4185
 
4186
- #: framework/features/header/items/account/options.php:5
 
4187
  msgid "Dashboard Page"
4188
  msgstr ""
4189
 
4190
  #: framework/features/header/items/account/options.php:7,
4191
- #: framework/features/header/items/account/options.php:13
 
 
4192
  msgid "Custom Link"
4193
  msgstr ""
4194
 
4195
- #: framework/features/header/items/account/options.php:8
 
4196
  msgid "Logout"
4197
  msgstr ""
4198
 
4199
- #: framework/features/header/items/account/options.php:12
 
4200
  msgid "Modal"
4201
  msgstr ""
4202
 
4203
- #: framework/features/header/items/account/options.php:28
 
4204
  msgid "Customizing: Logged in State"
4205
  msgstr ""
4206
 
4207
- #: framework/features/header/items/account/options.php:39
 
4208
  msgid "Customizing: Logged out State"
4209
  msgstr ""
4210
 
4211
- #: framework/features/header/items/account/options.php:53
 
4212
  msgid "Logged In Options"
4213
  msgstr ""
4214
 
4215
- #: framework/features/header/items/account/options.php:58
 
4216
  msgid "Logged Out Options"
4217
  msgstr ""
4218
 
4219
  #: framework/features/header/items/account/options.php:78,
4220
- #: framework/features/header/items/account/options.php:363
 
 
4221
  msgid "Account Action"
4222
  msgstr ""
4223
 
4224
- #: framework/features/header/items/account/options.php:91
 
4225
  msgid "Select Menu"
4226
  msgstr ""
4227
 
4228
- #: framework/features/header/items/account/options.php:97
 
4229
  msgid "Select menu..."
4230
  msgstr ""
4231
 
4232
  #. translators: placeholder here means the actual URL.
4233
- #: framework/features/header/items/account/options.php:101
 
4234
  msgid "Manage your menu items in the %sMenus screen%s."
4235
  msgstr ""
4236
 
4237
  #: framework/features/header/items/account/options.php:118,
4238
- #: framework/features/header/items/account/options.php:378
 
 
4239
  msgid "Custom Page Link"
4240
  msgstr ""
4241
 
4242
  #: framework/features/header/items/account/options.php:133,
4243
- #: framework/features/header/items/account/options.php:394
 
 
4244
  msgid "Account Image"
4245
  msgstr ""
4246
 
4247
- #: framework/features/header/items/account/options.php:139
 
4248
  msgid "Avatar"
4249
  msgstr ""
4250
 
4251
- #: framework/features/header/items/account/options.php:152
 
4252
  msgid "Avatar Size"
4253
  msgstr ""
4254
 
4255
  #: framework/features/header/items/account/options.php:237,
4256
- #: framework/features/header/items/account/options.php:479
 
 
4257
  msgid "Type 5"
4258
  msgstr ""
4259
 
4260
  #: framework/features/header/items/account/options.php:242,
4261
- #: framework/features/header/items/account/options.php:484
 
 
4262
  msgid "Type 6"
4263
  msgstr ""
4264
 
4265
- #: framework/features/header/items/account/options.php:321
 
4266
  msgid "Label Type"
4267
  msgstr ""
4268
 
 
 
 
 
 
 
4269
  #: framework/features/header/items/account/options.php:340,
4270
  #: framework/features/header/items/account/options.php:563,
4271
- #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:137
 
 
 
4272
  msgid "Label Text"
4273
  msgstr ""
4274
 
4275
  #: framework/features/header/items/account/options.php:345,
4276
- #: framework/features/header/items/account/views/login.php:85
 
 
4277
  msgid "My Account"
4278
  msgstr ""
4279
 
4280
- #: framework/features/header/items/account/options.php:579
 
4281
  msgid "User Visibility"
4282
  msgstr ""
4283
 
4284
- #: framework/features/header/items/account/options.php:590
 
4285
  msgid "Logged In"
4286
  msgstr ""
4287
 
4288
- #: framework/features/header/items/account/options.php:591
 
4289
  msgid "Logged Out"
4290
  msgstr ""
4291
 
4292
  #: framework/features/header/items/account/options.php:608,
4293
- #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:167
 
 
4294
  msgid "Label Font"
4295
  msgstr ""
4296
 
4297
  #: framework/features/header/items/account/options.php:619,
4298
  #: framework/features/header/items/account/options.php:648,
4299
  #: framework/features/header/items/account/options.php:680,
4300
- #: framework/features/header/items/account/options.php:710
 
 
 
 
4301
  msgid "Label Color"
4302
  msgstr ""
4303
 
@@ -4313,7 +5994,20 @@ msgstr ""
4313
  #: framework/premium/features/premium-header/items/search-input/options.php:199,
4314
  #: framework/premium/features/premium-header/items/search-input/options.php:329,
4315
  #: framework/premium/features/premium-header/items/search-input/options.php:459,
4316
- #: framework/premium/features/premium-header/items/search-input/options.php:595
 
 
 
 
 
 
 
 
 
 
 
 
 
4317
  msgid "Default State"
4318
  msgstr ""
4319
 
@@ -4329,7 +6023,20 @@ msgstr ""
4329
  #: framework/premium/features/premium-header/items/search-input/options.php:204,
4330
  #: framework/premium/features/premium-header/items/search-input/options.php:334,
4331
  #: framework/premium/features/premium-header/items/search-input/options.php:464,
4332
- #: framework/premium/features/premium-header/items/search-input/options.php:600
 
 
 
 
 
 
 
 
 
 
 
 
 
4333
  msgid "Transparent State"
4334
  msgstr ""
4335
 
@@ -4345,162 +6052,218 @@ msgstr ""
4345
  #: framework/premium/features/premium-header/items/search-input/options.php:213,
4346
  #: framework/premium/features/premium-header/items/search-input/options.php:343,
4347
  #: framework/premium/features/premium-header/items/search-input/options.php:473,
4348
- #: framework/premium/features/premium-header/items/search-input/options.php:609
 
 
 
 
 
 
 
 
 
 
 
 
 
4349
  msgid "Sticky State"
4350
  msgstr ""
4351
 
4352
- #: framework/features/header/items/account/options.php:890
 
4353
  msgid "Item Margin"
4354
  msgstr ""
4355
 
4356
- #: framework/features/header/items/account/options.php:909
 
4357
  msgid "Modal Options"
4358
  msgstr ""
4359
 
4360
- #: framework/features/header/items/account/options.php:1044
 
4361
  msgid "Modal Background"
4362
  msgstr ""
4363
 
4364
- #: framework/features/header/items/account/options.php:1059
 
4365
  msgid "Modal Backdrop"
4366
  msgstr ""
4367
 
4368
- #: framework/features/header/items/account/options.php:1074
 
4369
  msgid "Modal Shadow"
4370
  msgstr ""
4371
 
4372
  #: framework/features/header/items/account/options.php:1239,
4373
- #: framework/premium/features/premium-header/items/search-input/options.php:167
 
 
4374
  msgid "Element Visibility"
4375
  msgstr ""
4376
 
4377
- #: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:409
 
4378
  msgid "You have no %s fields declared for this custom post type."
4379
  msgstr ""
4380
 
4381
  #: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:421,
4382
  #: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:896,
4383
- #: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:907
 
 
 
4384
  msgid "Field"
4385
  msgstr ""
4386
 
4387
  #: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:433,
4388
- #: framework/premium/features/premium-header/items/language-switcher/options.php:60
 
 
4389
  msgid "Label"
4390
  msgstr ""
4391
 
4392
- #: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:482
 
4393
  msgid "Fallback"
4394
  msgstr ""
4395
 
4396
- #: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:494
 
4397
  msgid "%s Field"
4398
  msgstr ""
4399
 
4400
- #: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:880
 
4401
  msgid "Custom Field"
4402
  msgstr ""
4403
 
4404
- #: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:894
 
4405
  msgid "%s %s Font"
4406
  msgstr ""
4407
 
4408
- #: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:905
 
4409
  msgid "%s %s Color"
4410
  msgstr ""
4411
 
4412
  #: framework/premium/extensions/post-types-extra/includes/estimated-read-time.php:9,
4413
- #: framework/premium/extensions/post-types-extra/includes/estimated-read-time.php:66
 
 
4414
  msgid "Read Time"
4415
  msgstr ""
4416
 
4417
- #: framework/premium/extensions/post-types-extra/includes/estimated-read-time.php:123
 
4418
  msgid "%s min"
4419
  msgid_plural "%s mins"
4420
  msgstr[0] ""
4421
  msgstr[1] ""
4422
 
4423
- #: framework/premium/extensions/post-types-extra/includes/filtering.php:286
 
4424
  msgid "All"
4425
  msgstr ""
4426
 
4427
- #: framework/premium/extensions/post-types-extra/includes/taxonomies-options.php:161
 
4428
  msgid "Featured Image"
4429
  msgstr ""
4430
 
4431
- #: framework/premium/extensions/post-types-extra/includes/taxonomies-options.php:166
 
4432
  msgid "Accent Color"
4433
  msgstr ""
4434
 
4435
  #: framework/premium/extensions/shortcuts/views/bar.php:49,
4436
- #: framework/premium/extensions/woocommerce-extra/includes/wish-list.php:143
 
 
4437
  msgid "Wish List"
4438
  msgstr ""
4439
 
4440
- #: framework/premium/extensions/woocommerce-extra/includes/wish-list-helpers.php:38
 
4441
  msgid "Wishlist icon"
4442
  msgstr ""
4443
 
4444
  #: framework/premium/extensions/woocommerce-extra/includes/wish-list-helpers.php:46,
4445
- #: framework/premium/extensions/woocommerce-extra/includes/wish-list-helpers.php:54
 
 
4446
  msgid "Add to wishlist"
4447
  msgstr ""
4448
 
4449
- #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:9
 
4450
  msgid "Select a page"
4451
  msgstr ""
4452
 
4453
- #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:18
 
4454
  msgid "Products Wishlist"
4455
  msgstr ""
4456
 
4457
- #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:28
 
4458
  msgid "Show Wishlist Page To"
4459
  msgstr ""
4460
 
4461
- #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:34
 
4462
  msgid "Logged Users"
4463
  msgstr ""
4464
 
4465
- #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:35
 
4466
  msgid "All Users"
4467
  msgstr ""
4468
 
4469
- #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:45
 
4470
  msgid "Wish List Page"
4471
  msgstr ""
4472
 
4473
- #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:51
 
4474
  msgid ""
4475
  "The page you select here will display the wish list for your logged out "
4476
  "users."
4477
  msgstr ""
4478
 
4479
- #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:60
 
4480
  msgid "Display Wishlist Button On"
4481
  msgstr ""
4482
 
4483
- #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:64
 
4484
  msgid "Archive Pages"
4485
  msgstr ""
4486
 
4487
- #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:73
 
4488
  msgid "Single Product Pages"
4489
  msgstr ""
4490
 
4491
- #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:82
 
4492
  msgid "Quick View Modal"
4493
  msgstr ""
4494
 
4495
- #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:95
 
4496
  msgid "AJAX Add To Cart"
4497
  msgstr ""
4498
 
4499
- #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:101
 
4500
  msgid "Enable AJAX loading"
4501
  msgstr ""
4502
 
4503
- #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:137
 
4504
  msgid "Archive Button"
4505
  msgstr ""
4506
 
@@ -4512,51 +6275,77 @@ msgstr ""
4512
  #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:243,
4513
  #: framework/premium/features/premium-header/items/language-switcher/options.php:254,
4514
  #: framework/premium/features/premium-header/items/language-switcher/options.php:284,
4515
- #: framework/premium/features/premium-header/items/language-switcher/options.php:313
 
 
 
 
 
 
 
 
 
4516
  msgid "Hover/Active"
4517
  msgstr ""
4518
 
4519
- #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:214
 
4520
  msgid "Single Product Button"
4521
  msgstr ""
4522
 
4523
- #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:290
 
4524
  msgid "Quick View Modal Button"
4525
  msgstr ""
4526
 
4527
- #: framework/premium/extensions/woocommerce-extra/includes/wish-list-table.php:192
 
4528
  msgid "You don't have any products in your wish list yet."
4529
  msgstr ""
4530
 
4531
- #: framework/premium/extensions/woocommerce-extra/includes/wish-list-table.php:35
 
4532
  msgid "Add to cart"
4533
  msgstr ""
4534
 
4535
  #: framework/premium/extensions/woocommerce-extra/includes/wish-list-table.php:128,
4536
- #: framework/premium/extensions/woocommerce-extra/includes/wish-list-table.php:152
 
 
4537
  msgid "Remove Product"
4538
  msgstr ""
4539
 
4540
- #: framework/premium/extensions/woocommerce-extra/includes/woo-import-export.php:34
 
4541
  msgid "Blocksy Variation Images"
4542
  msgstr ""
4543
 
4544
  #: framework/premium/features/content-blocks/options/404.php:33,
4545
  #: framework/premium/features/content-blocks/options/header.php:35,
4546
  #: framework/premium/features/content-blocks/options/hook.php:40,
4547
- #: framework/premium/features/content-blocks/options/popup.php:42
 
 
 
 
4548
  msgid "Container Structure"
4549
  msgstr ""
4550
 
4551
  #: framework/premium/features/content-blocks/options/404.php:65,
4552
  #: framework/premium/features/content-blocks/options/header.php:63,
4553
- #: framework/premium/features/content-blocks/options/hook.php:68
 
 
 
4554
  msgid "Narrow Width"
4555
  msgstr ""
4556
 
4557
  #: framework/premium/features/content-blocks/options/404.php:70,
4558
  #: framework/premium/features/content-blocks/options/header.php:68,
4559
- #: framework/premium/features/content-blocks/options/hook.php:73
 
 
 
4560
  msgid "Normal Width"
4561
  msgstr ""
4562
 
@@ -4564,14 +6353,23 @@ msgstr ""
4564
  #: framework/premium/features/content-blocks/options/archive.php:126,
4565
  #: framework/premium/features/content-blocks/options/header.php:74,
4566
  #: framework/premium/features/content-blocks/options/hook.php:79,
4567
- #: framework/premium/features/content-blocks/options/single.php:47
 
 
 
 
 
4568
  msgid "Content Area Style"
4569
  msgstr ""
4570
 
4571
  #: framework/premium/features/content-blocks/options/404.php:90,
4572
  #: framework/premium/features/content-blocks/options/archive.php:140,
4573
  #: framework/premium/features/content-blocks/options/header.php:88,
4574
- #: framework/premium/features/content-blocks/options/hook.php:93
 
 
 
 
4575
  msgid "Content Area Vertical Spacing"
4576
  msgstr ""
4577
 
@@ -4579,7 +6377,12 @@ msgstr ""
4579
  #: framework/premium/features/content-blocks/options/archive.php:151,
4580
  #: framework/premium/features/content-blocks/options/header.php:99,
4581
  #: framework/premium/features/content-blocks/options/hook.php:104,
4582
- #: framework/premium/features/content-blocks/options/single.php:72
 
 
 
 
 
4583
  msgid "Top & Bottom"
4584
  msgstr ""
4585
 
@@ -4587,7 +6390,12 @@ msgstr ""
4587
  #: framework/premium/features/content-blocks/options/archive.php:154,
4588
  #: framework/premium/features/content-blocks/options/header.php:102,
4589
  #: framework/premium/features/content-blocks/options/hook.php:107,
4590
- #: framework/premium/features/content-blocks/options/single.php:75
 
 
 
 
 
4591
  msgid "Only Top"
4592
  msgstr ""
4593
 
@@ -4595,400 +6403,511 @@ msgstr ""
4595
  #: framework/premium/features/content-blocks/options/archive.php:157,
4596
  #: framework/premium/features/content-blocks/options/header.php:105,
4597
  #: framework/premium/features/content-blocks/options/hook.php:110,
4598
- #: framework/premium/features/content-blocks/options/single.php:78
 
 
 
 
 
4599
  msgid "Only Bottom"
4600
  msgstr ""
4601
 
4602
- #: framework/premium/features/content-blocks/options/archive.php:11
 
4603
  msgid "Replacement Behavior"
4604
  msgstr ""
4605
 
4606
- #: framework/premium/features/content-blocks/options/archive.php:17
 
4607
  msgid "Only Card"
4608
  msgstr ""
4609
 
4610
- #: framework/premium/features/content-blocks/options/archive.php:18
 
4611
  msgid "Full Page"
4612
  msgstr ""
4613
 
4614
  #: framework/premium/features/content-blocks/options/archive.php:28,
4615
- #: framework/premium/features/content-blocks/options/single.php:105
 
 
4616
  msgid "Dynamic Content Preview"
4617
  msgstr ""
4618
 
4619
- #: framework/premium/features/content-blocks/options/archive.php:35
 
4620
  msgid ""
4621
  "Select a post/page to preview it's content inside the editor while building "
4622
  "the archive."
4623
  msgstr ""
4624
 
4625
- #: framework/premium/features/content-blocks/options/archive.php:39
 
4626
  msgid "Editor/Card Width"
4627
  msgstr ""
4628
 
4629
- #: framework/premium/features/content-blocks/options/archive.php:50
 
4630
  msgid ""
4631
  "Set the editor width for better understanging the layout you are building "
4632
  "(just for preview purpose, this option won't apply in frontend)."
4633
  msgstr ""
4634
 
4635
- #: framework/premium/features/content-blocks/options/archive.php:71
 
4636
  msgid "Default Card Layout"
4637
  msgstr ""
4638
 
4639
- #: framework/premium/features/content-blocks/options/archive.php:76
 
4640
  msgid ""
4641
  "Inherit card wrapper settings from Customizer (background color, spacing, "
4642
  "shadow)."
4643
  msgstr ""
4644
 
4645
- #: framework/premium/features/content-blocks/options/archive.php:91
 
4646
  msgid "Page Structure"
4647
  msgstr ""
4648
 
4649
  #: framework/premium/features/content-blocks/options/archive.php:207,
4650
  #: framework/premium/features/content-blocks/options/hook.php:256,
4651
  #: framework/premium/features/content-blocks/options/popup.php:314,
4652
- #: framework/premium/features/content-blocks/options/single.php:140
 
 
 
 
4653
  msgid "Expiration Date/Time"
4654
  msgstr ""
4655
 
4656
  #: framework/premium/features/content-blocks/options/hook.php:23,
4657
- #: framework/premium/features/content-blocks/options/hook.php:181
 
 
4658
  #: framework/premium/static/js/options/MultipleLocationsSelect.js:72
4659
  msgid "Custom Hook"
4660
  msgstr ""
4661
 
4662
- #: framework/premium/features/content-blocks/options/hook.php:148
 
4663
  msgid "Location & Priority"
4664
  msgstr ""
4665
 
4666
- #: framework/premium/features/content-blocks/options/hook.php:283
 
4667
  msgid "Block Position"
4668
  msgstr ""
4669
 
4670
- #: framework/premium/features/content-blocks/options/hook.php:290
 
4671
  msgid "Fixed"
4672
  msgstr ""
4673
 
4674
- #: framework/premium/features/content-blocks/options/hook.php:300
 
4675
  msgid "Location"
4676
  msgstr ""
4677
 
4678
- #: framework/premium/features/content-blocks/options/hook.php:313
 
4679
  msgid "Top Offset"
4680
  msgstr ""
4681
 
4682
- #: framework/premium/features/content-blocks/options/hook.php:317
 
4683
  msgid "Bottom Offset"
4684
  msgstr ""
4685
 
4686
- #: framework/premium/features/content-blocks/options/popup.php:50
 
4687
  msgid "Popup Position"
4688
  msgstr ""
4689
 
4690
- #: framework/premium/features/content-blocks/options/popup.php:57
 
4691
  msgid "Popup Size"
4692
  msgstr ""
4693
 
4694
- #: framework/premium/features/content-blocks/options/popup.php:63
 
4695
  msgid "Small Size"
4696
  msgstr ""
4697
 
4698
- #: framework/premium/features/content-blocks/options/popup.php:64
 
4699
  msgid "Medium Size"
4700
  msgstr ""
4701
 
4702
- #: framework/premium/features/content-blocks/options/popup.php:65
 
4703
  msgid "Large Size"
4704
  msgstr ""
4705
 
4706
- #: framework/premium/features/content-blocks/options/popup.php:66
 
4707
  msgid "Custom Size"
4708
  msgstr ""
4709
 
4710
- #: framework/premium/features/content-blocks/options/popup.php:76
 
4711
  msgid "Max Width"
4712
  msgstr ""
4713
 
4714
- #: framework/premium/features/content-blocks/options/popup.php:92
 
4715
  msgid "Max Height"
4716
  msgstr ""
4717
 
4718
- #: framework/premium/features/content-blocks/options/popup.php:111
 
4719
  msgid "Popup Animation"
4720
  msgstr ""
4721
 
4722
- #: framework/premium/features/content-blocks/options/popup.php:117
 
4723
  msgid "Fade in fade out"
4724
  msgstr ""
4725
 
4726
- #: framework/premium/features/content-blocks/options/popup.php:118
 
4727
  msgid "Zoom in zoom out"
4728
  msgstr ""
4729
 
4730
- #: framework/premium/features/content-blocks/options/popup.php:119
 
4731
  msgid "Slide in from left"
4732
  msgstr ""
4733
 
4734
- #: framework/premium/features/content-blocks/options/popup.php:120
 
4735
  msgid "Slide in from right"
4736
  msgstr ""
4737
 
4738
- #: framework/premium/features/content-blocks/options/popup.php:121
 
4739
  msgid "Slide in from top"
4740
  msgstr ""
4741
 
4742
- #: framework/premium/features/content-blocks/options/popup.php:122
 
4743
  msgid "Slide in from bottom"
4744
  msgstr ""
4745
 
4746
- #: framework/premium/features/content-blocks/options/popup.php:127
 
4747
  msgid "Animation Speed"
4748
  msgstr ""
4749
 
4750
- #: framework/premium/features/content-blocks/options/popup.php:144
 
4751
  msgid "Entrance Value"
4752
  msgstr ""
4753
 
4754
- #: framework/premium/features/content-blocks/options/popup.php:156
 
4755
  msgid "Trigger Condition"
4756
  msgstr ""
4757
 
4758
- #: framework/premium/features/content-blocks/options/popup.php:181
 
4759
  msgid "Element Class"
4760
  msgstr ""
4761
 
4762
- #: framework/premium/features/content-blocks/options/popup.php:188
 
4763
  msgid "Separate each class by comma if you have multiple elements."
4764
  msgstr ""
4765
 
4766
- #: framework/premium/features/content-blocks/options/popup.php:200
 
4767
  msgid "Scroll Direction"
4768
  msgstr ""
4769
 
4770
- #: framework/premium/features/content-blocks/options/popup.php:205
 
4771
  msgid "Scroll Down"
4772
  msgstr ""
4773
 
4774
- #: framework/premium/features/content-blocks/options/popup.php:206
 
4775
  msgid "Scroll Up"
4776
  msgstr ""
4777
 
4778
- #: framework/premium/features/content-blocks/options/popup.php:211
 
4779
  msgid "Scroll Distance"
4780
  msgstr ""
4781
 
4782
- #: framework/premium/features/content-blocks/options/popup.php:221
 
4783
  msgid "Set the scroll distance till the popup block will appear."
4784
  msgstr ""
4785
 
4786
- #: framework/premium/features/content-blocks/options/popup.php:233
 
4787
  msgid "Inactivity Time"
4788
  msgstr ""
4789
 
4790
- #: framework/premium/features/content-blocks/options/popup.php:239
 
4791
  msgid "Set the inactivity time (in seconds) till the popup block will appear."
4792
  msgstr ""
4793
 
4794
- #: framework/premium/features/content-blocks/options/popup.php:251
 
4795
  msgid "After X Time"
4796
  msgstr ""
4797
 
4798
- #: framework/premium/features/content-blocks/options/popup.php:257
 
4799
  msgid "Set after how much time (in seconds) the popup block will appear."
4800
  msgstr ""
4801
 
4802
- #: framework/premium/features/content-blocks/options/popup.php:269
 
4803
  msgid "After X Pages"
4804
  msgstr ""
4805
 
4806
- #: framework/premium/features/content-blocks/options/popup.php:275
 
4807
  msgid "Set after how many visited pages the popup block will appear."
4808
  msgstr ""
4809
 
4810
- #: framework/premium/features/content-blocks/options/popup.php:287
 
4811
  msgid "Trigger Popup Only Once"
4812
  msgstr ""
4813
 
4814
- #: framework/premium/features/content-blocks/options/popup.php:290
 
4815
  msgid ""
4816
  "If the close button is clicked the popup won't be triggered anymore for the "
4817
  "current visitor."
4818
  msgstr ""
4819
 
4820
- #: framework/premium/features/content-blocks/options/popup.php:366
 
4821
  msgid "Padding"
4822
  msgstr ""
4823
 
4824
  #: framework/premium/features/content-blocks/options/popup.php:376,
4825
  #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:266,
4826
- #: framework/premium/features/premium-header/items/language-switcher/options.php:465
 
 
 
4827
  msgid "Border Radius"
4828
  msgstr ""
4829
 
4830
- #: framework/premium/features/content-blocks/options/popup.php:405
 
4831
  msgid "Popup Offset"
4832
  msgstr ""
4833
 
4834
- #: framework/premium/features/content-blocks/options/popup.php:415
 
4835
  msgid "Container Overflow"
4836
  msgstr ""
4837
 
4838
- #: framework/premium/features/content-blocks/options/popup.php:422
 
4839
  msgid "Hidden"
4840
  msgstr ""
4841
 
4842
- #: framework/premium/features/content-blocks/options/popup.php:423
 
4843
  msgid "Visible"
4844
  msgstr ""
4845
 
4846
- #: framework/premium/features/content-blocks/options/popup.php:424
 
4847
  msgid "Scroll"
4848
  msgstr ""
4849
 
4850
- #: framework/premium/features/content-blocks/options/popup.php:426
 
4851
  msgid ""
4852
  "Control what happens to the content that is too big to fit into the popup."
4853
  msgstr ""
4854
 
4855
- #: framework/premium/features/content-blocks/options/popup.php:430
 
4856
  msgid "Close Button"
4857
  msgstr ""
4858
 
4859
- #: framework/premium/features/content-blocks/options/popup.php:438
 
4860
  msgid "Inside"
4861
  msgstr ""
4862
 
4863
- #: framework/premium/features/content-blocks/options/popup.php:439
 
4864
  msgid "Outside"
4865
  msgstr ""
4866
 
4867
- #: framework/premium/features/content-blocks/options/popup.php:513
 
4868
  msgid "Popup Background"
4869
  msgstr ""
4870
 
4871
- #: framework/premium/features/content-blocks/options/popup.php:527
 
4872
  msgid "Popup Backdrop Background"
4873
  msgstr ""
4874
 
4875
- #: framework/premium/features/content-blocks/options/single.php:61
 
4876
  msgid "Content Area Vel Spacing"
4877
  msgstr ""
4878
 
4879
- #: framework/premium/features/content-blocks/options/single.php:111
 
4880
  msgid ""
4881
  "Select a post/page to preview it's content inside the editor while building "
4882
  "the post/page."
4883
  msgstr ""
4884
 
4885
- #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:25
 
4886
  msgid "Posts Filter"
4887
  msgstr ""
4888
 
4889
- #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:60
 
4890
  msgid "Filtering Behavior"
4891
  msgstr ""
4892
 
4893
- #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:68
 
4894
  msgid "Instant Reload"
4895
  msgstr ""
4896
 
4897
- #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:69
 
4898
  msgid "Page Reload"
4899
  msgstr ""
4900
 
4901
- #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:82
 
4902
  msgid "Filter Source"
4903
  msgstr ""
4904
 
4905
- #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:92
 
4906
  msgid "Items Horizontal Spacing"
4907
  msgstr ""
4908
 
4909
  #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:104,
4910
- #: framework/premium/features/premium-header/items/language-switcher/options.php:360
 
 
4911
  msgid "Items Vertical Spacing"
4912
  msgstr ""
4913
 
4914
- #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:116
 
4915
  msgid "Container Bottom Spacing"
4916
  msgstr ""
4917
 
4918
- #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:128
 
4919
  msgid "Horizontal Alignment"
4920
  msgstr ""
4921
 
4922
- #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:251
 
4923
  msgid "Button Padding"
4924
  msgstr ""
4925
 
4926
- #: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:4
 
4927
  msgid "Read Progress"
4928
  msgstr ""
4929
 
4930
- #: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:24
 
4931
  msgid "Indicator Height"
4932
  msgstr ""
4933
 
4934
- #: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:34
 
4935
  msgid "Auto Hide"
4936
  msgstr ""
4937
 
4938
- #: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:38
 
4939
  msgid ""
4940
  "Automatically hide the read progress bar once you arrive at the bottom of "
4941
  "the article."
4942
  msgstr ""
4943
 
4944
- #: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:71
 
4945
  msgid "Main Color"
4946
  msgstr ""
4947
 
4948
- #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:84
 
4949
  msgid "Icon Badge"
4950
  msgstr ""
4951
 
4952
- #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:178
 
4953
  msgid "Label Font Color"
4954
  msgstr ""
4955
 
4956
- #: framework/premium/features/premium-header/items/contacts/config.php:4
 
4957
  msgid "Contacts"
4958
  msgstr ""
4959
 
4960
- #: framework/premium/features/premium-header/items/contacts/options.php:300
 
4961
  msgid "Open Links In New Tab"
4962
  msgstr ""
4963
 
4964
  #: framework/premium/features/premium-header/items/contacts/options.php:320,
4965
- #: framework/premium/features/premium-header/items/language-switcher/options.php:95
 
 
4966
  msgid "Items Spacing"
4967
  msgstr ""
4968
 
4969
- #: framework/premium/features/premium-header/items/contacts/options.php:369
 
4970
  msgid "Items Direction"
4971
  msgstr ""
4972
 
4973
- #: framework/premium/features/premium-header/items/contacts/options.php:375
 
4974
  msgid "Horizontal"
4975
  msgstr ""
4976
 
4977
- #: framework/premium/features/premium-header/items/contacts/options.php:376
 
4978
  msgid "Vertical"
4979
  msgstr ""
4980
 
4981
  #: framework/premium/features/premium-header/items/contacts/options.php:730,
4982
  #: framework/premium/features/premium-header/items/contacts/options.php:772,
4983
  #: framework/premium/features/premium-header/items/contacts/options.php:811,
4984
- #: framework/premium/features/premium-header/items/contacts/options.php:850
 
 
 
 
4985
  msgid "Icons Background Color"
4986
  msgstr ""
4987
 
4988
  #: framework/premium/features/premium-header/items/contacts/options.php:734,
4989
  #: framework/premium/features/premium-header/items/contacts/options.php:776,
4990
  #: framework/premium/features/premium-header/items/contacts/options.php:815,
4991
- #: framework/premium/features/premium-header/items/contacts/options.php:854
 
 
 
 
4992
  msgid "Icons Border Color"
4993
  msgstr ""
4994
 
@@ -4996,110 +6915,143 @@ msgstr ""
4996
  #: framework/premium/features/premium-header/items/divider/options.php:107,
4997
  #: framework/premium/features/premium-header/items/divider/options.php:126,
4998
  #: framework/premium/features/premium-header/items/language-switcher/options.php:323,
4999
- #: framework/premium/features/premium-header/items/search-input/options.php:734
 
 
 
 
 
5000
  msgid "Margin"
5001
  msgstr ""
5002
 
5003
- #: framework/premium/features/premium-header/items/dark-mode-switcher/config.php:5
 
5004
  msgid "Dark Mode"
5005
  msgstr ""
5006
 
5007
- #: framework/premium/features/premium-header/items/divider/config.php:4
 
5008
  msgid "Divider"
5009
  msgstr ""
5010
 
5011
- #: framework/premium/features/premium-header/items/divider/options.php:6
 
5012
  msgid "Size"
5013
  msgstr ""
5014
 
5015
- #: framework/premium/features/premium-header/items/language-switcher/options.php:17
 
5016
  msgid "Top Level Options"
5017
  msgstr ""
5018
 
5019
- #: framework/premium/features/premium-header/items/language-switcher/options.php:37
 
5020
  msgid "Dropdown"
5021
  msgstr ""
5022
 
5023
- #: framework/premium/features/premium-header/items/language-switcher/options.php:47
 
5024
  msgid "Display"
5025
  msgstr ""
5026
 
5027
- #: framework/premium/features/premium-header/items/language-switcher/options.php:59
 
5028
  msgid "Flag"
5029
  msgstr ""
5030
 
5031
- #: framework/premium/features/premium-header/items/language-switcher/options.php:73
 
5032
  msgid "Label Style"
5033
  msgstr ""
5034
 
5035
- #: framework/premium/features/premium-header/items/language-switcher/options.php:79
 
5036
  msgid "Long"
5037
  msgstr ""
5038
 
5039
- #: framework/premium/features/premium-header/items/language-switcher/options.php:80
 
5040
  msgid "Short"
5041
  msgstr ""
5042
 
5043
- #: framework/premium/features/premium-header/items/language-switcher/options.php:112
 
5044
  msgid "Hide Current Language"
5045
  msgstr ""
5046
 
5047
- #: framework/premium/features/premium-header/items/language-switcher/options.php:343
 
5048
  msgid "Dropdown Options"
5049
  msgstr ""
5050
 
5051
- #: framework/premium/features/premium-header/items/language-switcher/options.php:352
 
5052
  msgid "Dropdown Top Offset"
5053
  msgstr ""
5054
 
5055
- #: framework/premium/features/premium-header/items/search-input/config.php:4
 
5056
  msgid "Search Box"
5057
  msgstr ""
5058
 
5059
- #: framework/premium/features/premium-header/items/search-input/options.php:42
 
5060
  msgid "Placeholder Text"
5061
  msgstr ""
5062
 
5063
- #: framework/premium/features/premium-header/items/search-input/options.php:52
 
5064
  msgid "Input Maximum Width"
5065
  msgstr ""
5066
 
5067
- #: framework/premium/features/premium-header/items/search-input/options.php:64
 
5068
  msgid "Input Height"
5069
  msgstr ""
5070
 
5071
- #: framework/premium/features/premium-header/items/search-input/options.php:89
 
5072
  msgid "Live Results"
5073
  msgstr ""
5074
 
5075
- #: framework/premium/features/premium-header/items/search-input/options.php:100
 
5076
  msgid "Live Results Images"
5077
  msgstr ""
5078
 
5079
- #: framework/premium/features/premium-header/items/search-input/options.php:111
 
5080
  msgid "Search Through Criteria"
5081
  msgstr ""
5082
 
5083
- #: framework/premium/features/premium-header/items/search-input/options.php:112
 
5084
  msgid "Chose in which post types do you want to perform searches."
5085
  msgstr ""
5086
 
5087
  #: framework/premium/features/premium-header/items/search-input/options.php:324,
5088
  #: framework/premium/features/premium-header/items/search-input/options.php:353,
5089
  #: framework/premium/features/premium-header/items/search-input/options.php:385,
5090
- #: framework/premium/features/premium-header/items/search-input/options.php:415
 
 
 
 
5091
  msgid "Input Icon Color"
5092
  msgstr ""
5093
 
5094
- #: framework/premium/features/premium-header/items/search-input/options.php:765
 
5095
  msgid "Dropdown Text Color"
5096
  msgstr ""
5097
 
5098
- #: framework/premium/features/premium-header/items/search-input/options.php:796
 
5099
  msgid "Dropdown Background"
5100
  msgstr ""
5101
 
5102
- #: framework/premium/features/premium-header/items/widget-area-1/config.php:4
 
5103
  msgid "Widget Area"
5104
  msgstr ""
5105
 
7
  "MIME-Version: 1.0\n"
8
  "Content-Type: text/plain; charset=UTF-8\n"
9
  "Content-Transfer-Encoding: 8bit\n"
10
+ "POT-Creation-Date: 2022-07-07 15:19+0000\n"
11
  "Project-Id-Version: undefined\n"
12
  "X-Poedit-Basepath: ..\n"
13
  "X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;"
21
  "x-generator: babel-plugin-wp-i18n\n"
22
 
23
  #. translators: %s: PHP version
24
+ #: blocksy-companion.php:128, build_tmp/build/blocksy-companion.php:128
25
  msgid "Blocksy requires PHP version %s+, plugin is currently NOT RUNNING."
26
  msgstr ""
27
 
28
  #. translators: %s: WordPress version
29
+ #: blocksy-companion.php:139, build_tmp/build/blocksy-companion.php:139
30
  msgid ""
31
  "Blocksy requires WordPress version %s+. Because you are using an earlier "
32
  "version, the plugin is currently NOT RUNNING."
33
  msgstr ""
34
 
35
  #: framework/extensions-manager.php:245,
36
+ #: build_tmp/build/framework/extensions-manager.php:245,
37
+ #: framework/premium/extensions/adobe-typekit/extension.php:46,
38
+ #: build_tmp/build/framework/premium/extensions/adobe-typekit/extension.php:46
39
  msgid "Adobe Typekit"
40
  msgstr ""
41
 
42
+ #: framework/extensions-manager.php:246,
43
+ #: build_tmp/build/framework/extensions-manager.php:246
44
  msgid ""
45
  "Connect your Typekit account and use your fonts in any typography option."
46
  msgstr ""
47
 
48
  #: framework/extensions-manager.php:257,
49
+ #: build_tmp/build/framework/extensions-manager.php:257,
50
+ #: framework/premium/extensions/code-snippets/readme.php:38,
51
+ #: build_tmp/build/framework/premium/extensions/code-snippets/readme.php:38
52
  msgid "Custom Code Snippets"
53
  msgstr ""
54
 
55
+ #: framework/extensions-manager.php:258,
56
+ #: build_tmp/build/framework/extensions-manager.php:258
57
  msgid ""
58
  "Add custom code snippets in your header and footer, globally and per post or "
59
  "page individually."
60
  msgstr ""
61
 
62
  #: framework/extensions-manager.php:269,
63
+ #: build_tmp/build/framework/extensions-manager.php:269,
64
+ #: framework/premium/extensions/custom-fonts/extension.php:145,
65
+ #: build_tmp/build/framework/premium/extensions/custom-fonts/extension.php:145
66
  msgid "Custom Fonts"
67
  msgstr ""
68
 
69
+ #: framework/extensions-manager.php:270,
70
+ #: build_tmp/build/framework/extensions-manager.php:270
71
  msgid ""
72
  "Upload unlimited number of custom fonts or variable fonts and use them in "
73
  "any typography option."
74
  msgstr ""
75
 
76
  #: framework/extensions-manager.php:281,
77
+ #: build_tmp/build/framework/extensions-manager.php:281,
78
+ #: framework/premium/extensions/local-google-fonts/extension.php:188,
79
+ #: build_tmp/build/framework/premium/extensions/local-google-fonts/extension.php:188
80
  msgid "Local Google Fonts"
81
  msgstr ""
82
 
83
+ #: framework/extensions-manager.php:282,
84
+ #: build_tmp/build/framework/extensions-manager.php:282
85
  msgid "Serve Google Fonts from your own server for full GDPR compliancy."
86
  msgstr ""
87
 
88
+ #: framework/extensions-manager.php:293,
89
+ #: build_tmp/build/framework/extensions-manager.php:293
90
  msgid "Advanced Menu"
91
  msgstr ""
92
 
93
+ #: framework/extensions-manager.php:294,
94
+ #: build_tmp/build/framework/extensions-manager.php:294
95
  msgid ""
96
  "Create beautiful mega menus, assign icons add badges to menu items, and "
97
  "content blocks inside menu items."
98
  msgstr ""
99
 
100
+ #: framework/extensions-manager.php:305,
101
+ #: build_tmp/build/framework/extensions-manager.php:305
102
  msgid "Shortcuts Bar"
103
  msgstr ""
104
 
105
+ #: framework/extensions-manager.php:306,
106
+ #: build_tmp/build/framework/extensions-manager.php:306
107
  msgid ""
108
  "Transform your website into a app like by displaying a neat shortcuts bar at "
109
  "the bottom of the vieport."
110
  msgstr ""
111
 
112
+ #: framework/extensions-manager.php:317,
113
+ #: build_tmp/build/framework/extensions-manager.php:317
114
  msgid "Multiple Sidebars"
115
  msgstr ""
116
 
117
+ #: framework/extensions-manager.php:318,
118
+ #: build_tmp/build/framework/extensions-manager.php:318
119
  msgid ""
120
  "Create unlimited number of sidebars and display them conditionaly on any "
121
  "page or post."
122
  msgstr ""
123
 
124
+ #: framework/extensions-manager.php:329,
125
+ #: build_tmp/build/framework/extensions-manager.php:329
126
  msgid "White Label (Agency Package)"
127
  msgstr ""
128
 
129
+ #: framework/extensions-manager.php:330,
130
+ #: build_tmp/build/framework/extensions-manager.php:330
131
  msgid "Change the theme and companion plugin branding to your own custom one."
132
  msgstr ""
133
 
134
+ #: framework/extensions-manager.php:341,
135
+ #: build_tmp/build/framework/extensions-manager.php:341
136
  msgid "WooCommerce Extra"
137
  msgstr ""
138
 
139
+ #: framework/extensions-manager.php:342,
140
+ #: build_tmp/build/framework/extensions-manager.php:342
141
  msgid ""
142
  "Increase the conversion rate by adding a product quick view modal, a "
143
  "floating cart. Control the single product gallery/slider and the layout, add "
144
  "a wishlits page."
145
  msgstr ""
146
 
147
+ #: framework/theme-integration.php:310,
148
+ #: build_tmp/build/framework/theme-integration.php:310,
149
  #: framework/extensions/widgets/widgets/ct-facebook/options.php:16,
150
  #: framework/extensions/widgets/widgets/ct-facebook/view.php:12,
151
+ #: framework/extensions/widgets/widgets/ct-facebook/widget.php:13,
152
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-facebook/options.php:16,
153
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-facebook/view.php:12,
154
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-facebook/widget.php:13
155
  msgid "Facebook"
156
  msgstr ""
157
 
158
+ #: framework/theme-integration.php:311,
159
+ #: build_tmp/build/framework/theme-integration.php:311
160
  msgid "Twitter"
161
  msgstr ""
162
 
163
+ #: framework/theme-integration.php:312,
164
+ #: build_tmp/build/framework/theme-integration.php:312
165
  msgid "LinkedIn"
166
  msgstr ""
167
 
168
+ #: framework/theme-integration.php:313,
169
+ #: build_tmp/build/framework/theme-integration.php:313
170
  msgid "Dribbble"
171
  msgstr ""
172
 
173
+ #: framework/theme-integration.php:314,
174
+ #: build_tmp/build/framework/theme-integration.php:314
175
  msgid "Instagram"
176
  msgstr ""
177
 
178
+ #: framework/theme-integration.php:315,
179
+ #: build_tmp/build/framework/theme-integration.php:315
180
  msgid "Pinterest"
181
  msgstr ""
182
 
183
+ #: framework/theme-integration.php:316,
184
+ #: build_tmp/build/framework/theme-integration.php:316
185
  msgid "WordPress"
186
  msgstr ""
187
 
188
+ #: framework/theme-integration.php:317,
189
+ #: build_tmp/build/framework/theme-integration.php:317
190
  msgid "GitHub"
191
  msgstr ""
192
 
193
+ #: framework/theme-integration.php:318,
194
+ #: build_tmp/build/framework/theme-integration.php:318,
195
+ #: framework/extensions/widgets/widgets/ct-contact-info/options.php:497,
196
+ #: framework/extensions/widgets/widgets/ct-socials/options.php:100,
197
+ #: framework/premium/features/content-blocks/options/archive.php:47,
198
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:497,
199
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-socials/options.php:100,
200
+ #: build_tmp/build/framework/premium/features/content-blocks/options/archive.php:47
201
  msgid "Medium"
202
  msgstr ""
203
 
204
+ #: framework/theme-integration.php:319,
205
+ #: build_tmp/build/framework/theme-integration.php:319
206
  msgid "YouTube"
207
  msgstr ""
208
 
209
+ #: framework/theme-integration.php:320,
210
+ #: build_tmp/build/framework/theme-integration.php:320
211
  msgid "Vimeo"
212
  msgstr ""
213
 
214
+ #: framework/theme-integration.php:321,
215
+ #: build_tmp/build/framework/theme-integration.php:321
216
  msgid "VKontakte"
217
  msgstr ""
218
 
219
+ #: framework/theme-integration.php:322,
220
+ #: build_tmp/build/framework/theme-integration.php:322
221
  msgid "Odnoklassniki"
222
  msgstr ""
223
 
224
+ #: framework/theme-integration.php:323,
225
+ #: build_tmp/build/framework/theme-integration.php:323
226
  msgid "TikTok"
227
  msgstr ""
228
 
229
+ #: framework/theme-integration.php:395,
230
+ #: build_tmp/build/framework/theme-integration.php:395
231
  msgid "Companion"
232
  msgstr ""
233
 
234
+ #: framework/theme-integration.php:411,
235
+ #: build_tmp/build/framework/theme-integration.php:411
236
+ #: static/js/screens/SiteExport.js:106
237
  msgid "PRO"
238
  msgstr ""
239
 
240
+ #: framework/widgets-manager.php:75,
241
+ #: build_tmp/build/framework/widgets-manager.php:75
242
  msgid "Default widget name"
243
  msgstr ""
244
 
245
+ #: framework/widgets-manager.php:81,
246
+ #: build_tmp/build/framework/widgets-manager.php:81
247
  msgid "Display online support infomation"
248
  msgstr ""
249
 
250
+ #: framework/widgets-manager.php:144,
251
+ #: build_tmp/build/framework/widgets-manager.php:144
252
  msgid "Widget Title"
253
  msgstr ""
254
 
255
  #. translators: %s: Link to the login page.
256
+ #: framework/features/account-auth.php:92,
257
+ #: build_tmp/build/framework/features/account-auth.php:92
258
  msgid ""
259
  "Check your email for the confirmation link, then visit the <a href=\"%s"
260
  "\">login page</a>."
261
  msgstr ""
262
 
263
  #: framework/features/account-auth.php:104,
264
+ #: framework/features/account-auth.php:232,
265
+ #: build_tmp/build/framework/features/account-auth.php:104,
266
+ #: build_tmp/build/framework/features/account-auth.php:232
267
  msgid "Check your email"
268
  msgstr ""
269
 
270
+ #: framework/features/account-auth.php:199,
271
+ #: build_tmp/build/framework/features/account-auth.php:199
272
  msgid ""
273
  "Your account was created successfully. Your login details have been sent to "
274
  "your email address. Please visit the <a href=\"%s\">login page</a>."
275
  msgstr ""
276
 
277
+ #: framework/features/account-auth.php:208,
278
+ #: build_tmp/build/framework/features/account-auth.php:208
279
  msgid ""
280
  "Your account was created successfully and a password has been sent to your "
281
  "email address. Please visit the <a href=\"%s\">login page</a>."
282
  msgstr ""
283
 
284
+ #: framework/features/account-auth.php:238,
285
+ #: build_tmp/build/framework/features/account-auth.php:238
286
  msgid "Registration Form"
287
  msgstr ""
288
 
289
+ #: framework/features/account-auth.php:239,
290
+ #: build_tmp/build/framework/features/account-auth.php:239
291
  msgid "Register For This Site"
292
  msgstr ""
293
 
294
+ #: framework/features/conditions-manager.php:479,
295
+ #: build_tmp/build/framework/features/conditions-manager.php:479
296
  msgid "Entire Website"
297
  msgstr ""
298
 
299
  #: framework/features/conditions-manager.php:487,
300
  #: framework/features/conditions-manager.php:529,
301
+ #: framework/features/conditions-manager.php:561,
302
+ #: build_tmp/build/framework/features/conditions-manager.php:487,
303
+ #: build_tmp/build/framework/features/conditions-manager.php:529,
304
+ #: build_tmp/build/framework/features/conditions-manager.php:561
305
  msgid "Basic"
306
  msgstr ""
307
 
308
  #: framework/features/conditions-manager.php:491,
309
+ #: framework/features/conditions-manager.php:565,
310
+ #: build_tmp/build/framework/features/conditions-manager.php:491,
311
+ #: build_tmp/build/framework/features/conditions-manager.php:565
312
  msgid "Singulars"
313
  msgstr ""
314
 
315
  #: framework/features/conditions-manager.php:496,
316
+ #: framework/features/conditions-manager.php:533,
317
+ #: build_tmp/build/framework/features/conditions-manager.php:496,
318
+ #: build_tmp/build/framework/features/conditions-manager.php:533
319
  msgid "Archives"
320
  msgstr ""
321
 
323
  #: framework/features/conditions-manager.php:539,
324
  #: framework/features/conditions-manager.php:571,
325
  #: framework/extensions/trending/customizer.php:4,
326
+ #: build_tmp/build/framework/features/conditions-manager.php:502,
327
+ #: build_tmp/build/framework/features/conditions-manager.php:539,
328
+ #: build_tmp/build/framework/features/conditions-manager.php:571,
329
+ #: build_tmp/build/framework/extensions/trending/customizer.php:4,
330
  #: framework/extensions/widgets/widgets/ct-posts/options.php:11,
331
  #: framework/extensions/widgets/widgets/ct-posts/options.php:98,
332
  #: framework/extensions/widgets/widgets/ct-posts/view.php:139,
333
  #: framework/extensions/widgets/widgets/ct-posts/widget.php:13,
334
+ #: framework/premium/features/premium-header/items/search-input/options.php:4,
335
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:11,
336
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:98,
337
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/view.php:139,
338
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/widget.php:13,
339
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:4
340
  msgid "Posts"
341
  msgstr ""
342
 
343
  #: framework/features/conditions-manager.php:506,
344
  #: framework/features/conditions-manager.php:575,
345
+ #: build_tmp/build/framework/features/conditions-manager.php:506,
346
+ #: build_tmp/build/framework/features/conditions-manager.php:575,
347
  #: framework/premium/features/content-blocks/hooks-manager.php:408,
348
  #: framework/premium/features/content-blocks/hooks-manager.php:416,
349
  #: framework/premium/features/content-blocks/hooks-manager.php:424,
350
  #: framework/premium/features/content-blocks/hooks-manager.php:431,
351
  #: framework/premium/features/content-blocks/hooks-manager.php:438,
352
+ #: framework/premium/features/content-blocks/hooks-manager.php:446,
353
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:408,
354
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:416,
355
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:424,
356
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:431,
357
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:438,
358
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:446
359
  msgid "Single Post"
360
  msgstr ""
361
 
362
  #: framework/features/conditions-manager.php:511,
363
+ #: framework/features/conditions-manager.php:543,
364
+ #: build_tmp/build/framework/features/conditions-manager.php:511,
365
+ #: build_tmp/build/framework/features/conditions-manager.php:543
366
  msgid "All Post Archives"
367
  msgstr ""
368
 
369
  #: framework/features/conditions-manager.php:516,
370
+ #: framework/features/conditions-manager.php:548,
371
+ #: build_tmp/build/framework/features/conditions-manager.php:516,
372
+ #: build_tmp/build/framework/features/conditions-manager.php:548
373
  msgid "Post Categories"
374
  msgstr ""
375
 
376
  #: framework/features/conditions-manager.php:521,
377
+ #: framework/features/conditions-manager.php:553,
378
+ #: build_tmp/build/framework/features/conditions-manager.php:521,
379
+ #: build_tmp/build/framework/features/conditions-manager.php:553
380
  msgid "Post Tags"
381
  msgstr ""
382
 
383
  #: framework/features/conditions-manager.php:583,
384
+ #: build_tmp/build/framework/features/conditions-manager.php:583,
385
  #: framework/extensions/widgets/widgets/ct-posts/options.php:12,
386
+ #: framework/premium/features/premium-header/items/search-input/options.php:5,
387
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:12,
388
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:5
389
  msgid "Pages"
390
  msgstr ""
391
 
392
+ #: framework/features/conditions-manager.php:587,
393
+ #: build_tmp/build/framework/features/conditions-manager.php:587
394
  msgid "Single Page"
395
  msgstr ""
396
 
397
+ #: framework/features/conditions-manager.php:614,
398
+ #: build_tmp/build/framework/features/conditions-manager.php:614
399
  msgid "%s Single"
400
  msgstr ""
401
 
402
+ #: framework/features/conditions-manager.php:624,
403
+ #: build_tmp/build/framework/features/conditions-manager.php:624
404
  msgid "%s Archive"
405
  msgstr ""
406
 
407
+ #: framework/features/conditions-manager.php:637,
408
+ #: build_tmp/build/framework/features/conditions-manager.php:637
409
  msgid "%s %s Taxonomy"
410
  msgstr ""
411
 
412
+ #: framework/features/conditions-manager.php:652,
413
+ #: build_tmp/build/framework/features/conditions-manager.php:652
414
  msgid "Post ID"
415
  msgstr ""
416
 
417
+ #: framework/features/conditions-manager.php:657,
418
+ #: build_tmp/build/framework/features/conditions-manager.php:657
419
  msgid "Page ID"
420
  msgstr ""
421
 
422
+ #: framework/features/conditions-manager.php:662,
423
+ #: build_tmp/build/framework/features/conditions-manager.php:662
424
  #: static/js/options/ConditionsManager/PostIdPicker.js:76
425
  msgid "Custom Post Type ID"
426
  msgstr ""
427
 
428
+ #: framework/features/conditions-manager.php:667,
429
+ #: build_tmp/build/framework/features/conditions-manager.php:667
430
  msgid "Post with Taxonomy ID"
431
  msgstr ""
432
 
433
+ #: framework/features/conditions-manager.php:672,
434
+ #: build_tmp/build/framework/features/conditions-manager.php:672
435
  msgid "Taxonomy ID"
436
  msgstr ""
437
 
438
+ #: framework/features/conditions-manager.php:676,
439
+ #: build_tmp/build/framework/features/conditions-manager.php:676
440
  msgid "Specific"
441
  msgstr ""
442
 
443
+ #: framework/features/conditions-manager.php:682,
444
+ #: build_tmp/build/framework/features/conditions-manager.php:682
445
  msgid "Other Pages"
446
  msgstr ""
447
 
448
+ #: framework/features/conditions-manager.php:686,
449
+ #: build_tmp/build/framework/features/conditions-manager.php:686
450
  msgid "404"
451
  msgstr ""
452
 
453
  #: framework/features/conditions-manager.php:691,
454
+ #: build_tmp/build/framework/features/conditions-manager.php:691,
455
  #: framework/premium/features/premium-header/items/search-input/options.php:45,
456
+ #: framework/premium/features/premium-header/items/search-input/view.php:95,
457
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:45,
458
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/view.php:95
459
  msgid "Search"
460
  msgstr ""
461
 
462
+ #: framework/features/conditions-manager.php:696,
463
+ #: build_tmp/build/framework/features/conditions-manager.php:696
464
  msgid "Blog"
465
  msgstr ""
466
 
467
+ #: framework/features/conditions-manager.php:701,
468
+ #: build_tmp/build/framework/features/conditions-manager.php:701
469
  msgid "Front Page"
470
  msgstr ""
471
 
472
+ #: framework/features/conditions-manager.php:706,
473
+ #: build_tmp/build/framework/features/conditions-manager.php:706
474
  msgid "Privacy Policy Page"
475
  msgstr ""
476
 
477
+ #: framework/features/conditions-manager.php:718,
478
+ #: build_tmp/build/framework/features/conditions-manager.php:718
479
  msgid "Author"
480
  msgstr ""
481
 
482
+ #: framework/features/conditions-manager.php:728,
483
+ #: build_tmp/build/framework/features/conditions-manager.php:728
484
  msgid "WooCommerce"
485
  msgstr ""
486
 
487
+ #: framework/features/conditions-manager.php:732,
488
+ #: build_tmp/build/framework/features/conditions-manager.php:732
489
  msgid "Shop Home"
490
  msgstr ""
491
 
492
+ #: framework/features/conditions-manager.php:737,
493
+ #: build_tmp/build/framework/features/conditions-manager.php:737
494
  msgid "Single Product"
495
  msgstr ""
496
 
497
+ #: framework/features/conditions-manager.php:742,
498
+ #: build_tmp/build/framework/features/conditions-manager.php:742
499
  msgid "Product Archives"
500
  msgstr ""
501
 
502
+ #: framework/features/conditions-manager.php:747,
503
+ #: build_tmp/build/framework/features/conditions-manager.php:747
504
  msgid "Product Categories"
505
  msgstr ""
506
 
507
+ #: framework/features/conditions-manager.php:752,
508
+ #: build_tmp/build/framework/features/conditions-manager.php:752
509
  msgid "Product Tags"
510
  msgstr ""
511
 
512
+ #: framework/features/conditions-manager.php:760,
513
+ #: build_tmp/build/framework/features/conditions-manager.php:760
514
  msgid "Custom Post Types"
515
  msgstr ""
516
 
517
+ #: framework/features/conditions-manager.php:769,
518
+ #: build_tmp/build/framework/features/conditions-manager.php:769
519
  msgid "User Auth"
520
  msgstr ""
521
 
522
+ #: framework/features/conditions-manager.php:773,
523
+ #: build_tmp/build/framework/features/conditions-manager.php:773
524
  msgid "User Logged In"
525
  msgstr ""
526
 
527
+ #: framework/features/conditions-manager.php:778,
528
+ #: build_tmp/build/framework/features/conditions-manager.php:778
529
  msgid "User Logged Out"
530
  msgstr ""
531
 
532
+ #: framework/features/conditions-manager.php:784,
533
+ #: build_tmp/build/framework/features/conditions-manager.php:784
534
  msgid "User Roles"
535
  msgstr ""
536
 
537
  #: framework/features/conditions-manager.php:789,
538
+ #: build_tmp/build/framework/features/conditions-manager.php:789,
539
  #: framework/premium/features/content-blocks/options/404.php:19,
540
  #: framework/premium/features/content-blocks/options/header.php:19,
541
  #: framework/premium/features/content-blocks/options/hook.php:24,
542
+ #: framework/premium/features/content-blocks/options/popup.php:25,
543
+ #: build_tmp/build/framework/premium/features/content-blocks/options/404.php:19,
544
+ #: build_tmp/build/framework/premium/features/content-blocks/options/header.php:19,
545
+ #: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:24,
546
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:25
547
  msgid "Other"
548
  msgstr ""
549
 
550
+ #: framework/features/conditions-manager.php:793,
551
+ #: build_tmp/build/framework/features/conditions-manager.php:793
552
  msgid "Post Author"
553
  msgstr ""
554
 
555
  #: framework/features/conditions-manager.php:805,
556
+ #: build_tmp/build/framework/features/conditions-manager.php:805,
557
+ #: framework/premium/features/premium-header/items/language-switcher/config.php:14,
558
+ #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/config.php:14
559
  msgid "Languages"
560
  msgstr ""
561
 
562
+ #: framework/features/conditions-manager.php:809,
563
+ #: build_tmp/build/framework/features/conditions-manager.php:809
564
  msgid "Current Language"
565
  msgstr ""
566
 
567
+ #: framework/features/conditions-manager.php:817,
568
+ #: build_tmp/build/framework/features/conditions-manager.php:817
569
  msgid "bbPress"
570
  msgstr ""
571
 
572
+ #: framework/features/conditions-manager.php:821,
573
+ #: build_tmp/build/framework/features/conditions-manager.php:821
574
  msgid "Profile"
575
  msgstr ""
576
 
577
+ #: framework/features/conditions-manager.php:833,
578
+ #: build_tmp/build/framework/features/conditions-manager.php:833
579
  #: static/js/options/ConditionsManager.js:104
580
  msgid "Include"
581
  msgstr ""
582
 
583
+ #: framework/features/conditions-manager.php:833,
584
+ #: build_tmp/build/framework/features/conditions-manager.php:833
585
  #: static/js/options/ConditionsManager.js:105
586
  msgid "Exclude"
587
  msgstr ""
588
 
589
+ #: framework/features/conditions-manager.php:886,
590
+ #: build_tmp/build/framework/features/conditions-manager.php:886
591
  msgid "Language"
592
  msgstr ""
593
 
594
+ #: framework/features/demo-install.php:233,
595
+ #: build_tmp/build/framework/features/demo-install.php:233
596
  msgid ""
597
  "Your PHP installation doesn't have support for XML. Please install the "
598
  "<i>xml</i> or <i>simplexml</i> PHP extension in order to be able to install "
600
  "in doing so."
601
  msgstr ""
602
 
603
+ #: framework/features/dynamic-css.php:46,
604
+ #: build_tmp/build/framework/features/dynamic-css.php:46
605
  msgid "Dynamic CSS Output"
606
  msgstr ""
607
 
608
+ #: framework/features/dynamic-css.php:50,
609
+ #: build_tmp/build/framework/features/dynamic-css.php:50
610
  msgid ""
611
  "The strategy of outputting the dynamic CSS. File - all the CSS code will be "
612
  "placed in a static file, otherwise it will be placed inline in head."
613
  msgstr ""
614
 
615
+ #: framework/features/dynamic-css.php:52,
616
+ #: build_tmp/build/framework/features/dynamic-css.php:52
617
  msgid "File"
618
  msgstr ""
619
 
620
  #: framework/features/dynamic-css.php:53,
621
+ #: build_tmp/build/framework/features/dynamic-css.php:53,
622
+ #: framework/premium/features/premium-header/items/language-switcher/options.php:32,
623
+ #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:32
624
  msgid "Inline"
625
  msgstr ""
626
 
627
+ #: framework/features/google-analytics.php:69,
628
+ #: build_tmp/build/framework/features/google-analytics.php:69
629
  msgid "Google Analytics v3"
630
  msgstr ""
631
 
632
+ #: framework/features/google-analytics.php:74,
633
+ #: build_tmp/build/framework/features/google-analytics.php:74
634
  msgid "Link your Google Analytics 3 tracking ID."
635
  msgstr ""
636
 
637
+ #: framework/features/google-analytics.php:80,
638
+ #: build_tmp/build/framework/features/google-analytics.php:80
639
  msgid "Google Analytics v4"
640
  msgstr ""
641
 
642
+ #: framework/features/google-analytics.php:86,
643
+ #: build_tmp/build/framework/features/google-analytics.php:86
644
  msgid ""
645
  "Link your Google Analytics 4 tracking ID. More info and instructions can be "
646
  "found %shere%s."
647
  msgstr ""
648
 
649
+ #: framework/features/google-analytics.php:98,
650
+ #: build_tmp/build/framework/features/google-analytics.php:98
651
  msgid "IP Anonymization"
652
  msgstr ""
653
 
654
+ #: framework/features/google-analytics.php:102,
655
+ #: build_tmp/build/framework/features/google-analytics.php:102
656
  msgid ""
657
  "Enable Google Analytics IP Anonymization for enhanced privacy. More info and "
658
  "instructions can be found %shere%s."
659
  msgstr ""
660
 
661
+ #: framework/features/opengraph-meta-data.php:17,
662
+ #: build_tmp/build/framework/features/opengraph-meta-data.php:17
663
  msgid "OpenGraph Meta Data"
664
  msgstr ""
665
 
666
+ #: framework/features/opengraph-meta-data.php:20,
667
+ #: build_tmp/build/framework/features/opengraph-meta-data.php:20
668
  msgid "Enable the OpenGraph rich meta data features for your website."
669
  msgstr ""
670
 
671
+ #: framework/features/opengraph-meta-data.php:29,
672
+ #: build_tmp/build/framework/features/opengraph-meta-data.php:29
673
  msgid "Facebook Page URL"
674
  msgstr ""
675
 
676
+ #: framework/features/opengraph-meta-data.php:36,
677
+ #: build_tmp/build/framework/features/opengraph-meta-data.php:36
678
  msgid "Facebook App ID"
679
  msgstr ""
680
 
681
+ #: framework/features/opengraph-meta-data.php:43,
682
+ #: build_tmp/build/framework/features/opengraph-meta-data.php:43
683
  msgid "Twitter Username"
684
  msgstr ""
685
 
686
  #. translators: This is a brand name. Preferably to not be translated
687
  #: framework/extensions/cookies-consent/config.php:5,
688
+ #: framework/extensions/cookies-consent/customizer.php:5,
689
+ #: build_tmp/build/framework/extensions/cookies-consent/config.php:5,
690
+ #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:5
691
  msgctxt "Extension Brand Name"
692
  msgid "Cookies Consent"
693
  msgstr ""
694
 
695
+ #: framework/extensions/cookies-consent/config.php:6,
696
+ #: build_tmp/build/framework/extensions/cookies-consent/config.php:6
697
  msgid ""
698
  "Display a cookie acceptance box in order to comply with the privacy "
699
  "regulations in your country."
701
 
702
  #: framework/extensions/cookies-consent/customizer.php:15,
703
  #: framework/extensions/newsletter-subscribe/customizer.php:12,
704
+ #: framework/extensions/product-reviews/extension.php:343,
705
  #: framework/extensions/product-reviews/metabox.php:6,
706
  #: framework/extensions/trending/customizer.php:110,
707
  #: framework/premium/extensions/mega-menu/options.php:6,
708
  #: framework/premium/extensions/shortcuts/customizer.php:534,
709
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:11,
710
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:164,
711
+ #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:15,
712
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:12,
713
+ #: build_tmp/build/framework/extensions/product-reviews/extension.php:343,
714
+ #: build_tmp/build/framework/extensions/product-reviews/metabox.php:6,
715
+ #: build_tmp/build/framework/extensions/trending/customizer.php:110,
716
  #: framework/features/header/items/account/options.php:68,
717
  #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:23,
718
  #: framework/premium/features/content-blocks/options/popup.php:30,
719
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:6,
720
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:534,
721
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/floating-cart.php:11,
722
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:164,
723
  #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:35,
724
  #: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:19,
725
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:5,
726
  #: framework/premium/features/premium-header/items/contacts/options.php:5,
727
  #: framework/premium/features/premium-header/items/language-switcher/options.php:21,
728
  #: framework/premium/features/premium-header/items/language-switcher/options.php:347,
729
+ #: framework/premium/features/premium-header/items/search-input/options.php:37,
730
+ #: build_tmp/build/framework/features/header/items/account/options.php:68,
731
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:23,
732
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:30,
733
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:35,
734
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:19,
735
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:5,
736
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:5,
737
+ #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:21,
738
+ #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:347,
739
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:37
740
  #: framework/premium/extensions/white-label/dashboard-static/js/EditSettings.js:128
741
  msgid "General"
742
  msgstr ""
745
  #: framework/premium/extensions/shortcuts/customizer.php:546,
746
  #: framework/premium/extensions/woocommerce-extra/extension.php:73,
747
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:186,
748
+ #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:28,
749
  #: framework/features/header/items/account/options.php:217,
750
  #: framework/features/header/items/account/options.php:459,
751
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:546,
752
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/extension.php:73,
753
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:186,
754
  #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:48,
755
+ #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:56,
756
+ #: build_tmp/build/framework/features/header/items/account/options.php:217,
757
+ #: build_tmp/build/framework/features/header/items/account/options.php:459,
758
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:48,
759
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:56
760
  msgid "Type 1"
761
  msgstr ""
762
 
764
  #: framework/premium/extensions/shortcuts/customizer.php:551,
765
  #: framework/premium/extensions/woocommerce-extra/extension.php:78,
766
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:191,
767
+ #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:33,
768
  #: framework/features/header/items/account/options.php:222,
769
  #: framework/features/header/items/account/options.php:464,
770
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:551,
771
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/extension.php:78,
772
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:191,
773
  #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:53,
774
+ #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:61,
775
+ #: build_tmp/build/framework/features/header/items/account/options.php:222,
776
+ #: build_tmp/build/framework/features/header/items/account/options.php:464,
777
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:53,
778
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:61
779
  msgid "Type 2"
780
  msgstr ""
781
 
782
+ #: framework/extensions/cookies-consent/customizer.php:40,
783
+ #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:40
784
  msgid "Cookie period"
785
  msgstr ""
786
 
787
+ #: framework/extensions/cookies-consent/customizer.php:48,
788
+ #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:48
789
  msgid "One hour"
790
  msgstr ""
791
 
792
+ #: framework/extensions/cookies-consent/customizer.php:49,
793
+ #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:49
794
  msgid "One day"
795
  msgstr ""
796
 
797
+ #: framework/extensions/cookies-consent/customizer.php:50,
798
+ #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:50
799
  msgid "One week"
800
  msgstr ""
801
 
802
+ #: framework/extensions/cookies-consent/customizer.php:51,
803
+ #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:51
804
  msgid "One month"
805
  msgstr ""
806
 
807
+ #: framework/extensions/cookies-consent/customizer.php:52,
808
+ #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:52
809
  msgid "Three months"
810
  msgstr ""
811
 
812
+ #: framework/extensions/cookies-consent/customizer.php:53,
813
+ #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:53
814
  msgid "Six months"
815
  msgstr ""
816
 
817
+ #: framework/extensions/cookies-consent/customizer.php:54,
818
+ #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:54
819
  msgid "One year"
820
  msgstr ""
821
 
822
+ #: framework/extensions/cookies-consent/customizer.php:55,
823
+ #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:55
824
  msgid "Forever"
825
  msgstr ""
826
 
829
  #: framework/premium/features/content-blocks/hooks-manager.php:243,
830
  #: framework/premium/features/content-blocks/hooks-manager.php:251,
831
  #: framework/premium/features/content-blocks/hooks-manager.php:259,
832
+ #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:62,
833
+ #: framework/extensions/widgets/widgets/ct-contact-info/options.php:80,
834
+ #: framework/extensions/widgets/widgets/ct-contact-info/options.php:141,
835
+ #: framework/extensions/widgets/widgets/ct-contact-info/options.php:201,
836
+ #: framework/extensions/widgets/widgets/ct-contact-info/options.php:261,
837
+ #: framework/extensions/widgets/widgets/ct-contact-info/options.php:321,
838
+ #: framework/extensions/widgets/widgets/ct-contact-info/options.php:381,
839
+ #: framework/extensions/widgets/widgets/ct-contact-info/options.php:441,
840
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:235,
841
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:243,
842
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:251,
843
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:259,
844
  #: framework/premium/features/premium-header/items/contacts/options.php:52,
845
  #: framework/premium/features/premium-header/items/contacts/options.php:88,
846
  #: framework/premium/features/premium-header/items/contacts/options.php:124,
847
  #: framework/premium/features/premium-header/items/contacts/options.php:160,
848
  #: framework/premium/features/premium-header/items/contacts/options.php:196,
849
  #: framework/premium/features/premium-header/items/contacts/options.php:232,
850
+ #: framework/premium/features/premium-header/items/contacts/options.php:268,
851
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:80,
852
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:141,
853
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:201,
854
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:261,
855
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:321,
856
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:381,
857
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:441,
858
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:52,
859
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:88,
860
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:124,
861
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:160,
862
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:196,
863
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:232,
864
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:268
865
  msgid "Content"
866
  msgstr ""
867
 
868
  #: framework/extensions/cookies-consent/customizer.php:64,
869
+ #: framework/extensions/cookies-consent/helpers.php:30,
870
+ #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:64,
871
+ #: build_tmp/build/framework/extensions/cookies-consent/helpers.php:30
872
  msgid ""
873
  "We use cookies to ensure that we give you the best experience on our website."
874
  msgstr ""
875
 
876
+ #: framework/extensions/cookies-consent/customizer.php:76,
877
+ #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:76
878
  msgid "Accept Button text"
879
  msgstr ""
880
 
881
  #: framework/extensions/cookies-consent/customizer.php:80,
882
+ #: framework/extensions/cookies-consent/helpers.php:33,
883
+ #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:80,
884
+ #: build_tmp/build/framework/extensions/cookies-consent/helpers.php:33
885
  msgid "Accept"
886
  msgstr ""
887
 
888
+ #: framework/extensions/cookies-consent/customizer.php:85,
889
+ #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:85
890
  msgid "Decline Button text"
891
  msgstr ""
892
 
893
  #: framework/extensions/cookies-consent/customizer.php:88,
894
+ #: framework/extensions/cookies-consent/helpers.php:34,
895
+ #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:88,
896
+ #: build_tmp/build/framework/extensions/cookies-consent/helpers.php:34
897
  msgid "Decline"
898
  msgstr ""
899
 
900
+ #: framework/extensions/cookies-consent/customizer.php:98,
901
+ #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:98
902
  msgid "Maximum Width"
903
  msgstr ""
904
 
905
+ #: framework/extensions/cookies-consent/customizer.php:119,
906
+ #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:119
907
  msgid "I accept the %sPrivacy Policy%s*"
908
  msgstr ""
909
 
910
+ #: framework/extensions/cookies-consent/customizer.php:123,
911
+ #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:123
912
  msgid "This text will appear under each comment form and subscribe form."
913
  msgstr ""
914
 
915
  #: framework/extensions/cookies-consent/customizer.php:142,
916
  #: framework/extensions/newsletter-subscribe/customizer.php:147,
917
+ #: framework/extensions/product-reviews/extension.php:383,
918
  #: framework/extensions/trending/customizer.php:333,
919
  #: framework/premium/extensions/mega-menu/options.php:516,
920
  #: framework/premium/extensions/shortcuts/customizer.php:778,
921
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:81,
922
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:31,
923
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:279,
924
+ #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:142,
925
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:147,
926
+ #: build_tmp/build/framework/extensions/product-reviews/extension.php:383,
927
+ #: build_tmp/build/framework/extensions/trending/customizer.php:333,
928
  #: framework/features/header/items/account/options.php:602,
929
  #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:126,
930
  #: framework/premium/features/content-blocks/options/popup.php:361,
931
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:516,
932
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:778,
933
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/floating-cart.php:81,
934
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:31,
935
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:279,
936
  #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:167,
937
  #: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:66,
938
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:151,
939
  #: framework/premium/features/premium-header/items/contacts/options.php:404,
940
  #: framework/premium/features/premium-header/items/language-switcher/options.php:186,
941
  #: framework/premium/features/premium-header/items/language-switcher/options.php:371,
942
+ #: framework/premium/features/premium-header/items/search-input/options.php:188,
943
+ #: build_tmp/build/framework/features/header/items/account/options.php:602,
944
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:126,
945
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:361,
946
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:167,
947
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:66,
948
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:151,
949
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:404,
950
+ #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:186,
951
+ #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:371,
952
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:188
953
  msgid "Design"
954
  msgstr ""
955
 
956
  #: framework/extensions/cookies-consent/customizer.php:147,
957
+ #: framework/premium/extensions/mega-menu/options.php:605,
958
+ #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:147,
959
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:605
960
  msgid "Text Color"
961
  msgstr ""
962
 
983
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:369,
984
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:403,
985
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:442,
986
+ #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:164,
987
+ #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:191,
988
+ #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:220,
989
+ #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:251,
990
+ #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:287,
991
+ #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:316,
992
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:165,
993
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:190,
994
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:222,
995
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:253,
996
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:290,
997
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:322,
998
+ #: build_tmp/build/framework/extensions/trending/customizer.php:366,
999
  #: framework/features/header/items/account/options.php:666,
1000
  #: framework/features/header/items/account/options.php:698,
1001
  #: framework/features/header/items/account/options.php:728,
1013
  #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:191,
1014
  #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:235,
1015
  #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:311,
1016
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:762,
1017
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:809,
1018
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:828,
1019
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:812,
1020
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:844,
1021
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/floating-cart.php:99,
1022
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:73,
1023
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:369,
1024
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:403,
1025
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:442,
1026
  #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:201,
1027
  #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:237,
1028
  #: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:84,
1060
  #: framework/premium/features/premium-header/items/search-input/options.php:666,
1061
  #: framework/premium/features/premium-header/items/search-input/options.php:696,
1062
  #: framework/premium/features/premium-header/items/search-input/options.php:783,
1063
+ #: framework/premium/features/premium-header/items/search-input/options.php:811,
1064
+ #: build_tmp/build/framework/features/header/items/account/options.php:666,
1065
+ #: build_tmp/build/framework/features/header/items/account/options.php:698,
1066
+ #: build_tmp/build/framework/features/header/items/account/options.php:728,
1067
+ #: build_tmp/build/framework/features/header/items/account/options.php:810,
1068
+ #: build_tmp/build/framework/features/header/items/account/options.php:841,
1069
+ #: build_tmp/build/framework/features/header/items/account/options.php:870,
1070
+ #: build_tmp/build/framework/features/header/items/account/options.php:931,
1071
+ #: build_tmp/build/framework/features/header/items/account/options.php:961,
1072
+ #: build_tmp/build/framework/features/header/items/account/options.php:991,
1073
+ #: build_tmp/build/framework/features/header/items/account/options.php:1027,
1074
+ #: build_tmp/build/framework/features/header/items/account/options.php:1127,
1075
+ #: build_tmp/build/framework/features/header/items/account/options.php:1163,
1076
+ #: build_tmp/build/framework/features/header/items/account/options.php:1202,
1077
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:159,
1078
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:191,
1079
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:235,
1080
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:311,
1081
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:201,
1082
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:237,
1083
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:84,
1084
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:105,
1085
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:223,
1086
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:254,
1087
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:283,
1088
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:350,
1089
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:381,
1090
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:410,
1091
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:637,
1092
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:668,
1093
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:698,
1094
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:798,
1095
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:837,
1096
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:876,
1097
+ #: build_tmp/build/framework/premium/features/premium-header/items/dark-mode-switcher/options.php:75,
1098
+ #: build_tmp/build/framework/premium/features/premium-header/items/dark-mode-switcher/options.php:106,
1099
+ #: build_tmp/build/framework/premium/features/premium-header/items/dark-mode-switcher/options.php:135,
1100
+ #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:249,
1101
+ #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:279,
1102
+ #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:308,
1103
+ #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:399,
1104
+ #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:425,
1105
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:241,
1106
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:273,
1107
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:303,
1108
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:371,
1109
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:403,
1110
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:433,
1111
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:501,
1112
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:533,
1113
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:563,
1114
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:636,
1115
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:666,
1116
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:696,
1117
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:783,
1118
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:811
1119
  msgid "Initial"
1120
  msgstr ""
1121
 
1133
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:374,
1134
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:409,
1135
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:448,
1136
+ #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:170,
1137
+ #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:226,
1138
+ #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:257,
1139
+ #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:292,
1140
+ #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:321,
1141
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:196,
1142
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:327,
1143
+ #: build_tmp/build/framework/extensions/trending/customizer.php:372,
1144
  #: framework/features/header/items/account/options.php:672,
1145
  #: framework/features/header/items/account/options.php:703,
1146
  #: framework/features/header/items/account/options.php:733,
1151
  #: framework/features/header/items/account/options.php:1133,
1152
  #: framework/features/header/items/account/options.php:1169,
1153
  #: framework/features/header/items/account/options.php:1208,
1154
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:767,
1155
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:818,
1156
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:850,
1157
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:374,
1158
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:409,
1159
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:448,
1160
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:229,
1161
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:259,
1162
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:288,
1173
  #: framework/premium/features/premium-header/items/dark-mode-switcher/options.php:111,
1174
  #: framework/premium/features/premium-header/items/dark-mode-switcher/options.php:140,
1175
  #: framework/premium/features/premium-header/items/language-switcher/options.php:404,
1176
+ #: framework/premium/features/premium-header/items/search-input/options.php:788,
1177
+ #: build_tmp/build/framework/features/header/items/account/options.php:672,
1178
+ #: build_tmp/build/framework/features/header/items/account/options.php:703,
1179
+ #: build_tmp/build/framework/features/header/items/account/options.php:733,
1180
+ #: build_tmp/build/framework/features/header/items/account/options.php:816,
1181
+ #: build_tmp/build/framework/features/header/items/account/options.php:846,
1182
+ #: build_tmp/build/framework/features/header/items/account/options.php:875,
1183
+ #: build_tmp/build/framework/features/header/items/account/options.php:937,
1184
+ #: build_tmp/build/framework/features/header/items/account/options.php:1133,
1185
+ #: build_tmp/build/framework/features/header/items/account/options.php:1169,
1186
+ #: build_tmp/build/framework/features/header/items/account/options.php:1208,
1187
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:229,
1188
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:259,
1189
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:288,
1190
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:356,
1191
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:386,
1192
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:415,
1193
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:642,
1194
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:673,
1195
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:703,
1196
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:803,
1197
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:842,
1198
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:881,
1199
+ #: build_tmp/build/framework/premium/features/premium-header/items/dark-mode-switcher/options.php:81,
1200
+ #: build_tmp/build/framework/premium/features/premium-header/items/dark-mode-switcher/options.php:111,
1201
+ #: build_tmp/build/framework/premium/features/premium-header/items/dark-mode-switcher/options.php:140,
1202
+ #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:404,
1203
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:788
1204
  msgid "Hover"
1205
  msgstr ""
1206
 
1209
  #: framework/extensions/cookies-consent/customizer.php:299,
1210
  #: framework/premium/extensions/mega-menu/options.php:816,
1211
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:425,
1212
+ #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:178,
1213
+ #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:234,
1214
+ #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:299,
1215
  #: framework/features/header/items/account/options.php:1185,
1216
  #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:173,
1217
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:816,
1218
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:425,
1219
  #: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:92,
1220
+ #: framework/premium/features/premium-header/items/language-switcher/options.php:412,
1221
+ #: build_tmp/build/framework/features/header/items/account/options.php:1185,
1222
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:173,
1223
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:92,
1224
+ #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:412
1225
  msgid "Background Color"
1226
  msgstr ""
1227
 
1231
  #: framework/premium/extensions/mega-menu/options.php:796,
1232
  #: framework/premium/extensions/shortcuts/customizer.php:794,
1233
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:86,
1234
+ #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:203,
1235
+ #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:270,
1236
+ #: build_tmp/build/framework/extensions/trending/customizer.php:348,
1237
  #: framework/features/header/items/account/options.php:913,
1238
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:796,
1239
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:794,
1240
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/floating-cart.php:86,
1241
  #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:184,
1242
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:206,
1243
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:237,
1250
  #: framework/premium/features/premium-header/items/language-switcher/options.php:232,
1251
  #: framework/premium/features/premium-header/items/language-switcher/options.php:262,
1252
  #: framework/premium/features/premium-header/items/language-switcher/options.php:291,
1253
+ #: framework/premium/features/premium-header/items/language-switcher/options.php:382,
1254
+ #: build_tmp/build/framework/features/header/items/account/options.php:913,
1255
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:184,
1256
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:206,
1257
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:237,
1258
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:266,
1259
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:420,
1260
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:449,
1261
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:492,
1262
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:532,
1263
+ #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:203,
1264
+ #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:232,
1265
+ #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:262,
1266
+ #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:291,
1267
+ #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:382
1268
  msgid "Font Color"
1269
  msgstr ""
1270
 
1271
+ #: framework/extensions/cookies-consent/helpers.php:79,
1272
+ #: build_tmp/build/framework/extensions/cookies-consent/helpers.php:79
1273
  msgid "I accept the %sPrivacy Policy%s"
1274
  msgstr ""
1275
 
1277
  #: framework/extensions/newsletter-subscribe/readme.php:1,
1278
  #: framework/premium/extensions/code-snippets/readme.php:1,
1279
  #: framework/premium/extensions/post-types-extra/readme.php:1,
1280
+ #: framework/premium/extensions/woocommerce-extra/readme.php:1,
1281
+ #: build_tmp/build/framework/extensions/cookies-consent/readme.php:1,
1282
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/readme.php:1,
1283
+ #: build_tmp/build/framework/premium/extensions/code-snippets/readme.php:1,
1284
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/readme.php:1,
1285
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/readme.php:1
1286
  msgid "Instructions"
1287
  msgstr ""
1288
 
1289
+ #: framework/extensions/cookies-consent/readme.php:4,
1290
+ #: build_tmp/build/framework/extensions/cookies-consent/readme.php:4
1291
  msgid ""
1292
  "After installing and activating the Cookies Consent extension you will be "
1293
  "able to configure it from this location:"
1294
  msgstr ""
1295
 
1296
+ #: framework/extensions/cookies-consent/readme.php:9,
1297
+ #: build_tmp/build/framework/extensions/cookies-consent/readme.php:9
1298
  msgid "Customizer"
1299
  msgstr ""
1300
 
1301
+ #: framework/extensions/cookies-consent/readme.php:13,
1302
+ #: build_tmp/build/framework/extensions/cookies-consent/readme.php:13
1303
  msgid "Navigate to %s and customize the notification to meet your needs."
1304
  msgstr ""
1305
 
1306
+ #: framework/extensions/cookies-consent/readme.php:16,
1307
+ #: build_tmp/build/framework/extensions/cookies-consent/readme.php:16
1308
  msgid "Customizer ➝ Cookie Consent"
1309
  msgstr ""
1310
 
1311
  #. translators: This is a brand name. Preferably to not be translated
1312
+ #: framework/extensions/newsletter-subscribe/config.php:5,
1313
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/config.php:5
1314
  msgctxt "Extension Brand Name"
1315
  msgid "Newsletter Subscribe"
1316
  msgstr ""
1317
 
1318
+ #: framework/extensions/newsletter-subscribe/config.php:6,
1319
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/config.php:6
1320
  msgid ""
1321
  "Easily capture new leads for your newsletter with the help of a widget, "
1322
  "shortcode or even a block inserted on your pages or posts."
1323
  msgstr ""
1324
 
1325
+ #: framework/extensions/newsletter-subscribe/customizer.php:4,
1326
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:4
1327
  msgid "Subscribe Form"
1328
  msgstr ""
1329
 
1330
  #: framework/extensions/newsletter-subscribe/customizer.php:18,
1331
  #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:14,
1332
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:18,
1333
  #: framework/extensions/widgets/widgets/ct-advertisement/options.php:15,
1334
+ #: framework/extensions/widgets/widgets/ct-contact-info/options.php:16,
1335
+ #: framework/extensions/widgets/widgets/ct-contact-info/options.php:73,
1336
+ #: framework/extensions/widgets/widgets/ct-contact-info/options.php:134,
1337
+ #: framework/extensions/widgets/widgets/ct-contact-info/options.php:194,
1338
+ #: framework/extensions/widgets/widgets/ct-contact-info/options.php:254,
1339
+ #: framework/extensions/widgets/widgets/ct-contact-info/options.php:314,
1340
+ #: framework/extensions/widgets/widgets/ct-contact-info/options.php:374,
1341
+ #: framework/extensions/widgets/widgets/ct-contact-info/options.php:434,
1342
  #: framework/extensions/widgets/widgets/ct-facebook/options.php:13,
1343
  #: framework/extensions/widgets/widgets/ct-posts/options.php:95,
1344
  #: framework/extensions/widgets/widgets/ct-quote/options.php:15,
1345
  #: framework/extensions/widgets/widgets/ct-socials/options.php:15,
1346
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:14,
1347
  #: framework/premium/features/premium-header/items/contacts/options.php:45,
1348
  #: framework/premium/features/premium-header/items/contacts/options.php:81,
1349
  #: framework/premium/features/premium-header/items/contacts/options.php:117,
1350
  #: framework/premium/features/premium-header/items/contacts/options.php:153,
1351
  #: framework/premium/features/premium-header/items/contacts/options.php:189,
1352
  #: framework/premium/features/premium-header/items/contacts/options.php:225,
1353
+ #: framework/premium/features/premium-header/items/contacts/options.php:261,
1354
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-advertisement/options.php:15,
1355
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:16,
1356
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:73,
1357
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:134,
1358
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:194,
1359
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:254,
1360
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:314,
1361
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:374,
1362
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:434,
1363
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-facebook/options.php:13,
1364
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:95,
1365
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-quote/options.php:15,
1366
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-socials/options.php:15,
1367
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:45,
1368
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:81,
1369
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:117,
1370
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:153,
1371
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:189,
1372
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:225,
1373
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:261
1374
  msgid "Title"
1375
  msgstr ""
1376
 
1377
  #: framework/extensions/newsletter-subscribe/customizer.php:21,
1378
  #: framework/extensions/newsletter-subscribe/helpers.php:42,
1379
+ #: framework/extensions/newsletter-subscribe/helpers.php:96,
1380
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:21,
1381
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/helpers.php:42,
1382
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/helpers.php:96
1383
  msgid "Newsletter Updates"
1384
  msgstr ""
1385
 
1386
  #: framework/extensions/newsletter-subscribe/customizer.php:27,
1387
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:27,
1388
+ #: framework/extensions/widgets/widgets/ct-posts/widget.php:14,
1389
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/widget.php:14
1390
  msgid "Description"
1391
  msgstr ""
1392
 
1394
  #: framework/extensions/newsletter-subscribe/helpers.php:45,
1395
  #: framework/extensions/newsletter-subscribe/helpers.php:97,
1396
  #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:33,
1397
+ #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/view.php:16,
1398
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:29,
1399
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/helpers.php:45,
1400
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/helpers.php:97,
1401
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:33,
1402
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/view.php:16
1403
  msgid "Enter your email address below to subscribe to our newsletter"
1404
  msgstr ""
1405
 
1406
  #: framework/extensions/newsletter-subscribe/customizer.php:42,
1407
+ #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:46,
1408
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:42,
1409
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:46
1410
  msgid "List Source"
1411
  msgstr ""
1412
 
1415
  #: framework/features/header/header-options.php:71,
1416
  #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:53,
1417
  #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:120,
1418
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:49,
1419
+ #: build_tmp/build/framework/extensions/product-reviews/metabox.php:17,
1420
+ #: build_tmp/build/framework/features/header/header-options.php:71,
1421
  #: framework/extensions/widgets/widgets/ct-posts/options.php:173,
1422
  #: framework/extensions/widgets/widgets/ct-posts/options.php:198,
1423
+ #: framework/premium/features/content-blocks/options/hook.php:289,
1424
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:53,
1425
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:120,
1426
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:173,
1427
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:198,
1428
+ #: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:289
1429
  msgid "Default"
1430
  msgstr ""
1431
 
1433
  #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:54,
1434
  #: framework/premium/extensions/shortcuts/customizer.php:250,
1435
  #: framework/premium/extensions/shortcuts/customizer.php:276,
1436
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:50,
1437
  #: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:371,
1438
+ #: framework/premium/features/content-blocks/options/archive.php:48,
1439
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:54,
1440
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:250,
1441
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:276,
1442
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/dynamic-data.php:371,
1443
+ #: build_tmp/build/framework/premium/features/content-blocks/options/archive.php:48
1444
  msgid "Custom"
1445
  msgstr ""
1446
 
1447
  #: framework/extensions/newsletter-subscribe/customizer.php:62,
1448
+ #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:64,
1449
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:62,
1450
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:64
1451
  #: framework/extensions/newsletter-subscribe/dashboard-static/js/EditCredentials.js:194
1452
  msgid "List ID"
1453
  msgstr ""
1454
 
1455
  #: framework/extensions/newsletter-subscribe/customizer.php:80,
1456
+ #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:76,
1457
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:80,
1458
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:76
1459
  msgid "Name Field"
1460
  msgstr ""
1461
 
1462
  #: framework/extensions/newsletter-subscribe/customizer.php:93,
1463
+ #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:88,
1464
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:93,
1465
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:88
1466
  msgid "Name Label"
1467
  msgstr ""
1468
 
1471
  #: framework/extensions/newsletter-subscribe/helpers.php:57,
1472
  #: framework/extensions/newsletter-subscribe/helpers.php:108,
1473
  #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:90,
1474
+ #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/view.php:69,
1475
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:95,
1476
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/extension.php:180,
1477
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/helpers.php:57,
1478
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/helpers.php:108,
1479
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:90,
1480
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/view.php:69
1481
  msgid "Your name"
1482
  msgstr ""
1483
 
1484
  #: framework/extensions/newsletter-subscribe/customizer.php:105,
1485
+ #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:99,
1486
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:105,
1487
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:99
1488
  msgid "Mail Label"
1489
  msgstr ""
1490
 
1493
  #: framework/extensions/newsletter-subscribe/helpers.php:61,
1494
  #: framework/extensions/newsletter-subscribe/helpers.php:109,
1495
  #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:101,
1496
+ #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/view.php:70,
1497
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:107,
1498
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/extension.php:181,
1499
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/helpers.php:61,
1500
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/helpers.php:109,
1501
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:101,
1502
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/view.php:70
1503
  msgid "Your email"
1504
  msgstr ""
1505
 
1506
  #: framework/extensions/newsletter-subscribe/customizer.php:114,
1507
+ #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:107,
1508
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:114,
1509
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:107
1510
  msgid "Button Label"
1511
  msgstr ""
1512
 
1515
  #: framework/extensions/newsletter-subscribe/helpers.php:52,
1516
  #: framework/extensions/newsletter-subscribe/helpers.php:101,
1517
  #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:109,
1518
+ #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/view.php:19,
1519
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:116,
1520
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/extension.php:175,
1521
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/helpers.php:52,
1522
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/helpers.php:101,
1523
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:109,
1524
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/view.php:19
1525
  msgid "Subscribe"
1526
  msgstr ""
1527
 
1535
  #: framework/premium/extensions/shortcuts/customizer.php:427,
1536
  #: framework/premium/extensions/shortcuts/customizer.php:483,
1537
  #: framework/premium/extensions/shortcuts/customizer.php:742,
1538
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:126,
1539
  #: framework/premium/features/content-blocks/options/404.php:146,
1540
  #: framework/premium/features/content-blocks/options/header.php:166,
1541
  #: framework/premium/features/content-blocks/options/hook.php:343,
1542
  #: framework/premium/features/content-blocks/options/popup.php:339,
1543
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:45,
1544
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:107,
1545
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:169,
1546
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:225,
1547
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:312,
1548
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:371,
1549
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:427,
1550
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:483,
1551
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:742,
1552
  #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:144,
1553
+ #: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:43,
1554
+ #: build_tmp/build/framework/premium/features/content-blocks/options/404.php:146,
1555
+ #: build_tmp/build/framework/premium/features/content-blocks/options/header.php:166,
1556
+ #: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:343,
1557
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:339,
1558
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:144,
1559
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:43
1560
  msgid "Visibility"
1561
  msgstr ""
1562
 
1579
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:47,
1580
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:71,
1581
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:219,
1582
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:137,
1583
+ #: build_tmp/build/framework/extensions/trending/customizer.php:279,
1584
+ #: build_tmp/build/framework/features/header/header-options.php:103,
1585
+ #: build_tmp/build/framework/features/header/header-options.php:185,
1586
  #: framework/features/header/items/account/options.php:280,
1587
  #: framework/features/header/items/account/options.php:522,
1588
  #: framework/premium/features/content-blocks/options/404.php:157,
1589
  #: framework/premium/features/content-blocks/options/header.php:177,
1590
  #: framework/premium/features/content-blocks/options/hook.php:354,
1591
  #: framework/premium/features/content-blocks/options/popup.php:350,
1592
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:59,
1593
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:121,
1594
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:183,
1595
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:239,
1596
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:327,
1597
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:385,
1598
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:441,
1599
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:497,
1600
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:634,
1601
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:756,
1602
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/extension.php:168,
1603
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/extension.php:189,
1604
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/floating-cart.php:47,
1605
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/floating-cart.php:71,
1606
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:219,
1607
  #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:157,
1608
  #: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:56,
1609
+ #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:105,
1610
+ #: build_tmp/build/framework/features/header/items/account/options.php:280,
1611
+ #: build_tmp/build/framework/features/header/items/account/options.php:522,
1612
+ #: build_tmp/build/framework/premium/features/content-blocks/options/404.php:157,
1613
+ #: build_tmp/build/framework/premium/features/content-blocks/options/header.php:177,
1614
+ #: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:354,
1615
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:350,
1616
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:157,
1617
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:56,
1618
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:105
1619
  msgid "Desktop"
1620
  msgstr ""
1621
 
1636
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:48,
1637
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:72,
1638
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:220,
1639
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:138,
1640
+ #: build_tmp/build/framework/extensions/trending/customizer.php:280,
1641
  #: framework/features/header/items/account/options.php:281,
1642
  #: framework/features/header/items/account/options.php:523,
1643
  #: framework/features/header/items/account/options.php:1250,
1645
  #: framework/premium/features/content-blocks/options/header.php:178,
1646
  #: framework/premium/features/content-blocks/options/hook.php:355,
1647
  #: framework/premium/features/content-blocks/options/popup.php:351,
1648
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:60,
1649
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:122,
1650
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:184,
1651
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:240,
1652
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:328,
1653
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:386,
1654
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:442,
1655
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:498,
1656
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:635,
1657
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:757,
1658
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/extension.php:169,
1659
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/extension.php:190,
1660
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/floating-cart.php:48,
1661
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/floating-cart.php:72,
1662
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:220,
1663
  #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:158,
1664
  #: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:57,
1665
+ #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:106,
1666
+ #: build_tmp/build/framework/features/header/items/account/options.php:281,
1667
+ #: build_tmp/build/framework/features/header/items/account/options.php:523,
1668
+ #: build_tmp/build/framework/features/header/items/account/options.php:1250,
1669
+ #: build_tmp/build/framework/premium/features/content-blocks/options/404.php:158,
1670
+ #: build_tmp/build/framework/premium/features/content-blocks/options/header.php:178,
1671
+ #: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:355,
1672
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:351,
1673
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:158,
1674
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:57,
1675
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:106
1676
  msgid "Tablet"
1677
  msgstr ""
1678
 
1695
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:49,
1696
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:73,
1697
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:221,
1698
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:139,
1699
+ #: build_tmp/build/framework/extensions/trending/customizer.php:281,
1700
+ #: build_tmp/build/framework/features/header/header-options.php:105,
1701
+ #: build_tmp/build/framework/features/header/header-options.php:187,
1702
+ #: framework/extensions/widgets/widgets/ct-contact-info/options.php:188,
1703
  #: framework/features/header/items/account/options.php:282,
1704
  #: framework/features/header/items/account/options.php:524,
1705
  #: framework/features/header/items/account/options.php:1251,
1707
  #: framework/premium/features/content-blocks/options/header.php:179,
1708
  #: framework/premium/features/content-blocks/options/hook.php:356,
1709
  #: framework/premium/features/content-blocks/options/popup.php:352,
1710
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:61,
1711
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:123,
1712
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:185,
1713
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:241,
1714
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:329,
1715
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:387,
1716
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:443,
1717
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:499,
1718
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:636,
1719
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:758,
1720
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/extension.php:170,
1721
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/extension.php:191,
1722
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/floating-cart.php:49,
1723
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/floating-cart.php:73,
1724
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:221,
1725
  #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:159,
1726
  #: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:58,
1727
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:107,
1728
+ #: framework/premium/features/premium-header/items/contacts/options.php:113,
1729
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:188,
1730
+ #: build_tmp/build/framework/features/header/items/account/options.php:282,
1731
+ #: build_tmp/build/framework/features/header/items/account/options.php:524,
1732
+ #: build_tmp/build/framework/features/header/items/account/options.php:1251,
1733
+ #: build_tmp/build/framework/premium/features/content-blocks/options/404.php:159,
1734
+ #: build_tmp/build/framework/premium/features/content-blocks/options/header.php:179,
1735
+ #: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:356,
1736
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:352,
1737
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:159,
1738
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:58,
1739
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:107,
1740
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:113
1741
  msgid "Mobile"
1742
  msgstr ""
1743
 
1744
+ #: framework/extensions/newsletter-subscribe/customizer.php:152,
1745
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:152
1746
  msgid "Title Color"
1747
  msgstr ""
1748
 
1749
+ #: framework/extensions/newsletter-subscribe/customizer.php:173,
1750
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:173
1751
  msgid "Description Color"
1752
  msgstr ""
1753
 
1754
  #: framework/extensions/newsletter-subscribe/customizer.php:204,
1755
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:204,
1756
  #: framework/features/header/items/account/options.php:945,
1757
  #: framework/premium/features/premium-header/items/search-input/options.php:194,
1758
  #: framework/premium/features/premium-header/items/search-input/options.php:223,
1759
  #: framework/premium/features/premium-header/items/search-input/options.php:255,
1760
+ #: framework/premium/features/premium-header/items/search-input/options.php:285,
1761
+ #: build_tmp/build/framework/features/header/items/account/options.php:945,
1762
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:194,
1763
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:223,
1764
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:255,
1765
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:285
1766
  msgid "Input Font Color"
1767
  msgstr ""
1768
 
1769
  #: framework/extensions/newsletter-subscribe/customizer.php:228,
1770
  #: framework/extensions/newsletter-subscribe/customizer.php:259,
1771
  #: framework/extensions/newsletter-subscribe/customizer.php:295,
1772
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:228,
1773
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:259,
1774
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:295,
1775
  #: framework/features/header/items/account/options.php:967,
1776
  #: framework/features/header/items/account/options.php:997,
1777
  #: framework/features/header/items/account/options.php:1033,
1786
  #: framework/premium/features/premium-header/items/search-input/options.php:568,
1787
  #: framework/premium/features/premium-header/items/search-input/options.php:641,
1788
  #: framework/premium/features/premium-header/items/search-input/options.php:671,
1789
+ #: framework/premium/features/premium-header/items/search-input/options.php:701,
1790
+ #: build_tmp/build/framework/features/header/items/account/options.php:967,
1791
+ #: build_tmp/build/framework/features/header/items/account/options.php:997,
1792
+ #: build_tmp/build/framework/features/header/items/account/options.php:1033,
1793
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:247,
1794
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:278,
1795
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:308,
1796
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:377,
1797
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:408,
1798
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:438,
1799
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:507,
1800
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:538,
1801
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:568,
1802
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:641,
1803
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:671,
1804
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:701
1805
  msgid "Focus"
1806
  msgstr ""
1807
 
1808
  #: framework/extensions/newsletter-subscribe/customizer.php:236,
1809
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:236,
1810
  #: framework/features/header/items/account/options.php:975,
1811
  #: framework/premium/features/premium-header/items/search-input/options.php:454,
1812
  #: framework/premium/features/premium-header/items/search-input/options.php:483,
1813
  #: framework/premium/features/premium-header/items/search-input/options.php:515,
1814
+ #: framework/premium/features/premium-header/items/search-input/options.php:545,
1815
+ #: build_tmp/build/framework/features/header/items/account/options.php:975,
1816
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:454,
1817
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:483,
1818
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:515,
1819
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:545
1820
  msgid "Input Border Color"
1821
  msgstr ""
1822
 
1823
  #: framework/extensions/newsletter-subscribe/customizer.php:273,
1824
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:273,
1825
  #: framework/features/header/items/account/options.php:1011,
1826
  #: framework/premium/features/premium-header/items/search-input/options.php:590,
1827
  #: framework/premium/features/premium-header/items/search-input/options.php:618,
1828
  #: framework/premium/features/premium-header/items/search-input/options.php:648,
1829
+ #: framework/premium/features/premium-header/items/search-input/options.php:678,
1830
+ #: build_tmp/build/framework/features/header/items/account/options.php:1011,
1831
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:590,
1832
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:618,
1833
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:648,
1834
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:678
1835
  msgid "Input Background Color"
1836
  msgstr ""
1837
 
1838
  #: framework/extensions/newsletter-subscribe/customizer.php:305,
1839
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:305,
1840
+ #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:220,
1841
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:220
1842
  msgid "Button Color"
1843
  msgstr ""
1844
 
1845
  #: framework/extensions/newsletter-subscribe/customizer.php:334,
1846
  #: framework/extensions/trending/customizer.php:380,
1847
+ #: framework/premium/extensions/shortcuts/customizer.php:953,
1848
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:334,
1849
+ #: build_tmp/build/framework/extensions/trending/customizer.php:380,
1850
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:953
1851
  msgid "Container Background"
1852
  msgstr ""
1853
 
1854
+ #: framework/extensions/newsletter-subscribe/customizer.php:350,
1855
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:350
1856
  msgid "Container Border"
1857
  msgstr ""
1858
 
1859
  #: framework/extensions/newsletter-subscribe/customizer.php:385,
1860
+ #: framework/extensions/trending/customizer.php:396,
1861
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:385,
1862
+ #: build_tmp/build/framework/extensions/trending/customizer.php:396
1863
  msgid "Container Inner Spacing"
1864
  msgstr ""
1865
 
1866
  #: framework/extensions/newsletter-subscribe/customizer.php:400,
1867
+ #: framework/premium/extensions/shortcuts/customizer.php:974,
1868
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:400,
1869
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:974
1870
  msgid "Container Border Radius"
1871
  msgstr ""
1872
 
1873
+ #: framework/extensions/newsletter-subscribe/extension.php:128,
1874
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/extension.php:128
1875
  msgid "Disable Subscribe Form"
1876
  msgstr ""
1877
 
1878
  #: framework/extensions/newsletter-subscribe/helpers.php:163,
1879
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/helpers.php:163
1880
+ msgid "First name"
 
1881
  msgstr ""
1882
 
1883
  #: framework/extensions/newsletter-subscribe/helpers.php:166,
1884
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/helpers.php:166
1885
+ msgid "Email address"
 
 
 
 
 
1886
  msgstr ""
1887
 
1888
+ #: framework/extensions/newsletter-subscribe/readme.php:4,
1889
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/readme.php:4
1890
  msgid ""
1891
  "After installing and activating the Newsletter Subscribe\n"
1892
  " extension you will have two possibilities to show your subscribe form:"
1893
  msgstr ""
1894
 
1895
+ #: framework/extensions/newsletter-subscribe/readme.php:10,
1896
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/readme.php:10
1897
  msgid "Widget"
1898
  msgstr ""
1899
 
1900
+ #: framework/extensions/newsletter-subscribe/readme.php:14,
1901
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/readme.php:14
1902
  msgid "Navigate to %s and place the widget in any widget area you want."
1903
  msgstr ""
1904
 
1905
+ #: framework/extensions/newsletter-subscribe/readme.php:17,
1906
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/readme.php:17
1907
  msgid "Appearance ➝ Widgets"
1908
  msgstr ""
1909
 
1910
+ #: framework/extensions/newsletter-subscribe/readme.php:25,
1911
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/readme.php:25
1912
  msgid "Single Page Block"
1913
  msgstr ""
1914
 
1915
+ #: framework/extensions/newsletter-subscribe/readme.php:29,
1916
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/readme.php:29
1917
  msgid "Navigate to %s and customize the form and more."
1918
  msgstr ""
1919
 
1920
+ #: framework/extensions/newsletter-subscribe/readme.php:32,
1921
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/readme.php:32
1922
  msgid "Customizer ➝ Single Posts"
1923
  msgstr ""
1924
 
1925
  #. translators: This is a brand name. Preferably to not be translated
1926
+ #: framework/extensions/product-reviews/config.php:5,
1927
+ #: build_tmp/build/framework/extensions/product-reviews/config.php:5
1928
  msgctxt "Extension Brand Name"
1929
  msgid "Product Reviews"
1930
  msgstr ""
1931
 
1932
+ #: framework/extensions/product-reviews/config.php:6,
1933
+ #: build_tmp/build/framework/extensions/product-reviews/config.php:6
1934
  msgid ""
1935
  "This extension lets you easily create an affiliate marketing type of website "
1936
  "by giving you options to create a personalized product review and use your "
1937
  "affiliate links to direct your readers to the purchase page."
1938
  msgstr ""
1939
 
1940
+ #: framework/extensions/product-reviews/extension.php:217,
1941
+ #: framework/extensions/product-reviews/extension.php:388,
1942
+ #: build_tmp/build/framework/extensions/product-reviews/extension.php:217,
1943
+ #: build_tmp/build/framework/extensions/product-reviews/extension.php:388
1944
+ msgid "Star Rating Color"
1945
  msgstr ""
1946
 
1947
+ #: framework/extensions/product-reviews/extension.php:235,
1948
+ #: framework/extensions/product-reviews/extension.php:405,
1949
+ #: framework/extensions/product-reviews/extension.php:433,
1950
+ #: framework/extensions/product-reviews/extension.php:454,
1951
+ #: framework/premium/extensions/mega-menu/options.php:772,
1952
+ #: build_tmp/build/framework/extensions/product-reviews/extension.php:235,
1953
+ #: build_tmp/build/framework/extensions/product-reviews/extension.php:405,
1954
+ #: build_tmp/build/framework/extensions/product-reviews/extension.php:433,
1955
+ #: build_tmp/build/framework/extensions/product-reviews/extension.php:454,
1956
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:772
1957
+ msgid "Active"
1958
  msgstr ""
1959
 
1960
+ #: framework/extensions/product-reviews/extension.php:241,
1961
+ #: framework/extensions/product-reviews/extension.php:411,
1962
+ #: build_tmp/build/framework/extensions/product-reviews/extension.php:241,
1963
+ #: build_tmp/build/framework/extensions/product-reviews/extension.php:411
1964
+ msgid "Inactive"
1965
  msgstr ""
1966
 
1967
+ #: framework/extensions/product-reviews/extension.php:279,
1968
+ #: framework/extensions/product-reviews/views/single-top.php:139,
1969
+ #: build_tmp/build/framework/extensions/product-reviews/extension.php:279,
1970
+ #: build_tmp/build/framework/extensions/product-reviews/views/single-top.php:139
1971
+ msgid "Overall Score"
1972
  msgstr ""
1973
 
1974
+ #: framework/extensions/product-reviews/extension.php:337,
1975
+ #: build_tmp/build/framework/extensions/product-reviews/extension.php:337
1976
+ msgid "Review Summary"
1977
  msgstr ""
1978
 
1979
+ #: framework/extensions/product-reviews/extension.php:348,
1980
+ #: build_tmp/build/framework/extensions/product-reviews/extension.php:348
1981
+ msgid "Scores Box Width"
1982
  msgstr ""
1983
 
1984
+ #: framework/extensions/product-reviews/extension.php:358,
1985
+ #: build_tmp/build/framework/extensions/product-reviews/extension.php:358
1986
+ msgid "Read More Button"
 
 
1987
  msgstr ""
1988
 
1989
+ #: framework/extensions/product-reviews/extension.php:369,
1990
+ #: build_tmp/build/framework/extensions/product-reviews/extension.php:369
1991
+ msgid "Buy Now Button"
1992
  msgstr ""
1993
 
1994
+ #: framework/extensions/product-reviews/extension.php:419,
1995
+ #: build_tmp/build/framework/extensions/product-reviews/extension.php:419
1996
  msgid "Overll Score Text"
1997
  msgstr ""
1998
 
1999
+ #: framework/extensions/product-reviews/extension.php:441,
2000
+ #: build_tmp/build/framework/extensions/product-reviews/extension.php:441
2001
  msgid "Overll Score Background"
2002
  msgstr ""
2003
 
2004
+ #: framework/extensions/product-reviews/extension.php:501,
2005
+ #: framework/extensions/product-reviews/extension.php:502,
2006
+ #: framework/extensions/product-reviews/extension.php:505,
2007
+ #: framework/extensions/product-reviews/extension.php:507,
2008
+ #: build_tmp/build/framework/extensions/product-reviews/extension.php:501,
2009
+ #: build_tmp/build/framework/extensions/product-reviews/extension.php:502,
2010
+ #: build_tmp/build/framework/extensions/product-reviews/extension.php:505,
2011
+ #: build_tmp/build/framework/extensions/product-reviews/extension.php:507
2012
  msgid "Product Reviews"
2013
  msgstr ""
2014
 
2015
+ #: framework/extensions/product-reviews/extension.php:506,
2016
+ #: build_tmp/build/framework/extensions/product-reviews/extension.php:506
2017
  msgid "Product Review"
2018
  msgstr ""
2019
 
2020
+ #: framework/extensions/product-reviews/extension.php:508,
2021
+ #: build_tmp/build/framework/extensions/product-reviews/extension.php:508
2022
  msgid "Parent Product Review"
2023
  msgstr ""
2024
 
2025
+ #: framework/extensions/product-reviews/extension.php:509,
2026
+ #: build_tmp/build/framework/extensions/product-reviews/extension.php:509
2027
  msgid "All Reviews"
2028
  msgstr ""
2029
 
2030
+ #: framework/extensions/product-reviews/extension.php:510,
2031
+ #: build_tmp/build/framework/extensions/product-reviews/extension.php:510
2032
  msgid "View Product Review"
2033
  msgstr ""
2034
 
2035
+ #: framework/extensions/product-reviews/extension.php:511,
2036
+ #: build_tmp/build/framework/extensions/product-reviews/extension.php:511
2037
  msgid "Add New Product Review"
2038
  msgstr ""
2039
 
2040
+ #: framework/extensions/product-reviews/extension.php:512,
2041
+ #: build_tmp/build/framework/extensions/product-reviews/extension.php:512
2042
  msgid "Add New Review"
2043
  msgstr ""
2044
 
2045
+ #: framework/extensions/product-reviews/extension.php:513,
2046
+ #: build_tmp/build/framework/extensions/product-reviews/extension.php:513
2047
  msgid "Edit Product Review"
2048
  msgstr ""
2049
 
2050
+ #: framework/extensions/product-reviews/extension.php:514,
2051
+ #: build_tmp/build/framework/extensions/product-reviews/extension.php:514
2052
  msgid "Update Product Review"
2053
  msgstr ""
2054
 
2055
+ #: framework/extensions/product-reviews/extension.php:515,
2056
+ #: build_tmp/build/framework/extensions/product-reviews/extension.php:515
2057
  msgid "Search Product Review"
2058
  msgstr ""
2059
 
2060
+ #: framework/extensions/product-reviews/extension.php:516,
2061
+ #: build_tmp/build/framework/extensions/product-reviews/extension.php:516
2062
  msgid "Not Found"
2063
  msgstr ""
2064
 
2065
+ #: framework/extensions/product-reviews/extension.php:517,
2066
+ #: build_tmp/build/framework/extensions/product-reviews/extension.php:517
2067
  msgid "Not found in Trash"
2068
  msgstr ""
2069
 
2070
+ #: framework/extensions/product-reviews/extension.php:551,
2071
+ #: framework/extensions/product-reviews/extension.php:561,
2072
+ #: build_tmp/build/framework/extensions/product-reviews/extension.php:551,
2073
+ #: build_tmp/build/framework/extensions/product-reviews/extension.php:561
2074
  msgid "Categories"
2075
  msgstr ""
2076
 
2077
+ #: framework/extensions/product-reviews/extension.php:552,
2078
  #: framework/extensions/trending/customizer.php:35,
2079
+ #: build_tmp/build/framework/extensions/product-reviews/extension.php:552,
2080
+ #: build_tmp/build/framework/extensions/trending/customizer.php:35,
2081
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:37,
2082
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:37
2083
  msgid "Category"
2084
  msgstr ""
2085
 
2086
+ #: framework/extensions/product-reviews/extension.php:553,
2087
+ #: build_tmp/build/framework/extensions/product-reviews/extension.php:553
2088
  msgid "Search Category"
2089
  msgstr ""
2090
 
2091
+ #: framework/extensions/product-reviews/extension.php:554,
2092
+ #: build_tmp/build/framework/extensions/product-reviews/extension.php:554
2093
  msgid "All Categories"
2094
  msgstr ""
2095
 
2096
+ #: framework/extensions/product-reviews/extension.php:555,
2097
+ #: build_tmp/build/framework/extensions/product-reviews/extension.php:555
2098
  msgid "Parent Category"
2099
  msgstr ""
2100
 
2101
+ #: framework/extensions/product-reviews/extension.php:556,
2102
+ #: build_tmp/build/framework/extensions/product-reviews/extension.php:556
2103
  msgid "Parent Category:"
2104
  msgstr ""
2105
 
2106
+ #: framework/extensions/product-reviews/extension.php:557,
2107
+ #: build_tmp/build/framework/extensions/product-reviews/extension.php:557
2108
  msgid "Edit Category"
2109
  msgstr ""
2110
 
2111
+ #: framework/extensions/product-reviews/extension.php:558,
2112
+ #: build_tmp/build/framework/extensions/product-reviews/extension.php:558
2113
  msgid "Update Category"
2114
  msgstr ""
2115
 
2116
+ #: framework/extensions/product-reviews/extension.php:559,
2117
+ #: build_tmp/build/framework/extensions/product-reviews/extension.php:559
2118
  msgid "Add New Category"
2119
  msgstr ""
2120
 
2121
+ #: framework/extensions/product-reviews/extension.php:560,
2122
+ #: build_tmp/build/framework/extensions/product-reviews/extension.php:560
2123
  msgid "New Category Name"
2124
  msgstr ""
2125
 
2126
  #. translators: %s is the theme name.
2127
+ #: framework/extensions/product-reviews/extension.php:579,
2128
+ #: build_tmp/build/framework/extensions/product-reviews/extension.php:579
2129
  msgid "%s Settings"
2130
  msgstr ""
2131
 
2132
+ #: framework/extensions/product-reviews/extension.php:580,
2133
+ #: build_tmp/build/framework/extensions/product-reviews/extension.php:580
2134
  msgid "Blocksy"
2135
  msgstr ""
2136
 
2137
  #: framework/extensions/product-reviews/helpers.php:30,
2138
+ #: framework/extensions/product-reviews/metabox.php:179,
2139
+ #: build_tmp/build/framework/extensions/product-reviews/helpers.php:30,
2140
+ #: build_tmp/build/framework/extensions/product-reviews/metabox.php:179
2141
  msgid "Rating"
2142
  msgstr ""
2143
 
2144
+ #: framework/extensions/product-reviews/metabox.php:10,
2145
+ #: build_tmp/build/framework/extensions/product-reviews/metabox.php:10
2146
  msgid "Review Entity"
2147
  msgstr ""
2148
 
2149
  #: framework/extensions/product-reviews/metabox.php:18,
2150
+ #: build_tmp/build/framework/extensions/product-reviews/metabox.php:18,
2151
+ #: framework/premium/extensions/woocommerce-extra/includes/wish-list-table.php:34,
2152
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-table.php:34
2153
  msgid "Product"
2154
  msgstr ""
2155
 
2156
+ #: framework/extensions/product-reviews/metabox.php:19,
2157
+ #: build_tmp/build/framework/extensions/product-reviews/metabox.php:19
2158
  msgid "Book"
2159
  msgstr ""
2160
 
2161
+ #: framework/extensions/product-reviews/metabox.php:21,
2162
+ #: build_tmp/build/framework/extensions/product-reviews/metabox.php:21
2163
  msgid "Creative Work Season"
2164
  msgstr ""
2165
 
2166
+ #: framework/extensions/product-reviews/metabox.php:22,
2167
+ #: build_tmp/build/framework/extensions/product-reviews/metabox.php:22
2168
  msgid "Creative Work Series"
2169
  msgstr ""
2170
 
2171
+ #: framework/extensions/product-reviews/metabox.php:23,
2172
+ #: build_tmp/build/framework/extensions/product-reviews/metabox.php:23
2173
  msgid "Episode"
2174
  msgstr ""
2175
 
2176
+ #: framework/extensions/product-reviews/metabox.php:25,
2177
+ #: build_tmp/build/framework/extensions/product-reviews/metabox.php:25
2178
  msgid "Game"
2179
  msgstr ""
2180
 
2181
+ #: framework/extensions/product-reviews/metabox.php:27,
2182
+ #: build_tmp/build/framework/extensions/product-reviews/metabox.php:27
2183
  msgid "Local Business"
2184
  msgstr ""
2185
 
2186
+ #: framework/extensions/product-reviews/metabox.php:28,
2187
+ #: build_tmp/build/framework/extensions/product-reviews/metabox.php:28
2188
  msgid "Media Object"
2189
  msgstr ""
2190
 
2191
+ #: framework/extensions/product-reviews/metabox.php:29,
2192
+ #: build_tmp/build/framework/extensions/product-reviews/metabox.php:29
2193
  msgid "Movie"
2194
  msgstr ""
2195
 
2196
+ #: framework/extensions/product-reviews/metabox.php:30,
2197
+ #: build_tmp/build/framework/extensions/product-reviews/metabox.php:30
2198
  msgid "Music Playlist"
2199
  msgstr ""
2200
 
2201
+ #: framework/extensions/product-reviews/metabox.php:31,
2202
+ #: build_tmp/build/framework/extensions/product-reviews/metabox.php:31
2203
  msgid "Music Recording"
2204
  msgstr ""
2205
 
2206
+ #: framework/extensions/product-reviews/metabox.php:32,
2207
+ #: build_tmp/build/framework/extensions/product-reviews/metabox.php:32
2208
  msgid "Organization"
2209
  msgstr ""
2210
 
2211
+ #: framework/extensions/product-reviews/metabox.php:38,
2212
+ #: build_tmp/build/framework/extensions/product-reviews/metabox.php:38
2213
  msgid ""
2214
  "More info about review entity and how to choose the right one can be found "
2215
  "%shere%s."
2216
  msgstr ""
2217
 
2218
+ #: framework/extensions/product-reviews/metabox.php:60,
2219
+ #: build_tmp/build/framework/extensions/product-reviews/metabox.php:60
2220
  msgid ""
2221
  "Please note that some of this information (price, sku, brand) won't be "
2222
  "displayed on the front-end. It is solely used for Google's Schema.org markup."
2223
  msgstr ""
2224
 
2225
+ #: framework/extensions/product-reviews/metabox.php:69,
2226
+ #: build_tmp/build/framework/extensions/product-reviews/metabox.php:69
2227
  msgid "Product Price"
2228
  msgstr ""
2229
 
2230
+ #: framework/extensions/product-reviews/metabox.php:76,
2231
+ #: build_tmp/build/framework/extensions/product-reviews/metabox.php:76
2232
  msgid "Product SKU"
2233
  msgstr ""
2234
 
2235
+ #: framework/extensions/product-reviews/metabox.php:83,
2236
+ #: build_tmp/build/framework/extensions/product-reviews/metabox.php:83
2237
  msgid "Product Brand"
2238
  msgstr ""
2239
 
2240
+ #: framework/extensions/product-reviews/metabox.php:96,
2241
+ #: build_tmp/build/framework/extensions/product-reviews/metabox.php:96
2242
  msgid "Gallery"
2243
  msgstr ""
2244
 
2245
+ #: framework/extensions/product-reviews/metabox.php:107,
2246
+ #: build_tmp/build/framework/extensions/product-reviews/metabox.php:107
2247
  msgid "Affiliate Button Label"
2248
  msgstr ""
2249
 
2250
  #: framework/extensions/product-reviews/metabox.php:109,
2251
+ #: framework/extensions/product-reviews/views/single-top.php:156,
2252
+ #: build_tmp/build/framework/extensions/product-reviews/metabox.php:109,
2253
+ #: build_tmp/build/framework/extensions/product-reviews/views/single-top.php:156
2254
  msgid "Buy Now"
2255
  msgstr ""
2256
 
2257
+ #: framework/extensions/product-reviews/metabox.php:114,
2258
+ #: build_tmp/build/framework/extensions/product-reviews/metabox.php:114
2259
  msgid "Affiliate Link"
2260
  msgstr ""
2261
 
2262
+ #: framework/extensions/product-reviews/metabox.php:120,
2263
+ #: build_tmp/build/framework/extensions/product-reviews/metabox.php:120
2264
  msgid "Open Link In New Tab"
2265
  msgstr ""
2266
 
2267
+ #: framework/extensions/product-reviews/metabox.php:126,
2268
+ #: build_tmp/build/framework/extensions/product-reviews/metabox.php:126
2269
  msgid "Sponsored Attribute"
2270
  msgstr ""
2271
 
2272
+ #: framework/extensions/product-reviews/metabox.php:148,
2273
+ #: build_tmp/build/framework/extensions/product-reviews/metabox.php:148
2274
  msgid "Read More Button Label"
2275
  msgstr ""
2276
 
2277
  #: framework/extensions/product-reviews/metabox.php:150,
2278
+ #: framework/extensions/product-reviews/views/single-top.php:162,
2279
+ #: build_tmp/build/framework/extensions/product-reviews/metabox.php:150,
2280
+ #: build_tmp/build/framework/extensions/product-reviews/views/single-top.php:162
2281
  msgid "Read More"
2282
  msgstr ""
2283
 
2284
+ #: framework/extensions/product-reviews/metabox.php:170,
2285
+ #: build_tmp/build/framework/extensions/product-reviews/metabox.php:170
2286
  msgid "Short Description"
2287
  msgstr ""
2288
 
2289
+ #: framework/extensions/product-reviews/metabox.php:185,
2290
+ #: build_tmp/build/framework/extensions/product-reviews/metabox.php:185
2291
  msgid "Scores"
2292
  msgstr ""
2293
 
2294
+ #: framework/extensions/product-reviews/metabox.php:225,
2295
+ #: build_tmp/build/framework/extensions/product-reviews/metabox.php:225
2296
  msgid "Product specs"
2297
  msgstr ""
2298
 
2299
  #: framework/extensions/product-reviews/metabox.php:250,
2300
+ #: framework/extensions/product-reviews/views/single-top.php:262,
2301
+ #: build_tmp/build/framework/extensions/product-reviews/metabox.php:250,
2302
+ #: build_tmp/build/framework/extensions/product-reviews/views/single-top.php:262
2303
  msgid "Pros"
2304
  msgstr ""
2305
 
2306
  #: framework/extensions/product-reviews/metabox.php:270,
2307
+ #: framework/extensions/product-reviews/views/single-top.php:285,
2308
+ #: build_tmp/build/framework/extensions/product-reviews/metabox.php:270,
2309
+ #: build_tmp/build/framework/extensions/product-reviews/views/single-top.php:285
2310
  msgid "Cons"
2311
  msgstr ""
2312
 
2313
  #. translators: This is a brand name. Preferably to not be translated
2314
  #: framework/extensions/trending/config.php:5,
2315
+ #: framework/extensions/trending/customizer.php:97,
2316
+ #: build_tmp/build/framework/extensions/trending/config.php:5,
2317
+ #: build_tmp/build/framework/extensions/trending/customizer.php:97
2318
  msgctxt "Extension Brand Name"
2319
  msgid "Trending Posts"
2320
  msgstr ""
2321
 
2322
+ #: framework/extensions/trending/config.php:6,
2323
+ #: build_tmp/build/framework/extensions/trending/config.php:6
2324
  msgid ""
2325
  "Highlight your most popular posts or products based on the number of "
2326
  "comments or reviews they have gotten in the specified period of time."
2327
  msgstr ""
2328
 
2329
  #: framework/extensions/trending/customizer.php:8,
2330
+ #: build_tmp/build/framework/extensions/trending/customizer.php:8,
2331
  #: framework/premium/extensions/shortcuts/views/bar.php:48,
2332
+ #: framework/premium/features/premium-header/items/search-input/options.php:6,
2333
+ #: build_tmp/build/framework/premium/extensions/shortcuts/views/bar.php:48,
2334
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:6
2335
  msgid "Products"
2336
  msgstr ""
2337
 
2338
  #: framework/extensions/trending/customizer.php:36,
2339
+ #: build_tmp/build/framework/extensions/trending/customizer.php:36,
2340
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:38,
2341
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:38
2342
  msgid "All categories"
2343
  msgstr ""
2344
 
2345
  #: framework/extensions/trending/customizer.php:41,
2346
+ #: build_tmp/build/framework/extensions/trending/customizer.php:41,
2347
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:43,
2348
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:43
2349
  msgid "Taxonomy"
2350
  msgstr ""
2351
 
2352
  #: framework/extensions/trending/customizer.php:42,
2353
+ #: build_tmp/build/framework/extensions/trending/customizer.php:42,
2354
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:44,
2355
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:44
2356
  msgid "All taxonomies"
2357
  msgstr ""
2358
 
2359
+ #: framework/extensions/trending/customizer.php:106,
2360
+ #: build_tmp/build/framework/extensions/trending/customizer.php:106
2361
  msgid "Trending Posts"
2362
  msgstr ""
2363
 
2364
+ #: framework/extensions/trending/customizer.php:115,
2365
+ #: build_tmp/build/framework/extensions/trending/customizer.php:115
2366
  msgid "Module Title"
2367
  msgstr ""
2368
 
2369
  #: framework/extensions/trending/customizer.php:118,
2370
+ #: framework/extensions/trending/helpers.php:221,
2371
+ #: build_tmp/build/framework/extensions/trending/customizer.php:118,
2372
+ #: build_tmp/build/framework/extensions/trending/helpers.php:221
2373
  msgid "Trending now"
2374
  msgstr ""
2375
 
2376
+ #: framework/extensions/trending/customizer.php:123,
2377
+ #: build_tmp/build/framework/extensions/trending/customizer.php:123
2378
  msgid "Module Title Tag"
2379
  msgstr ""
2380
 
2381
  #: framework/extensions/trending/customizer.php:149,
2382
  #: framework/extensions/trending/customizer.php:162,
2383
+ #: build_tmp/build/framework/extensions/trending/customizer.php:149,
2384
+ #: build_tmp/build/framework/extensions/trending/customizer.php:162,
2385
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:137,
2386
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:137
2387
  msgid "Post Type"
2388
  msgstr ""
2389
 
2390
  #: framework/extensions/trending/customizer.php:171,
2391
+ #: build_tmp/build/framework/extensions/trending/customizer.php:171,
2392
  #: framework/extensions/widgets/widgets/ct-advertisement/options.php:23,
2393
  #: framework/extensions/widgets/widgets/ct-posts/options.php:149,
2394
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:168,
2395
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-advertisement/options.php:23,
2396
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:149,
2397
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:168
2398
  msgid "Source"
2399
  msgstr ""
2400
 
2401
  #: framework/extensions/trending/customizer.php:176,
2402
+ #: build_tmp/build/framework/extensions/trending/customizer.php:176,
2403
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:154,
2404
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:154
2405
  msgid "Taxonomies"
2406
  msgstr ""
2407
 
2408
  #: framework/extensions/trending/customizer.php:177,
2409
+ #: build_tmp/build/framework/extensions/trending/customizer.php:177,
2410
  #: framework/extensions/widgets/widgets/ct-posts/options.php:155,
2411
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:174,
2412
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:155,
2413
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:174
2414
  msgid "Custom Query"
2415
  msgstr ""
2416
 
2417
  #: framework/extensions/trending/customizer.php:200,
2418
+ #: build_tmp/build/framework/extensions/trending/customizer.php:200,
2419
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:243,
2420
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:243
2421
  msgid "Posts ID"
2422
  msgstr ""
2423
 
2424
  #: framework/extensions/trending/customizer.php:204,
2425
+ #: build_tmp/build/framework/extensions/trending/customizer.php:204,
2426
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:247,
2427
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:247
2428
  msgid "Separate posts ID by comma. How to find the %spost ID%s."
2429
  msgstr ""
2430
 
2431
+ #: framework/extensions/trending/customizer.php:220,
2432
+ #: build_tmp/build/framework/extensions/trending/customizer.php:220
2433
  msgid "Trending From"
2434
  msgstr ""
2435
 
2436
  #: framework/extensions/trending/customizer.php:229,
2437
+ #: build_tmp/build/framework/extensions/trending/customizer.php:229,
2438
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:213,
2439
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:213
2440
  msgid "All Time"
2441
  msgstr ""
2442
 
2443
+ #: framework/extensions/trending/customizer.php:230,
2444
+ #: build_tmp/build/framework/extensions/trending/customizer.php:230
2445
  msgid "Last 24 Hours"
2446
  msgstr ""
2447
 
2448
+ #: framework/extensions/trending/customizer.php:231,
2449
+ #: build_tmp/build/framework/extensions/trending/customizer.php:231
2450
  msgid "Last 7 Days"
2451
  msgstr ""
2452
 
2453
+ #: framework/extensions/trending/customizer.php:232,
2454
+ #: build_tmp/build/framework/extensions/trending/customizer.php:232
2455
  msgid "Last Month"
2456
  msgstr ""
2457
 
2458
+ #: framework/extensions/trending/customizer.php:245,
2459
+ #: build_tmp/build/framework/extensions/trending/customizer.php:245
2460
  msgid "Image Size"
2461
  msgstr ""
2462
 
2463
+ #: framework/extensions/trending/customizer.php:267,
2464
+ #: build_tmp/build/framework/extensions/trending/customizer.php:267
2465
  msgid "Container Visibility"
2466
  msgstr ""
2467
 
2468
+ #: framework/extensions/trending/customizer.php:288,
2469
+ #: build_tmp/build/framework/extensions/trending/customizer.php:288
2470
  msgid "Display Location"
2471
  msgstr ""
2472
 
2473
+ #: framework/extensions/trending/customizer.php:296,
2474
+ #: build_tmp/build/framework/extensions/trending/customizer.php:296
2475
  msgid "Before Footer"
2476
  msgstr ""
2477
 
2478
+ #: framework/extensions/trending/customizer.php:301,
2479
+ #: build_tmp/build/framework/extensions/trending/customizer.php:301
2480
  msgid "After Footer"
2481
  msgstr ""
2482
 
2483
+ #: framework/extensions/trending/customizer.php:306,
2484
+ #: build_tmp/build/framework/extensions/trending/customizer.php:306
2485
  msgid "After Header"
2486
  msgstr ""
2487
 
2488
  #: framework/extensions/trending/customizer.php:312,
2489
  #: framework/features/header/header-options.php:158,
2490
  #: framework/premium/extensions/shortcuts/customizer.php:763,
2491
+ #: build_tmp/build/framework/extensions/trending/customizer.php:312,
2492
+ #: build_tmp/build/framework/features/header/header-options.php:158,
2493
  #: framework/premium/features/content-blocks/options/archive.php:186,
2494
  #: framework/premium/features/content-blocks/options/header.php:142,
2495
  #: framework/premium/features/content-blocks/options/hook.php:236,
2496
  #: framework/premium/features/content-blocks/options/popup.php:297,
2497
+ #: framework/premium/features/content-blocks/options/single.php:119,
2498
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:763,
2499
+ #: build_tmp/build/framework/premium/features/content-blocks/options/archive.php:186,
2500
+ #: build_tmp/build/framework/premium/features/content-blocks/options/header.php:142,
2501
+ #: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:236,
2502
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:297,
2503
+ #: build_tmp/build/framework/premium/features/content-blocks/options/single.php:119
2504
  #: framework/premium/extensions/sidebars/static/js/SettingsManager.js:49
2505
  #: framework/premium/static/js/footer/EditConditions.js:97
2506
  #: static/js/header/EditConditions.js:103
2507
  msgid "Display Conditions"
2508
  msgstr ""
2509
 
2510
+ #: framework/extensions/trending/customizer.php:323,
2511
+ #: build_tmp/build/framework/extensions/trending/customizer.php:323
2512
  msgid "Trending Block Display Conditions"
2513
  msgstr ""
2514
 
2515
+ #: framework/extensions/trending/customizer.php:324,
2516
+ #: build_tmp/build/framework/extensions/trending/customizer.php:324
2517
  msgid "Add one or more conditions to display the trending block."
2518
  msgstr ""
2519
 
2520
+ #: framework/extensions/trending/customizer.php:339,
2521
+ #: build_tmp/build/framework/extensions/trending/customizer.php:339
2522
  msgid "Posts Font"
2523
  msgstr ""
2524
 
2525
  #. translators: This is a brand name. Preferably to not be translated
2526
+ #: framework/extensions/widgets/config.php:5,
2527
+ #: build_tmp/build/framework/extensions/widgets/config.php:5
2528
  msgctxt "Extension Brand Name"
2529
  msgid "Widgets"
2530
  msgstr ""
2531
 
2532
+ #: framework/extensions/widgets/config.php:6,
2533
+ #: build_tmp/build/framework/extensions/widgets/config.php:6
2534
  msgid ""
2535
  "Add new handcrafted widgets to your sidebars! Social Network Icons, "
2536
  "Newsletter Subscribe, Contact Info, Custom Ads and even a Popular/Recent "
2537
  "Posts are the choices available."
2538
  msgstr ""
2539
 
2540
+ #: framework/features/header/account-modal.php:37,
2541
+ #: build_tmp/build/framework/features/header/account-modal.php:37
2542
  msgid "Close account modal"
2543
  msgstr ""
2544
 
2545
  #: framework/features/header/account-modal.php:49,
2546
+ #: build_tmp/build/framework/features/header/account-modal.php:49,
2547
  #: framework/features/header/items/account/options.php:569,
2548
+ #: framework/features/header/items/account/views/logout.php:7,
2549
+ #: build_tmp/build/framework/features/header/items/account/options.php:569,
2550
+ #: build_tmp/build/framework/features/header/items/account/views/logout.php:7
2551
  msgid "Login"
2552
  msgstr ""
2553
 
2554
+ #: framework/features/header/account-modal.php:53,
2555
+ #: build_tmp/build/framework/features/header/account-modal.php:53
2556
  msgid "Sign Up"
2557
  msgstr ""
2558
 
2559
+ #: framework/features/header/account-modal.php:72,
2560
+ #: build_tmp/build/framework/features/header/account-modal.php:72
2561
  msgid "Back to login"
2562
  msgstr ""
2563
 
2564
+ #: framework/features/header/header-options.php:6,
2565
+ #: build_tmp/build/framework/features/header/header-options.php:6
2566
  msgid "Sticky Functionality"
2567
  msgstr ""
2568
 
2569
+ #: framework/features/header/header-options.php:32,
2570
+ #: build_tmp/build/framework/features/header/header-options.php:32
2571
  msgid "Only Main Row"
2572
  msgstr ""
2573
 
2574
+ #: framework/features/header/header-options.php:37,
2575
+ #: build_tmp/build/framework/features/header/header-options.php:37
2576
  msgid "Top & Main Row"
2577
  msgstr ""
2578
 
2579
+ #: framework/features/header/header-options.php:42,
2580
+ #: build_tmp/build/framework/features/header/header-options.php:42
2581
  msgid "All Rows"
2582
  msgstr ""
2583
 
2584
+ #: framework/features/header/header-options.php:47,
2585
+ #: build_tmp/build/framework/features/header/header-options.php:47
2586
  msgid "Main & Bottom Row"
2587
  msgstr ""
2588
 
2589
+ #: framework/features/header/header-options.php:52,
2590
+ #: build_tmp/build/framework/features/header/header-options.php:52
2591
  msgid "Only Top Row"
2592
  msgstr ""
2593
 
2594
+ #: framework/features/header/header-options.php:57,
2595
+ #: build_tmp/build/framework/features/header/header-options.php:57
2596
  msgid "Only Bottom Row"
2597
  msgstr ""
2598
 
2599
+ #: framework/features/header/header-options.php:63,
2600
+ #: build_tmp/build/framework/features/header/header-options.php:63
2601
  msgid "Effect"
2602
  msgstr ""
2603
 
2604
+ #: framework/features/header/header-options.php:72,
2605
+ #: build_tmp/build/framework/features/header/header-options.php:72
2606
  msgid "Slide Down"
2607
  msgstr ""
2608
 
2609
+ #: framework/features/header/header-options.php:73,
2610
+ #: build_tmp/build/framework/features/header/header-options.php:73
2611
  msgid "Fade"
2612
  msgstr ""
2613
 
2614
+ #: framework/features/header/header-options.php:74,
2615
+ #: build_tmp/build/framework/features/header/header-options.php:74
2616
  msgid "Auto Hide/Show"
2617
  msgstr ""
2618
 
2619
+ #: framework/features/header/header-options.php:79,
2620
+ #: build_tmp/build/framework/features/header/header-options.php:79
2621
  msgid "Offset"
2622
  msgstr ""
2623
 
2624
  #: framework/features/header/header-options.php:92,
2625
+ #: framework/features/header/header-options.php:174,
2626
+ #: build_tmp/build/framework/features/header/header-options.php:92,
2627
+ #: build_tmp/build/framework/features/header/header-options.php:174
2628
  msgid "Enable on"
2629
  msgstr ""
2630
 
2631
+ #: framework/features/header/header-options.php:120,
2632
+ #: build_tmp/build/framework/features/header/header-options.php:120
2633
  msgid "Transparent Functionality"
2634
  msgstr ""
2635
 
2636
+ #: framework/premium/features/content-blocks.php:113,
2637
+ #: build_tmp/build/framework/premium/features/content-blocks.php:113
2638
  msgid "Hide Hooks"
2639
  msgstr ""
2640
 
2641
+ #: framework/premium/features/content-blocks.php:114,
2642
+ #: build_tmp/build/framework/premium/features/content-blocks.php:114
2643
  msgid "Show Hooks"
2644
  msgstr ""
2645
 
2646
+ #: framework/premium/features/content-blocks.php:125,
2647
+ #: build_tmp/build/framework/premium/features/content-blocks.php:125
2648
  msgid "Hooks Locations"
2649
  msgstr ""
2650
 
2651
+ #: framework/premium/features/content-blocks.php:170,
2652
+ #: build_tmp/build/framework/premium/features/content-blocks.php:170
2653
  msgid "Hide Theme Hooks"
2654
  msgstr ""
2655
 
2656
+ #: framework/premium/features/content-blocks.php:171,
2657
+ #: build_tmp/build/framework/premium/features/content-blocks.php:171
2658
  msgid "Show Theme Hooks"
2659
  msgstr ""
2660
 
2661
+ #: framework/premium/features/content-blocks.php:179,
2662
+ #: build_tmp/build/framework/premium/features/content-blocks.php:179
2663
  msgid "Hide WooCommerce Hooks"
2664
  msgstr ""
2665
 
2666
+ #: framework/premium/features/content-blocks.php:180,
2667
+ #: build_tmp/build/framework/premium/features/content-blocks.php:180
2668
  msgid "Show WooCommerce Hooks"
2669
  msgstr ""
2670
 
2671
  #: framework/premium/features/content-blocks.php:564,
2672
+ #: framework/premium/features/content-blocks.php:570,
2673
+ #: build_tmp/build/framework/premium/features/content-blocks.php:564,
2674
+ #: build_tmp/build/framework/premium/features/content-blocks.php:570
2675
  msgid "Content Blocks"
2676
  msgstr ""
2677
 
2678
  #: framework/premium/features/content-blocks.php:565,
2679
+ #: framework/premium/extensions/mega-menu/options.php:333,
2680
+ #: build_tmp/build/framework/premium/features/content-blocks.php:565,
2681
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:333
2682
  msgid "Content Block"
2683
  msgstr ""
2684
 
2685
+ #: framework/premium/features/content-blocks.php:566,
2686
+ #: build_tmp/build/framework/premium/features/content-blocks.php:566
2687
  msgid "Add New"
2688
  msgstr ""
2689
 
2690
+ #: framework/premium/features/content-blocks.php:567,
2691
+ #: build_tmp/build/framework/premium/features/content-blocks.php:567
2692
  msgid "Add New Content Block"
2693
  msgstr ""
2694
 
2695
+ #: framework/premium/features/content-blocks.php:568,
2696
+ #: build_tmp/build/framework/premium/features/content-blocks.php:568
2697
  msgid "Edit Content Block"
2698
  msgstr ""
2699
 
2700
+ #: framework/premium/features/content-blocks.php:569,
2701
+ #: build_tmp/build/framework/premium/features/content-blocks.php:569
2702
  #: framework/premium/static/js/hooks/CreateHook.js:33
2703
  msgid "New Content Block"
2704
  msgstr ""
2705
 
2706
+ #: framework/premium/features/content-blocks.php:571,
2707
+ #: build_tmp/build/framework/premium/features/content-blocks.php:571
2708
  msgid "View Content Block"
2709
  msgstr ""
2710
 
2711
+ #: framework/premium/features/content-blocks.php:572,
2712
+ #: build_tmp/build/framework/premium/features/content-blocks.php:572
2713
  msgid "Search Content Blocks"
2714
  msgstr ""
2715
 
2716
+ #: framework/premium/features/content-blocks.php:573,
2717
+ #: build_tmp/build/framework/premium/features/content-blocks.php:573
2718
  msgid "Nothing found"
2719
  msgstr ""
2720
 
2721
+ #: framework/premium/features/content-blocks.php:574,
2722
+ #: build_tmp/build/framework/premium/features/content-blocks.php:574
2723
  msgid "Nothing found in Trash"
2724
  msgstr ""
2725
 
2726
+ #: framework/premium/features/content-blocks.php:863,
2727
+ #: build_tmp/build/framework/premium/features/content-blocks.php:863
2728
  msgid "Close popup"
2729
  msgstr ""
2730
 
2731
+ #: framework/premium/features/media-meta-fields.php:29,
2732
+ #: build_tmp/build/framework/premium/features/media-meta-fields.php:29
2733
  msgid "Attachment Video"
2734
  msgstr ""
2735
 
2736
+ #: framework/premium/features/media-meta-fields.php:33,
2737
+ #: build_tmp/build/framework/premium/features/media-meta-fields.php:33
2738
  msgid "Video URL"
2739
  msgstr ""
2740
 
2741
  #. translators: %s: Link to wordpress.org article
2742
+ #: framework/premium/features/media-meta-fields.php:39,
2743
+ #: build_tmp/build/framework/premium/features/media-meta-fields.php:39
2744
  msgid ""
2745
  "Enter a <a href=\"%s\" target=\"_blank\">valid media URL</a> or upload an "
2746
  "MP4 file into the media library."
2747
  msgstr ""
2748
 
2749
+ #: framework/premium/features/media-meta-fields.php:42,
2750
+ #: build_tmp/build/framework/premium/features/media-meta-fields.php:42
2751
  msgid "Upload"
2752
  msgstr ""
2753
 
2754
+ #: framework/premium/features/media-meta-fields.php:44,
2755
+ #: build_tmp/build/framework/premium/features/media-meta-fields.php:44
2756
  msgid "Upload Video (MP4 File)"
2757
  msgstr ""
2758
 
2759
  #: framework/premium/features/premium-footer.php:14,
2760
+ #: framework/premium/features/premium-footer.php:28,
2761
+ #: build_tmp/build/framework/premium/features/premium-footer.php:14,
2762
+ #: build_tmp/build/framework/premium/features/premium-footer.php:28
2763
  msgid "Footer Menu 1"
2764
  msgstr ""
2765
 
2766
  #: framework/premium/features/premium-footer.php:29,
2767
+ #: build_tmp/build/framework/premium/features/premium-footer.php:29,
2768
+ #: framework/premium/features/premium-footer/items/menu-secondary/config.php:4,
2769
+ #: build_tmp/build/framework/premium/features/premium-footer/items/menu-secondary/config.php:4
2770
  msgid "Footer Menu 2"
2771
  msgstr ""
2772
 
2773
+ #: framework/premium/features/premium-header.php:49,
2774
+ #: build_tmp/build/framework/premium/features/premium-header.php:49
2775
  msgid "Header Menu 3"
2776
  msgstr ""
2777
 
2778
+ #: framework/premium/features/premium-header.php:50,
2779
+ #: build_tmp/build/framework/premium/features/premium-header.php:50
2780
  msgid "Mobile Menu 1"
2781
  msgstr ""
2782
 
2783
+ #: framework/premium/features/premium-header.php:51,
2784
+ #: build_tmp/build/framework/premium/features/premium-header.php:51
2785
  msgid "Mobile Menu 2"
2786
  msgstr ""
2787
 
2788
+ #: framework/premium/features/premium-header.php:142,
2789
+ #: build_tmp/build/framework/premium/features/premium-header.php:142
2790
  msgid "Header Widget Area "
2791
  msgstr ""
2792
 
2796
  #: framework/premium/features/premium-header.php:333,
2797
  #: framework/premium/features/premium-header.php:355,
2798
  #: framework/premium/extensions/mega-menu/options.php:422,
2799
+ #: build_tmp/build/framework/premium/features/premium-header.php:198,
2800
+ #: build_tmp/build/framework/premium/features/premium-header.php:274,
2801
+ #: build_tmp/build/framework/premium/features/premium-header.php:294,
2802
+ #: build_tmp/build/framework/premium/features/premium-header.php:333,
2803
+ #: build_tmp/build/framework/premium/features/premium-header.php:355,
2804
+ #: framework/extensions/widgets/widgets/ct-contact-info/options.php:112,
2805
+ #: framework/extensions/widgets/widgets/ct-contact-info/options.php:174,
2806
+ #: framework/extensions/widgets/widgets/ct-contact-info/options.php:234,
2807
+ #: framework/extensions/widgets/widgets/ct-contact-info/options.php:294,
2808
+ #: framework/extensions/widgets/widgets/ct-contact-info/options.php:354,
2809
+ #: framework/extensions/widgets/widgets/ct-contact-info/options.php:414,
2810
+ #: framework/extensions/widgets/widgets/ct-contact-info/options.php:474,
2811
  #: framework/features/header/items/account/options.php:140,
2812
  #: framework/features/header/items/account/options.php:189,
2813
  #: framework/features/header/items/account/options.php:400,
2814
  #: framework/features/header/items/account/options.php:431,
2815
  #: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:447,
2816
  #: framework/premium/extensions/post-types-extra/includes/estimated-read-time.php:18,
2817
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:422,
2818
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:28,
2819
  #: framework/premium/features/premium-header/items/contacts/options.php:65,
2820
  #: framework/premium/features/premium-header/items/contacts/options.php:102,
2823
  #: framework/premium/features/premium-header/items/contacts/options.php:210,
2824
  #: framework/premium/features/premium-header/items/contacts/options.php:246,
2825
  #: framework/premium/features/premium-header/items/contacts/options.php:282,
2826
+ #: framework/premium/features/premium-header/items/search-input/options.php:76,
2827
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:112,
2828
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:174,
2829
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:234,
2830
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:294,
2831
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:354,
2832
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:414,
2833
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:474,
2834
+ #: build_tmp/build/framework/features/header/items/account/options.php:140,
2835
+ #: build_tmp/build/framework/features/header/items/account/options.php:189,
2836
+ #: build_tmp/build/framework/features/header/items/account/options.php:400,
2837
+ #: build_tmp/build/framework/features/header/items/account/options.php:431,
2838
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/dynamic-data.php:447,
2839
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/estimated-read-time.php:18,
2840
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:28,
2841
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:65,
2842
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:102,
2843
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:138,
2844
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:174,
2845
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:210,
2846
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:246,
2847
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:282,
2848
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:76
2849
  msgid "Icon"
2850
  msgstr ""
2851
 
2852
  #: framework/premium/features/premium-header.php:212,
2853
  #: framework/premium/extensions/mega-menu/options.php:436,
2854
  #: framework/premium/extensions/woocommerce-extra/extension.php:373,
2855
+ #: build_tmp/build/framework/premium/features/premium-header.php:212,
2856
+ #: framework/extensions/widgets/widgets/ct-contact-info/options.php:489,
2857
+ #: framework/extensions/widgets/widgets/ct-socials/options.php:92,
2858
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:436,
2859
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/extension.php:373,
2860
+ #: framework/premium/features/premium-header/items/contacts/options.php:310,
2861
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:489,
2862
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-socials/options.php:92,
2863
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:310
2864
  msgid "Icons Size"
2865
  msgstr ""
2866
 
2867
  #: framework/premium/features/premium-header.php:224,
2868
+ #: framework/premium/extensions/mega-menu/options.php:458,
2869
+ #: build_tmp/build/framework/premium/features/premium-header.php:224,
2870
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:458
2871
  msgid "Icon Position"
2872
  msgstr ""
2873
 
2874
  #: framework/premium/features/premium-header.php:231,
2875
  #: framework/premium/extensions/mega-menu/options.php:465,
2876
  #: framework/premium/extensions/shortcuts/customizer.php:659,
2877
+ #: build_tmp/build/framework/premium/features/premium-header.php:231,
2878
  #: framework/features/header/items/account/options.php:311,
2879
  #: framework/features/header/items/account/options.php:553,
2880
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:465,
2881
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:659,
2882
+ #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:130,
2883
+ #: build_tmp/build/framework/features/header/items/account/options.php:311,
2884
+ #: build_tmp/build/framework/features/header/items/account/options.php:553,
2885
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:130
2886
  msgid "Left"
2887
  msgstr ""
2888
 
2889
  #: framework/premium/features/premium-header.php:232,
2890
  #: framework/premium/extensions/mega-menu/options.php:466,
2891
  #: framework/premium/extensions/shortcuts/customizer.php:660,
2892
+ #: build_tmp/build/framework/premium/features/premium-header.php:232,
2893
  #: framework/features/header/items/account/options.php:312,
2894
  #: framework/features/header/items/account/options.php:554,
2895
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:466,
2896
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:660,
2897
+ #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:131,
2898
+ #: build_tmp/build/framework/features/header/items/account/options.php:312,
2899
+ #: build_tmp/build/framework/features/header/items/account/options.php:554,
2900
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:131
2901
  msgid "Right"
2902
  msgstr ""
2903
 
2904
  #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:17,
2905
+ #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/view.php:12,
2906
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:17,
2907
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/view.php:12
2908
  msgid "Newsletter"
2909
  msgstr ""
2910
 
2911
  #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:30,
2912
  #: framework/premium/extensions/mega-menu/options.php:493,
2913
  #: framework/premium/extensions/shortcuts/customizer.php:889,
2914
+ #: framework/extensions/widgets/widgets/ct-contact-info/options.php:24,
2915
  #: framework/extensions/widgets/widgets/ct-quote/options.php:31,
2916
+ #: framework/features/header/items/account/options.php:329,
2917
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:30,
2918
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:493,
2919
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:889,
2920
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:24,
2921
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-quote/options.php:31,
2922
+ #: build_tmp/build/framework/features/header/items/account/options.php:329
2923
  msgid "Text"
2924
  msgstr ""
2925
 
2926
  #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:34,
2927
+ #: framework/extensions/widgets/widgets/ct-contact-info/options.php:27,
2928
+ #: framework/extensions/widgets/widgets/ct-quote/options.php:34,
2929
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:34,
2930
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:27,
2931
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-quote/options.php:34
2932
  msgid "You can add here some arbitrary HTML code."
2933
  msgstr ""
2934
 
2935
+ #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:114,
2936
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:114
2937
  msgid "Container Type"
2938
  msgstr ""
2939
 
2940
+ #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:121,
2941
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:121
2942
  msgid "Boxed"
2943
  msgstr ""
2944
 
2945
+ #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:127,
2946
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:127
2947
  msgid "Content Alignment"
2948
  msgstr ""
2949
 
2950
+ #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/widget.php:13,
2951
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/widget.php:13
2952
  msgid "Newsletter Subscribe"
2953
  msgstr ""
2954
 
2955
+ #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/widget.php:14,
2956
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/widget.php:14
2957
  msgid "Newsletter subscribe form"
2958
  msgstr ""
2959
 
2960
+ #: framework/extensions/newsletter-subscribe/includes/BlocksyMailerliteManager.php:99,
2961
+ #: build_tmp/build/framework/extensions/newsletter-subscribe/includes/BlocksyMailerliteManager.php:99
2962
  msgid "Thank you for subscribing to our newsletter!"
2963
  msgstr ""
2964
 
2965
+ #: framework/extensions/product-reviews/views/single-top.php:238,
2966
+ #: build_tmp/build/framework/extensions/product-reviews/views/single-top.php:238
2967
  msgid "Specs"
2968
  msgstr ""
2969
 
2970
  #: framework/features/header/modal/login.php:28,
2971
+ #: framework/features/header/modal/lostpassword.php:5,
2972
+ #: build_tmp/build/framework/features/header/modal/login.php:28,
2973
+ #: build_tmp/build/framework/features/header/modal/lostpassword.php:5
2974
  msgid "Username or Email Address"
2975
  msgstr ""
2976
 
2977
  #: framework/features/header/modal/login.php:33,
2978
+ #: framework/features/header/modal/register.php:42,
2979
+ #: build_tmp/build/framework/features/header/modal/login.php:33,
2980
+ #: build_tmp/build/framework/features/header/modal/register.php:42
2981
  msgid "Password"
2982
  msgstr ""
2983
 
2984
+ #: framework/features/header/modal/login.php:40,
2985
+ #: build_tmp/build/framework/features/header/modal/login.php:40
2986
  msgid "Remember Me"
2987
  msgstr ""
2988
 
2989
+ #: framework/features/header/modal/login.php:44,
2990
+ #: build_tmp/build/framework/features/header/modal/login.php:44
2991
  msgid "Forgot Password?"
2992
  msgstr ""
2993
 
2994
+ #: framework/features/header/modal/login.php:60,
2995
+ #: build_tmp/build/framework/features/header/modal/login.php:60
2996
  msgid "Log In"
2997
  msgstr ""
2998
 
2999
+ #: framework/features/header/modal/lostpassword.php:13,
3000
+ #: build_tmp/build/framework/features/header/modal/lostpassword.php:13
3001
  msgid "Get New Password"
3002
  msgstr ""
3003
 
3004
+ #: framework/features/header/modal/register.php:30,
3005
+ #: build_tmp/build/framework/features/header/modal/register.php:30
3006
  msgid "Username"
3007
  msgstr ""
3008
 
3009
+ #: framework/features/header/modal/register.php:36,
3010
+ #: framework/premium/extensions/shortcuts/customizer.php:130,
3011
+ #: framework/premium/extensions/shortcuts/customizer.php:153,
3012
+ #: framework/extensions/widgets/widgets/ct-contact-info/options.php:368,
3013
+ #: framework/premium/extensions/shortcuts/views/bar.php:45,
3014
+ #: build_tmp/build/framework/features/header/modal/register.php:36,
3015
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:130,
3016
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:153,
3017
+ #: framework/premium/features/premium-header/items/contacts/options.php:221,
3018
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:368,
3019
+ #: build_tmp/build/framework/premium/extensions/shortcuts/views/bar.php:45,
3020
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:221
3021
+ msgid "Email"
3022
+ msgstr ""
3023
+
3024
+ #: framework/features/header/modal/register.php:58,
3025
+ #: build_tmp/build/framework/features/header/modal/register.php:58
3026
  msgid "Registration confirmation will be emailed to you"
3027
  msgstr ""
3028
 
3029
+ #: framework/features/header/modal/register.php:63,
3030
+ #: build_tmp/build/framework/features/header/modal/register.php:63
3031
  msgid "Register"
3032
  msgstr ""
3033
 
3034
  #. translators: This is a brand name. Preferably to not be translated
3035
+ #: framework/premium/extensions/adobe-typekit/config.php:5,
3036
+ #: build_tmp/build/framework/premium/extensions/adobe-typekit/config.php:5
3037
  msgctxt "Extension Brand Name"
3038
  msgid "Adobe Fonts"
3039
  msgstr ""
3040
 
3041
+ #: framework/premium/extensions/adobe-typekit/config.php:6,
3042
+ #: build_tmp/build/framework/premium/extensions/adobe-typekit/config.php:6
3043
  msgid ""
3044
  "Connect your Adobe Fonts project and use the selected fonts throughout "
3045
  "Blocksy and your favorite page builder."
3049
  #: framework/premium/extensions/code-snippets/config.php:5,
3050
  #: framework/premium/extensions/code-snippets/extension.php:24,
3051
  #: framework/premium/extensions/code-snippets/extension.php:71,
3052
+ #: framework/premium/extensions/code-snippets/extension.php:114,
3053
+ #: build_tmp/build/framework/premium/extensions/code-snippets/config.php:5,
3054
+ #: build_tmp/build/framework/premium/extensions/code-snippets/extension.php:24,
3055
+ #: build_tmp/build/framework/premium/extensions/code-snippets/extension.php:71,
3056
+ #: build_tmp/build/framework/premium/extensions/code-snippets/extension.php:114
3057
  msgctxt "Extension Brand Name"
3058
  msgid "Custom Code Snippets"
3059
  msgstr ""
3060
 
3061
+ #: framework/premium/extensions/code-snippets/config.php:6,
3062
+ #: build_tmp/build/framework/premium/extensions/code-snippets/config.php:6
3063
  msgid ""
3064
  "Inject custom code snippets throughout your website. The extension works "
3065
  "globally or on a per post/page basis."
3066
  msgstr ""
3067
 
3068
  #: framework/premium/extensions/code-snippets/extension.php:31,
3069
+ #: framework/premium/extensions/code-snippets/extension.php:78,
3070
+ #: build_tmp/build/framework/premium/extensions/code-snippets/extension.php:31,
3071
+ #: build_tmp/build/framework/premium/extensions/code-snippets/extension.php:78
3072
  msgid "Header scripts"
3073
  msgstr ""
3074
 
3075
  #: framework/premium/extensions/code-snippets/extension.php:42,
3076
  #: framework/premium/extensions/code-snippets/extension.php:89,
3077
+ #: framework/premium/extensions/code-snippets/extension.php:134,
3078
+ #: build_tmp/build/framework/premium/extensions/code-snippets/extension.php:42,
3079
+ #: build_tmp/build/framework/premium/extensions/code-snippets/extension.php:89,
3080
+ #: build_tmp/build/framework/premium/extensions/code-snippets/extension.php:134
3081
  msgid "After body open scripts"
3082
  msgstr ""
3083
 
3084
  #: framework/premium/extensions/code-snippets/extension.php:53,
3085
  #: framework/premium/extensions/code-snippets/extension.php:100,
3086
+ #: framework/premium/extensions/code-snippets/extension.php:145,
3087
+ #: build_tmp/build/framework/premium/extensions/code-snippets/extension.php:53,
3088
+ #: build_tmp/build/framework/premium/extensions/code-snippets/extension.php:100,
3089
+ #: build_tmp/build/framework/premium/extensions/code-snippets/extension.php:145
3090
  msgid "Footer scripts"
3091
  msgstr ""
3092
 
3093
+ #: framework/premium/extensions/code-snippets/extension.php:123,
3094
+ #: build_tmp/build/framework/premium/extensions/code-snippets/extension.php:123
3095
  msgid "Header scripts2"
3096
  msgstr ""
3097
 
3098
+ #: framework/premium/extensions/code-snippets/readme.php:4,
3099
+ #: build_tmp/build/framework/premium/extensions/code-snippets/readme.php:4
3100
  msgid ""
3101
  "After activating the Custom Code Snippets extension you will have two ways "
3102
  "to manage your snippets:"
3103
  msgstr ""
3104
 
3105
+ #: framework/premium/extensions/code-snippets/readme.php:9,
3106
+ #: build_tmp/build/framework/premium/extensions/code-snippets/readme.php:9
3107
  msgid "Globally"
3108
  msgstr ""
3109
 
3110
+ #: framework/premium/extensions/code-snippets/readme.php:13,
3111
+ #: build_tmp/build/framework/premium/extensions/code-snippets/readme.php:13
3112
  msgid "Navigate to %s and place there your header, body or footer scripts."
3113
  msgstr ""
3114
 
3115
+ #: framework/premium/extensions/code-snippets/readme.php:16,
3116
+ #: build_tmp/build/framework/premium/extensions/code-snippets/readme.php:16
3117
  msgid "Customizer ➝ Custom Code Snippets"
3118
  msgstr ""
3119
 
3120
+ #: framework/premium/extensions/code-snippets/readme.php:24,
3121
+ #: build_tmp/build/framework/premium/extensions/code-snippets/readme.php:24
3122
  msgid "Per page/post"
3123
  msgstr ""
3124
 
3125
+ #: framework/premium/extensions/code-snippets/readme.php:28,
3126
+ #: build_tmp/build/framework/premium/extensions/code-snippets/readme.php:28
3127
  msgid ""
3128
  "Edit your page or post, click on %s, scroll down and you will see the %2s "
3129
  "panel."
3130
  msgstr ""
3131
 
3132
+ #: framework/premium/extensions/code-snippets/readme.php:32,
3133
+ #: build_tmp/build/framework/premium/extensions/code-snippets/readme.php:32
3134
  msgid "%s Page Settings"
3135
  msgstr ""
3136
 
3137
  #. translators: This is a brand name. Preferably to not be translated
3138
+ #: framework/premium/extensions/custom-fonts/config.php:5,
3139
+ #: build_tmp/build/framework/premium/extensions/custom-fonts/config.php:5
3140
  msgctxt "Extension Brand Name"
3141
  msgid "Custom Fonts"
3142
  msgstr ""
3143
 
3144
+ #: framework/premium/extensions/custom-fonts/config.php:6,
3145
+ #: build_tmp/build/framework/premium/extensions/custom-fonts/config.php:6
3146
  msgid ""
3147
  "Upload an unlimited number of custom fonts or variable fonts and use them "
3148
  "throughout Blocksy and your favorite page builder."
3149
  msgstr ""
3150
 
3151
  #. translators: This is a brand name. Preferably to not be translated
3152
+ #: framework/premium/extensions/local-google-fonts/config.php:5,
3153
+ #: build_tmp/build/framework/premium/extensions/local-google-fonts/config.php:5
3154
  msgctxt "Extension Brand Name"
3155
  msgid "Local Google Fonts"
3156
  msgstr ""
3157
 
3158
+ #: framework/premium/extensions/local-google-fonts/config.php:6,
3159
+ #: build_tmp/build/framework/premium/extensions/local-google-fonts/config.php:6
3160
  msgid ""
3161
  "Serve your chosen Google Fonts from your own web server. This will increase "
3162
  "the loading speed and makes sure your website complies with the privacy "
3164
  msgstr ""
3165
 
3166
  #. translators: This is a brand name. Preferably to not be translated
3167
+ #: framework/premium/extensions/mega-menu/config.php:5,
3168
+ #: build_tmp/build/framework/premium/extensions/mega-menu/config.php:5
3169
  msgctxt "Extension Brand Name"
3170
  msgid "Advanced Menu"
3171
  msgstr ""
3172
 
3173
+ #: framework/premium/extensions/mega-menu/config.php:6,
3174
+ #: build_tmp/build/framework/premium/extensions/mega-menu/config.php:6
3175
  msgid ""
3176
  "Create beautiful personalised menus that set your website apart from the "
3177
  "others. Add icons and badges to your entries and even add Content Blocks "
3179
  msgstr ""
3180
 
3181
  #: framework/premium/extensions/mega-menu/config.php:10,
3182
+ #: framework/premium/extensions/shortcuts/config.php:13,
3183
+ #: build_tmp/build/framework/premium/extensions/mega-menu/config.php:10,
3184
+ #: build_tmp/build/framework/premium/extensions/shortcuts/config.php:13
3185
  #: framework/extensions/newsletter-subscribe/dashboard-static/js/hooks/useActivationWithRequirements.js:60
3186
  #: framework/extensions/product-reviews/static/js/EditSettings.js:30
3187
  #: framework/premium/extensions/white-label/dashboard-static/js/EditSettings.js:96
3188
  msgid "Configure"
3189
  msgstr ""
3190
 
3191
+ #: framework/premium/extensions/mega-menu/extension.php:99,
3192
+ #: build_tmp/build/framework/premium/extensions/mega-menu/extension.php:99
3193
  msgid "Menu Item Settings"
3194
  msgstr ""
3195
 
3196
+ #: framework/premium/extensions/mega-menu/extension.php:257,
3197
+ #: build_tmp/build/framework/premium/extensions/mega-menu/extension.php:257
3198
  msgid "New"
3199
  msgstr ""
3200
 
3201
  #: framework/premium/extensions/mega-menu/options.php:16,
3202
+ #: framework/premium/extensions/mega-menu/options.php:530,
3203
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:16,
3204
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:530
3205
  msgid "Mega Menu Settings"
3206
  msgstr ""
3207
 
3208
+ #: framework/premium/extensions/mega-menu/options.php:27,
3209
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:27
3210
  msgid "Dropdown Width"
3211
  msgstr ""
3212
 
3213
  #: framework/premium/extensions/mega-menu/options.php:35,
3214
+ #: framework/premium/extensions/mega-menu/options.php:48,
3215
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:35,
3216
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:48
3217
  msgid "Content Width"
3218
  msgstr ""
3219
 
3220
  #: framework/premium/extensions/mega-menu/options.php:36,
3221
+ #: framework/premium/extensions/mega-menu/options.php:57,
3222
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:36,
3223
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:57
3224
  msgid "Full Width"
3225
  msgstr ""
3226
 
3227
  #: framework/premium/extensions/mega-menu/options.php:37,
3228
+ #: framework/premium/features/content-blocks/options/archive.php:59,
3229
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:37,
3230
+ #: build_tmp/build/framework/premium/features/content-blocks/options/archive.php:59
3231
  msgid "Custom Width"
3232
  msgstr ""
3233
 
3234
+ #: framework/premium/extensions/mega-menu/options.php:56,
3235
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:56
3236
  msgid "Default Width"
3237
  msgstr ""
3238
 
3239
+ #: framework/premium/extensions/mega-menu/options.php:85,
3240
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:85
3241
  msgid "Columns"
3242
  msgstr ""
3243
 
3244
+ #: framework/premium/extensions/mega-menu/options.php:320,
3245
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:320
3246
  msgid "Custom Content"
3247
  msgstr ""
3248
 
3249
+ #: framework/premium/extensions/mega-menu/options.php:324,
3250
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:324
3251
  msgid "Content Type"
3252
  msgstr ""
3253
 
3254
+ #: framework/premium/extensions/mega-menu/options.php:331,
3255
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:331
3256
  msgid "Default (Menu Item)"
3257
  msgstr ""
3258
 
3259
+ #: framework/premium/extensions/mega-menu/options.php:332,
3260
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:332
3261
  msgid "Custom Text"
3262
  msgstr ""
3263
 
3264
  #: framework/premium/extensions/mega-menu/options.php:364,
3265
+ #: framework/premium/extensions/mega-menu/options.php:371,
3266
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:364,
3267
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:371
3268
  msgid "Select Content Block"
3269
  msgstr ""
3270
 
3271
+ #: framework/premium/extensions/mega-menu/options.php:367,
3272
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:367
3273
  msgid "Create a new content Block/Hook"
3274
  msgstr ""
3275
 
3276
  #: framework/premium/extensions/mega-menu/options.php:394,
3277
+ #: framework/premium/extensions/mega-menu/options.php:710,
3278
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:394,
3279
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:710
3280
  msgid "Item Label Settings"
3281
  msgstr ""
3282
 
3283
+ #: framework/premium/extensions/mega-menu/options.php:399,
3284
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:399
3285
  msgid "Item Label"
3286
  msgstr ""
3287
 
3288
+ #: framework/premium/extensions/mega-menu/options.php:407,
3289
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:407
3290
  msgid "Enabled"
3291
  msgstr ""
3292
 
3295
  #: framework/premium/features/content-blocks/options/archive.php:160,
3296
  #: framework/premium/features/content-blocks/options/header.php:108,
3297
  #: framework/premium/features/content-blocks/options/hook.php:113,
3298
+ #: framework/premium/features/content-blocks/options/single.php:81,
3299
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:408,
3300
+ #: build_tmp/build/framework/premium/features/content-blocks/options/404.php:110,
3301
+ #: build_tmp/build/framework/premium/features/content-blocks/options/archive.php:160,
3302
+ #: build_tmp/build/framework/premium/features/content-blocks/options/header.php:108,
3303
+ #: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:113,
3304
+ #: build_tmp/build/framework/premium/features/content-blocks/options/single.php:81
3305
  msgid "Disabled"
3306
  msgstr ""
3307
 
3308
+ #: framework/premium/extensions/mega-menu/options.php:409,
3309
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:409
3310
  msgid "Heading"
3311
  msgstr ""
3312
 
3313
+ #: framework/premium/extensions/mega-menu/options.php:415,
3314
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:415
3315
  msgid "Label Link"
3316
  msgstr ""
3317
 
3318
  #: framework/premium/extensions/mega-menu/options.php:481,
3319
+ #: framework/premium/extensions/mega-menu/options.php:792,
3320
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:481,
3321
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:792
3322
  msgid "Menu Badge Settings"
3323
  msgstr ""
3324
 
3325
  #: framework/premium/extensions/mega-menu/options.php:499,
3326
+ #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:260,
3327
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:499,
3328
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:260
3329
  msgid "Vertical Alignment"
3330
  msgstr ""
3331
 
3332
  #: framework/premium/extensions/mega-menu/options.php:534,
3333
  #: framework/premium/extensions/shortcuts/customizer.php:883,
3334
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:346,
3335
+ #: framework/features/header/items/account/options.php:1104,
3336
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:534,
3337
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:883,
3338
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:346,
3339
+ #: build_tmp/build/framework/features/header/items/account/options.php:1104
3340
  msgid "Background"
3341
  msgstr ""
3342
 
3343
+ #: framework/premium/extensions/mega-menu/options.php:548,
3344
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:548
3345
  msgid "Link Color"
3346
  msgstr ""
3347
 
3348
  #: framework/premium/extensions/mega-menu/options.php:568,
3349
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:144,
3350
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:568,
3351
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:144,
3352
  #: framework/premium/features/premium-header/items/contacts/options.php:478,
3353
  #: framework/premium/features/premium-header/items/contacts/options.php:520,
3354
+ #: framework/premium/features/premium-header/items/contacts/options.php:560,
3355
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:478,
3356
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:520,
3357
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:560
3358
  msgid "Link Initial"
3359
  msgstr ""
3360
 
3361
+ #: framework/premium/extensions/mega-menu/options.php:573,
3362
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:573
3363
  msgid "Link Hover/Active"
3364
  msgstr ""
3365
 
3366
+ #: framework/premium/extensions/mega-menu/options.php:578,
3367
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:578
3368
  msgid "Background Hover"
3369
  msgstr ""
3370
 
3371
  #: framework/premium/extensions/mega-menu/options.php:585,
3372
+ #: framework/premium/extensions/mega-menu/options.php:719,
3373
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:585,
3374
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:719
3375
  msgid "Heading Color"
3376
  msgstr ""
3377
 
3378
  #: framework/premium/extensions/mega-menu/options.php:597,
3379
  #: framework/premium/extensions/mega-menu/options.php:617,
3380
+ #: framework/premium/extensions/mega-menu/options.php:731,
3381
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:597,
3382
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:617,
3383
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:731
3384
  msgid "Initial Color"
3385
  msgstr ""
3386
 
3387
  #: framework/premium/extensions/mega-menu/options.php:624,
3388
  #: framework/premium/extensions/shortcuts/customizer.php:900,
3389
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:624,
3390
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:900,
3391
  #: framework/premium/features/premium-header/items/language-switcher/options.php:432,
3392
+ #: framework/premium/features/premium-header/items/search-input/options.php:836,
3393
+ #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:432,
3394
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:836
3395
  msgid "Items Divider"
3396
  msgstr ""
3397
 
3398
+ #: framework/premium/extensions/mega-menu/options.php:639,
3399
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:639
3400
  msgid "Columns Divider"
3401
  msgstr ""
3402
 
3403
  #: framework/premium/extensions/mega-menu/options.php:654,
3404
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:654,
3405
+ #: framework/premium/features/premium-header/items/search-input/options.php:818,
3406
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:818
3407
  msgid "Dropdown Shadow"
3408
  msgstr ""
3409
 
3410
+ #: framework/premium/extensions/mega-menu/options.php:686,
3411
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:686
3412
  msgid "Column Settings"
3413
  msgstr ""
3414
 
3415
+ #: framework/premium/extensions/mega-menu/options.php:690,
3416
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:690
3417
  msgid "Column Spacing"
3418
  msgstr ""
3419
 
3427
  #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:141,
3428
  #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:218,
3429
  #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:294,
3430
+ #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:742,
3431
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:352,
3432
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:305,
3433
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:333,
3434
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:364,
3436
  #: framework/premium/features/premium-header/items/dark-mode-switcher/options.php:30,
3437
  #: framework/premium/features/premium-header/items/dark-mode-switcher/options.php:58,
3438
  #: framework/premium/features/premium-header/items/dark-mode-switcher/options.php:89,
3439
+ #: framework/premium/features/premium-header/items/dark-mode-switcher/options.php:118,
3440
+ #: build_tmp/build/framework/features/header/items/account/options.php:765,
3441
+ #: build_tmp/build/framework/features/header/items/account/options.php:793,
3442
+ #: build_tmp/build/framework/features/header/items/account/options.php:824,
3443
+ #: build_tmp/build/framework/features/header/items/account/options.php:853,
3444
+ #: build_tmp/build/framework/features/header/items/account/options.php:1110,
3445
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:141,
3446
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:218,
3447
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:294,
3448
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:305,
3449
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:333,
3450
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:364,
3451
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:393,
3452
+ #: build_tmp/build/framework/premium/features/premium-header/items/dark-mode-switcher/options.php:30,
3453
+ #: build_tmp/build/framework/premium/features/premium-header/items/dark-mode-switcher/options.php:58,
3454
+ #: build_tmp/build/framework/premium/features/premium-header/items/dark-mode-switcher/options.php:89,
3455
+ #: build_tmp/build/framework/premium/features/premium-header/items/dark-mode-switcher/options.php:118
3456
  msgid "Icon Color"
3457
  msgstr ""
3458
 
3459
  #. translators: This is a brand name. Preferably to not be translated
3460
+ #: framework/premium/extensions/post-types-extra/config.php:5,
3461
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/config.php:5
3462
  msgctxt "Extension Brand Name"
3463
  msgid "Post Types Extra"
3464
  msgstr ""
3465
 
3466
+ #: framework/premium/extensions/post-types-extra/config.php:6,
3467
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/config.php:6
3468
  msgid ""
3469
  "Enables support for Custom Fields inside archive cards and single page post "
3470
  "title, adds a reading progress bar for your posts and lets you set featured "
3471
  "images and colors for your categories archives."
3472
  msgstr ""
3473
 
3474
+ #: framework/premium/extensions/post-types-extra/readme.php:4,
3475
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/readme.php:4
3476
  msgid ""
3477
  "After activating this extension you will be able to enable the read progress "
3478
  "bar for your single posts, add a featured image and set different colors to "
3481
  "taxonomies archive filters."
3482
  msgstr ""
3483
 
3484
+ #: framework/premium/extensions/post-types-extra/readme.php:10,
3485
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/readme.php:10
3486
  msgid "Custom Fields"
3487
  msgstr ""
3488
 
3489
+ #: framework/premium/extensions/post-types-extra/readme.php:14,
3490
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/readme.php:14
3491
  msgid ""
3492
  "After setting up your custom fields you will be able to output them from %s "
3493
  "or from %2s."
3494
  msgstr ""
3495
 
3496
+ #: framework/premium/extensions/post-types-extra/readme.php:17,
3497
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/readme.php:17
3498
  msgid "Customizer ➝ Blog Posts ➝ Card Options"
3499
  msgstr ""
3500
 
3501
+ #: framework/premium/extensions/post-types-extra/readme.php:21,
3502
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/readme.php:21
3503
  msgid "Customizer ➝ Single Posts ➝ Post Title"
3504
  msgstr ""
3505
 
3506
+ #: framework/premium/extensions/post-types-extra/readme.php:29,
3507
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/readme.php:29
3508
  msgid "Taxonomies Filters"
3509
  msgstr ""
3510
 
3511
+ #: framework/premium/extensions/post-types-extra/readme.php:33,
3512
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/readme.php:33
3513
  msgid "You can enable the taxonomies filters from %s."
3514
  msgstr ""
3515
 
3516
+ #: framework/premium/extensions/post-types-extra/readme.php:36,
3517
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/readme.php:36
3518
  msgid "Customizer ➝ Blog Posts ➝ Filters"
3519
  msgstr ""
3520
 
3521
+ #: framework/premium/extensions/post-types-extra/readme.php:44,
3522
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/readme.php:44
3523
  msgid "Read Progress Bar"
3524
  msgstr ""
3525
 
3526
+ #: framework/premium/extensions/post-types-extra/readme.php:48,
3527
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/readme.php:48
3528
  msgid "This options could be enabled from %s."
3529
  msgstr ""
3530
 
3531
+ #: framework/premium/extensions/post-types-extra/readme.php:51,
3532
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/readme.php:51
3533
  msgid "Customizer ➝ Single Posts ➝ Read Progress Bar"
3534
  msgstr ""
3535
 
3536
+ #: framework/premium/extensions/post-types-extra/readme.php:59,
3537
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/readme.php:59
3538
  msgid "Taxonomy Featured Image & Custom Colors"
3539
  msgstr ""
3540
 
3541
+ #: framework/premium/extensions/post-types-extra/readme.php:63,
3542
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/readme.php:63
3543
  msgid ""
3544
  "To customize these options simply navigate to %s and edit one of your "
3545
  "categories."
3546
  msgstr ""
3547
 
3548
+ #: framework/premium/extensions/post-types-extra/readme.php:66,
3549
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/readme.php:66
3550
  msgid "Dashboard ➝ Posts ➝ Categories"
3551
  msgstr ""
3552
 
3553
  #. translators: This is a brand name. Preferably to not be translated
3554
  #: framework/premium/extensions/shortcuts/config.php:5,
3555
+ #: framework/premium/extensions/shortcuts/customizer.php:524,
3556
+ #: build_tmp/build/framework/premium/extensions/shortcuts/config.php:5,
3557
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:524
3558
  msgctxt "Extension Brand Name"
3559
  msgid "Shortcuts Bar"
3560
  msgstr ""
3561
 
3562
+ #: framework/premium/extensions/shortcuts/config.php:6,
3563
+ #: build_tmp/build/framework/premium/extensions/shortcuts/config.php:6
3564
  msgid ""
3565
  "Easily turn your websites into mobile first experiences. You can easily add "
3566
  "the most important actions at the bottom of the screen for easy access."
3570
  #: framework/premium/extensions/shortcuts/customizer.php:35,
3571
  #: framework/premium/extensions/shortcuts/customizer.php:563,
3572
  #: framework/premium/extensions/shortcuts/views/bar.php:13,
3573
+ #: framework/premium/extensions/shortcuts/views/bar.php:43,
3574
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:12,
3575
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:35,
3576
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:563,
3577
+ #: build_tmp/build/framework/premium/extensions/shortcuts/views/bar.php:13,
3578
+ #: build_tmp/build/framework/premium/extensions/shortcuts/views/bar.php:43
3579
  msgid "Home"
3580
  msgstr ""
3581
 
3582
  #: framework/premium/extensions/shortcuts/customizer.php:68,
3583
  #: framework/premium/extensions/shortcuts/customizer.php:91,
3584
  #: framework/premium/extensions/shortcuts/customizer.php:572,
3585
+ #: framework/extensions/widgets/widgets/ct-contact-info/options.php:128,
3586
  #: framework/premium/extensions/shortcuts/views/bar.php:22,
3587
  #: framework/premium/extensions/shortcuts/views/bar.php:44,
3588
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:68,
3589
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:91,
3590
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:572,
3591
+ #: framework/premium/features/premium-header/items/contacts/options.php:76,
3592
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:128,
3593
+ #: build_tmp/build/framework/premium/extensions/shortcuts/views/bar.php:22,
3594
+ #: build_tmp/build/framework/premium/extensions/shortcuts/views/bar.php:44,
3595
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:76
3596
  msgid "Phone"
3597
  msgstr ""
3598
 
3599
  #: framework/premium/extensions/shortcuts/customizer.php:192,
3600
  #: framework/premium/extensions/shortcuts/customizer.php:215,
3601
+ #: framework/premium/extensions/shortcuts/views/bar.php:46,
3602
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:192,
3603
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:215,
3604
+ #: build_tmp/build/framework/premium/extensions/shortcuts/views/bar.php:46
3605
  msgid "Scroll Top"
3606
  msgstr ""
3607
 
3608
  #: framework/premium/extensions/shortcuts/customizer.php:293,
3609
  #: framework/extensions/widgets/widgets/ct-advertisement/options.php:83,
3610
+ #: framework/extensions/widgets/widgets/ct-contact-info/options.php:539,
3611
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:293,
3612
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-advertisement/options.php:83,
3613
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:539
3614
  msgid "Open link in new tab"
3615
  msgstr ""
3616
 
3617
+ #: framework/premium/extensions/shortcuts/customizer.php:300,
3618
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:300
3619
  msgid "Set link to nofollow"
3620
  msgstr ""
3621
 
3622
+ #: framework/premium/extensions/shortcuts/customizer.php:306,
3623
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:306
3624
  msgid "Custom class"
3625
  msgstr ""
3626
 
3627
  #: framework/premium/extensions/shortcuts/customizer.php:338,
3628
  #: framework/premium/extensions/shortcuts/customizer.php:361,
3629
+ #: framework/premium/extensions/shortcuts/views/bar.php:47,
3630
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:338,
3631
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:361,
3632
+ #: build_tmp/build/framework/premium/extensions/shortcuts/views/bar.php:47
3633
  msgid "Cart"
3634
  msgstr ""
3635
 
3636
  #: framework/premium/extensions/shortcuts/customizer.php:394,
3637
+ #: framework/premium/extensions/shortcuts/customizer.php:417,
3638
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:394,
3639
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:417
3640
  msgid "Shop"
3641
  msgstr ""
3642
 
3643
  #: framework/premium/extensions/shortcuts/customizer.php:450,
3644
  #: framework/premium/extensions/shortcuts/customizer.php:473,
3645
  #: framework/premium/extensions/woocommerce-extra/readme.php:70,
3646
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:450,
3647
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:473,
3648
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/readme.php:70,
3649
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/config.php:4,
3650
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:141,
3651
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/view.php:105,
3652
+ #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/view.php:111,
3653
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/config.php:4,
3654
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:141,
3655
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/view.php:105,
3656
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/view.php:111
3657
  msgid "Wishlist"
3658
  msgstr ""
3659
 
3660
  #: framework/premium/extensions/shortcuts/customizer.php:538,
3661
+ #: framework/premium/features/content-blocks/admin-ui.php:196,
3662
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:538,
3663
+ #: build_tmp/build/framework/premium/features/content-blocks/admin-ui.php:196
3664
  msgid "Type"
3665
  msgstr ""
3666
 
3667
+ #: framework/premium/extensions/shortcuts/customizer.php:557,
3668
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:557
3669
  msgid "Shortcuts"
3670
  msgstr ""
3671
 
3672
  #: framework/premium/extensions/shortcuts/customizer.php:612,
3673
  #: framework/features/header/items/account/options.php:268,
3674
  #: framework/features/header/items/account/options.php:510,
3675
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:612,
3676
+ #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:92,
3677
+ #: build_tmp/build/framework/features/header/items/account/options.php:268,
3678
+ #: build_tmp/build/framework/features/header/items/account/options.php:510,
3679
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:92
3680
  msgid "Label Visibility"
3681
  msgstr ""
3682
 
3683
  #: framework/premium/extensions/shortcuts/customizer.php:652,
3684
  #: framework/features/header/items/account/options.php:304,
3685
  #: framework/features/header/items/account/options.php:546,
3686
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:652,
3687
+ #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:123,
3688
+ #: build_tmp/build/framework/features/header/items/account/options.php:304,
3689
+ #: build_tmp/build/framework/features/header/items/account/options.php:546,
3690
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:123
3691
  msgid "Label Position"
3692
  msgstr ""
3693
 
3697
  #: framework/features/header/items/account/options.php:313,
3698
  #: framework/features/header/items/account/options.php:555,
3699
  #: framework/premium/features/content-blocks/options/hook.php:307,
3700
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:661,
3701
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/floating-cart.php:25,
3702
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:445,
3703
+ #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:132,
3704
+ #: build_tmp/build/framework/features/header/items/account/options.php:313,
3705
+ #: build_tmp/build/framework/features/header/items/account/options.php:555,
3706
+ #: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:307,
3707
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:132
3708
  msgid "Bottom"
3709
  msgstr ""
3710
 
3711
  #: framework/premium/extensions/shortcuts/customizer.php:672,
3712
  #: framework/features/header/items/account/options.php:250,
3713
  #: framework/features/header/items/account/options.php:492,
3714
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:672,
3715
+ #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:74,
3716
+ #: build_tmp/build/framework/features/header/items/account/options.php:250,
3717
+ #: build_tmp/build/framework/features/header/items/account/options.php:492,
3718
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:74
3719
  msgid "Icon Size"
3720
  msgstr ""
3721
 
3722
+ #: framework/premium/extensions/shortcuts/customizer.php:682,
3723
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:682
3724
  msgid "Container Height"
3725
  msgstr ""
3726
 
3727
+ #: framework/premium/extensions/shortcuts/customizer.php:697,
3728
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:697
3729
  msgid "Container Max Width"
3730
  msgstr ""
3731
 
3732
+ #: framework/premium/extensions/shortcuts/customizer.php:721,
3733
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:721
3734
  msgid "Scroll Interaction"
3735
  msgstr ""
3736
 
3737
  #: framework/premium/extensions/shortcuts/customizer.php:726,
3738
  #: framework/premium/features/content-blocks/admin-ui.php:225,
3739
+ #: framework/extensions/widgets/widgets/ct-contact-info/options.php:510,
3740
+ #: framework/extensions/widgets/widgets/ct-socials/options.php:113,
3741
  #: framework/features/header/items/account/options.php:141,
3742
  #: framework/features/header/items/account/options.php:401,
3743
  #: framework/premium/features/content-blocks/options/hook.php:9,
3744
  #: framework/premium/features/content-blocks/options/hook.php:158,
3745
  #: framework/premium/features/content-blocks/options/popup.php:162,
3746
  #: framework/premium/features/content-blocks/options/popup.php:437,
3747
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:726,
3748
+ #: build_tmp/build/framework/premium/features/content-blocks/admin-ui.php:225,
3749
+ #: framework/premium/features/premium-header/items/contacts/options.php:338,
3750
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:510,
3751
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-socials/options.php:113,
3752
+ #: build_tmp/build/framework/features/header/items/account/options.php:141,
3753
+ #: build_tmp/build/framework/features/header/items/account/options.php:401,
3754
+ #: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:9,
3755
+ #: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:158,
3756
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:162,
3757
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:437,
3758
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:338
3759
  msgid "None"
3760
  msgstr ""
3761
 
3762
+ #: framework/premium/extensions/shortcuts/customizer.php:727,
3763
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:727
3764
  msgid "Hide"
3765
  msgstr ""
3766
 
3767
+ #: framework/premium/extensions/shortcuts/customizer.php:769,
3768
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:769
3769
  msgid "Shortcuts Bar Display Conditions"
3770
  msgstr ""
3771
 
3772
+ #: framework/premium/extensions/shortcuts/customizer.php:770,
3773
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:770
3774
  msgid "Add one or more conditions to display the shortcuts bar."
3775
  msgstr ""
3776
 
3777
  #: framework/premium/extensions/shortcuts/customizer.php:784,
3778
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:784,
3779
  #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:173,
3780
  #: framework/premium/features/premium-header/items/contacts/options.php:410,
3781
  #: framework/premium/features/premium-header/items/language-switcher/options.php:192,
3782
+ #: framework/premium/features/premium-header/items/language-switcher/options.php:376,
3783
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:173,
3784
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:410,
3785
+ #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:192,
3786
+ #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:376
3787
  msgid "Font"
3788
  msgstr ""
3789
 
3790
  #: framework/premium/extensions/shortcuts/customizer.php:826,
3791
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:826,
3792
  #: framework/premium/features/premium-header/items/contacts/options.php:590,
3793
  #: framework/premium/features/premium-header/items/contacts/options.php:619,
3794
  #: framework/premium/features/premium-header/items/contacts/options.php:650,
3795
+ #: framework/premium/features/premium-header/items/contacts/options.php:680,
3796
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:590,
3797
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:619,
3798
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:650,
3799
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:680
3800
  msgid "Icons Color"
3801
  msgstr ""
3802
 
3803
+ #: framework/premium/extensions/shortcuts/customizer.php:865,
3804
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:865
3805
  msgid "Cart Badge Color"
3806
  msgstr ""
3807
 
3808
+ #: framework/premium/extensions/shortcuts/customizer.php:920,
3809
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:920
3810
  msgid "Items Divider Height"
3811
  msgstr ""
3812
 
3813
  #: framework/premium/extensions/shortcuts/customizer.php:934,
3814
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:123,
3815
  #: framework/premium/features/content-blocks/options/popup.php:387,
3816
+ #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:934,
3817
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/floating-cart.php:123,
3818
+ #: framework/premium/features/premium-header/items/language-switcher/options.php:446,
3819
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:387,
3820
+ #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:446
3821
  msgid "Shadow"
3822
  msgstr ""
3823
 
3824
  #. translators: This is a brand name. Preferably to not be translated
3825
+ #: framework/premium/extensions/sidebars/config.php:5,
3826
+ #: build_tmp/build/framework/premium/extensions/sidebars/config.php:5
3827
  msgctxt "Extension Brand Name"
3828
  msgid "Multiple Sidebars"
3829
  msgstr ""
3830
 
3831
+ #: framework/premium/extensions/sidebars/config.php:6,
3832
+ #: build_tmp/build/framework/premium/extensions/sidebars/config.php:6
3833
  msgid ""
3834
  "Create unlimited personalized sets of widget areas and display them on any "
3835
  "page or post using our conditional logic functionality."
3836
  msgstr ""
3837
 
3838
+ #: framework/premium/extensions/sidebars/config.php:10,
3839
+ #: build_tmp/build/framework/premium/extensions/sidebars/config.php:10
3840
  msgid "Create New Sidebar"
3841
  msgstr ""
3842
 
3843
+ #: framework/premium/extensions/sidebars/form.php:3,
3844
+ #: build_tmp/build/framework/premium/extensions/sidebars/form.php:3
3845
  #: framework/premium/extensions/sidebars/static/js/main.js:42
3846
  msgid "Create Sidebar/Widget Area"
3847
  msgstr ""
3848
 
3849
+ #: framework/premium/extensions/sidebars/form.php:6,
3850
+ #: build_tmp/build/framework/premium/extensions/sidebars/form.php:6
3851
  msgid ""
3852
  "In order to create a new sidebar/widget area simply enter a name in the "
3853
  "input below and click the Create Sidebar button."
3854
  msgstr ""
3855
 
3856
+ #: framework/premium/extensions/sidebars/form.php:16,
3857
+ #: build_tmp/build/framework/premium/extensions/sidebars/form.php:16
3858
  #: framework/premium/extensions/sidebars/static/js/main.js:58
3859
  msgid "Create Sidebar"
3860
  msgstr ""
3861
 
3862
+ #: framework/premium/extensions/sidebars/form.php:20,
3863
+ #: build_tmp/build/framework/premium/extensions/sidebars/form.php:20
3864
  msgid "Available Sidebars/Widget Areas"
3865
  msgstr ""
3866
 
3867
  #. translators: This is a brand name. Preferably to not be translated
3868
+ #: framework/premium/extensions/white-label/config.php:5,
3869
+ #: build_tmp/build/framework/premium/extensions/white-label/config.php:5
3870
  msgctxt "Extension Brand Name"
3871
  msgid "White Label"
3872
  msgstr ""
3873
 
3874
+ #: framework/premium/extensions/white-label/config.php:6,
3875
+ #: build_tmp/build/framework/premium/extensions/white-label/config.php:6
3876
  msgid ""
3877
  "Replace Blocksy's branding with your own. Easily hide licensing info and "
3878
  "other sections of the theme and companion plugin from your clients and make "
3880
  msgstr ""
3881
 
3882
  #. translators: This is a brand name. Preferably to not be translated
3883
+ #: framework/premium/extensions/woocommerce-extra/config.php:5,
3884
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/config.php:5
3885
  msgctxt "Extension Brand Name"
3886
  msgid "WooCommerce Extra"
3887
  msgstr ""
3888
 
3889
+ #: framework/premium/extensions/woocommerce-extra/config.php:6,
3890
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/config.php:6
3891
  msgid ""
3892
  "Make the shopping experience better for your visitors! Add features such as "
3893
  "Product Quick View, Wishlist functionality and a Floating Add to Cart "
3894
  "button. Customize the single product gallery/slider and the layout."
3895
  msgstr ""
3896
 
3897
+ #: framework/premium/extensions/woocommerce-extra/customizer.php:5,
3898
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/customizer.php:5
3899
  msgid "Quick View Button"
3900
  msgstr ""
3901
 
3902
+ #: framework/premium/extensions/woocommerce-extra/customizer.php:21,
3903
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/customizer.php:21
3904
  msgid "Trigger On"
3905
  msgstr ""
3906
 
3907
+ #: framework/premium/extensions/woocommerce-extra/customizer.php:29,
3908
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/customizer.php:29
3909
  msgid "Button click"
3910
  msgstr ""
3911
 
3912
+ #: framework/premium/extensions/woocommerce-extra/customizer.php:30,
3913
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/customizer.php:30
3914
  msgid "Image click"
3915
  msgstr ""
3916
 
3917
+ #: framework/premium/extensions/woocommerce-extra/customizer.php:31,
3918
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/customizer.php:31
3919
  msgid "Card click"
3920
  msgstr ""
3921
 
3923
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:196,
3924
  #: framework/features/header/items/account/options.php:227,
3925
  #: framework/features/header/items/account/options.php:469,
3926
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/extension.php:83,
3927
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:196,
3928
+ #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:66,
3929
+ #: build_tmp/build/framework/features/header/items/account/options.php:227,
3930
+ #: build_tmp/build/framework/features/header/items/account/options.php:469,
3931
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:66
3932
  msgid "Type 3"
3933
  msgstr ""
3934
 
3935
  #: framework/premium/extensions/woocommerce-extra/extension.php:88,
3936
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:201,
3937
  #: framework/features/header/items/account/options.php:232,
3938
+ #: framework/features/header/items/account/options.php:474,
3939
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/extension.php:88,
3940
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:201,
3941
+ #: build_tmp/build/framework/features/header/items/account/options.php:232,
3942
+ #: build_tmp/build/framework/features/header/items/account/options.php:474
3943
  msgid "Type 4"
3944
  msgstr ""
3945
 
3946
  #: framework/premium/extensions/woocommerce-extra/extension.php:111,
3947
+ #: framework/premium/extensions/woocommerce-extra/extension.php:130,
3948
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/extension.php:111,
3949
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/extension.php:130
3950
  msgid "Number of Columns"
3951
  msgstr ""
3952
 
3953
+ #: framework/premium/extensions/woocommerce-extra/extension.php:154,
3954
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/extension.php:154
3955
  msgid "Gallery Arrows Visibility"
3956
  msgstr ""
3957
 
3958
+ #: framework/premium/extensions/woocommerce-extra/extension.php:175,
3959
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/extension.php:175
3960
  msgid "Thumbnails Arrows Visibility"
3961
  msgstr ""
3962
 
3963
+ #: framework/premium/extensions/woocommerce-extra/extension.php:384,
3964
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/extension.php:384
3965
  msgid "Icons Spacing"
3966
  msgstr ""
3967
 
3968
+ #: framework/premium/extensions/woocommerce-extra/extension.php:428,
3969
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/extension.php:428
3970
  msgid "WooCommerce Offcanvas Filters"
3971
  msgstr ""
3972
 
3973
+ #: framework/premium/extensions/woocommerce-extra/extension.php:430,
3974
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/extension.php:430
3975
  msgid "Add widgets here."
3976
  msgstr ""
3977
 
3978
+ #: framework/premium/extensions/woocommerce-extra/extension.php:703,
3979
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/extension.php:703
3980
  msgid "Available Filters"
3981
  msgstr ""
3982
 
3983
+ #: framework/premium/extensions/woocommerce-extra/extension.php:704,
3984
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/extension.php:704
3985
  msgid "Close filters modal"
3986
  msgstr ""
3987
 
3988
+ #: framework/premium/extensions/woocommerce-extra/extension.php:797,
3989
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/extension.php:797
3990
  msgid "Quick view title before"
3991
  msgstr ""
3992
 
3993
+ #: framework/premium/extensions/woocommerce-extra/extension.php:802,
3994
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/extension.php:802
3995
  msgid "Quick view title after"
3996
  msgstr ""
3997
 
3998
+ #: framework/premium/extensions/woocommerce-extra/extension.php:807,
3999
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/extension.php:807
4000
  msgid "Quick view price before"
4001
  msgstr ""
4002
 
4003
+ #: framework/premium/extensions/woocommerce-extra/extension.php:812,
4004
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/extension.php:812
4005
  msgid "Quick view price after"
4006
  msgstr ""
4007
 
4008
+ #: framework/premium/extensions/woocommerce-extra/extension.php:817,
4009
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/extension.php:817
4010
  msgid "Quick view summary before"
4011
  msgstr ""
4012
 
4013
+ #: framework/premium/extensions/woocommerce-extra/extension.php:822,
4014
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/extension.php:822
4015
  msgid "Quick view summary after"
4016
  msgstr ""
4017
 
4018
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:4,
4019
+ #: framework/premium/extensions/woocommerce-extra/readme.php:25,
4020
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/floating-cart.php:4,
4021
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/readme.php:25
4022
  msgid "Floating Cart"
4023
  msgstr ""
4024
 
4025
+ #: framework/premium/extensions/woocommerce-extra/floating-cart.php:17,
4026
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/floating-cart.php:17
4027
  msgid "Position"
4028
  msgstr ""
4029
 
4030
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:24,
4031
  #: framework/premium/features/content-blocks/hooks-manager.php:407,
4032
+ #: framework/premium/features/content-blocks/options/hook.php:306,
4033
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/floating-cart.php:24,
4034
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:407,
4035
+ #: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:306
4036
  msgid "Top"
4037
  msgstr ""
4038
 
4039
+ #: framework/premium/extensions/woocommerce-extra/floating-cart.php:34,
4040
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/floating-cart.php:34
4041
  msgid "Product Title Visibility"
4042
  msgstr ""
4043
 
4044
+ #: framework/premium/extensions/woocommerce-extra/floating-cart.php:58,
4045
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/floating-cart.php:58
4046
  msgid "Floating Cart Visibility"
4047
  msgstr ""
4048
 
4049
+ #: framework/premium/extensions/woocommerce-extra/helpers.php:79,
4050
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/helpers.php:79
4051
  msgid "Close quick view"
4052
  msgstr ""
4053
 
4054
+ #: framework/premium/extensions/woocommerce-extra/helpers.php:106,
4055
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/helpers.php:106
4056
  msgid "Go to product page"
4057
  msgstr ""
4058
 
4059
+ #: framework/premium/extensions/woocommerce-extra/helpers.php:152,
4060
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/helpers.php:152
4061
  msgid "Quick view toggle"
4062
  msgstr ""
4063
 
4064
+ #: framework/premium/extensions/woocommerce-extra/helpers.php:152,
4065
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/helpers.php:152
4066
  msgid "Quick view icon"
4067
  msgstr ""
4068
 
4069
+ #: framework/premium/extensions/woocommerce-extra/helpers.php:186,
4070
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/helpers.php:186
4071
  msgid "Filter"
4072
  msgstr ""
4073
 
4074
+ #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:3,
4075
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:3
4076
  msgid "Off Canvas Filter"
4077
  msgstr ""
4078
 
4079
+ #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:14,
4080
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:14
4081
  msgid "Filter Widgets"
4082
  msgstr ""
4083
 
4084
+ #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:18,
4085
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:18
4086
  msgid "Widgets"
4087
  msgstr ""
4088
 
4089
+ #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:36,
4090
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:36
4091
  msgid "Widgets Vertical Spacing"
4092
  msgstr ""
4093
 
4094
+ #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:51,
4095
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:51
4096
  msgid "Widgets Title Font"
4097
  msgstr ""
4098
 
4099
+ #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:59,
4100
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:59
4101
  msgid "Widgets Title Font Color"
4102
  msgstr ""
4103
 
4104
+ #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:107,
4105
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:107
4106
  msgid "Widgets Font"
4107
  msgstr ""
4108
 
4109
+ #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:116,
4110
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:116
4111
  msgid "Widgets Font Color"
4112
  msgstr ""
4113
 
4114
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:138,
4115
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:138,
4116
  #: framework/premium/features/premium-header/items/contacts/options.php:472,
4117
  #: framework/premium/features/premium-header/items/contacts/options.php:515,
4118
+ #: framework/premium/features/premium-header/items/contacts/options.php:555,
4119
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:472,
4120
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:515,
4121
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:555
4122
  msgid "Text Initial"
4123
  msgstr ""
4124
 
4125
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:149,
4126
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:149,
4127
  #: framework/premium/features/premium-header/items/contacts/options.php:484,
4128
  #: framework/premium/features/premium-header/items/contacts/options.php:525,
4129
+ #: framework/premium/features/premium-header/items/contacts/options.php:565,
4130
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:484,
4131
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:525,
4132
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:565
4133
  msgid "Link Hover"
4134
  msgstr ""
4135
 
4136
+ #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:160,
4137
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:160
4138
  msgid "Filter Button & Panel"
4139
  msgstr ""
4140
 
4141
+ #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:169,
4142
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:169
4143
  msgid "Filter Icon Type"
4144
  msgstr ""
4145
 
4146
+ #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:207,
4147
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:207
4148
  msgid "Filter Button Visibility"
4149
  msgstr ""
4150
 
4151
+ #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:230,
4152
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:230
4153
  msgid "Panel Reveal"
4154
  msgstr ""
4155
 
4156
+ #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:237,
4157
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:237
4158
  msgid "Left Side"
4159
  msgstr ""
4160
 
4161
+ #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:238,
4162
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:238
4163
  msgid "Right Side"
4164
  msgstr ""
4165
 
4166
+ #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:243,
4167
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:243
4168
  msgid "Panel Width"
4169
  msgstr ""
4170
 
4171
+ #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:284,
4172
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:284
4173
  msgid "Panel Background"
4174
  msgstr ""
4175
 
4176
+ #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:316,
4177
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:316
4178
  msgid "Panel Shadow"
4179
  msgstr ""
4180
 
4181
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:335,
4182
+ #: framework/features/header/items/account/options.php:1093,
4183
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:335,
4184
+ #: build_tmp/build/framework/features/header/items/account/options.php:1093
4185
  msgid "Close Button Type"
4186
  msgstr ""
4187
 
4188
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:344,
4189
+ #: framework/features/header/items/account/options.php:1102,
4190
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:344,
4191
+ #: build_tmp/build/framework/features/header/items/account/options.php:1102
4192
  msgid "Simple"
4193
  msgstr ""
4194
 
4195
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:345,
4196
+ #: framework/features/header/items/account/options.php:1103,
4197
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:345,
4198
+ #: build_tmp/build/framework/features/header/items/account/options.php:1103
4199
  msgid "Border"
4200
  msgstr ""
4201
 
4202
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:386,
4203
+ #: framework/features/header/items/account/options.php:1146,
4204
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:386,
4205
+ #: build_tmp/build/framework/features/header/items/account/options.php:1146
4206
  msgid "Border Color"
4207
  msgstr ""
4208
 
4209
+ #: framework/premium/extensions/woocommerce-extra/readme.php:4,
4210
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/readme.php:4
4211
  msgid ""
4212
  "After installing and activating the WooCommerce Extra extension you will "
4213
  "have these features:"
4214
  msgstr ""
4215
 
4216
+ #: framework/premium/extensions/woocommerce-extra/readme.php:10,
4217
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/readme.php:10
4218
  msgid "Product Quick View"
4219
  msgstr ""
4220
 
4222
  #: framework/premium/extensions/woocommerce-extra/readme.php:29,
4223
  #: framework/premium/extensions/woocommerce-extra/readme.php:44,
4224
  #: framework/premium/extensions/woocommerce-extra/readme.php:59,
4225
+ #: framework/premium/extensions/woocommerce-extra/readme.php:74,
4226
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/readme.php:14,
4227
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/readme.php:29,
4228
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/readme.php:44,
4229
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/readme.php:59,
4230
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/readme.php:74
4231
  msgid "Navigate to %s."
4232
  msgstr ""
4233
 
4234
+ #: framework/premium/extensions/woocommerce-extra/readme.php:17,
4235
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/readme.php:17
4236
  msgid "Customizer ➝ WooCommerce ➝ Product Archives ➝ Card Options ➝ Quick View"
4237
  msgstr ""
4238
 
4239
+ #: framework/premium/extensions/woocommerce-extra/readme.php:32,
4240
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/readme.php:32
4241
  msgid "Customizer ➝ WooCommerce ➝ Single Product ➝ Floating Cart"
4242
  msgstr ""
4243
 
4244
+ #: framework/premium/extensions/woocommerce-extra/readme.php:40,
4245
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/readme.php:40
4246
  msgid "Advanced Gallery & Slider"
4247
  msgstr ""
4248
 
4249
+ #: framework/premium/extensions/woocommerce-extra/readme.php:47,
4250
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/readme.php:47
4251
  msgid "Customizer ➝ WooCommerce ➝ Single Product ➝ Gallery Options"
4252
  msgstr ""
4253
 
4254
+ #: framework/premium/extensions/woocommerce-extra/readme.php:55,
4255
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/readme.php:55
4256
  msgid "Share Box"
4257
  msgstr ""
4258
 
4259
+ #: framework/premium/extensions/woocommerce-extra/readme.php:62,
4260
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/readme.php:62
4261
  msgid "Customizer ➝ WooCommerce ➝ Single Product ➝ Share Box"
4262
  msgstr ""
4263
 
4264
+ #: framework/premium/extensions/woocommerce-extra/readme.php:77,
4265
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/readme.php:77
4266
  msgid "Customizer ➝ WooCommerce ➝ General ➝ Products Wishlist"
4267
  msgstr ""
4268
 
4269
+ #: framework/premium/features/content-blocks/admin-ui.php:17,
4270
+ #: build_tmp/build/framework/premium/features/content-blocks/admin-ui.php:17
4271
  msgid "Enable"
4272
  msgstr ""
4273
 
4274
+ #: framework/premium/features/content-blocks/admin-ui.php:18,
4275
+ #: build_tmp/build/framework/premium/features/content-blocks/admin-ui.php:18
4276
  msgid "Disable"
4277
  msgstr ""
4278
 
4279
+ #: framework/premium/features/content-blocks/admin-ui.php:69,
4280
+ #: build_tmp/build/framework/premium/features/content-blocks/admin-ui.php:69
4281
  msgid "Enabled %s content block."
4282
  msgid_plural "Enabled %s content blocks."
4283
  msgstr[0] ""
4284
  msgstr[1] ""
4285
 
4286
+ #: framework/premium/features/content-blocks/admin-ui.php:94,
4287
+ #: build_tmp/build/framework/premium/features/content-blocks/admin-ui.php:94
4288
  msgid "Disabled %s content block."
4289
  msgid_plural "Disabled %s content blocks."
4290
  msgstr[0] ""
4291
  msgstr[1] ""
4292
 
4293
+ #: framework/premium/features/content-blocks/admin-ui.php:120,
4294
+ #: build_tmp/build/framework/premium/features/content-blocks/admin-ui.php:120
4295
  #: framework/premium/static/js/hooks/CreateHook.js:68
4296
  msgid "Custom Content/Hooks"
4297
  msgstr ""
4298
 
4299
+ #: framework/premium/features/content-blocks/admin-ui.php:121,
4300
+ #: build_tmp/build/framework/premium/features/content-blocks/admin-ui.php:121
4301
  #: framework/premium/static/js/hooks/CreateHook.js:77
4302
  msgid "Popup"
4303
  msgstr ""
4304
 
4305
+ #: framework/premium/features/content-blocks/admin-ui.php:122,
4306
+ #: build_tmp/build/framework/premium/features/content-blocks/admin-ui.php:122
4307
  msgid "404 Page"
4308
  msgstr ""
4309
 
4310
  #: framework/premium/features/content-blocks/admin-ui.php:123,
4311
  #: framework/premium/features/content-blocks/hooks-manager.php:50,
4312
+ #: framework/premium/features/content-blocks/hooks-manager.php:59,
4313
+ #: build_tmp/build/framework/premium/features/content-blocks/admin-ui.php:123,
4314
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:50,
4315
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:59
4316
  msgid "Header"
4317
  msgstr ""
4318
 
4319
  #: framework/premium/features/content-blocks/admin-ui.php:124,
4320
  #: framework/premium/features/content-blocks/hooks-manager.php:890,
4321
  #: framework/premium/features/content-blocks/hooks-manager.php:898,
4322
+ #: framework/premium/features/content-blocks/hooks-manager.php:906,
4323
+ #: build_tmp/build/framework/premium/features/content-blocks/admin-ui.php:124,
4324
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:890,
4325
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:898,
4326
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:906
4327
  msgid "Footer"
4328
  msgstr ""
4329
 
4330
+ #: framework/premium/features/content-blocks/admin-ui.php:125,
4331
+ #: build_tmp/build/framework/premium/features/content-blocks/admin-ui.php:125
4332
  msgid "Archive"
4333
  msgstr ""
4334
 
4335
+ #: framework/premium/features/content-blocks/admin-ui.php:126,
4336
+ #: build_tmp/build/framework/premium/features/content-blocks/admin-ui.php:126
4337
  msgid "Single"
4338
  msgstr ""
4339
 
4340
+ #: framework/premium/features/content-blocks/admin-ui.php:131,
4341
+ #: build_tmp/build/framework/premium/features/content-blocks/admin-ui.php:131
4342
  msgid "All types"
4343
  msgstr ""
4344
 
4345
+ #: framework/premium/features/content-blocks/admin-ui.php:197,
4346
+ #: build_tmp/build/framework/premium/features/content-blocks/admin-ui.php:197
4347
  msgid "Location/Trigger"
4348
  msgstr ""
4349
 
4350
+ #: framework/premium/features/content-blocks/admin-ui.php:198,
4351
+ #: build_tmp/build/framework/premium/features/content-blocks/admin-ui.php:198
4352
  msgid "Conditions"
4353
  msgstr ""
4354
 
4355
+ #: framework/premium/features/content-blocks/admin-ui.php:199,
4356
+ #: build_tmp/build/framework/premium/features/content-blocks/admin-ui.php:199
4357
  msgid "Output"
4358
  msgstr ""
4359
 
4360
+ #: framework/premium/features/content-blocks/admin-ui.php:200,
4361
+ #: build_tmp/build/framework/premium/features/content-blocks/admin-ui.php:200
4362
  msgid "Enable/Disable"
4363
  msgstr ""
4364
 
4365
  #: framework/premium/features/content-blocks/admin-ui.php:226,
4366
+ #: framework/premium/features/content-blocks/options/popup.php:163,
4367
+ #: build_tmp/build/framework/premium/features/content-blocks/admin-ui.php:226,
4368
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:163
4369
  msgid "On scroll"
4370
  msgstr ""
4371
 
4372
  #: framework/premium/features/content-blocks/admin-ui.php:227,
4373
+ #: framework/premium/features/content-blocks/options/popup.php:164,
4374
+ #: build_tmp/build/framework/premium/features/content-blocks/admin-ui.php:227,
4375
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:164
4376
  msgid "On scroll to element"
4377
  msgstr ""
4378
 
4379
  #: framework/premium/features/content-blocks/admin-ui.php:228,
4380
+ #: framework/premium/features/content-blocks/options/popup.php:165,
4381
+ #: build_tmp/build/framework/premium/features/content-blocks/admin-ui.php:228,
4382
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:165
4383
  msgid "On page load"
4384
  msgstr ""
4385
 
4386
  #: framework/premium/features/content-blocks/admin-ui.php:229,
4387
+ #: framework/premium/features/content-blocks/options/popup.php:166,
4388
+ #: build_tmp/build/framework/premium/features/content-blocks/admin-ui.php:229,
4389
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:166
4390
  msgid "After inactivity"
4391
  msgstr ""
4392
 
4393
  #: framework/premium/features/content-blocks/admin-ui.php:230,
4394
+ #: framework/premium/features/content-blocks/options/popup.php:167,
4395
+ #: build_tmp/build/framework/premium/features/content-blocks/admin-ui.php:230,
4396
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:167
4397
  msgid "After x time"
4398
  msgstr ""
4399
 
4400
  #: framework/premium/features/content-blocks/admin-ui.php:231,
4401
+ #: framework/premium/features/content-blocks/options/popup.php:168,
4402
+ #: build_tmp/build/framework/premium/features/content-blocks/admin-ui.php:231,
4403
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:168
4404
  msgid "After x pages"
4405
  msgstr ""
4406
 
4407
  #: framework/premium/features/content-blocks/admin-ui.php:232,
4408
+ #: framework/premium/features/content-blocks/options/popup.php:169,
4409
+ #: build_tmp/build/framework/premium/features/content-blocks/admin-ui.php:232,
4410
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:169
4411
  msgid "On page exit intent"
4412
  msgstr ""
4413
 
4414
+ #: framework/premium/features/content-blocks/admin-ui.php:236,
4415
+ #: build_tmp/build/framework/premium/features/content-blocks/admin-ui.php:236
4416
  msgid "Down"
4417
  msgstr ""
4418
 
4419
+ #: framework/premium/features/content-blocks/admin-ui.php:237,
4420
+ #: build_tmp/build/framework/premium/features/content-blocks/admin-ui.php:237
4421
  msgid "Up"
4422
  msgstr ""
4423
 
4424
+ #: framework/premium/features/content-blocks/hooks-manager.php:11,
4425
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:11
4426
  msgid "WP head"
4427
  msgstr ""
4428
 
4429
  #: framework/premium/features/content-blocks/hooks-manager.php:13,
4430
  #: framework/premium/features/content-blocks/hooks-manager.php:22,
4431
  #: framework/premium/features/content-blocks/hooks-manager.php:32,
4432
+ #: framework/premium/features/content-blocks/hooks-manager.php:41,
4433
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:13,
4434
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:22,
4435
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:32,
4436
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:41
4437
  msgid "Head"
4438
  msgstr ""
4439
 
4440
+ #: framework/premium/features/content-blocks/hooks-manager.php:20,
4441
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:20
4442
  msgid "WP head start"
4443
  msgstr ""
4444
 
4445
+ #: framework/premium/features/content-blocks/hooks-manager.php:30,
4446
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:30
4447
  msgid "WP head end"
4448
  msgstr ""
4449
 
4450
+ #: framework/premium/features/content-blocks/hooks-manager.php:39,
4451
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:39
4452
  msgid "WP body open"
4453
  msgstr ""
4454
 
4455
+ #: framework/premium/features/content-blocks/hooks-manager.php:48,
4456
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:48
4457
  msgid "Header before"
4458
  msgstr ""
4459
 
4460
+ #: framework/premium/features/content-blocks/hooks-manager.php:57,
4461
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:57
4462
  msgid "Header after"
4463
  msgstr ""
4464
 
4465
+ #: framework/premium/features/content-blocks/hooks-manager.php:66,
4466
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:66
4467
  msgid "Desktop top"
4468
  msgstr ""
4469
 
4470
  #: framework/premium/features/content-blocks/hooks-manager.php:68,
4471
  #: framework/premium/features/content-blocks/hooks-manager.php:77,
4472
  #: framework/premium/features/content-blocks/hooks-manager.php:86,
4473
+ #: framework/premium/features/content-blocks/hooks-manager.php:95,
4474
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:68,
4475
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:77,
4476
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:86,
4477
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:95
4478
  msgid "Header offcanvas"
4479
  msgstr ""
4480
 
4481
+ #: framework/premium/features/content-blocks/hooks-manager.php:75,
4482
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:75
4483
  msgid "Desktop bottom"
4484
  msgstr ""
4485
 
4486
+ #: framework/premium/features/content-blocks/hooks-manager.php:84,
4487
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:84
4488
  msgid "Mobile top"
4489
  msgstr ""
4490
 
4491
+ #: framework/premium/features/content-blocks/hooks-manager.php:93,
4492
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:93
4493
  msgid "Mobile bottom"
4494
  msgstr ""
4495
 
4496
+ #: framework/premium/features/content-blocks/hooks-manager.php:102,
4497
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:102
4498
  msgid "Sidebar before"
4499
  msgstr ""
4500
 
4501
  #: framework/premium/features/content-blocks/hooks-manager.php:103,
4502
  #: framework/premium/features/content-blocks/hooks-manager.php:110,
4503
  #: framework/premium/features/content-blocks/hooks-manager.php:117,
4504
+ #: framework/premium/features/content-blocks/hooks-manager.php:124,
4505
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:103,
4506
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:110,
4507
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:117,
4508
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:124
4509
  msgid "Left/Right sidebar"
4510
  msgstr ""
4511
 
4512
+ #: framework/premium/features/content-blocks/hooks-manager.php:109,
4513
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:109
4514
  msgid "Sidebar start"
4515
  msgstr ""
4516
 
4517
+ #: framework/premium/features/content-blocks/hooks-manager.php:116,
4518
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:116
4519
  msgid "Sidebar end"
4520
  msgstr ""
4521
 
4522
+ #: framework/premium/features/content-blocks/hooks-manager.php:123,
4523
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:123
4524
  msgid "Sidebar after"
4525
  msgstr ""
4526
 
4527
+ #: framework/premium/features/content-blocks/hooks-manager.php:130,
4528
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:130
4529
  msgid "Dynamic sidebar before"
4530
  msgstr ""
4531
 
4532
  #: framework/premium/features/content-blocks/hooks-manager.php:131,
4533
  #: framework/premium/features/content-blocks/hooks-manager.php:138,
4534
+ #: framework/premium/features/content-blocks/hooks-manager.php:146,
4535
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:131,
4536
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:138,
4537
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:146
4538
  msgid "All widget areas"
4539
  msgstr ""
4540
 
4541
+ #: framework/premium/features/content-blocks/hooks-manager.php:137,
4542
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:137
4543
  msgid "Dynamic sidebar"
4544
  msgstr ""
4545
 
4546
+ #: framework/premium/features/content-blocks/hooks-manager.php:145,
4547
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:145
4548
  msgid "Dynamic sidebar after"
4549
  msgstr ""
4550
 
4551
+ #: framework/premium/features/content-blocks/hooks-manager.php:154,
4552
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:154
4553
  msgid "Before section"
4554
  msgstr ""
4555
 
4562
  #: framework/premium/features/content-blocks/hooks-manager.php:203,
4563
  #: framework/premium/features/content-blocks/hooks-manager.php:211,
4564
  #: framework/premium/features/content-blocks/hooks-manager.php:219,
4565
+ #: framework/premium/features/content-blocks/hooks-manager.php:227,
4566
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:155,
4567
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:163,
4568
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:171,
4569
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:179,
4570
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:187,
4571
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:195,
4572
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:203,
4573
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:211,
4574
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:219,
4575
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:227
4576
  msgid "Page/post title"
4577
  msgstr ""
4578
 
4579
  #: framework/premium/features/content-blocks/hooks-manager.php:162,
4580
  #: framework/premium/features/content-blocks/hooks-manager.php:280,
4581
+ #: framework/premium/features/content-blocks/hooks-manager.php:322,
4582
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:162,
4583
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:280,
4584
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:322
4585
  msgid "Before title"
4586
  msgstr ""
4587
 
4588
+ #: framework/premium/features/content-blocks/hooks-manager.php:170,
4589
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:170
4590
  msgid "Before description"
4591
  msgstr ""
4592
 
4593
+ #: framework/premium/features/content-blocks/hooks-manager.php:178,
4594
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:178
4595
  msgid "Before breadcrumbs"
4596
  msgstr ""
4597
 
4598
+ #: framework/premium/features/content-blocks/hooks-manager.php:186,
4599
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:186
4600
  msgid "Before post meta"
4601
  msgstr ""
4602
 
4603
  #: framework/premium/features/content-blocks/hooks-manager.php:194,
4604
  #: framework/premium/features/content-blocks/hooks-manager.php:287,
4605
+ #: framework/premium/features/content-blocks/hooks-manager.php:329,
4606
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:194,
4607
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:287,
4608
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:329
4609
  msgid "After title"
4610
  msgstr ""
4611
 
4612
+ #: framework/premium/features/content-blocks/hooks-manager.php:202,
4613
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:202
4614
  msgid "After description"
4615
  msgstr ""
4616
 
4617
+ #: framework/premium/features/content-blocks/hooks-manager.php:210,
4618
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:210
4619
  msgid "After breadcrumbs"
4620
  msgstr ""
4621
 
4622
+ #: framework/premium/features/content-blocks/hooks-manager.php:218,
4623
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:218
4624
  msgid "After post meta"
4625
  msgstr ""
4626
 
4627
+ #: framework/premium/features/content-blocks/hooks-manager.php:226,
4628
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:226
4629
  msgid "After section"
4630
  msgstr ""
4631
 
4632
+ #: framework/premium/features/content-blocks/hooks-manager.php:234,
4633
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:234
4634
  msgid "Before content"
4635
  msgstr ""
4636
 
4637
  #: framework/premium/features/content-blocks/hooks-manager.php:242,
4638
+ #: framework/premium/features/content-blocks/hooks-manager.php:415,
4639
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:242,
4640
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:415
4641
  msgid "Top content"
4642
  msgstr ""
4643
 
4644
  #: framework/premium/features/content-blocks/hooks-manager.php:250,
4645
+ #: framework/premium/features/content-blocks/hooks-manager.php:437,
4646
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:250,
4647
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:437
4648
  msgid "Bottom content"
4649
  msgstr ""
4650
 
4651
+ #: framework/premium/features/content-blocks/hooks-manager.php:258,
4652
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:258
4653
  msgid "After content"
4654
  msgstr ""
4655
 
4656
+ #: framework/premium/features/content-blocks/hooks-manager.php:266,
4657
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:266
4658
  msgid "Before comments"
4659
  msgstr ""
4660
 
4663
  #: framework/premium/features/content-blocks/hooks-manager.php:281,
4664
  #: framework/premium/features/content-blocks/hooks-manager.php:288,
4665
  #: framework/premium/features/content-blocks/hooks-manager.php:295,
4666
+ #: framework/premium/features/content-blocks/hooks-manager.php:302,
4667
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:267,
4668
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:274,
4669
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:281,
4670
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:288,
4671
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:295,
4672
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:302
4673
  msgid "Comments"
4674
  msgstr ""
4675
 
4676
+ #: framework/premium/features/content-blocks/hooks-manager.php:273,
4677
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:273
4678
  msgid "Top comments"
4679
  msgstr ""
4680
 
4681
+ #: framework/premium/features/content-blocks/hooks-manager.php:294,
4682
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:294
4683
  msgid "Bottom comments"
4684
  msgstr ""
4685
 
4686
+ #: framework/premium/features/content-blocks/hooks-manager.php:301,
4687
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:301
4688
  msgid "After comments"
4689
  msgstr ""
4690
 
4691
+ #: framework/premium/features/content-blocks/hooks-manager.php:308,
4692
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:308
4693
  msgid "Before related posts"
4694
  msgstr ""
4695
 
4702
  #: framework/premium/features/content-blocks/hooks-manager.php:351,
4703
  #: framework/premium/features/content-blocks/hooks-manager.php:358,
4704
  #: framework/premium/features/content-blocks/hooks-manager.php:366,
4705
+ #: framework/premium/features/content-blocks/hooks-manager.php:373,
4706
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:309,
4707
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:316,
4708
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:323,
4709
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:330,
4710
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:337,
4711
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:344,
4712
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:351,
4713
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:358,
4714
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:366,
4715
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:373
4716
  msgid "Related posts"
4717
  msgstr ""
4718
 
4719
+ #: framework/premium/features/content-blocks/hooks-manager.php:315,
4720
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:315
4721
  msgid "Related posts top"
4722
  msgstr ""
4723
 
4724
+ #: framework/premium/features/content-blocks/hooks-manager.php:336,
4725
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:336
4726
  msgid "Card top"
4727
  msgstr ""
4728
 
4729
+ #: framework/premium/features/content-blocks/hooks-manager.php:343,
4730
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:343
4731
  msgid "Before featured image"
4732
  msgstr ""
4733
 
4734
+ #: framework/premium/features/content-blocks/hooks-manager.php:350,
4735
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:350
4736
  msgid "After featured image"
4737
  msgstr ""
4738
 
4739
+ #: framework/premium/features/content-blocks/hooks-manager.php:357,
4740
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:357
4741
  msgid "Card bottom"
4742
  msgstr ""
4743
 
4744
+ #: framework/premium/features/content-blocks/hooks-manager.php:365,
4745
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:365
4746
  msgid "Related posts bottom"
4747
  msgstr ""
4748
 
4749
+ #: framework/premium/features/content-blocks/hooks-manager.php:372,
4750
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:372
4751
  msgid "After related posts"
4752
  msgstr ""
4753
 
4754
  #: framework/premium/features/content-blocks/hooks-manager.php:379,
4755
+ #: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:459,
4756
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:379,
4757
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/dynamic-data.php:459
4758
  msgid "Before"
4759
  msgstr ""
4760
 
4761
  #: framework/premium/features/content-blocks/hooks-manager.php:380,
4762
+ #: framework/premium/features/content-blocks/hooks-manager.php:387,
4763
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:380,
4764
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:387
4765
  msgid "Loop"
4766
  msgstr ""
4767
 
4768
  #: framework/premium/features/content-blocks/hooks-manager.php:386,
4769
+ #: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:470,
4770
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:386,
4771
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/dynamic-data.php:470
4772
  msgid "After"
4773
  msgstr ""
4774
 
4775
+ #: framework/premium/features/content-blocks/hooks-manager.php:393,
4776
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:393
4777
  msgid "Start"
4778
  msgstr ""
4779
 
4780
  #: framework/premium/features/content-blocks/hooks-manager.php:394,
4781
+ #: framework/premium/features/content-blocks/hooks-manager.php:401,
4782
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:394,
4783
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:401
4784
  msgid "Loop card"
4785
  msgstr ""
4786
 
4787
+ #: framework/premium/features/content-blocks/hooks-manager.php:400,
4788
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:400
4789
  msgid "End"
4790
  msgstr ""
4791
 
4792
+ #: framework/premium/features/content-blocks/hooks-manager.php:423,
4793
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:423
4794
  msgid "After certain number of blocks"
4795
  msgstr ""
4796
 
4797
+ #: framework/premium/features/content-blocks/hooks-manager.php:430,
4798
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:430
4799
  msgid "Before certain number of headings"
4800
  msgstr ""
4801
 
4802
+ #: framework/premium/features/content-blocks/hooks-manager.php:453,
4803
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:453
4804
  msgid "Login form start"
4805
  msgstr ""
4806
 
4813
  #: framework/premium/features/content-blocks/hooks-manager.php:496,
4814
  #: framework/premium/features/content-blocks/hooks-manager.php:503,
4815
  #: framework/premium/features/content-blocks/hooks-manager.php:510,
4816
+ #: framework/premium/features/content-blocks/hooks-manager.php:517,
4817
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:454,
4818
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:461,
4819
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:468,
4820
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:475,
4821
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:482,
4822
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:489,
4823
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:496,
4824
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:503,
4825
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:510,
4826
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:517
4827
  msgid "Auth forms"
4828
  msgstr ""
4829
 
4830
+ #: framework/premium/features/content-blocks/hooks-manager.php:460,
4831
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:460
4832
  msgid "Login form end"
4833
  msgstr ""
4834
 
4835
+ #: framework/premium/features/content-blocks/hooks-manager.php:467,
4836
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:467
4837
  msgid "Login form modal start"
4838
  msgstr ""
4839
 
4840
+ #: framework/premium/features/content-blocks/hooks-manager.php:474,
4841
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:474
4842
  msgid "Login form modal end"
4843
  msgstr ""
4844
 
4845
+ #: framework/premium/features/content-blocks/hooks-manager.php:481,
4846
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:481
4847
  msgid "Register form start"
4848
  msgstr ""
4849
 
4850
+ #: framework/premium/features/content-blocks/hooks-manager.php:488,
4851
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:488
4852
  msgid "Register form end"
4853
  msgstr ""
4854
 
4855
+ #: framework/premium/features/content-blocks/hooks-manager.php:495,
4856
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:495
4857
  msgid "Register form modal start"
4858
  msgstr ""
4859
 
4860
+ #: framework/premium/features/content-blocks/hooks-manager.php:502,
4861
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:502
4862
  msgid "Register form modal end"
4863
  msgstr ""
4864
 
4865
+ #: framework/premium/features/content-blocks/hooks-manager.php:509,
4866
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:509
4867
  msgid "Lost password form modal start"
4868
  msgstr ""
4869
 
4870
+ #: framework/premium/features/content-blocks/hooks-manager.php:516,
4871
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:516
4872
  msgid "Lost password form modal end"
4873
  msgstr ""
4874
 
4875
+ #: framework/premium/features/content-blocks/hooks-manager.php:524,
4876
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:524
4877
  msgid "Before main content"
4878
  msgstr ""
4879
 
4880
+ #: framework/premium/features/content-blocks/hooks-manager.php:530,
4881
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:530
4882
  msgid "After main content"
4883
  msgstr ""
4884
 
4885
+ #: framework/premium/features/content-blocks/hooks-manager.php:536,
4886
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:536
4887
  msgid "Offcanvas Filters Top"
4888
  msgstr ""
4889
 
4890
+ #: framework/premium/features/content-blocks/hooks-manager.php:542,
4891
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:542
4892
  msgid "Offcanvas Filters Bottom"
4893
  msgstr ""
4894
 
4895
+ #: framework/premium/features/content-blocks/hooks-manager.php:545,
4896
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:545
4897
  msgid "WooCommerce Global"
4898
  msgstr ""
4899
 
4900
+ #: framework/premium/features/content-blocks/hooks-manager.php:550,
4901
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:550
4902
  msgid "Archive description"
4903
  msgstr ""
4904
 
4905
+ #: framework/premium/features/content-blocks/hooks-manager.php:555,
4906
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:555
4907
  msgid "Before shop loop"
4908
  msgstr ""
4909
 
4910
+ #: framework/premium/features/content-blocks/hooks-manager.php:572,
4911
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:572
4912
  msgid "Before shop loop item title"
4913
  msgstr ""
4914
 
4915
+ #: framework/premium/features/content-blocks/hooks-manager.php:577,
4916
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:577
4917
  msgid "After shop loop item title"
4918
  msgstr ""
4919
 
4920
+ #: framework/premium/features/content-blocks/hooks-manager.php:582,
4921
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:582
4922
  msgid "Before shop loop item price"
4923
  msgstr ""
4924
 
4925
+ #: framework/premium/features/content-blocks/hooks-manager.php:587,
4926
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:587
4927
  msgid "After shop loop item price"
4928
  msgstr ""
4929
 
4930
+ #: framework/premium/features/content-blocks/hooks-manager.php:592,
4931
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:592
4932
  msgid "Before shop loop item actions"
4933
  msgstr ""
4934
 
4935
+ #: framework/premium/features/content-blocks/hooks-manager.php:597,
4936
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:597
4937
  msgid "After shop loop item actions"
4938
  msgstr ""
4939
 
4940
+ #: framework/premium/features/content-blocks/hooks-manager.php:602,
4941
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:602
4942
  msgid "After shop loop"
4943
  msgstr ""
4944
 
4945
+ #: framework/premium/features/content-blocks/hooks-manager.php:604,
4946
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:604
4947
  msgid "WooCommerce Archive"
4948
  msgstr ""
4949
 
4950
+ #: framework/premium/features/content-blocks/hooks-manager.php:609,
4951
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:609
4952
  msgid "Before single product"
4953
  msgstr ""
4954
 
4955
+ #: framework/premium/features/content-blocks/hooks-manager.php:627,
4956
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:627
4957
  msgid "Product meta start"
4958
  msgstr ""
4959
 
4960
+ #: framework/premium/features/content-blocks/hooks-manager.php:631,
4961
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:631
4962
  msgid "Product meta end"
4963
  msgstr ""
4964
 
4965
+ #: framework/premium/features/content-blocks/hooks-manager.php:635,
4966
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:635
4967
  msgid "Share"
4968
  msgstr ""
4969
 
4970
+ #: framework/premium/features/content-blocks/hooks-manager.php:639,
4971
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:639
4972
  msgid "After single product"
4973
  msgstr ""
4974
 
4975
+ #: framework/premium/features/content-blocks/hooks-manager.php:645,
4976
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:645
4977
  msgid "Before single product excerpt"
4978
  msgstr ""
4979
 
4980
+ #: framework/premium/features/content-blocks/hooks-manager.php:650,
4981
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:650
4982
  msgid "After single product excerpt"
4983
  msgstr ""
4984
 
4985
+ #: framework/premium/features/content-blocks/hooks-manager.php:655,
4986
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:655
4987
  msgid "Before single product tabs"
4988
  msgstr ""
4989
 
4990
+ #: framework/premium/features/content-blocks/hooks-manager.php:661,
4991
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:661
4992
  msgid "After single product tabs"
4993
  msgstr ""
4994
 
4995
+ #: framework/premium/features/content-blocks/hooks-manager.php:665,
4996
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:665
4997
  msgid "WooCommerce Product"
4998
  msgstr ""
4999
 
5000
+ #: framework/premium/features/content-blocks/hooks-manager.php:670,
5001
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:670
5002
  msgid "Cart is empty"
5003
  msgstr ""
5004
 
5005
+ #: framework/premium/features/content-blocks/hooks-manager.php:674,
5006
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:674
5007
  msgid "Before cart"
5008
  msgstr ""
5009
 
5010
+ #: framework/premium/features/content-blocks/hooks-manager.php:678,
5011
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:678
5012
  msgid "Before cart table"
5013
  msgstr ""
5014
 
5015
+ #: framework/premium/features/content-blocks/hooks-manager.php:682,
5016
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:682
5017
  msgid "Before cart contents"
5018
  msgstr ""
5019
 
5020
+ #: framework/premium/features/content-blocks/hooks-manager.php:686,
5021
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:686
5022
  msgid "Cart contents"
5023
  msgstr ""
5024
 
5025
+ #: framework/premium/features/content-blocks/hooks-manager.php:690,
5026
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:690
5027
  msgid "After cart contents"
5028
  msgstr ""
5029
 
5030
+ #: framework/premium/features/content-blocks/hooks-manager.php:694,
5031
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:694
5032
  msgid "Cart coupon"
5033
  msgstr ""
5034
 
5035
+ #: framework/premium/features/content-blocks/hooks-manager.php:698,
5036
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:698
5037
  msgid "Cart actions"
5038
  msgstr ""
5039
 
5040
+ #: framework/premium/features/content-blocks/hooks-manager.php:702,
5041
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:702
5042
  msgid "After cart table"
5043
  msgstr ""
5044
 
5045
+ #: framework/premium/features/content-blocks/hooks-manager.php:706,
5046
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:706
5047
  msgid "Cart collaterals"
5048
  msgstr ""
5049
 
5050
+ #: framework/premium/features/content-blocks/hooks-manager.php:710,
5051
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:710
5052
  msgid "Before cart totals"
5053
  msgstr ""
5054
 
5055
+ #: framework/premium/features/content-blocks/hooks-manager.php:714,
5056
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:714
5057
  msgid "Cart totals before order total"
5058
  msgstr ""
5059
 
5060
+ #: framework/premium/features/content-blocks/hooks-manager.php:718,
5061
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:718
5062
  msgid "Cart totals after order total"
5063
  msgstr ""
5064
 
5065
+ #: framework/premium/features/content-blocks/hooks-manager.php:722,
5066
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:722
5067
  msgid "Proceed to checkout"
5068
  msgstr ""
5069
 
5070
+ #: framework/premium/features/content-blocks/hooks-manager.php:726,
5071
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:726
5072
  msgid "After cart totals"
5073
  msgstr ""
5074
 
5075
+ #: framework/premium/features/content-blocks/hooks-manager.php:730,
5076
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:730
5077
  msgid "After cart"
5078
  msgstr ""
5079
 
5080
+ #: framework/premium/features/content-blocks/hooks-manager.php:735,
5081
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:735
5082
  msgid "Before Mini Cart"
5083
  msgstr ""
5084
 
5085
+ #: framework/premium/features/content-blocks/hooks-manager.php:740,
5086
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:740
5087
  msgid "Before Mini Cart Contents"
5088
  msgstr ""
5089
 
5090
+ #: framework/premium/features/content-blocks/hooks-manager.php:745,
5091
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:745
5092
  msgid "Mini Cart Contents"
5093
  msgstr ""
5094
 
5095
+ #: framework/premium/features/content-blocks/hooks-manager.php:750,
5096
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:750
5097
  msgid "Widget Shopping Cart Before Buttons"
5098
  msgstr ""
5099
 
5100
+ #: framework/premium/features/content-blocks/hooks-manager.php:755,
5101
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:755
5102
  msgid "Widget Shopping Cart After Buttons"
5103
  msgstr ""
5104
 
5105
+ #: framework/premium/features/content-blocks/hooks-manager.php:760,
5106
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:760
5107
  msgid "After Mini Cart"
5108
  msgstr ""
5109
 
5110
+ #: framework/premium/features/content-blocks/hooks-manager.php:762,
5111
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:762
5112
  msgid "WooCommerce Cart"
5113
  msgstr ""
5114
 
5115
+ #: framework/premium/features/content-blocks/hooks-manager.php:768,
5116
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:768
5117
  msgid "Before checkout form"
5118
  msgstr ""
5119
 
5120
+ #: framework/premium/features/content-blocks/hooks-manager.php:772,
5121
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:772
5122
  msgid "Before customer details"
5123
  msgstr ""
5124
 
5125
+ #: framework/premium/features/content-blocks/hooks-manager.php:776,
5126
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:776
5127
  msgid "After customer details"
5128
  msgstr ""
5129
 
5130
+ #: framework/premium/features/content-blocks/hooks-manager.php:780,
5131
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:780
5132
  msgid "Checkout billing"
5133
  msgstr ""
5134
 
5135
+ #: framework/premium/features/content-blocks/hooks-manager.php:784,
5136
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:784
5137
  msgid "Before checkout billing form"
5138
  msgstr ""
5139
 
5140
+ #: framework/premium/features/content-blocks/hooks-manager.php:788,
5141
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:788
5142
  msgid "After checkout billing form"
5143
  msgstr ""
5144
 
5145
+ #: framework/premium/features/content-blocks/hooks-manager.php:792,
5146
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:792
5147
  msgid "Before order notes"
5148
  msgstr ""
5149
 
5150
+ #: framework/premium/features/content-blocks/hooks-manager.php:796,
5151
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:796
5152
  msgid "After order notes"
5153
  msgstr ""
5154
 
5155
+ #: framework/premium/features/content-blocks/hooks-manager.php:800,
5156
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:800
5157
  msgid "Checkout shipping"
5158
  msgstr ""
5159
 
5160
+ #: framework/premium/features/content-blocks/hooks-manager.php:804,
5161
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:804
5162
  msgid "Checkout before order review"
5163
  msgstr ""
5164
 
5165
+ #: framework/premium/features/content-blocks/hooks-manager.php:808,
5166
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:808
5167
  msgid "Checkout order review"
5168
  msgstr ""
5169
 
5170
+ #: framework/premium/features/content-blocks/hooks-manager.php:812,
5171
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:812
5172
  msgid "Review order before cart contents"
5173
  msgstr ""
5174
 
5175
+ #: framework/premium/features/content-blocks/hooks-manager.php:816,
5176
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:816
5177
  msgid "Review order after cart contents"
5178
  msgstr ""
5179
 
5180
+ #: framework/premium/features/content-blocks/hooks-manager.php:820,
5181
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:820
5182
  msgid "Review order before order total"
5183
  msgstr ""
5184
 
5185
+ #: framework/premium/features/content-blocks/hooks-manager.php:824,
5186
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:824
5187
  msgid "Review order after order total"
5188
  msgstr ""
5189
 
5190
+ #: framework/premium/features/content-blocks/hooks-manager.php:828,
5191
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:828
5192
  msgid "Review order before payment"
5193
  msgstr ""
5194
 
5195
+ #: framework/premium/features/content-blocks/hooks-manager.php:832,
5196
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:832
5197
  msgid "Review order before submit"
5198
  msgstr ""
5199
 
5200
+ #: framework/premium/features/content-blocks/hooks-manager.php:836,
5201
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:836
5202
  msgid "Review order after submit"
5203
  msgstr ""
5204
 
5205
+ #: framework/premium/features/content-blocks/hooks-manager.php:840,
5206
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:840
5207
  msgid "Review order after payment"
5208
  msgstr ""
5209
 
5210
+ #: framework/premium/features/content-blocks/hooks-manager.php:844,
5211
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:844
5212
  msgid "Checkout after order review"
5213
  msgstr ""
5214
 
5215
+ #: framework/premium/features/content-blocks/hooks-manager.php:848,
5216
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:848
5217
  msgid "After checkout form"
5218
  msgstr ""
5219
 
5220
+ #: framework/premium/features/content-blocks/hooks-manager.php:851,
5221
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:851
5222
  msgid "WooCommerce Checkout"
5223
  msgstr ""
5224
 
5225
+ #: framework/premium/features/content-blocks/hooks-manager.php:857,
5226
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:857
5227
  msgid "Before my account"
5228
  msgstr ""
5229
 
5230
+ #: framework/premium/features/content-blocks/hooks-manager.php:861,
5231
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:861
5232
  msgid "Before account navigation"
5233
  msgstr ""
5234
 
5235
+ #: framework/premium/features/content-blocks/hooks-manager.php:865,
5236
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:865
5237
  msgid "Account navigation"
5238
  msgstr ""
5239
 
5240
+ #: framework/premium/features/content-blocks/hooks-manager.php:869,
5241
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:869
5242
  msgid "After account navigation"
5243
  msgstr ""
5244
 
5245
+ #: framework/premium/features/content-blocks/hooks-manager.php:873,
5246
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:873
5247
  msgid "Account content"
5248
  msgstr ""
5249
 
5250
+ #: framework/premium/features/content-blocks/hooks-manager.php:877,
5251
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:877
5252
  msgid "Account dashboard"
5253
  msgstr ""
5254
 
5255
+ #: framework/premium/features/content-blocks/hooks-manager.php:881,
5256
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:881
5257
  msgid "After my account"
5258
  msgstr ""
5259
 
5260
  #: framework/premium/features/content-blocks/hooks-manager.php:883,
5261
  #: framework/features/header/items/account/options.php:17,
5262
+ #: framework/features/header/items/account/options.php:18,
5263
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:883,
5264
+ #: build_tmp/build/framework/features/header/items/account/options.php:17,
5265
+ #: build_tmp/build/framework/features/header/items/account/options.php:18
5266
  msgid "WooCommerce Account"
5267
  msgstr ""
5268
 
5269
+ #: framework/premium/features/content-blocks/hooks-manager.php:889,
5270
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:889
5271
  msgid "WP footer"
5272
  msgstr ""
5273
 
5274
+ #: framework/premium/features/content-blocks/hooks-manager.php:897,
5275
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:897
5276
  msgid "Footer before"
5277
  msgstr ""
5278
 
5279
+ #: framework/premium/features/content-blocks/hooks-manager.php:905,
5280
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:905
5281
  msgid "Footer after"
5282
  msgstr ""
5283
 
5284
+ #: framework/premium/features/content-blocks/hooks-manager.php:920,
5285
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:920
5286
  msgid "Custom Hook (%s)"
5287
  msgstr ""
5288
 
5289
  #: framework/premium/features/content-blocks/hooks-manager.php:926,
5290
+ #: framework/premium/features/content-blocks/options/hook.php:197,
5291
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:926,
5292
+ #: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:197
5293
  #: framework/premium/static/js/options/MultipleLocationsSelect.js:90
5294
  msgid "After Block Number"
5295
  msgstr ""
5296
 
5297
  #: framework/premium/features/content-blocks/hooks-manager.php:932,
5298
+ #: framework/premium/features/content-blocks/options/hook.php:214,
5299
+ #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:932,
5300
+ #: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:214
5301
  #: framework/premium/static/js/options/MultipleLocationsSelect.js:112
5302
  msgid "Before Heading Number"
5303
  msgstr ""
5304
 
5305
+ #: framework/extensions/widgets/widgets/ct-about-me/widget.php:13,
5306
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-about-me/widget.php:13
5307
  msgid "About Me"
5308
  msgstr ""
5309
 
5310
+ #: framework/extensions/widgets/widgets/ct-about-me/widget.php:14,
5311
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-about-me/widget.php:14
5312
  msgid "About me"
5313
  msgstr ""
5314
 
5315
  #: framework/extensions/widgets/widgets/ct-advertisement/options.php:18,
5316
  #: framework/extensions/widgets/widgets/ct-advertisement/view.php:12,
5317
  #: framework/extensions/widgets/widgets/ct-advertisement/widget.php:13,
5318
+ #: framework/extensions/widgets/widgets/ct-advertisement/widget.php:14,
5319
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-advertisement/options.php:18,
5320
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-advertisement/view.php:12,
5321
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-advertisement/widget.php:13,
5322
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-advertisement/widget.php:14
5323
  msgid "Advertisement"
5324
  msgstr ""
5325
 
5326
+ #: framework/extensions/widgets/widgets/ct-advertisement/options.php:31,
5327
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-advertisement/options.php:31
5328
  msgid "Code"
5329
  msgstr ""
5330
 
5331
+ #: framework/extensions/widgets/widgets/ct-advertisement/options.php:32,
5332
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-advertisement/options.php:32
5333
  msgid "Image"
5334
  msgstr ""
5335
 
5336
+ #: framework/extensions/widgets/widgets/ct-advertisement/options.php:42,
5337
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-advertisement/options.php:42
5338
  msgid "Ad Code"
5339
  msgstr ""
5340
 
5341
+ #: framework/extensions/widgets/widgets/ct-advertisement/options.php:58,
5342
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-advertisement/options.php:58
5343
  msgid "Upload Image"
5344
  msgstr ""
5345
 
5346
  #: framework/extensions/widgets/widgets/ct-advertisement/options.php:62,
5347
+ #: framework/extensions/widgets/widgets/ct-quote/options.php:66,
5348
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-advertisement/options.php:62,
5349
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-quote/options.php:66
5350
  msgid "Select Image"
5351
  msgstr ""
5352
 
5353
  #: framework/extensions/widgets/widgets/ct-advertisement/options.php:63,
5354
+ #: framework/extensions/widgets/widgets/ct-quote/options.php:67,
5355
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-advertisement/options.php:63,
5356
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-quote/options.php:67
5357
  msgid "Change Image"
5358
  msgstr ""
5359
 
5360
  #: framework/extensions/widgets/widgets/ct-advertisement/options.php:67,
5361
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:126,
5362
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-advertisement/options.php:67,
5363
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:126
5364
  msgid "Image Ratio"
5365
  msgstr ""
5366
 
5367
+ #: framework/extensions/widgets/widgets/ct-advertisement/options.php:75,
5368
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-advertisement/options.php:75
5369
  msgid "Ad URL"
5370
  msgstr ""
5371
 
5372
+ #: framework/extensions/widgets/widgets/ct-contact-info/options.php:19,
5373
  #: framework/extensions/widgets/widgets/ct-contact-info/view.php:12,
5374
+ #: framework/extensions/widgets/widgets/ct-contact-info/widget.php:13,
5375
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:19,
5376
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/view.php:12,
5377
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/widget.php:13
5378
  msgid "Contact Info"
5379
  msgstr ""
5380
 
5381
+ #: framework/extensions/widgets/widgets/ct-contact-info/options.php:44,
5382
+ #: framework/extensions/widgets/widgets/ct-contact-info/options.php:74,
5383
  #: framework/extensions/widgets/widgets/ct-contact-info/view.php:24,
5384
  #: framework/premium/features/premium-header/items/contacts/options.php:17,
5385
  #: framework/premium/features/premium-header/items/contacts/options.php:46,
5386
+ #: framework/premium/features/premium-header/items/contacts/view.php:22,
5387
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:44,
5388
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:74,
5389
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/view.php:24,
5390
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:17,
5391
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:46,
5392
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/view.php:22
5393
  msgid "Address:"
5394
  msgstr ""
5395
 
5396
+ #: framework/extensions/widgets/widgets/ct-contact-info/options.php:51,
5397
+ #: framework/extensions/widgets/widgets/ct-contact-info/options.php:135,
5398
  #: framework/extensions/widgets/widgets/ct-contact-info/view.php:31,
5399
  #: framework/premium/features/premium-header/items/contacts/options.php:24,
5400
  #: framework/premium/features/premium-header/items/contacts/options.php:82,
5401
+ #: framework/premium/features/premium-header/items/contacts/view.php:29,
5402
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:51,
5403
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:135,
5404
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/view.php:31,
5405
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:24,
5406
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:82,
5407
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/view.php:29
5408
  msgid "Phone:"
5409
  msgstr ""
5410
 
5411
+ #: framework/extensions/widgets/widgets/ct-contact-info/options.php:59,
5412
+ #: framework/extensions/widgets/widgets/ct-contact-info/options.php:195,
5413
  #: framework/extensions/widgets/widgets/ct-contact-info/view.php:39,
5414
  #: framework/premium/features/premium-header/items/contacts/options.php:32,
5415
  #: framework/premium/features/premium-header/items/contacts/options.php:118,
5416
+ #: framework/premium/features/premium-header/items/contacts/view.php:37,
5417
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:59,
5418
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:195,
5419
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/view.php:39,
5420
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:32,
5421
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:118,
5422
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/view.php:37
5423
  msgid "Mobile:"
5424
  msgstr ""
5425
 
5426
+ #: framework/extensions/widgets/widgets/ct-contact-info/options.php:68,
5427
+ #: framework/premium/features/premium-header/items/contacts/options.php:41,
5428
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:68,
5429
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:41
5430
  msgid "Address"
5431
  msgstr ""
5432
 
5433
+ #: framework/extensions/widgets/widgets/ct-contact-info/options.php:87,
5434
+ #: framework/extensions/widgets/widgets/ct-contact-info/options.php:148,
5435
+ #: framework/extensions/widgets/widgets/ct-contact-info/options.php:208,
5436
+ #: framework/extensions/widgets/widgets/ct-contact-info/options.php:268,
5437
+ #: framework/extensions/widgets/widgets/ct-contact-info/options.php:328,
5438
+ #: framework/extensions/widgets/widgets/ct-contact-info/options.php:388,
5439
+ #: framework/extensions/widgets/widgets/ct-contact-info/options.php:448,
5440
  #: framework/premium/features/premium-header/items/contacts/options.php:59,
5441
  #: framework/premium/features/premium-header/items/contacts/options.php:95,
5442
  #: framework/premium/features/premium-header/items/contacts/options.php:131,
5443
  #: framework/premium/features/premium-header/items/contacts/options.php:167,
5444
  #: framework/premium/features/premium-header/items/contacts/options.php:203,
5445
  #: framework/premium/features/premium-header/items/contacts/options.php:239,
5446
+ #: framework/premium/features/premium-header/items/contacts/options.php:275,
5447
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:87,
5448
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:148,
5449
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:208,
5450
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:268,
5451
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:328,
5452
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:388,
5453
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:448,
5454
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:59,
5455
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:95,
5456
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:131,
5457
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:167,
5458
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:203,
5459
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:239,
5460
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:275
5461
  msgid "Link (optional)"
5462
  msgstr ""
5463
 
5464
+ #: framework/extensions/widgets/widgets/ct-contact-info/options.php:248,
5465
+ #: framework/premium/features/premium-header/items/contacts/options.php:149,
5466
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:248,
5467
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:149
5468
  msgid "Work Hours"
5469
  msgstr ""
5470
 
5471
+ #: framework/extensions/widgets/widgets/ct-contact-info/options.php:255,
5472
+ #: framework/premium/features/premium-header/items/contacts/options.php:154,
5473
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:255,
5474
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:154
5475
  msgid "Opening hours"
5476
  msgstr ""
5477
 
5478
+ #: framework/extensions/widgets/widgets/ct-contact-info/options.php:308,
5479
+ #: framework/premium/features/premium-header/items/contacts/options.php:185,
5480
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:308,
5481
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:185
5482
  msgid "Fax"
5483
  msgstr ""
5484
 
5485
+ #: framework/extensions/widgets/widgets/ct-contact-info/options.php:315,
5486
+ #: framework/premium/features/premium-header/items/contacts/options.php:190,
5487
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:315,
5488
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:190
5489
  msgid "Fax:"
5490
  msgstr ""
5491
 
5492
+ #: framework/extensions/widgets/widgets/ct-contact-info/options.php:375,
5493
+ #: framework/premium/features/premium-header/items/contacts/options.php:226,
5494
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:375,
5495
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:226
5496
  msgid "Email:"
5497
  msgstr ""
5498
 
5499
+ #: framework/extensions/widgets/widgets/ct-contact-info/options.php:428,
5500
+ #: framework/premium/features/premium-header/items/contacts/options.php:257,
5501
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:428,
5502
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:257
5503
  msgid "Website"
5504
  msgstr ""
5505
 
5506
+ #: framework/extensions/widgets/widgets/ct-contact-info/options.php:435,
5507
+ #: framework/premium/features/premium-header/items/contacts/options.php:262,
5508
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:435,
5509
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:262
5510
  msgid "Website:"
5511
  msgstr ""
5512
 
5513
+ #: framework/extensions/widgets/widgets/ct-contact-info/options.php:496,
5514
+ #: framework/extensions/widgets/widgets/ct-socials/options.php:99,
5515
+ #: framework/premium/features/content-blocks/options/archive.php:46,
5516
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:496,
5517
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-socials/options.php:99,
5518
+ #: build_tmp/build/framework/premium/features/content-blocks/options/archive.php:46
5519
  msgid "Small"
5520
  msgstr ""
5521
 
5522
+ #: framework/extensions/widgets/widgets/ct-contact-info/options.php:498,
5523
+ #: framework/extensions/widgets/widgets/ct-socials/options.php:101,
5524
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:498,
5525
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-socials/options.php:101
5526
  msgid "Large"
5527
  msgstr ""
5528
 
5529
+ #: framework/extensions/widgets/widgets/ct-contact-info/options.php:503,
5530
+ #: framework/extensions/widgets/widgets/ct-socials/options.php:106,
5531
+ #: framework/premium/features/premium-header/items/contacts/options.php:331,
5532
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:503,
5533
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-socials/options.php:106,
5534
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:331
5535
  msgid "Icons Shape Type"
5536
  msgstr ""
5537
 
5538
+ #: framework/extensions/widgets/widgets/ct-contact-info/options.php:511,
5539
+ #: framework/extensions/widgets/widgets/ct-socials/options.php:114,
5540
+ #: framework/premium/features/premium-header/items/contacts/options.php:339,
5541
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:511,
5542
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-socials/options.php:114,
5543
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:339
5544
  msgid "Rounded"
5545
  msgstr ""
5546
 
5547
+ #: framework/extensions/widgets/widgets/ct-contact-info/options.php:512,
5548
+ #: framework/extensions/widgets/widgets/ct-socials/options.php:115,
5549
+ #: framework/premium/features/premium-header/items/contacts/options.php:340,
5550
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:512,
5551
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-socials/options.php:115,
5552
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:340
5553
  msgid "Square"
5554
  msgstr ""
5555
 
5556
+ #: framework/extensions/widgets/widgets/ct-contact-info/options.php:522,
5557
+ #: framework/extensions/widgets/widgets/ct-socials/options.php:125,
5558
+ #: framework/premium/features/premium-header/items/contacts/options.php:351,
5559
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:522,
5560
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-socials/options.php:125,
5561
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:351
5562
  msgid "Shape Fill Type"
5563
  msgstr ""
5564
 
5565
+ #: framework/extensions/widgets/widgets/ct-contact-info/options.php:529,
5566
+ #: framework/extensions/widgets/widgets/ct-socials/options.php:132,
5567
+ #: framework/premium/features/premium-header/items/contacts/options.php:358,
5568
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:529,
5569
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-socials/options.php:132,
5570
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:358
5571
  msgid "Solid"
5572
  msgstr ""
5573
 
5574
+ #: framework/extensions/widgets/widgets/ct-contact-info/options.php:530,
5575
+ #: framework/extensions/widgets/widgets/ct-socials/options.php:133,
5576
+ #: framework/premium/features/premium-header/items/contacts/options.php:359,
5577
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:530,
5578
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-socials/options.php:133,
5579
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:359
5580
  msgid "Outline"
5581
  msgstr ""
5582
 
5583
+ #: framework/extensions/widgets/widgets/ct-contact-info/widget.php:14,
5584
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/widget.php:14
5585
  msgid "Contact info"
5586
  msgstr ""
5587
 
5588
+ #: framework/extensions/widgets/widgets/ct-facebook/options.php:22,
5589
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-facebook/options.php:22
5590
  msgid "Page URL"
5591
  msgstr ""
5592
 
5593
+ #: framework/extensions/widgets/widgets/ct-facebook/options.php:30,
5594
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-facebook/options.php:30
5595
  msgid "Profile Photos"
5596
  msgstr ""
5597
 
5598
+ #: framework/extensions/widgets/widgets/ct-facebook/options.php:37,
5599
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-facebook/options.php:37
5600
  msgid "Timeline"
5601
  msgstr ""
5602
 
5603
+ #: framework/extensions/widgets/widgets/ct-facebook/options.php:44,
5604
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-facebook/options.php:44
5605
  msgid "Cover Photo"
5606
  msgstr ""
5607
 
5608
+ #: framework/extensions/widgets/widgets/ct-facebook/options.php:51,
5609
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-facebook/options.php:51
5610
  msgid "Small Header"
5611
  msgstr ""
5612
 
5613
+ #: framework/extensions/widgets/widgets/ct-facebook/widget.php:14,
5614
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-facebook/widget.php:14
5615
  msgid "Facebook like box"
5616
  msgstr ""
5617
 
5618
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:103,
5619
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:103
5620
  msgid "Widget Design"
5621
  msgstr ""
5622
 
5623
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:108,
5624
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:108
5625
  msgid "Without Thumbnails"
5626
  msgstr ""
5627
 
5628
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:109,
5629
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:109
5630
  msgid "Small Thumbnails"
5631
  msgstr ""
5632
 
5633
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:110,
5634
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:110
5635
  msgid "Large Thumbnails"
5636
  msgstr ""
5637
 
5638
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:111,
5639
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:111
5640
  msgid "First Thumbnail Large"
5641
  msgstr ""
5642
 
5643
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:112,
5644
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:112
5645
  msgid "Rounded Thumbnails"
5646
  msgstr ""
5647
 
5648
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:113,
5649
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:113
5650
  msgid "Numbered"
5651
  msgstr ""
5652
 
5653
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:193,
5654
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:193
5655
  msgid "Sort by"
5656
  msgstr ""
5657
 
5658
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:199,
5659
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:199
5660
  msgid "Recent"
5661
  msgstr ""
5662
 
5663
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:200,
5664
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:200
5665
  msgid "Most Commented"
5666
  msgstr ""
5667
 
5668
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:201,
5669
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:201
5670
  msgid "Random"
5671
  msgstr ""
5672
 
5673
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:208,
5674
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:208
5675
  msgid "Order by"
5676
  msgstr ""
5677
 
5678
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:214,
5679
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:214
5680
  msgid "1 Week"
5681
  msgstr ""
5682
 
5683
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:215,
5684
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:215
5685
  msgid "1 Month"
5686
  msgstr ""
5687
 
5688
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:216,
5689
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:216
5690
  msgid "3 Months"
5691
  msgstr ""
5692
 
5693
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:217,
5694
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:217
5695
  msgid "6 Months"
5696
  msgstr ""
5697
 
5698
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:218,
5699
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:218
5700
  msgid "1 Year"
5701
  msgstr ""
5702
 
5703
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:225,
5704
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:225
5705
  msgid "Posts Count"
5706
  msgstr ""
5707
 
5708
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:265,
5709
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:265
5710
  msgid "Pages ID"
5711
  msgstr ""
5712
 
5713
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:269,
5714
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:269
5715
  msgid "Separate pages ID by comma. More info %shere%s."
5716
  msgstr ""
5717
 
5718
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:287,
5719
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:287
5720
  msgid "Pages Count"
5721
  msgstr ""
5722
 
5723
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:298,
5724
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:298
5725
  msgid "Show Date"
5726
  msgstr ""
5727
 
5728
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:305,
5729
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:305
5730
  msgid "Show Comments"
5731
  msgstr ""
5732
 
5733
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:312,
5734
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:312
5735
  msgid "Show Excerpt"
5736
  msgstr ""
5737
 
5738
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:324,
5739
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:324
5740
  msgid "Excerpt Lenght"
5741
  msgstr ""
5742
 
5743
+ #: framework/extensions/widgets/widgets/ct-posts/view.php:220,
5744
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/view.php:220
5745
  msgid "1 Comment"
5746
  msgstr ""
5747
 
5748
+ #: framework/extensions/widgets/widgets/ct-posts/view.php:220,
5749
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/view.php:220
5750
  msgid "% Comments"
5751
  msgstr ""
5752
 
5753
  #: framework/extensions/widgets/widgets/ct-quote/options.php:18,
5754
  #: framework/extensions/widgets/widgets/ct-quote/view.php:12,
5755
  #: framework/extensions/widgets/widgets/ct-quote/widget.php:13,
5756
+ #: framework/extensions/widgets/widgets/ct-quote/widget.php:14,
5757
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-quote/options.php:18,
5758
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-quote/view.php:12,
5759
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-quote/widget.php:13,
5760
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-quote/widget.php:14
5761
  msgid "Quote"
5762
  msgstr ""
5763
 
5764
+ #: framework/extensions/widgets/widgets/ct-quote/options.php:46,
5765
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-quote/options.php:46
5766
  msgid "Author Name"
5767
  msgstr ""
5768
 
5769
  #: framework/extensions/widgets/widgets/ct-quote/options.php:49,
5770
+ #: framework/extensions/widgets/widgets/ct-quote/view.php:18,
5771
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-quote/options.php:49,
5772
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-quote/view.php:18
5773
  msgid "John Doe"
5774
  msgstr ""
5775
 
5776
+ #: framework/extensions/widgets/widgets/ct-quote/options.php:55,
5777
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-quote/options.php:55
5778
  msgid "Author Label"
5779
  msgstr ""
5780
 
5781
+ #: framework/extensions/widgets/widgets/ct-quote/options.php:62,
5782
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-quote/options.php:62
5783
  msgid "Author Avatar"
5784
  msgstr ""
5785
 
5786
  #. translators: %s here is the author name
5787
+ #: framework/extensions/widgets/widgets/ct-quote/view.php:58,
5788
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-quote/view.php:58
5789
  msgid "By %s"
5790
  msgstr ""
5791
 
5792
  #: framework/extensions/widgets/widgets/ct-socials/options.php:18,
5793
+ #: framework/extensions/widgets/widgets/ct-socials/view.php:11,
5794
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-socials/options.php:18,
5795
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-socials/view.php:11
5796
  msgid "Social Icons"
5797
  msgstr ""
5798
 
5799
  #. translators: placeholder here means the actual URL.
5800
+ #: framework/extensions/widgets/widgets/ct-socials/options.php:28,
5801
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-socials/options.php:28
5802
  msgid ""
5803
  "Configure the social links in Customizer ➝ General ➝ %sSocial Network "
5804
  "Accounts%s."
5805
  msgstr ""
5806
 
5807
+ #: framework/extensions/widgets/widgets/ct-socials/options.php:65,
5808
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-socials/options.php:65
5809
  msgid "Open links in new tab"
5810
  msgstr ""
5811
 
5812
+ #: framework/extensions/widgets/widgets/ct-socials/options.php:73,
5813
+ #: build_tmp/build/framework/extensions/widgets/widgets/ct-socials/options.php:73
5814
  msgid "Set links to nofollow"
5815
  msgstr ""
5816
 
5817
+ #: framework/features/header/items/account/options.php:4,
5818
+ #: build_tmp/build/framework/features/header/items/account/options.php:4
5819
  msgid "Profile Page"
5820
  msgstr ""
5821
 
5822
+ #: framework/features/header/items/account/options.php:5,
5823
+ #: build_tmp/build/framework/features/header/items/account/options.php:5
5824
  msgid "Dashboard Page"
5825
  msgstr ""
5826
 
5827
  #: framework/features/header/items/account/options.php:7,
5828
+ #: framework/features/header/items/account/options.php:13,
5829
+ #: build_tmp/build/framework/features/header/items/account/options.php:7,
5830
+ #: build_tmp/build/framework/features/header/items/account/options.php:13
5831
  msgid "Custom Link"
5832
  msgstr ""
5833
 
5834
+ #: framework/features/header/items/account/options.php:8,
5835
+ #: build_tmp/build/framework/features/header/items/account/options.php:8
5836
  msgid "Logout"
5837
  msgstr ""
5838
 
5839
+ #: framework/features/header/items/account/options.php:12,
5840
+ #: build_tmp/build/framework/features/header/items/account/options.php:12
5841
  msgid "Modal"
5842
  msgstr ""
5843
 
5844
+ #: framework/features/header/items/account/options.php:28,
5845
+ #: build_tmp/build/framework/features/header/items/account/options.php:28
5846
  msgid "Customizing: Logged in State"
5847
  msgstr ""
5848
 
5849
+ #: framework/features/header/items/account/options.php:39,
5850
+ #: build_tmp/build/framework/features/header/items/account/options.php:39
5851
  msgid "Customizing: Logged out State"
5852
  msgstr ""
5853
 
5854
+ #: framework/features/header/items/account/options.php:53,
5855
+ #: build_tmp/build/framework/features/header/items/account/options.php:53
5856
  msgid "Logged In Options"
5857
  msgstr ""
5858
 
5859
+ #: framework/features/header/items/account/options.php:58,
5860
+ #: build_tmp/build/framework/features/header/items/account/options.php:58
5861
  msgid "Logged Out Options"
5862
  msgstr ""
5863
 
5864
  #: framework/features/header/items/account/options.php:78,
5865
+ #: framework/features/header/items/account/options.php:363,
5866
+ #: build_tmp/build/framework/features/header/items/account/options.php:78,
5867
+ #: build_tmp/build/framework/features/header/items/account/options.php:363
5868
  msgid "Account Action"
5869
  msgstr ""
5870
 
5871
+ #: framework/features/header/items/account/options.php:91,
5872
+ #: build_tmp/build/framework/features/header/items/account/options.php:91
5873
  msgid "Select Menu"
5874
  msgstr ""
5875
 
5876
+ #: framework/features/header/items/account/options.php:97,
5877
+ #: build_tmp/build/framework/features/header/items/account/options.php:97
5878
  msgid "Select menu..."
5879
  msgstr ""
5880
 
5881
  #. translators: placeholder here means the actual URL.
5882
+ #: framework/features/header/items/account/options.php:101,
5883
+ #: build_tmp/build/framework/features/header/items/account/options.php:101
5884
  msgid "Manage your menu items in the %sMenus screen%s."
5885
  msgstr ""
5886
 
5887
  #: framework/features/header/items/account/options.php:118,
5888
+ #: framework/features/header/items/account/options.php:378,
5889
+ #: build_tmp/build/framework/features/header/items/account/options.php:118,
5890
+ #: build_tmp/build/framework/features/header/items/account/options.php:378
5891
  msgid "Custom Page Link"
5892
  msgstr ""
5893
 
5894
  #: framework/features/header/items/account/options.php:133,
5895
+ #: framework/features/header/items/account/options.php:394,
5896
+ #: build_tmp/build/framework/features/header/items/account/options.php:133,
5897
+ #: build_tmp/build/framework/features/header/items/account/options.php:394
5898
  msgid "Account Image"
5899
  msgstr ""
5900
 
5901
+ #: framework/features/header/items/account/options.php:139,
5902
+ #: build_tmp/build/framework/features/header/items/account/options.php:139
5903
  msgid "Avatar"
5904
  msgstr ""
5905
 
5906
+ #: framework/features/header/items/account/options.php:152,
5907
+ #: build_tmp/build/framework/features/header/items/account/options.php:152
5908
  msgid "Avatar Size"
5909
  msgstr ""
5910
 
5911
  #: framework/features/header/items/account/options.php:237,
5912
+ #: framework/features/header/items/account/options.php:479,
5913
+ #: build_tmp/build/framework/features/header/items/account/options.php:237,
5914
+ #: build_tmp/build/framework/features/header/items/account/options.php:479
5915
  msgid "Type 5"
5916
  msgstr ""
5917
 
5918
  #: framework/features/header/items/account/options.php:242,
5919
+ #: framework/features/header/items/account/options.php:484,
5920
+ #: build_tmp/build/framework/features/header/items/account/options.php:242,
5921
+ #: build_tmp/build/framework/features/header/items/account/options.php:484
5922
  msgid "Type 6"
5923
  msgstr ""
5924
 
5925
+ #: framework/features/header/items/account/options.php:321,
5926
+ #: build_tmp/build/framework/features/header/items/account/options.php:321
5927
  msgid "Label Type"
5928
  msgstr ""
5929
 
5930
+ #: framework/features/header/items/account/options.php:330,
5931
+ #: build_tmp/build/framework/features/header/items/account/options.php:330
5932
+ #: static/js/screens/SiteExport.js:85
5933
+ msgid "Name"
5934
+ msgstr ""
5935
+
5936
  #: framework/features/header/items/account/options.php:340,
5937
  #: framework/features/header/items/account/options.php:563,
5938
+ #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:137,
5939
+ #: build_tmp/build/framework/features/header/items/account/options.php:340,
5940
+ #: build_tmp/build/framework/features/header/items/account/options.php:563,
5941
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:137
5942
  msgid "Label Text"
5943
  msgstr ""
5944
 
5945
  #: framework/features/header/items/account/options.php:345,
5946
+ #: framework/features/header/items/account/views/login.php:85,
5947
+ #: build_tmp/build/framework/features/header/items/account/options.php:345,
5948
+ #: build_tmp/build/framework/features/header/items/account/views/login.php:85
5949
  msgid "My Account"
5950
  msgstr ""
5951
 
5952
+ #: framework/features/header/items/account/options.php:579,
5953
+ #: build_tmp/build/framework/features/header/items/account/options.php:579
5954
  msgid "User Visibility"
5955
  msgstr ""
5956
 
5957
+ #: framework/features/header/items/account/options.php:590,
5958
+ #: build_tmp/build/framework/features/header/items/account/options.php:590
5959
  msgid "Logged In"
5960
  msgstr ""
5961
 
5962
+ #: framework/features/header/items/account/options.php:591,
5963
+ #: build_tmp/build/framework/features/header/items/account/options.php:591
5964
  msgid "Logged Out"
5965
  msgstr ""
5966
 
5967
  #: framework/features/header/items/account/options.php:608,
5968
+ #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:167,
5969
+ #: build_tmp/build/framework/features/header/items/account/options.php:608,
5970
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:167
5971
  msgid "Label Font"
5972
  msgstr ""
5973
 
5974
  #: framework/features/header/items/account/options.php:619,
5975
  #: framework/features/header/items/account/options.php:648,
5976
  #: framework/features/header/items/account/options.php:680,
5977
+ #: framework/features/header/items/account/options.php:710,
5978
+ #: build_tmp/build/framework/features/header/items/account/options.php:619,
5979
+ #: build_tmp/build/framework/features/header/items/account/options.php:648,
5980
+ #: build_tmp/build/framework/features/header/items/account/options.php:680,
5981
+ #: build_tmp/build/framework/features/header/items/account/options.php:710
5982
  msgid "Label Color"
5983
  msgstr ""
5984
 
5994
  #: framework/premium/features/premium-header/items/search-input/options.php:199,
5995
  #: framework/premium/features/premium-header/items/search-input/options.php:329,
5996
  #: framework/premium/features/premium-header/items/search-input/options.php:459,
5997
+ #: framework/premium/features/premium-header/items/search-input/options.php:595,
5998
+ #: build_tmp/build/framework/features/header/items/account/options.php:624,
5999
+ #: build_tmp/build/framework/features/header/items/account/options.php:770,
6000
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:183,
6001
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:310,
6002
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:425,
6003
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:595,
6004
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:742,
6005
+ #: build_tmp/build/framework/premium/features/premium-header/items/dark-mode-switcher/options.php:35,
6006
+ #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:208,
6007
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:199,
6008
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:329,
6009
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:459,
6010
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:595
6011
  msgid "Default State"
6012
  msgstr ""
6013
 
6023
  #: framework/premium/features/premium-header/items/search-input/options.php:204,
6024
  #: framework/premium/features/premium-header/items/search-input/options.php:334,
6025
  #: framework/premium/features/premium-header/items/search-input/options.php:464,
6026
+ #: framework/premium/features/premium-header/items/search-input/options.php:600,
6027
+ #: build_tmp/build/framework/features/header/items/account/options.php:629,
6028
+ #: build_tmp/build/framework/features/header/items/account/options.php:775,
6029
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:188,
6030
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:315,
6031
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:430,
6032
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:600,
6033
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:750,
6034
+ #: build_tmp/build/framework/premium/features/premium-header/items/dark-mode-switcher/options.php:40,
6035
+ #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:213,
6036
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:204,
6037
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:334,
6038
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:464,
6039
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:600
6040
  msgid "Transparent State"
6041
  msgstr ""
6042
 
6052
  #: framework/premium/features/premium-header/items/search-input/options.php:213,
6053
  #: framework/premium/features/premium-header/items/search-input/options.php:343,
6054
  #: framework/premium/features/premium-header/items/search-input/options.php:473,
6055
+ #: framework/premium/features/premium-header/items/search-input/options.php:609,
6056
+ #: build_tmp/build/framework/features/header/items/account/options.php:638,
6057
+ #: build_tmp/build/framework/features/header/items/account/options.php:784,
6058
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:197,
6059
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:324,
6060
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:439,
6061
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:609,
6062
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:760,
6063
+ #: build_tmp/build/framework/premium/features/premium-header/items/dark-mode-switcher/options.php:49,
6064
+ #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:222,
6065
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:213,
6066
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:343,
6067
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:473,
6068
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:609
6069
  msgid "Sticky State"
6070
  msgstr ""
6071
 
6072
+ #: framework/features/header/items/account/options.php:890,
6073
+ #: build_tmp/build/framework/features/header/items/account/options.php:890
6074
  msgid "Item Margin"
6075
  msgstr ""
6076
 
6077
+ #: framework/features/header/items/account/options.php:909,
6078
+ #: build_tmp/build/framework/features/header/items/account/options.php:909
6079
  msgid "Modal Options"
6080
  msgstr ""
6081
 
6082
+ #: framework/features/header/items/account/options.php:1044,
6083
+ #: build_tmp/build/framework/features/header/items/account/options.php:1044
6084
  msgid "Modal Background"
6085
  msgstr ""
6086
 
6087
+ #: framework/features/header/items/account/options.php:1059,
6088
+ #: build_tmp/build/framework/features/header/items/account/options.php:1059
6089
  msgid "Modal Backdrop"
6090
  msgstr ""
6091
 
6092
+ #: framework/features/header/items/account/options.php:1074,
6093
+ #: build_tmp/build/framework/features/header/items/account/options.php:1074
6094
  msgid "Modal Shadow"
6095
  msgstr ""
6096
 
6097
  #: framework/features/header/items/account/options.php:1239,
6098
+ #: framework/premium/features/premium-header/items/search-input/options.php:167,
6099
+ #: build_tmp/build/framework/features/header/items/account/options.php:1239,
6100
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:167
6101
  msgid "Element Visibility"
6102
  msgstr ""
6103
 
6104
+ #: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:409,
6105
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/dynamic-data.php:409
6106
  msgid "You have no %s fields declared for this custom post type."
6107
  msgstr ""
6108
 
6109
  #: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:421,
6110
  #: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:896,
6111
+ #: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:907,
6112
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/dynamic-data.php:421,
6113
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/dynamic-data.php:896,
6114
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/dynamic-data.php:907
6115
  msgid "Field"
6116
  msgstr ""
6117
 
6118
  #: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:433,
6119
+ #: framework/premium/features/premium-header/items/language-switcher/options.php:60,
6120
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/dynamic-data.php:433,
6121
+ #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:60
6122
  msgid "Label"
6123
  msgstr ""
6124
 
6125
+ #: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:482,
6126
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/dynamic-data.php:482
6127
  msgid "Fallback"
6128
  msgstr ""
6129
 
6130
+ #: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:494,
6131
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/dynamic-data.php:494
6132
  msgid "%s Field"
6133
  msgstr ""
6134
 
6135
+ #: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:880,
6136
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/dynamic-data.php:880
6137
  msgid "Custom Field"
6138
  msgstr ""
6139
 
6140
+ #: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:894,
6141
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/dynamic-data.php:894
6142
  msgid "%s %s Font"
6143
  msgstr ""
6144
 
6145
+ #: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:905,
6146
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/dynamic-data.php:905
6147
  msgid "%s %s Color"
6148
  msgstr ""
6149
 
6150
  #: framework/premium/extensions/post-types-extra/includes/estimated-read-time.php:9,
6151
+ #: framework/premium/extensions/post-types-extra/includes/estimated-read-time.php:66,
6152
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/estimated-read-time.php:9,
6153
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/estimated-read-time.php:66
6154
  msgid "Read Time"
6155
  msgstr ""
6156
 
6157
+ #: framework/premium/extensions/post-types-extra/includes/estimated-read-time.php:123,
6158
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/estimated-read-time.php:123
6159
  msgid "%s min"
6160
  msgid_plural "%s mins"
6161
  msgstr[0] ""
6162
  msgstr[1] ""
6163
 
6164
+ #: framework/premium/extensions/post-types-extra/includes/filtering.php:286,
6165
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering.php:286
6166
  msgid "All"
6167
  msgstr ""
6168
 
6169
+ #: framework/premium/extensions/post-types-extra/includes/taxonomies-options.php:161,
6170
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/taxonomies-options.php:161
6171
  msgid "Featured Image"
6172
  msgstr ""
6173
 
6174
+ #: framework/premium/extensions/post-types-extra/includes/taxonomies-options.php:166,
6175
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/taxonomies-options.php:166
6176
  msgid "Accent Color"
6177
  msgstr ""
6178
 
6179
  #: framework/premium/extensions/shortcuts/views/bar.php:49,
6180
+ #: framework/premium/extensions/woocommerce-extra/includes/wish-list.php:143,
6181
+ #: build_tmp/build/framework/premium/extensions/shortcuts/views/bar.php:49,
6182
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list.php:143
6183
  msgid "Wish List"
6184
  msgstr ""
6185
 
6186
+ #: framework/premium/extensions/woocommerce-extra/includes/wish-list-helpers.php:38,
6187
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-helpers.php:38
6188
  msgid "Wishlist icon"
6189
  msgstr ""
6190
 
6191
  #: framework/premium/extensions/woocommerce-extra/includes/wish-list-helpers.php:46,
6192
+ #: framework/premium/extensions/woocommerce-extra/includes/wish-list-helpers.php:54,
6193
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-helpers.php:46,
6194
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-helpers.php:54
6195
  msgid "Add to wishlist"
6196
  msgstr ""
6197
 
6198
+ #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:9,
6199
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:9
6200
  msgid "Select a page"
6201
  msgstr ""
6202
 
6203
+ #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:18,
6204
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:18
6205
  msgid "Products Wishlist"
6206
  msgstr ""
6207
 
6208
+ #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:28,
6209
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:28
6210
  msgid "Show Wishlist Page To"
6211
  msgstr ""
6212
 
6213
+ #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:34,
6214
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:34
6215
  msgid "Logged Users"
6216
  msgstr ""
6217
 
6218
+ #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:35,
6219
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:35
6220
  msgid "All Users"
6221
  msgstr ""
6222
 
6223
+ #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:45,
6224
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:45
6225
  msgid "Wish List Page"
6226
  msgstr ""
6227
 
6228
+ #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:51,
6229
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:51
6230
  msgid ""
6231
  "The page you select here will display the wish list for your logged out "
6232
  "users."
6233
  msgstr ""
6234
 
6235
+ #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:60,
6236
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:60
6237
  msgid "Display Wishlist Button On"
6238
  msgstr ""
6239
 
6240
+ #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:64,
6241
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:64
6242
  msgid "Archive Pages"
6243
  msgstr ""
6244
 
6245
+ #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:73,
6246
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:73
6247
  msgid "Single Product Pages"
6248
  msgstr ""
6249
 
6250
+ #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:82,
6251
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:82
6252
  msgid "Quick View Modal"
6253
  msgstr ""
6254
 
6255
+ #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:95,
6256
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:95
6257
  msgid "AJAX Add To Cart"
6258
  msgstr ""
6259
 
6260
+ #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:101,
6261
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:101
6262
  msgid "Enable AJAX loading"
6263
  msgstr ""
6264
 
6265
+ #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:137,
6266
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:137
6267
  msgid "Archive Button"
6268
  msgstr ""
6269
 
6275
  #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:243,
6276
  #: framework/premium/features/premium-header/items/language-switcher/options.php:254,
6277
  #: framework/premium/features/premium-header/items/language-switcher/options.php:284,
6278
+ #: framework/premium/features/premium-header/items/language-switcher/options.php:313,
6279
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:165,
6280
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:197,
6281
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:241,
6282
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:317,
6283
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:207,
6284
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:243,
6285
+ #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:254,
6286
+ #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:284,
6287
+ #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:313
6288
  msgid "Hover/Active"
6289
  msgstr ""
6290
 
6291
+ #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:214,
6292
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:214
6293
  msgid "Single Product Button"
6294
  msgstr ""
6295
 
6296
+ #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:290,
6297
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:290
6298
  msgid "Quick View Modal Button"
6299
  msgstr ""
6300
 
6301
+ #: framework/premium/extensions/woocommerce-extra/includes/wish-list-table.php:192,
6302
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-table.php:192
6303
  msgid "You don't have any products in your wish list yet."
6304
  msgstr ""
6305
 
6306
+ #: framework/premium/extensions/woocommerce-extra/includes/wish-list-table.php:35,
6307
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-table.php:35
6308
  msgid "Add to cart"
6309
  msgstr ""
6310
 
6311
  #: framework/premium/extensions/woocommerce-extra/includes/wish-list-table.php:128,
6312
+ #: framework/premium/extensions/woocommerce-extra/includes/wish-list-table.php:152,
6313
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-table.php:128,
6314
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-table.php:152
6315
  msgid "Remove Product"
6316
  msgstr ""
6317
 
6318
+ #: framework/premium/extensions/woocommerce-extra/includes/woo-import-export.php:34,
6319
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/woo-import-export.php:34
6320
  msgid "Blocksy Variation Images"
6321
  msgstr ""
6322
 
6323
  #: framework/premium/features/content-blocks/options/404.php:33,
6324
  #: framework/premium/features/content-blocks/options/header.php:35,
6325
  #: framework/premium/features/content-blocks/options/hook.php:40,
6326
+ #: framework/premium/features/content-blocks/options/popup.php:42,
6327
+ #: build_tmp/build/framework/premium/features/content-blocks/options/404.php:33,
6328
+ #: build_tmp/build/framework/premium/features/content-blocks/options/header.php:35,
6329
+ #: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:40,
6330
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:42
6331
  msgid "Container Structure"
6332
  msgstr ""
6333
 
6334
  #: framework/premium/features/content-blocks/options/404.php:65,
6335
  #: framework/premium/features/content-blocks/options/header.php:63,
6336
+ #: framework/premium/features/content-blocks/options/hook.php:68,
6337
+ #: build_tmp/build/framework/premium/features/content-blocks/options/404.php:65,
6338
+ #: build_tmp/build/framework/premium/features/content-blocks/options/header.php:63,
6339
+ #: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:68
6340
  msgid "Narrow Width"
6341
  msgstr ""
6342
 
6343
  #: framework/premium/features/content-blocks/options/404.php:70,
6344
  #: framework/premium/features/content-blocks/options/header.php:68,
6345
+ #: framework/premium/features/content-blocks/options/hook.php:73,
6346
+ #: build_tmp/build/framework/premium/features/content-blocks/options/404.php:70,
6347
+ #: build_tmp/build/framework/premium/features/content-blocks/options/header.php:68,
6348
+ #: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:73
6349
  msgid "Normal Width"
6350
  msgstr ""
6351
 
6353
  #: framework/premium/features/content-blocks/options/archive.php:126,
6354
  #: framework/premium/features/content-blocks/options/header.php:74,
6355
  #: framework/premium/features/content-blocks/options/hook.php:79,
6356
+ #: framework/premium/features/content-blocks/options/single.php:47,
6357
+ #: build_tmp/build/framework/premium/features/content-blocks/options/404.php:76,
6358
+ #: build_tmp/build/framework/premium/features/content-blocks/options/archive.php:126,
6359
+ #: build_tmp/build/framework/premium/features/content-blocks/options/header.php:74,
6360
+ #: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:79,
6361
+ #: build_tmp/build/framework/premium/features/content-blocks/options/single.php:47
6362
  msgid "Content Area Style"
6363
  msgstr ""
6364
 
6365
  #: framework/premium/features/content-blocks/options/404.php:90,
6366
  #: framework/premium/features/content-blocks/options/archive.php:140,
6367
  #: framework/premium/features/content-blocks/options/header.php:88,
6368
+ #: framework/premium/features/content-blocks/options/hook.php:93,
6369
+ #: build_tmp/build/framework/premium/features/content-blocks/options/404.php:90,
6370
+ #: build_tmp/build/framework/premium/features/content-blocks/options/archive.php:140,
6371
+ #: build_tmp/build/framework/premium/features/content-blocks/options/header.php:88,
6372
+ #: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:93
6373
  msgid "Content Area Vertical Spacing"
6374
  msgstr ""
6375
 
6377
  #: framework/premium/features/content-blocks/options/archive.php:151,
6378
  #: framework/premium/features/content-blocks/options/header.php:99,
6379
  #: framework/premium/features/content-blocks/options/hook.php:104,
6380
+ #: framework/premium/features/content-blocks/options/single.php:72,
6381
+ #: build_tmp/build/framework/premium/features/content-blocks/options/404.php:101,
6382
+ #: build_tmp/build/framework/premium/features/content-blocks/options/archive.php:151,
6383
+ #: build_tmp/build/framework/premium/features/content-blocks/options/header.php:99,
6384
+ #: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:104,
6385
+ #: build_tmp/build/framework/premium/features/content-blocks/options/single.php:72
6386
  msgid "Top & Bottom"
6387
  msgstr ""
6388
 
6390
  #: framework/premium/features/content-blocks/options/archive.php:154,
6391
  #: framework/premium/features/content-blocks/options/header.php:102,
6392
  #: framework/premium/features/content-blocks/options/hook.php:107,
6393
+ #: framework/premium/features/content-blocks/options/single.php:75,
6394
+ #: build_tmp/build/framework/premium/features/content-blocks/options/404.php:104,
6395
+ #: build_tmp/build/framework/premium/features/content-blocks/options/archive.php:154,
6396
+ #: build_tmp/build/framework/premium/features/content-blocks/options/header.php:102,
6397
+ #: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:107,
6398
+ #: build_tmp/build/framework/premium/features/content-blocks/options/single.php:75
6399
  msgid "Only Top"
6400
  msgstr ""
6401
 
6403
  #: framework/premium/features/content-blocks/options/archive.php:157,
6404
  #: framework/premium/features/content-blocks/options/header.php:105,
6405
  #: framework/premium/features/content-blocks/options/hook.php:110,
6406
+ #: framework/premium/features/content-blocks/options/single.php:78,
6407
+ #: build_tmp/build/framework/premium/features/content-blocks/options/404.php:107,
6408
+ #: build_tmp/build/framework/premium/features/content-blocks/options/archive.php:157,
6409
+ #: build_tmp/build/framework/premium/features/content-blocks/options/header.php:105,
6410
+ #: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:110,
6411
+ #: build_tmp/build/framework/premium/features/content-blocks/options/single.php:78
6412
  msgid "Only Bottom"
6413
  msgstr ""
6414
 
6415
+ #: framework/premium/features/content-blocks/options/archive.php:11,
6416
+ #: build_tmp/build/framework/premium/features/content-blocks/options/archive.php:11
6417
  msgid "Replacement Behavior"
6418
  msgstr ""
6419
 
6420
+ #: framework/premium/features/content-blocks/options/archive.php:17,
6421
+ #: build_tmp/build/framework/premium/features/content-blocks/options/archive.php:17
6422
  msgid "Only Card"
6423
  msgstr ""
6424
 
6425
+ #: framework/premium/features/content-blocks/options/archive.php:18,
6426
+ #: build_tmp/build/framework/premium/features/content-blocks/options/archive.php:18
6427
  msgid "Full Page"
6428
  msgstr ""
6429
 
6430
  #: framework/premium/features/content-blocks/options/archive.php:28,
6431
+ #: framework/premium/features/content-blocks/options/single.php:105,
6432
+ #: build_tmp/build/framework/premium/features/content-blocks/options/archive.php:28,
6433
+ #: build_tmp/build/framework/premium/features/content-blocks/options/single.php:105
6434
  msgid "Dynamic Content Preview"
6435
  msgstr ""
6436
 
6437
+ #: framework/premium/features/content-blocks/options/archive.php:35,
6438
+ #: build_tmp/build/framework/premium/features/content-blocks/options/archive.php:35
6439
  msgid ""
6440
  "Select a post/page to preview it's content inside the editor while building "
6441
  "the archive."
6442
  msgstr ""
6443
 
6444
+ #: framework/premium/features/content-blocks/options/archive.php:39,
6445
+ #: build_tmp/build/framework/premium/features/content-blocks/options/archive.php:39
6446
  msgid "Editor/Card Width"
6447
  msgstr ""
6448
 
6449
+ #: framework/premium/features/content-blocks/options/archive.php:50,
6450
+ #: build_tmp/build/framework/premium/features/content-blocks/options/archive.php:50
6451
  msgid ""
6452
  "Set the editor width for better understanging the layout you are building "
6453
  "(just for preview purpose, this option won't apply in frontend)."
6454
  msgstr ""
6455
 
6456
+ #: framework/premium/features/content-blocks/options/archive.php:71,
6457
+ #: build_tmp/build/framework/premium/features/content-blocks/options/archive.php:71
6458
  msgid "Default Card Layout"
6459
  msgstr ""
6460
 
6461
+ #: framework/premium/features/content-blocks/options/archive.php:76,
6462
+ #: build_tmp/build/framework/premium/features/content-blocks/options/archive.php:76
6463
  msgid ""
6464
  "Inherit card wrapper settings from Customizer (background color, spacing, "
6465
  "shadow)."
6466
  msgstr ""
6467
 
6468
+ #: framework/premium/features/content-blocks/options/archive.php:91,
6469
+ #: build_tmp/build/framework/premium/features/content-blocks/options/archive.php:91
6470
  msgid "Page Structure"
6471
  msgstr ""
6472
 
6473
  #: framework/premium/features/content-blocks/options/archive.php:207,
6474
  #: framework/premium/features/content-blocks/options/hook.php:256,
6475
  #: framework/premium/features/content-blocks/options/popup.php:314,
6476
+ #: framework/premium/features/content-blocks/options/single.php:140,
6477
+ #: build_tmp/build/framework/premium/features/content-blocks/options/archive.php:207,
6478
+ #: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:256,
6479
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:314,
6480
+ #: build_tmp/build/framework/premium/features/content-blocks/options/single.php:140
6481
  msgid "Expiration Date/Time"
6482
  msgstr ""
6483
 
6484
  #: framework/premium/features/content-blocks/options/hook.php:23,
6485
+ #: framework/premium/features/content-blocks/options/hook.php:181,
6486
+ #: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:23,
6487
+ #: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:181
6488
  #: framework/premium/static/js/options/MultipleLocationsSelect.js:72
6489
  msgid "Custom Hook"
6490
  msgstr ""
6491
 
6492
+ #: framework/premium/features/content-blocks/options/hook.php:148,
6493
+ #: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:148
6494
  msgid "Location & Priority"
6495
  msgstr ""
6496
 
6497
+ #: framework/premium/features/content-blocks/options/hook.php:283,
6498
+ #: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:283
6499
  msgid "Block Position"
6500
  msgstr ""
6501
 
6502
+ #: framework/premium/features/content-blocks/options/hook.php:290,
6503
+ #: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:290
6504
  msgid "Fixed"
6505
  msgstr ""
6506
 
6507
+ #: framework/premium/features/content-blocks/options/hook.php:300,
6508
+ #: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:300
6509
  msgid "Location"
6510
  msgstr ""
6511
 
6512
+ #: framework/premium/features/content-blocks/options/hook.php:313,
6513
+ #: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:313
6514
  msgid "Top Offset"
6515
  msgstr ""
6516
 
6517
+ #: framework/premium/features/content-blocks/options/hook.php:317,
6518
+ #: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:317
6519
  msgid "Bottom Offset"
6520
  msgstr ""
6521
 
6522
+ #: framework/premium/features/content-blocks/options/popup.php:50,
6523
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:50
6524
  msgid "Popup Position"
6525
  msgstr ""
6526
 
6527
+ #: framework/premium/features/content-blocks/options/popup.php:57,
6528
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:57
6529
  msgid "Popup Size"
6530
  msgstr ""
6531
 
6532
+ #: framework/premium/features/content-blocks/options/popup.php:63,
6533
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:63
6534
  msgid "Small Size"
6535
  msgstr ""
6536
 
6537
+ #: framework/premium/features/content-blocks/options/popup.php:64,
6538
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:64
6539
  msgid "Medium Size"
6540
  msgstr ""
6541
 
6542
+ #: framework/premium/features/content-blocks/options/popup.php:65,
6543
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:65
6544
  msgid "Large Size"
6545
  msgstr ""
6546
 
6547
+ #: framework/premium/features/content-blocks/options/popup.php:66,
6548
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:66
6549
  msgid "Custom Size"
6550
  msgstr ""
6551
 
6552
+ #: framework/premium/features/content-blocks/options/popup.php:76,
6553
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:76
6554
  msgid "Max Width"
6555
  msgstr ""
6556
 
6557
+ #: framework/premium/features/content-blocks/options/popup.php:92,
6558
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:92
6559
  msgid "Max Height"
6560
  msgstr ""
6561
 
6562
+ #: framework/premium/features/content-blocks/options/popup.php:111,
6563
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:111
6564
  msgid "Popup Animation"
6565
  msgstr ""
6566
 
6567
+ #: framework/premium/features/content-blocks/options/popup.php:117,
6568
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:117
6569
  msgid "Fade in fade out"
6570
  msgstr ""
6571
 
6572
+ #: framework/premium/features/content-blocks/options/popup.php:118,
6573
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:118
6574
  msgid "Zoom in zoom out"
6575
  msgstr ""
6576
 
6577
+ #: framework/premium/features/content-blocks/options/popup.php:119,
6578
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:119
6579
  msgid "Slide in from left"
6580
  msgstr ""
6581
 
6582
+ #: framework/premium/features/content-blocks/options/popup.php:120,
6583
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:120
6584
  msgid "Slide in from right"
6585
  msgstr ""
6586
 
6587
+ #: framework/premium/features/content-blocks/options/popup.php:121,
6588
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:121
6589
  msgid "Slide in from top"
6590
  msgstr ""
6591
 
6592
+ #: framework/premium/features/content-blocks/options/popup.php:122,
6593
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:122
6594
  msgid "Slide in from bottom"
6595
  msgstr ""
6596
 
6597
+ #: framework/premium/features/content-blocks/options/popup.php:127,
6598
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:127
6599
  msgid "Animation Speed"
6600
  msgstr ""
6601
 
6602
+ #: framework/premium/features/content-blocks/options/popup.php:144,
6603
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:144
6604
  msgid "Entrance Value"
6605
  msgstr ""
6606
 
6607
+ #: framework/premium/features/content-blocks/options/popup.php:156,
6608
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:156
6609
  msgid "Trigger Condition"
6610
  msgstr ""
6611
 
6612
+ #: framework/premium/features/content-blocks/options/popup.php:181,
6613
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:181
6614
  msgid "Element Class"
6615
  msgstr ""
6616
 
6617
+ #: framework/premium/features/content-blocks/options/popup.php:188,
6618
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:188
6619
  msgid "Separate each class by comma if you have multiple elements."
6620
  msgstr ""
6621
 
6622
+ #: framework/premium/features/content-blocks/options/popup.php:200,
6623
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:200
6624
  msgid "Scroll Direction"
6625
  msgstr ""
6626
 
6627
+ #: framework/premium/features/content-blocks/options/popup.php:205,
6628
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:205
6629
  msgid "Scroll Down"
6630
  msgstr ""
6631
 
6632
+ #: framework/premium/features/content-blocks/options/popup.php:206,
6633
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:206
6634
  msgid "Scroll Up"
6635
  msgstr ""
6636
 
6637
+ #: framework/premium/features/content-blocks/options/popup.php:211,
6638
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:211
6639
  msgid "Scroll Distance"
6640
  msgstr ""
6641
 
6642
+ #: framework/premium/features/content-blocks/options/popup.php:221,
6643
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:221
6644
  msgid "Set the scroll distance till the popup block will appear."
6645
  msgstr ""
6646
 
6647
+ #: framework/premium/features/content-blocks/options/popup.php:233,
6648
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:233
6649
  msgid "Inactivity Time"
6650
  msgstr ""
6651
 
6652
+ #: framework/premium/features/content-blocks/options/popup.php:239,
6653
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:239
6654
  msgid "Set the inactivity time (in seconds) till the popup block will appear."
6655
  msgstr ""
6656
 
6657
+ #: framework/premium/features/content-blocks/options/popup.php:251,
6658
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:251
6659
  msgid "After X Time"
6660
  msgstr ""
6661
 
6662
+ #: framework/premium/features/content-blocks/options/popup.php:257,
6663
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:257
6664
  msgid "Set after how much time (in seconds) the popup block will appear."
6665
  msgstr ""
6666
 
6667
+ #: framework/premium/features/content-blocks/options/popup.php:269,
6668
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:269
6669
  msgid "After X Pages"
6670
  msgstr ""
6671
 
6672
+ #: framework/premium/features/content-blocks/options/popup.php:275,
6673
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:275
6674
  msgid "Set after how many visited pages the popup block will appear."
6675
  msgstr ""
6676
 
6677
+ #: framework/premium/features/content-blocks/options/popup.php:287,
6678
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:287
6679
  msgid "Trigger Popup Only Once"
6680
  msgstr ""
6681
 
6682
+ #: framework/premium/features/content-blocks/options/popup.php:290,
6683
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:290
6684
  msgid ""
6685
  "If the close button is clicked the popup won't be triggered anymore for the "
6686
  "current visitor."
6687
  msgstr ""
6688
 
6689
+ #: framework/premium/features/content-blocks/options/popup.php:366,
6690
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:366
6691
  msgid "Padding"
6692
  msgstr ""
6693
 
6694
  #: framework/premium/features/content-blocks/options/popup.php:376,
6695
  #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:266,
6696
+ #: framework/premium/features/premium-header/items/language-switcher/options.php:465,
6697
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:376,
6698
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:266,
6699
+ #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:465
6700
  msgid "Border Radius"
6701
  msgstr ""
6702
 
6703
+ #: framework/premium/features/content-blocks/options/popup.php:405,
6704
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:405
6705
  msgid "Popup Offset"
6706
  msgstr ""
6707
 
6708
+ #: framework/premium/features/content-blocks/options/popup.php:415,
6709
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:415
6710
  msgid "Container Overflow"
6711
  msgstr ""
6712
 
6713
+ #: framework/premium/features/content-blocks/options/popup.php:422,
6714
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:422
6715
  msgid "Hidden"
6716
  msgstr ""
6717
 
6718
+ #: framework/premium/features/content-blocks/options/popup.php:423,
6719
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:423
6720
  msgid "Visible"
6721
  msgstr ""
6722
 
6723
+ #: framework/premium/features/content-blocks/options/popup.php:424,
6724
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:424
6725
  msgid "Scroll"
6726
  msgstr ""
6727
 
6728
+ #: framework/premium/features/content-blocks/options/popup.php:426,
6729
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:426
6730
  msgid ""
6731
  "Control what happens to the content that is too big to fit into the popup."
6732
  msgstr ""
6733
 
6734
+ #: framework/premium/features/content-blocks/options/popup.php:430,
6735
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:430
6736
  msgid "Close Button"
6737
  msgstr ""
6738
 
6739
+ #: framework/premium/features/content-blocks/options/popup.php:438,
6740
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:438
6741
  msgid "Inside"
6742
  msgstr ""
6743
 
6744
+ #: framework/premium/features/content-blocks/options/popup.php:439,
6745
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:439
6746
  msgid "Outside"
6747
  msgstr ""
6748
 
6749
+ #: framework/premium/features/content-blocks/options/popup.php:513,
6750
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:513
6751
  msgid "Popup Background"
6752
  msgstr ""
6753
 
6754
+ #: framework/premium/features/content-blocks/options/popup.php:527,
6755
+ #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:527
6756
  msgid "Popup Backdrop Background"
6757
  msgstr ""
6758
 
6759
+ #: framework/premium/features/content-blocks/options/single.php:61,
6760
+ #: build_tmp/build/framework/premium/features/content-blocks/options/single.php:61
6761
  msgid "Content Area Vel Spacing"
6762
  msgstr ""
6763
 
6764
+ #: framework/premium/features/content-blocks/options/single.php:111,
6765
+ #: build_tmp/build/framework/premium/features/content-blocks/options/single.php:111
6766
  msgid ""
6767
  "Select a post/page to preview it's content inside the editor while building "
6768
  "the post/page."
6769
  msgstr ""
6770
 
6771
+ #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:25,
6772
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:25
6773
  msgid "Posts Filter"
6774
  msgstr ""
6775
 
6776
+ #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:60,
6777
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:60
6778
  msgid "Filtering Behavior"
6779
  msgstr ""
6780
 
6781
+ #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:68,
6782
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:68
6783
  msgid "Instant Reload"
6784
  msgstr ""
6785
 
6786
+ #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:69,
6787
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:69
6788
  msgid "Page Reload"
6789
  msgstr ""
6790
 
6791
+ #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:82,
6792
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:82
6793
  msgid "Filter Source"
6794
  msgstr ""
6795
 
6796
+ #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:92,
6797
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:92
6798
  msgid "Items Horizontal Spacing"
6799
  msgstr ""
6800
 
6801
  #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:104,
6802
+ #: framework/premium/features/premium-header/items/language-switcher/options.php:360,
6803
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:104,
6804
+ #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:360
6805
  msgid "Items Vertical Spacing"
6806
  msgstr ""
6807
 
6808
+ #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:116,
6809
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:116
6810
  msgid "Container Bottom Spacing"
6811
  msgstr ""
6812
 
6813
+ #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:128,
6814
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:128
6815
  msgid "Horizontal Alignment"
6816
  msgstr ""
6817
 
6818
+ #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:251,
6819
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:251
6820
  msgid "Button Padding"
6821
  msgstr ""
6822
 
6823
+ #: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:4,
6824
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:4
6825
  msgid "Read Progress"
6826
  msgstr ""
6827
 
6828
+ #: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:24,
6829
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:24
6830
  msgid "Indicator Height"
6831
  msgstr ""
6832
 
6833
+ #: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:34,
6834
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:34
6835
  msgid "Auto Hide"
6836
  msgstr ""
6837
 
6838
+ #: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:38,
6839
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:38
6840
  msgid ""
6841
  "Automatically hide the read progress bar once you arrive at the bottom of "
6842
  "the article."
6843
  msgstr ""
6844
 
6845
+ #: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:71,
6846
+ #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:71
6847
  msgid "Main Color"
6848
  msgstr ""
6849
 
6850
+ #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:84,
6851
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:84
6852
  msgid "Icon Badge"
6853
  msgstr ""
6854
 
6855
+ #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:178,
6856
+ #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:178
6857
  msgid "Label Font Color"
6858
  msgstr ""
6859
 
6860
+ #: framework/premium/features/premium-header/items/contacts/config.php:4,
6861
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/config.php:4
6862
  msgid "Contacts"
6863
  msgstr ""
6864
 
6865
+ #: framework/premium/features/premium-header/items/contacts/options.php:300,
6866
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:300
6867
  msgid "Open Links In New Tab"
6868
  msgstr ""
6869
 
6870
  #: framework/premium/features/premium-header/items/contacts/options.php:320,
6871
+ #: framework/premium/features/premium-header/items/language-switcher/options.php:95,
6872
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:320,
6873
+ #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:95
6874
  msgid "Items Spacing"
6875
  msgstr ""
6876
 
6877
+ #: framework/premium/features/premium-header/items/contacts/options.php:369,
6878
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:369
6879
  msgid "Items Direction"
6880
  msgstr ""
6881
 
6882
+ #: framework/premium/features/premium-header/items/contacts/options.php:375,
6883
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:375
6884
  msgid "Horizontal"
6885
  msgstr ""
6886
 
6887
+ #: framework/premium/features/premium-header/items/contacts/options.php:376,
6888
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:376
6889
  msgid "Vertical"
6890
  msgstr ""
6891
 
6892
  #: framework/premium/features/premium-header/items/contacts/options.php:730,
6893
  #: framework/premium/features/premium-header/items/contacts/options.php:772,
6894
  #: framework/premium/features/premium-header/items/contacts/options.php:811,
6895
+ #: framework/premium/features/premium-header/items/contacts/options.php:850,
6896
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:730,
6897
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:772,
6898
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:811,
6899
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:850
6900
  msgid "Icons Background Color"
6901
  msgstr ""
6902
 
6903
  #: framework/premium/features/premium-header/items/contacts/options.php:734,
6904
  #: framework/premium/features/premium-header/items/contacts/options.php:776,
6905
  #: framework/premium/features/premium-header/items/contacts/options.php:815,
6906
+ #: framework/premium/features/premium-header/items/contacts/options.php:854,
6907
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:734,
6908
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:776,
6909
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:815,
6910
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:854
6911
  msgid "Icons Border Color"
6912
  msgstr ""
6913
 
6915
  #: framework/premium/features/premium-header/items/divider/options.php:107,
6916
  #: framework/premium/features/premium-header/items/divider/options.php:126,
6917
  #: framework/premium/features/premium-header/items/language-switcher/options.php:323,
6918
+ #: framework/premium/features/premium-header/items/search-input/options.php:734,
6919
+ #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:895,
6920
+ #: build_tmp/build/framework/premium/features/premium-header/items/divider/options.php:107,
6921
+ #: build_tmp/build/framework/premium/features/premium-header/items/divider/options.php:126,
6922
+ #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:323,
6923
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:734
6924
  msgid "Margin"
6925
  msgstr ""
6926
 
6927
+ #: framework/premium/features/premium-header/items/dark-mode-switcher/config.php:5,
6928
+ #: build_tmp/build/framework/premium/features/premium-header/items/dark-mode-switcher/config.php:5
6929
  msgid "Dark Mode"
6930
  msgstr ""
6931
 
6932
+ #: framework/premium/features/premium-header/items/divider/config.php:4,
6933
+ #: build_tmp/build/framework/premium/features/premium-header/items/divider/config.php:4
6934
  msgid "Divider"
6935
  msgstr ""
6936
 
6937
+ #: framework/premium/features/premium-header/items/divider/options.php:6,
6938
+ #: build_tmp/build/framework/premium/features/premium-header/items/divider/options.php:6
6939
  msgid "Size"
6940
  msgstr ""
6941
 
6942
+ #: framework/premium/features/premium-header/items/language-switcher/options.php:17,
6943
+ #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:17
6944
  msgid "Top Level Options"
6945
  msgstr ""
6946
 
6947
+ #: framework/premium/features/premium-header/items/language-switcher/options.php:37,
6948
+ #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:37
6949
  msgid "Dropdown"
6950
  msgstr ""
6951
 
6952
+ #: framework/premium/features/premium-header/items/language-switcher/options.php:47,
6953
+ #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:47
6954
  msgid "Display"
6955
  msgstr ""
6956
 
6957
+ #: framework/premium/features/premium-header/items/language-switcher/options.php:59,
6958
+ #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:59
6959
  msgid "Flag"
6960
  msgstr ""
6961
 
6962
+ #: framework/premium/features/premium-header/items/language-switcher/options.php:73,
6963
+ #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:73
6964
  msgid "Label Style"
6965
  msgstr ""
6966
 
6967
+ #: framework/premium/features/premium-header/items/language-switcher/options.php:79,
6968
+ #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:79
6969
  msgid "Long"
6970
  msgstr ""
6971
 
6972
+ #: framework/premium/features/premium-header/items/language-switcher/options.php:80,
6973
+ #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:80
6974
  msgid "Short"
6975
  msgstr ""
6976
 
6977
+ #: framework/premium/features/premium-header/items/language-switcher/options.php:112,
6978
+ #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:112
6979
  msgid "Hide Current Language"
6980
  msgstr ""
6981
 
6982
+ #: framework/premium/features/premium-header/items/language-switcher/options.php:343,
6983
+ #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:343
6984
  msgid "Dropdown Options"
6985
  msgstr ""
6986
 
6987
+ #: framework/premium/features/premium-header/items/language-switcher/options.php:352,
6988
+ #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:352
6989
  msgid "Dropdown Top Offset"
6990
  msgstr ""
6991
 
6992
+ #: framework/premium/features/premium-header/items/search-input/config.php:4,
6993
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/config.php:4
6994
  msgid "Search Box"
6995
  msgstr ""
6996
 
6997
+ #: framework/premium/features/premium-header/items/search-input/options.php:42,
6998
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:42
6999
  msgid "Placeholder Text"
7000
  msgstr ""
7001
 
7002
+ #: framework/premium/features/premium-header/items/search-input/options.php:52,
7003
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:52
7004
  msgid "Input Maximum Width"
7005
  msgstr ""
7006
 
7007
+ #: framework/premium/features/premium-header/items/search-input/options.php:64,
7008
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:64
7009
  msgid "Input Height"
7010
  msgstr ""
7011
 
7012
+ #: framework/premium/features/premium-header/items/search-input/options.php:89,
7013
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:89
7014
  msgid "Live Results"
7015
  msgstr ""
7016
 
7017
+ #: framework/premium/features/premium-header/items/search-input/options.php:100,
7018
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:100
7019
  msgid "Live Results Images"
7020
  msgstr ""
7021
 
7022
+ #: framework/premium/features/premium-header/items/search-input/options.php:111,
7023
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:111
7024
  msgid "Search Through Criteria"
7025
  msgstr ""
7026
 
7027
+ #: framework/premium/features/premium-header/items/search-input/options.php:112,
7028
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:112
7029
  msgid "Chose in which post types do you want to perform searches."
7030
  msgstr ""
7031
 
7032
  #: framework/premium/features/premium-header/items/search-input/options.php:324,
7033
  #: framework/premium/features/premium-header/items/search-input/options.php:353,
7034
  #: framework/premium/features/premium-header/items/search-input/options.php:385,
7035
+ #: framework/premium/features/premium-header/items/search-input/options.php:415,
7036
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:324,
7037
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:353,
7038
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:385,
7039
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:415
7040
  msgid "Input Icon Color"
7041
  msgstr ""
7042
 
7043
+ #: framework/premium/features/premium-header/items/search-input/options.php:765,
7044
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:765
7045
  msgid "Dropdown Text Color"
7046
  msgstr ""
7047
 
7048
+ #: framework/premium/features/premium-header/items/search-input/options.php:796,
7049
+ #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:796
7050
  msgid "Dropdown Background"
7051
  msgstr ""
7052
 
7053
+ #: framework/premium/features/premium-header/items/widget-area-1/config.php:4,
7054
+ #: build_tmp/build/framework/premium/features/premium-header/items/widget-area-1/config.php:4
7055
  msgid "Widget Area"
7056
  msgstr ""
7057
 
readme.txt CHANGED
@@ -5,7 +5,7 @@ Requires PHP: 7.0
5
  Tested up to: 6.0
6
  License: GPLv2 or later
7
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
8
- Stable tag: 1.8.37
9
 
10
  == Description ==
11
 
@@ -23,6 +23,11 @@ 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.37: 2022-06-28
27
  - Improvement: Account register form better handle when Dokan plugin is active
28
  - Improvement: Correct calculation of SVG dimensions during the demo import process
5
  Tested up to: 6.0
6
  License: GPLv2 or later
7
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
8
+ Stable tag: 1.8.38
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.38: 2022-07-07
27
+ - Improvement: Icons for the footer contacts element now respect the column alignment
28
+ - Improvement: Newsletter subscribe form has better compatibility with accessibility apps
29
+ - Fix: Contacts footer element icons now show up correctly
30
+
31
  1.8.37: 2022-06-28
32
  - Improvement: Account register form better handle when Dokan plugin is active
33
  - Improvement: Correct calculation of SVG dimensions during the demo import process
static/bundle/account-lazy.min.css CHANGED
@@ -1,5 +1,5 @@
1
  /**
2
- * - v1.8.37
3
  *
4
  * Copyright (c) 2022
5
  * Licensed GPLv2+
1
  /**
2
+ * - v1.8.38
3
  *
4
  * Copyright (c) 2022
5
  * Licensed GPLv2+
static/bundle/account.js CHANGED
@@ -1 +1 @@
1
- (()=>{"use strict";var e={n:t=>{var r=t&&t.__esModule?()=>t.default:()=>t;return e.d(r,{a:r}),r},d:(t,r)=>{for(var o in r)e.o(r,o)&&!e.o(t,o)&&Object.defineProperty(t,o,{enumerable:!0,get:r[o]})},o:(e,t)=>Object.prototype.hasOwnProperty.call(e,t)};const t=window.ctEvents;var r=e.n(t);const o=window.ctFrontend;function n(e){return n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},n(e)}function c(e){return function(e){if(Array.isArray(e))return a(e)}(e)||function(e){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(e))return Array.from(e)}(e)||function(e,t){if(e){if("string"==typeof e)return a(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);return"Object"===r&&e.constructor&&(r=e.constructor.name),"Map"===r||"Set"===r?Array.from(e):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?a(e,t):void 0}}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function a(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,o=new Array(t);r<t;r++)o[r]=e[r];return o}var i=function(e){c(e.querySelectorAll(".g-recaptcha, .anr_captcha_field")).map((function(e){e.classList.contains("anr_captcha_field")?grecaptcha.reset(parseFloat(e.firstElementChild.id.replace("anr_captcha_field_",""))-1):grecaptcha.reset(e.gID)}))},l=function(e){return new Promise((function(t){(function(e,t){return!(!window.WFLSVars||!parseInt(WFLSVars.useCAPTCHA)||(function(e,t){var r=function(e){var t=jQuery();return c(e.querySelectorAll("input")).map((function(e){t=t.add(e)})),t}(t);if("object"===("undefined"==typeof grecaptcha?"undefined":n(grecaptcha)))grecaptcha.ready((function(){grecaptcha.execute(WFLSVars.recaptchasitekey,{action:"login"}).then((function(t){var o=jQuery("#wfls-captcha-token");o.length?o.val(t):r.length&&((o=jQuery('<input type="hidden" name="wfls-captcha-token" id="wfls-captcha-token" />')).val(t),r.parent().append(o)),"function"==typeof e&&e(!0)}))}));else{var o=jQuery("#wfls-captcha-token");o.length?o.val("grecaptcha-missing"):r.length&&((o=jQuery('<input type="hidden" name="wfls-captcha-token" id="wfls-captcha-token" />')).val("grecaptcha-missing"),r.parent().append(o)),"function"==typeof e&&e(!0)}}((function(){return e()}),t),0))})(t,e)||t()}))},s=function(e){var t=e.querySelector('[name*="submit"]');t&&t.classList.add("ct-loading")},u=function(e){var t=e.querySelector('[name*="submit"]');t&&t.classList.remove("ct-loading")},f=function(e,t){var r=t.screen,o=void 0===r?"login":r;e.querySelector(".ct-".concat(o,"-form"))||(o="login"),e.querySelector("ul")&&e.querySelector("ul .ct-".concat(o))&&(e.querySelector("ul .active").classList.remove("active"),e.querySelector("ul .ct-".concat(o)).classList.add("active")),e.querySelector('[class*="-form"].active').classList.remove("active"),e.querySelector(".ct-".concat(o,"-form")).classList.add("active"),e.querySelector(".ct-".concat(o,"-form form"))&&e.querySelector(".ct-".concat(o,"-form form")).reset(),e.querySelector(".ct-account-form").classList.remove("ct-error");var n=e.querySelector(".ct-".concat(o,"-form")).querySelector(".ct-form-notification");n&&n.remove();var c=e.querySelector(".ct-".concat(o,"-form")).querySelector(".ct-form-notification-error");c&&c.remove()},d=function(e,t){var r=e.querySelector(".ct-form-notification-error");r&&r.remove(),e.closest(".ct-account-form").classList.remove("ct-error"),t&&(e.insertAdjacentHTML("afterbegin",'<div class="ct-form-notification-error">'.concat(t,"</div>")),requestAnimationFrame((function(){e.closest(".ct-account-form").classList.add("ct-error")})))},m=function(e,t){var r=(new DOMParser).parseFromString(t,"text/html"),o=r.querySelector("#login_error"),n="";return o&&(n=o.innerHTML),d(e,n),{hasError:!!o,doc:r}},p=function(e,t){var r=e.querySelector(".ct-form-notification");r&&r.remove(),e.closest(".ct-account-form").classList.remove("ct-error"),t&&e.insertAdjacentHTML("afterbegin",'<div class="ct-form-notification">'.concat(t,"</div>"))},y=function(e,t){var r=(new DOMParser).parseFromString(t,"text/html"),o=r.querySelector(".message"),n="";return o&&(n=o.innerHTML),p(e,n),{doc:r}},h="";(0,o.registerDynamicChunk)("blocksy_account",{mount:function(e,t){var n=t.event;if(n.preventDefault(),!h){var c=document.querySelector("#account-modal");h=c.innerHTML,c.remove()}var a=document.querySelector(".ct-drawer-canvas").lastElementChild;a.id="account-modal";var v=ct_localizations.dynamic_styles_selectors.find((function(e){return a.matches(e.selector)})),g=function(){a.innerHTML=h,function(e){if(e&&!e.hasListeners){e.hasListeners=!0;var t=e.querySelector('[name="loginform"]'),o=e.querySelector('[name="registerform"]'),n=e.querySelector('[name="lostpasswordform"]');e.addEventListener("click",(function(r){r.target.href&&r.target.href.indexOf("lostpassword")>-1&&(f(e,{screen:"forgot-password"}),r.preventDefault()),r.target.href&&r.target.classList.contains("showlogin")&&(f(e,{screen:"login"}),r.preventDefault()),r.target.href&&(r.target.href.indexOf("wp-login")>-1||t&&r.target.href===t.action)&&-1===r.target.href.indexOf("lostpassword")&&(f(e,{screen:"login"}),r.preventDefault())}),!0),t&&t.addEventListener("submit",(function(e){if(e.preventDefault(),!window.ct_customizer_localizations){s(t);var r=new FormData(t),o="".concat(ct_localizations.ajax_url,"?action=blc_implement_user_login");if(window.WFLSVars&&!t.loginProceed)return r.append("action","wordfence_ls_authenticate"),o=WFLSVars.ajaxurl,void l(t).then((function(){fetch(o,{method:t.method,body:r}).then((function(e){return e.json()})).then((function(e){u(t);var r=!!e.error,o=t.closest(".ct-login-form"),n=t.closest(".ct-login-form").querySelector("form");if(r&&d(o,e.error),e.message&&p(n,e.message),e.login)if(e.jwt){if(!jQuery("#wfls-token").length){var c=jQuery('<div id="wfls-prompt-overlay-blocksy"></div>'),a=jQuery('<div id="wfls-prompt-wrapper"></div>'),l=jQuery('<label for="wfls-token">2FA Code <a href="javascript:void(0)" class="wfls-2fa-code-help wfls-tooltip-trigger" title="The 2FA Code can be found within the authenticator app you used when first activating two-factor authentication. You may also use one of your recovery codes."><i class="dashicons dashicons-editor-help"></i></a></label>'),s=jQuery('<input type="text" name="wfls-token" id="wfls-token" aria-describedby="wfls-token-error" class="input" value="" size="6" autocomplete="off"/>'),f=jQuery('<label for="wfls-remember-device"><input name="wfls-remember-device" type="checkbox" id="wfls-remember-device" class="ct-checkbox" value="1" /> Remember for 30 days</label>');a.append(l),a.append(s),parseInt(WFLSVars.allowremember)&&a.append(f),c.append(a),jQuery(n).prepend(c),new jQuery.Zebra_Tooltips(jQuery(".wfls-tooltip-trigger"))}var m=jQuery("#wfls-token-jwt");m.length||(m=jQuery('<input type="hidden" name="wfls-token-jwt" id="wfls-token-jwt" value=""/>'),jQuery("#wfls-prompt-overlay-blocksy").append(m)),jQuery("#wfls-token-jwt").val(e.jwt)}else fetch("".concat(ct_localizations.ajax_url,"?action=blc_implement_user_login"),{method:t.method,body:new FormData(t)}).then((function(e){return e.text()})).then((function(e){location=t.querySelector('[name="redirect_to"]').value}));e.combined&&(t.loginProceed=!0,fetch("".concat(ct_localizations.ajax_url,"?action=blc_implement_user_login"),{method:t.method,body:new FormData(t)}).then((function(e){return e.text()})).then((function(e){location=t.querySelector('[name="redirect_to"]').value}))),(!r||r&&-1===t.closest(".ct-login-form").querySelector(".ct-form-notification-error").innerHTML.indexOf("Captcha"))&&i(t.closest(".ct-login-form"))}))}));l(t).then((function(){fetch(o,{method:t.method,body:r}).then((function(e){return e.text()})).then((function(e){u(t);var r=m(t.closest(".ct-login-form"),e),o=(r.doc,r.hasError);o||(location=t.querySelector('[name="redirect_to"]').value),(!o||o&&-1===t.closest(".ct-login-form").querySelector(".ct-form-notification-error").innerHTML.indexOf("Captcha"))&&i(t.closest(".ct-login-form"))}))}))}})),o&&o.addEventListener("submit",(function(e){e.preventDefault(),window.ct_customizer_localizations||(s(o),l(o).then((function(){return fetch("".concat(ct_localizations.ajax_url,"?action=blc_implement_user_registration"),{method:o.method,body:new FormData(o)}).then((function(e){return e.text()})).then((function(e){var t=m(o.closest(".ct-register-form"),e),n=(t.doc,t.hasError);u(o),n||y(o.closest(".ct-register-form"),e),r().trigger("blocksy:account:register:".concat(n?"error":"success")),(!n||n&&-1===o.closest(".ct-register-form").querySelector(".ct-form-notification-error").innerHTML.indexOf("Captcha"))&&i(o.closest(".ct-register-form"))}))})))})),n&&n.addEventListener("submit",(function(e){e.preventDefault(),window.ct_customizer_localizations||(s(n),fetch("".concat(ct_localizations.ajax_url,"?action=blc_implement_user_lostpassword"),{method:n.method,body:new FormData(n)}).then((function(e){return e.text()})).then((function(e){var t=m(n.closest(".ct-forgot-password-form"),e),r=(t.doc,t.hasError);u(n),r||y(n.closest(".ct-forgot-password-form"),e),(!r||r&&-1===n.closest(".ct-forgot-password-form").querySelector(".ct-form-notification-error").innerHTML.indexOf("Captcha"))&&i(n.closest(".ct-forgot-password-form"))})))})),["login","register","forgot-password"].map((function(t){Array.from(e.querySelectorAll(".ct-".concat(t))).map((function(r){r.addEventListener("click",(function(r){r.preventDefault(),f(e,{screen:t})})),r.addEventListener("keyup",(function(r){13===r.keyCode&&(r.preventDefault(),f(e,{screen:t}))}))}))}))}}(a),f(a,{screen:e.dataset.view||"login"}),window.anr_onloadCallback&&window.anr_onloadCallback(),r().trigger("ct:overlay:handle-click",{e:n,href:"#account-modal",options:{openStrategy:"skip",isModal:!0}})};v?(0,o.loadStyle)(v.url).then((function(){g()})):g()}}),r().on("ct:modal:closed",(function(e){e.closest("#account-modal")&&e.remove()}))})();
1
+ (()=>{"use strict";var e={n:t=>{var r=t&&t.__esModule?()=>t.default:()=>t;return e.d(r,{a:r}),r},d:(t,r)=>{for(var o in r)e.o(r,o)&&!e.o(t,o)&&Object.defineProperty(t,o,{enumerable:!0,get:r[o]})},o:(e,t)=>Object.prototype.hasOwnProperty.call(e,t)};const t=window.ctEvents;var r=e.n(t);const o=window.ctFrontend;function n(e){return n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},n(e)}function c(e){return function(e){if(Array.isArray(e))return a(e)}(e)||function(e){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(e))return Array.from(e)}(e)||function(e,t){if(e){if("string"==typeof e)return a(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);return"Object"===r&&e.constructor&&(r=e.constructor.name),"Map"===r||"Set"===r?Array.from(e):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?a(e,t):void 0}}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function a(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,o=new Array(t);r<t;r++)o[r]=e[r];return o}var i=function(e){c(e.querySelectorAll(".g-recaptcha, .anr_captcha_field")).map((function(e){e.classList.contains("anr_captcha_field")?grecaptcha.reset(parseFloat(e.firstElementChild.id.replace("anr_captcha_field_",""))-1):grecaptcha.reset(e.gID)}))},l=function(e){return new Promise((function(t){(function(e,t){return!(!window.WFLSVars||!parseInt(WFLSVars.useCAPTCHA)||(function(e,t){var r=function(e){var t=jQuery();return c(e.querySelectorAll("input")).map((function(e){t=t.add(e)})),t}(t);if("object"===("undefined"==typeof grecaptcha?"undefined":n(grecaptcha)))grecaptcha.ready((function(){grecaptcha.execute(WFLSVars.recaptchasitekey,{action:"login"}).then((function(t){var o=jQuery("#wfls-captcha-token");o.length?o.val(t):r.length&&((o=jQuery('<input type="hidden" name="wfls-captcha-token" id="wfls-captcha-token" />')).val(t),r.parent().append(o)),"function"==typeof e&&e(!0)}))}));else{var o=jQuery("#wfls-captcha-token");o.length?o.val("grecaptcha-missing"):r.length&&((o=jQuery('<input type="hidden" name="wfls-captcha-token" id="wfls-captcha-token" />')).val("grecaptcha-missing"),r.parent().append(o)),"function"==typeof e&&e(!0)}}((function(){return e()}),t),0))})(t,e)||t()}))},s=function(e){var t=e.querySelector('[name*="submit"]');t&&t.classList.add("ct-loading")},u=function(e){var t=e.querySelector('[name*="submit"]');t&&t.classList.remove("ct-loading")},f=function(e,t){var r=t.screen,o=void 0===r?"login":r;e.querySelector(".ct-".concat(o,"-form"))||(o="login"),e.querySelector("ul")&&e.querySelector("ul .ct-".concat(o))&&(e.querySelector("ul .active").classList.remove("active"),e.querySelector("ul .ct-".concat(o)).classList.add("active")),e.querySelector('[class*="-form"].active').classList.remove("active"),e.querySelector(".ct-".concat(o,"-form")).classList.add("active"),e.querySelector(".ct-".concat(o,"-form form"))&&e.querySelector(".ct-".concat(o,"-form form")).reset(),e.querySelector(".ct-account-form").classList.remove("ct-error");var n=e.querySelector(".ct-".concat(o,"-form")).querySelector(".ct-form-notification");n&&n.remove();var c=e.querySelector(".ct-".concat(o,"-form")).querySelector(".ct-form-notification-error");c&&c.remove()},d=function(e,t){var r=e.querySelector(".ct-form-notification-error");r&&r.remove(),e.closest(".ct-account-form").classList.remove("ct-error"),t&&(e.insertAdjacentHTML("afterbegin",'<div class="ct-form-notification-error">'.concat(t,"</div>")),requestAnimationFrame((function(){e.closest(".ct-account-form").classList.add("ct-error")})))},m=function(e,t){var r=(new DOMParser).parseFromString(t,"text/html"),o=r.querySelector("#login_error"),n="";return o&&(n=o.innerHTML),d(e,n),{hasError:!!o,doc:r}},p=function(e,t){var r=e.querySelector(".ct-form-notification");r&&r.remove(),e.closest(".ct-account-form").classList.remove("ct-error"),t&&e.insertAdjacentHTML("afterbegin",'<div class="ct-form-notification">'.concat(t,"</div>"))},y=function(e,t){var r=(new DOMParser).parseFromString(t,"text/html"),o=r.querySelector(".message"),n="";return o&&(n=o.innerHTML),p(e,n),{doc:r}},h="";(0,o.registerDynamicChunk)("blocksy_account",{mount:function(e,t){var n=t.event;if(n.preventDefault(),!h){var c=document.querySelector("#account-modal");if(!c)return void(location=document.querySelector('[data-id="account"]')?document.querySelector('[data-id="account"]').href:e.href);h=c.innerHTML,c.remove()}var a=document.querySelector(".ct-drawer-canvas").lastElementChild;a.id="account-modal";var v=ct_localizations.dynamic_styles_selectors.find((function(e){return a.matches(e.selector)})),g=function(){a.innerHTML=h,function(e){if(e&&!e.hasListeners){e.hasListeners=!0;var t=e.querySelector('[name="loginform"]'),o=e.querySelector('[name="registerform"]'),n=e.querySelector('[name="lostpasswordform"]');e.addEventListener("click",(function(r){r.target.href&&r.target.href.indexOf("lostpassword")>-1&&(f(e,{screen:"forgot-password"}),r.preventDefault()),r.target.href&&r.target.classList.contains("showlogin")&&(f(e,{screen:"login"}),r.preventDefault()),r.target.href&&(r.target.href.indexOf("wp-login")>-1||t&&r.target.href===t.action)&&-1===r.target.href.indexOf("lostpassword")&&(f(e,{screen:"login"}),r.preventDefault())}),!0),t&&t.addEventListener("submit",(function(e){if(e.preventDefault(),!window.ct_customizer_localizations){s(t);var r=new FormData(t),o="".concat(ct_localizations.ajax_url,"?action=blc_implement_user_login");if(window.WFLSVars&&!t.loginProceed)return r.append("action","wordfence_ls_authenticate"),o=WFLSVars.ajaxurl,void l(t).then((function(){fetch(o,{method:t.method,body:r}).then((function(e){return e.json()})).then((function(e){u(t);var r=!!e.error,o=t.closest(".ct-login-form"),n=t.closest(".ct-login-form").querySelector("form");if(r&&d(o,e.error),e.message&&p(n,e.message),e.login)if(e.jwt){if(!jQuery("#wfls-token").length){var c=jQuery('<div id="wfls-prompt-overlay-blocksy"></div>'),a=jQuery('<div id="wfls-prompt-wrapper"></div>'),l=jQuery('<label for="wfls-token">2FA Code <a href="javascript:void(0)" class="wfls-2fa-code-help wfls-tooltip-trigger" title="The 2FA Code can be found within the authenticator app you used when first activating two-factor authentication. You may also use one of your recovery codes."><i class="dashicons dashicons-editor-help"></i></a></label>'),s=jQuery('<input type="text" name="wfls-token" id="wfls-token" aria-describedby="wfls-token-error" class="input" value="" size="6" autocomplete="off"/>'),f=jQuery('<label for="wfls-remember-device"><input name="wfls-remember-device" type="checkbox" id="wfls-remember-device" class="ct-checkbox" value="1" /> Remember for 30 days</label>');a.append(l),a.append(s),parseInt(WFLSVars.allowremember)&&a.append(f),c.append(a),jQuery(n).prepend(c),new jQuery.Zebra_Tooltips(jQuery(".wfls-tooltip-trigger"))}var m=jQuery("#wfls-token-jwt");m.length||(m=jQuery('<input type="hidden" name="wfls-token-jwt" id="wfls-token-jwt" value=""/>'),jQuery("#wfls-prompt-overlay-blocksy").append(m)),jQuery("#wfls-token-jwt").val(e.jwt)}else fetch("".concat(ct_localizations.ajax_url,"?action=blc_implement_user_login"),{method:t.method,body:new FormData(t)}).then((function(e){return e.text()})).then((function(e){location=t.querySelector('[name="redirect_to"]').value}));e.combined&&(t.loginProceed=!0,fetch("".concat(ct_localizations.ajax_url,"?action=blc_implement_user_login"),{method:t.method,body:new FormData(t)}).then((function(e){return e.text()})).then((function(e){location=t.querySelector('[name="redirect_to"]').value}))),(!r||r&&-1===t.closest(".ct-login-form").querySelector(".ct-form-notification-error").innerHTML.indexOf("Captcha"))&&i(t.closest(".ct-login-form"))}))}));l(t).then((function(){fetch(o,{method:t.method,body:r}).then((function(e){return e.text()})).then((function(e){u(t);var r=m(t.closest(".ct-login-form"),e),o=(r.doc,r.hasError);o||(location=t.querySelector('[name="redirect_to"]').value),(!o||o&&-1===t.closest(".ct-login-form").querySelector(".ct-form-notification-error").innerHTML.indexOf("Captcha"))&&i(t.closest(".ct-login-form"))}))}))}})),o&&o.addEventListener("submit",(function(e){e.preventDefault(),window.ct_customizer_localizations||(s(o),l(o).then((function(){return fetch("".concat(ct_localizations.ajax_url,"?action=blc_implement_user_registration"),{method:o.method,body:new FormData(o)}).then((function(e){return e.text()})).then((function(e){var t=m(o.closest(".ct-register-form"),e),n=(t.doc,t.hasError);u(o),n||y(o.closest(".ct-register-form"),e),r().trigger("blocksy:account:register:".concat(n?"error":"success")),(!n||n&&-1===o.closest(".ct-register-form").querySelector(".ct-form-notification-error").innerHTML.indexOf("Captcha"))&&i(o.closest(".ct-register-form"))}))})))})),n&&n.addEventListener("submit",(function(e){e.preventDefault(),window.ct_customizer_localizations||(s(n),fetch("".concat(ct_localizations.ajax_url,"?action=blc_implement_user_lostpassword"),{method:n.method,body:new FormData(n)}).then((function(e){return e.text()})).then((function(e){var t=m(n.closest(".ct-forgot-password-form"),e),r=(t.doc,t.hasError);u(n),r||y(n.closest(".ct-forgot-password-form"),e),(!r||r&&-1===n.closest(".ct-forgot-password-form").querySelector(".ct-form-notification-error").innerHTML.indexOf("Captcha"))&&i(n.closest(".ct-forgot-password-form"))})))})),["login","register","forgot-password"].map((function(t){Array.from(e.querySelectorAll(".ct-".concat(t))).map((function(r){r.addEventListener("click",(function(r){r.preventDefault(),f(e,{screen:t})})),r.addEventListener("keyup",(function(r){13===r.keyCode&&(r.preventDefault(),f(e,{screen:t}))}))}))}))}}(a),f(a,{screen:e.dataset.view||"login"}),window.anr_onloadCallback&&window.anr_onloadCallback(),r().trigger("ct:overlay:handle-click",{e:n,href:"#account-modal",options:{openStrategy:"skip",isModal:!0}})};v?(0,o.loadStyle)(v.url).then((function(){g()})):g()}}),r().on("ct:modal:closed",(function(e){e.closest("#account-modal")&&e.remove()}))})();
static/bundle/dashboard.min.css CHANGED
@@ -1,5 +1,5 @@
1
  /**
2
- * - v1.8.37
3
  *
4
  * Copyright (c) 2022
5
  * Licensed GPLv2+
1
  /**
2
+ * - v1.8.38
3
  *
4
  * Copyright (c) 2022
5
  * Licensed GPLv2+
static/bundle/options.min.css CHANGED
@@ -1,5 +1,5 @@
1
  /**
2
- * - v1.8.37
3
  *
4
  * Copyright (c) 2022
5
  * Licensed GPLv2+
1
  /**
2
+ * - v1.8.38
3
  *
4
  * Copyright (c) 2022
5
  * Licensed GPLv2+
static/js/account.js CHANGED
@@ -10,6 +10,15 @@ registerDynamicChunk('blocksy_account', {
10
 
11
  if (!maybeTemplate) {
12
  let maybeAccount = document.querySelector('#account-modal')
 
 
 
 
 
 
 
 
 
13
  maybeTemplate = maybeAccount.innerHTML
14
  maybeAccount.remove()
15
  }
@@ -17,9 +26,10 @@ registerDynamicChunk('blocksy_account', {
17
  let panel = document.querySelector('.ct-drawer-canvas').lastElementChild
18
  panel.id = `account-modal`
19
 
20
- const maybeMatchingContainer = ct_localizations.dynamic_styles_selectors.find(
21
- (descriptor) => panel.matches(descriptor.selector)
22
- )
 
23
 
24
  const actuallyOpen = () => {
25
  panel.innerHTML = maybeTemplate
10
 
11
  if (!maybeTemplate) {
12
  let maybeAccount = document.querySelector('#account-modal')
13
+
14
+ if (!maybeAccount) {
15
+ location = document.querySelector('[data-id="account"]')
16
+ ? document.querySelector('[data-id="account"]').href
17
+ : el.href
18
+
19
+ return
20
+ }
21
+
22
  maybeTemplate = maybeAccount.innerHTML
23
  maybeAccount.remove()
24
  }
26
  let panel = document.querySelector('.ct-drawer-canvas').lastElementChild
27
  panel.id = `account-modal`
28
 
29
+ const maybeMatchingContainer =
30
+ ct_localizations.dynamic_styles_selectors.find((descriptor) =>
31
+ panel.matches(descriptor.selector)
32
+ )
33
 
34
  const actuallyOpen = () => {
35
  panel.innerHTML = maybeTemplate