Shortcodes and extra features for Phlox theme - Version 2.10.0

Version Description

Download this release

Release Info

Developer averta
Plugin Icon 128x128 Shortcodes and extra features for Phlox theme
Version 2.10.0
Comparing to
See all releases

Code changes from version 2.9.22 to 2.10.0

README.txt CHANGED
@@ -7,7 +7,7 @@ Tags: phlox, gallery, elementor, auxin, averta, auxin-elements, framework, widge
7
  Requires PHP: 5.4
8
  Requires at least: 4.6
9
  Tested up to: 6.0.1
10
- Stable tag: 2.9.22
11
  License: GPLv3
12
  License URI: http://www.gnu.org/licenses/gpl.html
13
 
7
  Requires PHP: 5.4
8
  Requires at least: 4.6
9
  Tested up to: 6.0.1
10
+ Stable tag: 2.10.0
11
  License: GPLv3
12
  License URI: http://www.gnu.org/licenses/gpl.html
13
 
admin/assets/js/plugins.js CHANGED
@@ -1,4 +1,4 @@
1
- /*! Phlox Core Plugin - v2.9.22 (2022-08)
2
  * All required javascript plugins for admin
3
  * http://phlox.pro/
4
  * Place any jQuery/helper plugins in here, instead of separate, slower script files!
1
+ /*! Phlox Core Plugin - v2.10.0 (2022-08)
2
  * All required javascript plugins for admin
3
  * http://phlox.pro/
4
  * Place any jQuery/helper plugins in here, instead of separate, slower script files!
auxin-elements.php CHANGED
@@ -12,7 +12,7 @@
12
  * Plugin Name: Phlox Core Elements
13
  * Plugin URI: https://wordpress.org/plugins/auxin-elements/
14
  * Description: Exclusive and comprehensive plugin that extends the functionality of Phlox theme by adding new Elements, widgets and options.
15
- * Version: 2.9.22
16
  * Author: averta
17
  * Author URI: http://averta.net
18
  * Text Domain: auxin-elements
12
  * Plugin Name: Phlox Core Elements
13
  * Plugin URI: https://wordpress.org/plugins/auxin-elements/
14
  * Description: Exclusive and comprehensive plugin that extends the functionality of Phlox theme by adding new Elements, widgets and options.
15
+ * Version: 2.10.0
16
  * Author: averta
17
  * Author URI: http://averta.net
18
  * Text Domain: auxin-elements
includes/classes/class-auxin-demo-importer.php CHANGED
@@ -1388,12 +1388,12 @@ class Auxin_Demo_Importer {
1388
  * @return string $data
1389
  */
1390
  public function update_slider_assets_id( $data ) {
1391
- preg_match_all( '/\"source\":\"(\d+)\"/', $data, $assets, PREG_SET_ORDER );
1392
  if ( !empty( $assets ) ) {
1393
  foreach( $assets as $asset ) {
1394
- if ( !empty( $asset[1] ) ) {
1395
- $new_id = $this->get_attachment_id( 'auxin_import_id', $asset[1] );
1396
- $data = str_replace( $asset[0], '"source":"'. $new_id .'"', $data );
1397
  }
1398
  }
1399
  }
1388
  * @return string $data
1389
  */
1390
  public function update_slider_assets_id( $data ) {
1391
+ preg_match_all( '/\"(source|src)\":\"(\d+)\"/', $data, $assets, PREG_SET_ORDER );
1392
  if ( !empty( $assets ) ) {
1393
  foreach( $assets as $asset ) {
1394
+ if ( !empty( $asset[2] ) ) {
1395
+ $new_id = $this->get_attachment_id( 'auxin_import_id', $asset[2] );
1396
+ $data = str_replace( $asset[0], '"' . $asset[1] . '":"'. $new_id .'"', $data );
1397
  }
1398
  }
1399
  }
includes/define.php CHANGED
@@ -12,7 +12,7 @@ if( ! defined( 'THEME_NAME' ) ){
12
  }
13
 
14
 
15
- define( 'AUXELS_VERSION' , '2.9.22' );
16
 
17
  define( 'AUXELS_SLUG' , 'auxin-elements' );
18
 
12
  }
13
 
14
 
15
+ define( 'AUXELS_VERSION' , '2.10.0' );
16
 
17
  define( 'AUXELS_SLUG' , 'auxin-elements' );
18
 
includes/elementor/class-auxin-elementor-core-elements.php CHANGED
@@ -279,6 +279,10 @@ final class Elements {
279
  'file' => $this->dir_path . '/widgets/gallery.php',
280
  'class' => 'Elements\Gallery'
281
  ],
 
 
 
 
282
  '105' => [
283
  'file' => $this->dir_path . '/widgets/text.php',
284
  'class' => 'Elements\Text'
279
  'file' => $this->dir_path . '/widgets/gallery.php',
280
  'class' => 'Elements\Gallery'
281
  ],
282
+ '101' => [
283
+ 'file' => $this->dir_path . '/widgets/circle-chart.php',
284
+ 'class' => 'Elements\CircleChart'
285
+ ],
286
  '105' => [
287
  'file' => $this->dir_path . '/widgets/text.php',
288
  'class' => 'Elements\Text'
includes/elementor/modules/settings/base/manager.php CHANGED
@@ -106,9 +106,8 @@ abstract class Manager {
106
  * @return void
107
  */
108
  public function elementor_after_save( $object, $data ) {
109
- if ( $data && isset( $data['settings'] ) && is_array( $data['settings'] ) ) {
110
  foreach ( $data['settings']['system_colors'] as $key => $value ) {
111
-
112
  if ( !empty( $value['color'] ) ) {
113
  auxin_update_option( 'elementor_color_' . $value['_id'], $value['color'] );
114
  }
@@ -143,9 +142,9 @@ abstract class Manager {
143
  if ( empty( $active_kit ) ) {
144
  return;
145
  }
146
-
147
  $settings = get_post_meta( $active_kit, '_elementor_page_settings', true );
148
-
149
  // get elementor global custom colors from customizer
150
  $added_custom_colors = auxin_get_option( 'elementor_global_custom_colors_repeater', '');
151
  $colors = json_decode( $added_custom_colors, true );
@@ -164,7 +163,7 @@ abstract class Manager {
164
  }
165
 
166
  if ( empty( $settings ) ) {
167
-
168
  // get elementor system colors form customizer
169
  $system_colors_key = ['primary', 'secondary', 'text', 'accent' ];
170
  foreach( $system_colors_key as $key ) {
@@ -195,7 +194,7 @@ abstract class Manager {
195
  }
196
  \Elementor\Plugin::$instance->kits_manager->update_kit_settings_based_on_option( 'system_colors', $system_colors );
197
 
198
- // update custom colors -> updating via post meta because we have to replace all custom colors from customizer with the one in elemnetor settings
199
  if ( ! empty( $custom_colors ) ) {
200
  $settings['custom_colors'] = $custom_colors;
201
  update_post_meta( $active_kit, '_elementor_page_settings', $settings );
106
  * @return void
107
  */
108
  public function elementor_after_save( $object, $data ) {
109
+ if ( $data && isset( $data['settings']['system_colors'] ) && is_array( $data['settings']['system_colors'] ) ) {
110
  foreach ( $data['settings']['system_colors'] as $key => $value ) {
 
111
  if ( !empty( $value['color'] ) ) {
112
  auxin_update_option( 'elementor_color_' . $value['_id'], $value['color'] );
113
  }
142
  if ( empty( $active_kit ) ) {
143
  return;
144
  }
145
+
146
  $settings = get_post_meta( $active_kit, '_elementor_page_settings', true );
147
+
148
  // get elementor global custom colors from customizer
149
  $added_custom_colors = auxin_get_option( 'elementor_global_custom_colors_repeater', '');
150
  $colors = json_decode( $added_custom_colors, true );
163
  }
164
 
165
  if ( empty( $settings ) ) {
166
+
167
  // get elementor system colors form customizer
168
  $system_colors_key = ['primary', 'secondary', 'text', 'accent' ];
169
  foreach( $system_colors_key as $key ) {
194
  }
195
  \Elementor\Plugin::$instance->kits_manager->update_kit_settings_based_on_option( 'system_colors', $system_colors );
196
 
197
+ // update custom colors -> updating via post meta because we have to replace all custom colors from customizer with the one in elemnetor settings
198
  if ( ! empty( $custom_colors ) ) {
199
  $settings['custom_colors'] = $custom_colors;
200
  update_post_meta( $active_kit, '_elementor_page_settings', $settings );
includes/elementor/widgets/circle-chart.php ADDED
@@ -0,0 +1,384 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Auxin\Plugin\CoreElements\Elementor\Elements;
3
+
4
+ use Elementor\Widget_Base;
5
+ use Elementor\Controls_Manager;
6
+ use Elementor\Group_Control_Typography;
7
+ use Elementor\Core\Schemes\Typography;
8
+
9
+ if ( ! defined( 'ABSPATH' ) ) {
10
+ exit; // Exit if accessed directly.
11
+ }
12
+
13
+ /**
14
+ * Elementor 'CircleChart' widget.
15
+ *
16
+ * Elementor widget that displays an 'CircleChart' with lightbox.
17
+ *
18
+ * @since 1.0.0
19
+ */
20
+ class CircleChart extends Widget_Base {
21
+
22
+ /**
23
+ * Get widget name.
24
+ *
25
+ * Retrieve 'CircleChart' widget name.
26
+ *
27
+ * @since 1.0.0
28
+ * @access public
29
+ *
30
+ * @return string Widget name.
31
+ */
32
+ public function get_name() {
33
+ return 'aux_circle_chart';
34
+ }
35
+
36
+ /**
37
+ * Get widget title.
38
+ *
39
+ * Retrieve 'CircleChart' widget title.
40
+ *
41
+ * @since 1.0.0
42
+ * @access public
43
+ *
44
+ * @return string Widget title.
45
+ */
46
+ public function get_title() {
47
+ return __('Circle Chart', 'auxin-elements' );
48
+ }
49
+
50
+ /**
51
+ * Get widget icon.
52
+ *
53
+ * Retrieve 'CircleChart' widget icon.
54
+ *
55
+ * @since 1.0.0
56
+ * @access public
57
+ *
58
+ * @return string Widget icon.
59
+ */
60
+ public function get_icon() {
61
+ return 'eicon-counter-circle auxin-badge';
62
+ }
63
+
64
+ /**
65
+ * Get widget categories.
66
+ *
67
+ * Retrieve 'CircleChart' widget icon.
68
+ *
69
+ * @since 1.0.0
70
+ * @access public
71
+ *
72
+ * @return string Widget icon.
73
+ */
74
+ public function get_categories() {
75
+ return array( 'auxin-core' );
76
+ }
77
+
78
+ /**
79
+ * Register 'CircleChart' widget controls.
80
+ *
81
+ * Adds different input fields to allow the user to change and customize the widget settings.
82
+ *
83
+ * @since 1.0.0
84
+ * @access protected
85
+ */
86
+ protected function register_controls() {
87
+
88
+ /*-----------------------------------------------------------------------------------*/
89
+ /* Contact Info section
90
+ /*-----------------------------------------------------------------------------------*/
91
+
92
+ $this->start_controls_section(
93
+ 'chart_info_section',
94
+ array(
95
+ 'label' => __('Chart Info', 'auxin-elements' )
96
+ )
97
+ );
98
+
99
+ $this->add_control(
100
+ 'percentage',
101
+ array(
102
+ 'label' => __('Percentage','auxin-elements' ),
103
+ 'type' => Controls_Manager::SLIDER,
104
+ 'size_units' => array('%'),
105
+ 'range' => array(
106
+ '%' => array(
107
+ 'min' => 1,
108
+ 'max' => 100,
109
+ 'step' => 1
110
+ ),
111
+ ),
112
+ 'selectors' => array(
113
+ '{{WRAPPER}} .aux-circle-chart-wrapper' => '--aux-chart-percentage:{{SIZE}};'
114
+ ),
115
+ 'default' => array(
116
+ 'size' => 20,
117
+ ),
118
+ )
119
+ );
120
+
121
+ $this->add_control(
122
+ 'title',
123
+ array(
124
+ 'label' => __('Title','auxin-elements'),
125
+ 'type' => Controls_Manager::TEXT
126
+ )
127
+ );
128
+
129
+ $this->add_control(
130
+ 'subtitle',
131
+ array(
132
+ 'label' => __('Subtitle','auxin-elements'),
133
+ 'type' => Controls_Manager::TEXT
134
+ )
135
+ );
136
+
137
+ $this->add_responsive_control(
138
+ 'alignment',
139
+ array(
140
+ 'label' => __('Alignment', 'auxin-elements'),
141
+ 'type' => Controls_Manager::CHOOSE,
142
+ 'default' => 'center',
143
+ 'options' => array(
144
+ 'left' => array(
145
+ 'title' => __( 'Left', 'auxin-elements' ),
146
+ 'icon' => 'eicon-text-align-left',
147
+ ),
148
+ 'center' => array(
149
+ 'title' => __( 'Center', 'auxin-elements' ),
150
+ 'icon' => 'eicon-text-align-center',
151
+ ),
152
+ 'right' => array(
153
+ 'title' => __( 'Right', 'auxin-elements' ),
154
+ 'icon' => 'eicon-text-align-right',
155
+ )
156
+ ),
157
+ 'selectors_dictionary' => [
158
+ 'left' => '',
159
+ 'center' => 'text-align:center;margin-left:auto !important;margin-right:auto !important;',
160
+ 'right' => 'text-align:right;margin-left:auto !important;'
161
+ ],
162
+ 'selectors' => [
163
+ '{{WRAPPER}} .aux-chart-title, {{WRAPPER}} .aux-circle-chart-wrapper' => '{{value}}'
164
+ ]
165
+ )
166
+ );
167
+
168
+ $this->end_controls_section();
169
+
170
+
171
+ /*-----------------------------------------------------------------------------------*/
172
+ /* Style Tab
173
+ /*-----------------------------------------------------------------------------------*/
174
+
175
+ /* Color Section
176
+ /*-------------------------------------*/
177
+
178
+ $this->start_controls_section(
179
+ 'chart_style_section',
180
+ array(
181
+ 'label' => __( 'Chart Style', 'auxin-elements' ),
182
+ 'tab' => Controls_Manager::TAB_STYLE
183
+ )
184
+ );
185
+
186
+ $this->add_responsive_control(
187
+ 'circle-width',
188
+ array(
189
+ 'label' => __('Chart Width','auxin-elements' ),
190
+ 'type' => Controls_Manager::SLIDER,
191
+ 'size_units' => array('px'),
192
+ 'range' => array(
193
+ 'px' => array(
194
+ 'min' => 1,
195
+ 'max' => 1000,
196
+ 'step' => 1
197
+ ),
198
+ ),
199
+ 'default' => array(
200
+ 'size' => 150,
201
+ ),
202
+ 'selectors' => array(
203
+ '{{WRAPPER}} .aux-circle-chart-wrapper' => '--aux-chart-width:{{SIZE}}{{UNIT}};'
204
+ )
205
+ )
206
+ );
207
+
208
+ $this->add_responsive_control(
209
+ 'bg-circle-border-width',
210
+ array(
211
+ 'label' => __('Border Thickness','auxin-elements' ),
212
+ 'type' => Controls_Manager::SLIDER,
213
+ 'size_units' => array('px'),
214
+ 'range' => array(
215
+ 'px' => array(
216
+ 'min' => 1,
217
+ 'max' => 1000,
218
+ 'step' => 1
219
+ ),
220
+ ),
221
+ 'selectors' => array(
222
+ '{{WRAPPER}} .aux-bg-circle' => 'border-width:{{SIZE}}{{UNIT}};',
223
+ '{{WRAPPER}} .aux-circle-chart-wrapper' => '--aux-chart-border-width:{{SIZE}}{{UNIT}};'
224
+ )
225
+ )
226
+ );
227
+
228
+ $this->add_control(
229
+ 'bg-circle-color',
230
+ [
231
+ 'label' => __( 'Default Circle Color', 'auxin-elements' ),
232
+ 'type' => Controls_Manager::COLOR,
233
+ 'selectors' => [
234
+ '{{WRAPPER}} .aux-bg-circle' => 'border-color: {{VALUE}};'
235
+ ]
236
+ ]
237
+ );
238
+
239
+ $this->add_control(
240
+ 'circle-color',
241
+ [
242
+ 'label' => __( 'Active Circle Color', 'auxin-elements' ),
243
+ 'type' => Controls_Manager::COLOR,
244
+ 'selectors' => [
245
+ '{{WRAPPER}} .aux-circle-chart-wrapper' => '--aux-chart-color: {{VALUE}};'
246
+ ]
247
+ ]
248
+ );
249
+
250
+ $this->end_controls_section();
251
+
252
+ $this->start_controls_section(
253
+ 'text_style_section',
254
+ array(
255
+ 'label' => __( 'Text Style', 'auxin-elements' ),
256
+ 'tab' => Controls_Manager::TAB_STYLE
257
+ )
258
+ );
259
+
260
+ $this->add_control(
261
+ 'title_style',
262
+ [
263
+ 'label' => esc_html__( 'Title Style', 'auxin-elements' ),
264
+ 'type' => Controls_Manager::HEADING,
265
+ 'separator' => 'before',
266
+ ]
267
+ );
268
+
269
+ $this->add_group_control(
270
+ Group_Control_Typography::get_type(),
271
+ array(
272
+ 'name' => 'title_typography',
273
+ 'scheme' => Typography::TYPOGRAPHY_1,
274
+ 'selector' => '{{WRAPPER}} .aux-chart-title'
275
+ )
276
+ );
277
+
278
+ $this->add_control(
279
+ 'title_color',
280
+ array(
281
+ 'label' => __( 'Color', 'auxin-elements' ),
282
+ 'type' => Controls_Manager::COLOR,
283
+ 'selectors' => array(
284
+ '{{WRAPPER}} .aux-chart-title' => 'color: {{VALUE}};',
285
+ )
286
+ )
287
+ );
288
+
289
+ $this->add_control(
290
+ 'number_style',
291
+ [
292
+ 'label' => esc_html__( 'Number Style', 'auxin-elements' ),
293
+ 'type' => Controls_Manager::HEADING,
294
+ 'separator' => 'before',
295
+ ]
296
+ );
297
+
298
+ $this->add_group_control(
299
+ Group_Control_Typography::get_type(),
300
+ array(
301
+ 'name' => 'number_typography',
302
+ 'scheme' => Typography::TYPOGRAPHY_1,
303
+ 'selector' => '{{WRAPPER}} .aux-number'
304
+ )
305
+ );
306
+
307
+ $this->add_control(
308
+ 'number_color',
309
+ array(
310
+ 'label' => __( 'Color', 'auxin-elements' ),
311
+ 'type' => Controls_Manager::COLOR,
312
+ 'selectors' => array(
313
+ '{{WRAPPER}} .aux-number' => 'color: {{VALUE}};',
314
+ )
315
+ )
316
+ );
317
+
318
+ $this->add_control(
319
+ 'subtitle_style',
320
+ [
321
+ 'label' => esc_html__( 'Subtitle Style', 'auxin-elements' ),
322
+ 'type' => Controls_Manager::HEADING,
323
+ 'separator' => 'before',
324
+ ]
325
+ );
326
+
327
+ $this->add_group_control(
328
+ Group_Control_Typography::get_type(),
329
+ array(
330
+ 'name' => 'subtitle_typography',
331
+ 'scheme' => Typography::TYPOGRAPHY_1,
332
+ 'selector' => '{{WRAPPER}} .aux-chart-subtitle'
333
+ )
334
+ );
335
+
336
+ $this->add_control(
337
+ 'subtitle_color',
338
+ array(
339
+ 'label' => __( 'Color', 'auxin-elements' ),
340
+ 'type' => Controls_Manager::COLOR,
341
+ 'selectors' => array(
342
+ '{{WRAPPER}} .aux-chart-subtitle' => 'color: {{VALUE}};',
343
+ )
344
+ )
345
+ );
346
+
347
+ $this->end_controls_section();
348
+ }
349
+
350
+ /**
351
+ * Render 'CircleChart' widget output on the frontend.
352
+ *
353
+ * @access protected
354
+ */
355
+ protected function render() {
356
+
357
+ $settings = $this->get_settings_for_display();
358
+
359
+ ?>
360
+ <span class='aux-chart-title'><?php echo esc_html( $settings['title'] );?></span>
361
+ <div class="aux-circle-chart-wrapper">
362
+ <div class="aux-bg-circle"></div>
363
+ <div class="aux-circle-chart aux-animate">
364
+ <span class='aux-number'><?php echo esc_html( $settings['percentage']['size'] );?><span>%</span></span>
365
+ <span class="aux-chart-subtitle"><?php echo esc_html( $settings['subtitle'] );?></span>
366
+ </div>
367
+ </div>
368
+ <?php
369
+ }
370
+
371
+ protected function content_template() {
372
+ ?>
373
+ <span class='aux-chart-title'>{{{settings.title}}}</span>
374
+ <div class="aux-circle-chart-wrapper">
375
+ <div class="aux-bg-circle"></div>
376
+ <div class="aux-circle-chart aux-animate">
377
+ <span class='aux-number'>{{{settings.percentage.size}}}<span>%</span></span>
378
+ <span class="aux-chart-subtitle">{{{settings.subtitle}}}</span>
379
+ </div>
380
+ </div>
381
+ <?php
382
+ }
383
+
384
+ }
languages/auxin-elements-fa_IR.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Auxin Essential Elements\n"
4
  "Report-Msgid-Bugs-To: http://averta.net/phlox/wordpress-theme/\n"
5
- "POT-Creation-Date: 2022-08-02 09:14:20+00:00\n"
6
  "PO-Revision-Date: 2016-11-09 12:50+0330\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -1152,6 +1152,7 @@ msgstr ""
1152
  #: admin/includes/metaboxes/metabox-fields-general-header.php:602
1153
  #: includes/elementor/widgets/button.php:238
1154
  #: includes/elementor/widgets/carousel-navigation.php:170
 
1155
  #: includes/elementor/widgets/custom-list.php:477
1156
  #: includes/elementor/widgets/custom-list.php:509
1157
  #: includes/elementor/widgets/divider.php:202
@@ -1194,6 +1195,7 @@ msgstr "وسط"
1194
  #: includes/elementor/modules/common.php:755
1195
  #: includes/elementor/widgets/button.php:234
1196
  #: includes/elementor/widgets/button.php:378
 
1197
  #: includes/elementor/widgets/custom-list.php:473
1198
  #: includes/elementor/widgets/custom-list.php:505
1199
  #: includes/elementor/widgets/divider.php:198
@@ -2916,51 +2918,51 @@ msgstr "افزودن بخش"
2916
  msgid "Select Audio"
2917
  msgstr "انتخاب شکاف آکاردئون"
2918
 
2919
- #: includes/elementor/class-auxin-elementor-core-elements.php:425
2920
  msgid "Element class \"%s\" not found."
2921
  msgstr ""
2922
 
2923
- #: includes/elementor/class-auxin-elementor-core-elements.php:521
2924
  msgid "Module class \"%s\" not found."
2925
  msgstr ""
2926
 
2927
- #: includes/elementor/class-auxin-elementor-core-elements.php:594
2928
  msgid "%s - General"
2929
  msgstr ""
2930
 
2931
- #: includes/elementor/class-auxin-elementor-core-elements.php:602
2932
  msgid "%s - Featured"
2933
  msgstr ""
2934
 
2935
- #: includes/elementor/class-auxin-elementor-core-elements.php:610
2936
  #, fuzzy
2937
  msgid "%s - Posts"
2938
  msgstr "نوشته ها"
2939
 
2940
- #: includes/elementor/class-auxin-elementor-core-elements.php:618
2941
  msgid "%s - Portfolio"
2942
  msgstr ""
2943
 
2944
  #. translators: 1: Plugin name 2: PHP 3: Required PHP version
2945
- #: includes/elementor/class-auxin-elementor-core-elements.php:705
2946
- #: includes/elementor/class-auxin-elementor-core-elements.php:729
2947
  msgid "\"%1$s\" requires \"%2$s\" version %3$s or greater."
2948
  msgstr ""
2949
 
2950
- #: includes/elementor/class-auxin-elementor-core-elements.php:707
2951
  msgid "Elementor"
2952
  msgstr ""
2953
 
2954
- #: includes/elementor/class-auxin-elementor-core-elements.php:731
2955
  #: includes/elements/code.php:81
2956
  msgid "PHP"
2957
  msgstr ""
2958
 
2959
- #: includes/elementor/class-auxin-elementor-core-elements.php:788
2960
  msgid "Phlox Icons - Set 1"
2961
  msgstr ""
2962
 
2963
- #: includes/elementor/class-auxin-elementor-core-elements.php:810
2964
  msgid "Phlox Icons - Set 2"
2965
  msgstr ""
2966
 
@@ -3135,6 +3137,7 @@ msgstr "بالا"
3135
  #: includes/elementor/modules/common.php:690
3136
  #: includes/elementor/widgets/button.php:242
3137
  #: includes/elementor/widgets/button.php:379
 
3138
  #: includes/elementor/widgets/custom-list.php:481
3139
  #: includes/elementor/widgets/custom-list.php:513
3140
  #: includes/elementor/widgets/divider.php:206
@@ -3621,6 +3624,7 @@ msgstr "بخش"
3621
  #: includes/elementor/modules/dynamic-tags/featured-image-data.php:87
3622
  #: includes/elementor/modules/query-control/controls/group-control-query.php:346
3623
  #: includes/elementor/widgets/accordion.php:534
 
3624
  #: includes/elementor/widgets/heading-modern.php:108
3625
  #: includes/elementor/widgets/products-grid.php:239
3626
  #: includes/elementor/widgets/products-grid.php:390
@@ -4419,7 +4423,7 @@ msgid ""
4419
  "container."
4420
  msgstr ""
4421
 
4422
- #: includes/elementor/modules/settings/base/manager.php:160
4423
  #, fuzzy
4424
  msgid "New Color"
4425
  msgstr "رنگ شکلک"
@@ -4861,6 +4865,9 @@ msgstr "تیتر گذاری"
4861
  #: includes/elementor/widgets/button.php:504
4862
  #: includes/elementor/widgets/button.php:542
4863
  #: includes/elementor/widgets/carousel-navigation.php:309
 
 
 
4864
  #: includes/elementor/widgets/contact-box.php:371
4865
  #: includes/elementor/widgets/contact-form.php:179
4866
  #: includes/elementor/widgets/contact-form.php:464
@@ -5869,6 +5876,92 @@ msgstr ""
5869
  msgid "Hover Color"
5870
  msgstr "رنگ شکلک"
5871
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5872
  #: includes/elementor/widgets/contact-box.php:47
5873
  #: includes/elements/contact-box.php:16
5874
  #, fuzzy
@@ -6405,25 +6498,6 @@ msgstr "کامل"
6405
  msgid "Custom width"
6406
  msgstr "تصویر دلخواه"
6407
 
6408
- #: includes/elementor/widgets/divider.php:193
6409
- #: includes/elementor/widgets/heading-modern.php:155
6410
- #: includes/elementor/widgets/icon.php:166
6411
- #: includes/elementor/widgets/image.php:314
6412
- #: includes/elementor/widgets/modern-button.php:180
6413
- #: includes/elementor/widgets/modern-button.php:810
6414
- #: includes/elementor/widgets/responsive-table.php:133
6415
- #: includes/elementor/widgets/responsive-table.php:200
6416
- #: includes/elementor/widgets/svg.php:279
6417
- #: includes/elementor/widgets/theme-elements/breadcrumbs.php:427
6418
- #: includes/elementor/widgets/theme-elements/copyright.php:138
6419
- #: includes/elementor/widgets/theme-elements/logo.php:157
6420
- #: includes/elementor/widgets/theme-elements/select.php:227
6421
- #: includes/elementor/widgets/theme-elements/shopping-cart.php:191
6422
- #: includes/elementor/widgets/theme-elements/site-title.php:184
6423
- #: includes/elements/image.php:144
6424
- msgid "Alignment"
6425
- msgstr "تراز"
6426
-
6427
  #: includes/elementor/widgets/divider.php:232
6428
  #, fuzzy
6429
  msgid "Symbol Alignment"
@@ -8862,14 +8936,6 @@ msgstr "آدرس"
8862
  msgid "Top space"
8863
  msgstr "فضای خالی"
8864
 
8865
- #: includes/elementor/widgets/staff.php:575
8866
- #: includes/elementor/widgets/text.php:243
8867
- #: includes/elementor/widgets/text.php:792
8868
- #: includes/elements/recent-posts-grid-carousel.php:69
8869
- #: includes/elements/recent-products.php:55 includes/elements/text.php:57
8870
- msgid "Subtitle"
8871
- msgstr "زیرعنوان"
8872
-
8873
  #: includes/elementor/widgets/staff.php:699
8874
  #: includes/elements/socials-list.php:15 includes/elements/socials-list.php:152
8875
  #: includes/elements/socials-list.php:239
2
  msgstr ""
3
  "Project-Id-Version: Auxin Essential Elements\n"
4
  "Report-Msgid-Bugs-To: http://averta.net/phlox/wordpress-theme/\n"
5
+ "POT-Creation-Date: 2022-08-22 09:27:10+00:00\n"
6
  "PO-Revision-Date: 2016-11-09 12:50+0330\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
1152
  #: admin/includes/metaboxes/metabox-fields-general-header.php:602
1153
  #: includes/elementor/widgets/button.php:238
1154
  #: includes/elementor/widgets/carousel-navigation.php:170
1155
+ #: includes/elementor/widgets/circle-chart.php:149
1156
  #: includes/elementor/widgets/custom-list.php:477
1157
  #: includes/elementor/widgets/custom-list.php:509
1158
  #: includes/elementor/widgets/divider.php:202
1195
  #: includes/elementor/modules/common.php:755
1196
  #: includes/elementor/widgets/button.php:234
1197
  #: includes/elementor/widgets/button.php:378
1198
+ #: includes/elementor/widgets/circle-chart.php:145
1199
  #: includes/elementor/widgets/custom-list.php:473
1200
  #: includes/elementor/widgets/custom-list.php:505
1201
  #: includes/elementor/widgets/divider.php:198
2918
  msgid "Select Audio"
2919
  msgstr "انتخاب شکاف آکاردئون"
2920
 
2921
+ #: includes/elementor/class-auxin-elementor-core-elements.php:429
2922
  msgid "Element class \"%s\" not found."
2923
  msgstr ""
2924
 
2925
+ #: includes/elementor/class-auxin-elementor-core-elements.php:525
2926
  msgid "Module class \"%s\" not found."
2927
  msgstr ""
2928
 
2929
+ #: includes/elementor/class-auxin-elementor-core-elements.php:598
2930
  msgid "%s - General"
2931
  msgstr ""
2932
 
2933
+ #: includes/elementor/class-auxin-elementor-core-elements.php:606
2934
  msgid "%s - Featured"
2935
  msgstr ""
2936
 
2937
+ #: includes/elementor/class-auxin-elementor-core-elements.php:614
2938
  #, fuzzy
2939
  msgid "%s - Posts"
2940
  msgstr "نوشته ها"
2941
 
2942
+ #: includes/elementor/class-auxin-elementor-core-elements.php:622
2943
  msgid "%s - Portfolio"
2944
  msgstr ""
2945
 
2946
  #. translators: 1: Plugin name 2: PHP 3: Required PHP version
2947
+ #: includes/elementor/class-auxin-elementor-core-elements.php:709
2948
+ #: includes/elementor/class-auxin-elementor-core-elements.php:733
2949
  msgid "\"%1$s\" requires \"%2$s\" version %3$s or greater."
2950
  msgstr ""
2951
 
2952
+ #: includes/elementor/class-auxin-elementor-core-elements.php:711
2953
  msgid "Elementor"
2954
  msgstr ""
2955
 
2956
+ #: includes/elementor/class-auxin-elementor-core-elements.php:735
2957
  #: includes/elements/code.php:81
2958
  msgid "PHP"
2959
  msgstr ""
2960
 
2961
+ #: includes/elementor/class-auxin-elementor-core-elements.php:792
2962
  msgid "Phlox Icons - Set 1"
2963
  msgstr ""
2964
 
2965
+ #: includes/elementor/class-auxin-elementor-core-elements.php:814
2966
  msgid "Phlox Icons - Set 2"
2967
  msgstr ""
2968
 
3137
  #: includes/elementor/modules/common.php:690
3138
  #: includes/elementor/widgets/button.php:242
3139
  #: includes/elementor/widgets/button.php:379
3140
+ #: includes/elementor/widgets/circle-chart.php:153
3141
  #: includes/elementor/widgets/custom-list.php:481
3142
  #: includes/elementor/widgets/custom-list.php:513
3143
  #: includes/elementor/widgets/divider.php:206
3624
  #: includes/elementor/modules/dynamic-tags/featured-image-data.php:87
3625
  #: includes/elementor/modules/query-control/controls/group-control-query.php:346
3626
  #: includes/elementor/widgets/accordion.php:534
3627
+ #: includes/elementor/widgets/circle-chart.php:124
3628
  #: includes/elementor/widgets/heading-modern.php:108
3629
  #: includes/elementor/widgets/products-grid.php:239
3630
  #: includes/elementor/widgets/products-grid.php:390
4423
  "container."
4424
  msgstr ""
4425
 
4426
+ #: includes/elementor/modules/settings/base/manager.php:159
4427
  #, fuzzy
4428
  msgid "New Color"
4429
  msgstr "رنگ شکلک"
4865
  #: includes/elementor/widgets/button.php:504
4866
  #: includes/elementor/widgets/button.php:542
4867
  #: includes/elementor/widgets/carousel-navigation.php:309
4868
+ #: includes/elementor/widgets/circle-chart.php:281
4869
+ #: includes/elementor/widgets/circle-chart.php:310
4870
+ #: includes/elementor/widgets/circle-chart.php:339
4871
  #: includes/elementor/widgets/contact-box.php:371
4872
  #: includes/elementor/widgets/contact-form.php:179
4873
  #: includes/elementor/widgets/contact-form.php:464
5876
  msgid "Hover Color"
5877
  msgstr "رنگ شکلک"
5878
 
5879
+ #: includes/elementor/widgets/circle-chart.php:47
5880
+ #, fuzzy
5881
+ msgid "Circle Chart"
5882
+ msgstr "دایره"
5883
+
5884
+ #: includes/elementor/widgets/circle-chart.php:95
5885
+ msgid "Chart Info"
5886
+ msgstr ""
5887
+
5888
+ #: includes/elementor/widgets/circle-chart.php:102
5889
+ #, fuzzy
5890
+ msgid "Percentage"
5891
+ msgstr "درصد (%)"
5892
+
5893
+ #: includes/elementor/widgets/circle-chart.php:132
5894
+ #: includes/elementor/widgets/staff.php:575
5895
+ #: includes/elementor/widgets/text.php:243
5896
+ #: includes/elementor/widgets/text.php:792
5897
+ #: includes/elements/recent-posts-grid-carousel.php:69
5898
+ #: includes/elements/recent-products.php:55 includes/elements/text.php:57
5899
+ msgid "Subtitle"
5900
+ msgstr "زیرعنوان"
5901
+
5902
+ #: includes/elementor/widgets/circle-chart.php:140
5903
+ #: includes/elementor/widgets/divider.php:193
5904
+ #: includes/elementor/widgets/heading-modern.php:155
5905
+ #: includes/elementor/widgets/icon.php:166
5906
+ #: includes/elementor/widgets/image.php:314
5907
+ #: includes/elementor/widgets/modern-button.php:180
5908
+ #: includes/elementor/widgets/modern-button.php:810
5909
+ #: includes/elementor/widgets/responsive-table.php:133
5910
+ #: includes/elementor/widgets/responsive-table.php:200
5911
+ #: includes/elementor/widgets/svg.php:279
5912
+ #: includes/elementor/widgets/theme-elements/breadcrumbs.php:427
5913
+ #: includes/elementor/widgets/theme-elements/copyright.php:138
5914
+ #: includes/elementor/widgets/theme-elements/logo.php:157
5915
+ #: includes/elementor/widgets/theme-elements/select.php:227
5916
+ #: includes/elementor/widgets/theme-elements/shopping-cart.php:191
5917
+ #: includes/elementor/widgets/theme-elements/site-title.php:184
5918
+ #: includes/elements/image.php:144
5919
+ msgid "Alignment"
5920
+ msgstr "تراز"
5921
+
5922
+ #: includes/elementor/widgets/circle-chart.php:181
5923
+ #, fuzzy
5924
+ msgid "Chart Style"
5925
+ msgstr "ظاهر"
5926
+
5927
+ #: includes/elementor/widgets/circle-chart.php:189
5928
+ #, fuzzy
5929
+ msgid "Chart Width"
5930
+ msgstr "عرض"
5931
+
5932
+ #: includes/elementor/widgets/circle-chart.php:211
5933
+ msgid "Border Thickness"
5934
+ msgstr ""
5935
+
5936
+ #: includes/elementor/widgets/circle-chart.php:231
5937
+ msgid "Default Circle Color"
5938
+ msgstr ""
5939
+
5940
+ #: includes/elementor/widgets/circle-chart.php:242
5941
+ #, fuzzy
5942
+ msgid "Active Circle Color"
5943
+ msgstr "دایره با خط بیرونی"
5944
+
5945
+ #: includes/elementor/widgets/circle-chart.php:255
5946
+ #, fuzzy
5947
+ msgid "Text Style"
5948
+ msgstr "ظاهر"
5949
+
5950
+ #: includes/elementor/widgets/circle-chart.php:263
5951
+ #, fuzzy
5952
+ msgid "Title Style"
5953
+ msgstr "ظاهر جداکننده"
5954
+
5955
+ #: includes/elementor/widgets/circle-chart.php:292
5956
+ #, fuzzy
5957
+ msgid "Number Style"
5958
+ msgstr "شماره"
5959
+
5960
+ #: includes/elementor/widgets/circle-chart.php:321
5961
+ #, fuzzy
5962
+ msgid "Subtitle Style"
5963
+ msgstr "زیرعنوان"
5964
+
5965
  #: includes/elementor/widgets/contact-box.php:47
5966
  #: includes/elements/contact-box.php:16
5967
  #, fuzzy
6498
  msgid "Custom width"
6499
  msgstr "تصویر دلخواه"
6500
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6501
  #: includes/elementor/widgets/divider.php:232
6502
  #, fuzzy
6503
  msgid "Symbol Alignment"
8936
  msgid "Top space"
8937
  msgstr "فضای خالی"
8938
 
 
 
 
 
 
 
 
 
8939
  #: includes/elementor/widgets/staff.php:699
8940
  #: includes/elements/socials-list.php:15 includes/elements/socials-list.php:152
8941
  #: includes/elements/socials-list.php:239
languages/auxin-elements.pot CHANGED
@@ -1,9 +1,9 @@
1
  # Averta Copyright (c) {2022}
2
  msgid ""
3
  msgstr ""
4
- "Project-Id-Version: Phlox Core Elements 2.9.22\n"
5
  "Report-Msgid-Bugs-To: http://averta.net/phlox/wordpress-theme/\n"
6
- "POT-Creation-Date: 2022-08-02 09:14:20+00:00\n"
7
  "MIME-Version: 1.0\n"
8
  "Content-Type: text/plain; charset=utf-8\n"
9
  "Content-Transfer-Encoding: 8bit\n"
@@ -1075,6 +1075,7 @@ msgstr ""
1075
  #: admin/includes/metaboxes/metabox-fields-general-header.php:602
1076
  #: includes/elementor/widgets/button.php:238
1077
  #: includes/elementor/widgets/carousel-navigation.php:170
 
1078
  #: includes/elementor/widgets/custom-list.php:477
1079
  #: includes/elementor/widgets/custom-list.php:509
1080
  #: includes/elementor/widgets/divider.php:202
@@ -1117,6 +1118,7 @@ msgstr ""
1117
  #: includes/elementor/modules/common.php:755
1118
  #: includes/elementor/widgets/button.php:234
1119
  #: includes/elementor/widgets/button.php:378
 
1120
  #: includes/elementor/widgets/custom-list.php:473
1121
  #: includes/elementor/widgets/custom-list.php:505
1122
  #: includes/elementor/widgets/divider.php:198
@@ -2744,50 +2746,50 @@ msgstr ""
2744
  msgid "Select Audio"
2745
  msgstr ""
2746
 
2747
- #: includes/elementor/class-auxin-elementor-core-elements.php:425
2748
  msgid "Element class \"%s\" not found."
2749
  msgstr ""
2750
 
2751
- #: includes/elementor/class-auxin-elementor-core-elements.php:521
2752
  msgid "Module class \"%s\" not found."
2753
  msgstr ""
2754
 
2755
- #: includes/elementor/class-auxin-elementor-core-elements.php:594
2756
  msgid "%s - General"
2757
  msgstr ""
2758
 
2759
- #: includes/elementor/class-auxin-elementor-core-elements.php:602
2760
  msgid "%s - Featured"
2761
  msgstr ""
2762
 
2763
- #: includes/elementor/class-auxin-elementor-core-elements.php:610
2764
  msgid "%s - Posts"
2765
  msgstr ""
2766
 
2767
- #: includes/elementor/class-auxin-elementor-core-elements.php:618
2768
  msgid "%s - Portfolio"
2769
  msgstr ""
2770
 
2771
- #: includes/elementor/class-auxin-elementor-core-elements.php:705
2772
- #: includes/elementor/class-auxin-elementor-core-elements.php:729
2773
  #. translators: 1: Plugin name 2: PHP 3: Required PHP version
2774
  msgid "\"%1$s\" requires \"%2$s\" version %3$s or greater."
2775
  msgstr ""
2776
 
2777
- #: includes/elementor/class-auxin-elementor-core-elements.php:707
2778
  msgid "Elementor"
2779
  msgstr ""
2780
 
2781
- #: includes/elementor/class-auxin-elementor-core-elements.php:731
2782
  #: includes/elements/code.php:81
2783
  msgid "PHP"
2784
  msgstr ""
2785
 
2786
- #: includes/elementor/class-auxin-elementor-core-elements.php:788
2787
  msgid "Phlox Icons - Set 1"
2788
  msgstr ""
2789
 
2790
- #: includes/elementor/class-auxin-elementor-core-elements.php:810
2791
  msgid "Phlox Icons - Set 2"
2792
  msgstr ""
2793
 
@@ -2949,6 +2951,7 @@ msgstr ""
2949
  #: includes/elementor/modules/common.php:690
2950
  #: includes/elementor/widgets/button.php:242
2951
  #: includes/elementor/widgets/button.php:379
 
2952
  #: includes/elementor/widgets/custom-list.php:481
2953
  #: includes/elementor/widgets/custom-list.php:513
2954
  #: includes/elementor/widgets/divider.php:206
@@ -3402,6 +3405,7 @@ msgstr ""
3402
  #: includes/elementor/modules/dynamic-tags/featured-image-data.php:87
3403
  #: includes/elementor/modules/query-control/controls/group-control-query.php:346
3404
  #: includes/elementor/widgets/accordion.php:534
 
3405
  #: includes/elementor/widgets/heading-modern.php:108
3406
  #: includes/elementor/widgets/products-grid.php:239
3407
  #: includes/elementor/widgets/products-grid.php:390
@@ -4139,7 +4143,7 @@ msgid ""
4139
  "container."
4140
  msgstr ""
4141
 
4142
- #: includes/elementor/modules/settings/base/manager.php:160
4143
  msgid "New Color"
4144
  msgstr ""
4145
 
@@ -4565,6 +4569,9 @@ msgstr ""
4565
  #: includes/elementor/widgets/button.php:504
4566
  #: includes/elementor/widgets/button.php:542
4567
  #: includes/elementor/widgets/carousel-navigation.php:309
 
 
 
4568
  #: includes/elementor/widgets/contact-box.php:371
4569
  #: includes/elementor/widgets/contact-form.php:179
4570
  #: includes/elementor/widgets/contact-form.php:464
@@ -5550,6 +5557,83 @@ msgstr ""
5550
  msgid "Hover Color"
5551
  msgstr ""
5552
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5553
  #: includes/elementor/widgets/contact-box.php:47
5554
  #: includes/elements/contact-box.php:16
5555
  msgid "Contact Box"
@@ -6055,25 +6139,6 @@ msgstr ""
6055
  msgid "Custom width"
6056
  msgstr ""
6057
 
6058
- #: includes/elementor/widgets/divider.php:193
6059
- #: includes/elementor/widgets/heading-modern.php:155
6060
- #: includes/elementor/widgets/icon.php:166
6061
- #: includes/elementor/widgets/image.php:314
6062
- #: includes/elementor/widgets/modern-button.php:180
6063
- #: includes/elementor/widgets/modern-button.php:810
6064
- #: includes/elementor/widgets/responsive-table.php:133
6065
- #: includes/elementor/widgets/responsive-table.php:200
6066
- #: includes/elementor/widgets/svg.php:279
6067
- #: includes/elementor/widgets/theme-elements/breadcrumbs.php:427
6068
- #: includes/elementor/widgets/theme-elements/copyright.php:138
6069
- #: includes/elementor/widgets/theme-elements/logo.php:157
6070
- #: includes/elementor/widgets/theme-elements/select.php:227
6071
- #: includes/elementor/widgets/theme-elements/shopping-cart.php:191
6072
- #: includes/elementor/widgets/theme-elements/site-title.php:184
6073
- #: includes/elements/image.php:144
6074
- msgid "Alignment"
6075
- msgstr ""
6076
-
6077
  #: includes/elementor/widgets/divider.php:232
6078
  msgid "Symbol Alignment"
6079
  msgstr ""
@@ -8362,14 +8427,6 @@ msgstr ""
8362
  msgid "Top space"
8363
  msgstr ""
8364
 
8365
- #: includes/elementor/widgets/staff.php:575
8366
- #: includes/elementor/widgets/text.php:243
8367
- #: includes/elementor/widgets/text.php:792
8368
- #: includes/elements/recent-posts-grid-carousel.php:69
8369
- #: includes/elements/recent-products.php:55 includes/elements/text.php:57
8370
- msgid "Subtitle"
8371
- msgstr ""
8372
-
8373
  #: includes/elementor/widgets/staff.php:699
8374
  #: includes/elements/socials-list.php:15 includes/elements/socials-list.php:152
8375
  #: includes/elements/socials-list.php:239
1
  # Averta Copyright (c) {2022}
2
  msgid ""
3
  msgstr ""
4
+ "Project-Id-Version: Phlox Core Elements 2.10.0\n"
5
  "Report-Msgid-Bugs-To: http://averta.net/phlox/wordpress-theme/\n"
6
+ "POT-Creation-Date: 2022-08-22 09:27:10+00:00\n"
7
  "MIME-Version: 1.0\n"
8
  "Content-Type: text/plain; charset=utf-8\n"
9
  "Content-Transfer-Encoding: 8bit\n"
1075
  #: admin/includes/metaboxes/metabox-fields-general-header.php:602
1076
  #: includes/elementor/widgets/button.php:238
1077
  #: includes/elementor/widgets/carousel-navigation.php:170
1078
+ #: includes/elementor/widgets/circle-chart.php:149
1079
  #: includes/elementor/widgets/custom-list.php:477
1080
  #: includes/elementor/widgets/custom-list.php:509
1081
  #: includes/elementor/widgets/divider.php:202
1118
  #: includes/elementor/modules/common.php:755
1119
  #: includes/elementor/widgets/button.php:234
1120
  #: includes/elementor/widgets/button.php:378
1121
+ #: includes/elementor/widgets/circle-chart.php:145
1122
  #: includes/elementor/widgets/custom-list.php:473
1123
  #: includes/elementor/widgets/custom-list.php:505
1124
  #: includes/elementor/widgets/divider.php:198
2746
  msgid "Select Audio"
2747
  msgstr ""
2748
 
2749
+ #: includes/elementor/class-auxin-elementor-core-elements.php:429
2750
  msgid "Element class \"%s\" not found."
2751
  msgstr ""
2752
 
2753
+ #: includes/elementor/class-auxin-elementor-core-elements.php:525
2754
  msgid "Module class \"%s\" not found."
2755
  msgstr ""
2756
 
2757
+ #: includes/elementor/class-auxin-elementor-core-elements.php:598
2758
  msgid "%s - General"
2759
  msgstr ""
2760
 
2761
+ #: includes/elementor/class-auxin-elementor-core-elements.php:606
2762
  msgid "%s - Featured"
2763
  msgstr ""
2764
 
2765
+ #: includes/elementor/class-auxin-elementor-core-elements.php:614
2766
  msgid "%s - Posts"
2767
  msgstr ""
2768
 
2769
+ #: includes/elementor/class-auxin-elementor-core-elements.php:622
2770
  msgid "%s - Portfolio"
2771
  msgstr ""
2772
 
2773
+ #: includes/elementor/class-auxin-elementor-core-elements.php:709
2774
+ #: includes/elementor/class-auxin-elementor-core-elements.php:733
2775
  #. translators: 1: Plugin name 2: PHP 3: Required PHP version
2776
  msgid "\"%1$s\" requires \"%2$s\" version %3$s or greater."
2777
  msgstr ""
2778
 
2779
+ #: includes/elementor/class-auxin-elementor-core-elements.php:711
2780
  msgid "Elementor"
2781
  msgstr ""
2782
 
2783
+ #: includes/elementor/class-auxin-elementor-core-elements.php:735
2784
  #: includes/elements/code.php:81
2785
  msgid "PHP"
2786
  msgstr ""
2787
 
2788
+ #: includes/elementor/class-auxin-elementor-core-elements.php:792
2789
  msgid "Phlox Icons - Set 1"
2790
  msgstr ""
2791
 
2792
+ #: includes/elementor/class-auxin-elementor-core-elements.php:814
2793
  msgid "Phlox Icons - Set 2"
2794
  msgstr ""
2795
 
2951
  #: includes/elementor/modules/common.php:690
2952
  #: includes/elementor/widgets/button.php:242
2953
  #: includes/elementor/widgets/button.php:379
2954
+ #: includes/elementor/widgets/circle-chart.php:153
2955
  #: includes/elementor/widgets/custom-list.php:481
2956
  #: includes/elementor/widgets/custom-list.php:513
2957
  #: includes/elementor/widgets/divider.php:206
3405
  #: includes/elementor/modules/dynamic-tags/featured-image-data.php:87
3406
  #: includes/elementor/modules/query-control/controls/group-control-query.php:346
3407
  #: includes/elementor/widgets/accordion.php:534
3408
+ #: includes/elementor/widgets/circle-chart.php:124
3409
  #: includes/elementor/widgets/heading-modern.php:108
3410
  #: includes/elementor/widgets/products-grid.php:239
3411
  #: includes/elementor/widgets/products-grid.php:390
4143
  "container."
4144
  msgstr ""
4145
 
4146
+ #: includes/elementor/modules/settings/base/manager.php:159
4147
  msgid "New Color"
4148
  msgstr ""
4149
 
4569
  #: includes/elementor/widgets/button.php:504
4570
  #: includes/elementor/widgets/button.php:542
4571
  #: includes/elementor/widgets/carousel-navigation.php:309
4572
+ #: includes/elementor/widgets/circle-chart.php:281
4573
+ #: includes/elementor/widgets/circle-chart.php:310
4574
+ #: includes/elementor/widgets/circle-chart.php:339
4575
  #: includes/elementor/widgets/contact-box.php:371
4576
  #: includes/elementor/widgets/contact-form.php:179
4577
  #: includes/elementor/widgets/contact-form.php:464
5557
  msgid "Hover Color"
5558
  msgstr ""
5559
 
5560
+ #: includes/elementor/widgets/circle-chart.php:47
5561
+ msgid "Circle Chart"
5562
+ msgstr ""
5563
+
5564
+ #: includes/elementor/widgets/circle-chart.php:95
5565
+ msgid "Chart Info"
5566
+ msgstr ""
5567
+
5568
+ #: includes/elementor/widgets/circle-chart.php:102
5569
+ msgid "Percentage"
5570
+ msgstr ""
5571
+
5572
+ #: includes/elementor/widgets/circle-chart.php:132
5573
+ #: includes/elementor/widgets/staff.php:575
5574
+ #: includes/elementor/widgets/text.php:243
5575
+ #: includes/elementor/widgets/text.php:792
5576
+ #: includes/elements/recent-posts-grid-carousel.php:69
5577
+ #: includes/elements/recent-products.php:55 includes/elements/text.php:57
5578
+ msgid "Subtitle"
5579
+ msgstr ""
5580
+
5581
+ #: includes/elementor/widgets/circle-chart.php:140
5582
+ #: includes/elementor/widgets/divider.php:193
5583
+ #: includes/elementor/widgets/heading-modern.php:155
5584
+ #: includes/elementor/widgets/icon.php:166
5585
+ #: includes/elementor/widgets/image.php:314
5586
+ #: includes/elementor/widgets/modern-button.php:180
5587
+ #: includes/elementor/widgets/modern-button.php:810
5588
+ #: includes/elementor/widgets/responsive-table.php:133
5589
+ #: includes/elementor/widgets/responsive-table.php:200
5590
+ #: includes/elementor/widgets/svg.php:279
5591
+ #: includes/elementor/widgets/theme-elements/breadcrumbs.php:427
5592
+ #: includes/elementor/widgets/theme-elements/copyright.php:138
5593
+ #: includes/elementor/widgets/theme-elements/logo.php:157
5594
+ #: includes/elementor/widgets/theme-elements/select.php:227
5595
+ #: includes/elementor/widgets/theme-elements/shopping-cart.php:191
5596
+ #: includes/elementor/widgets/theme-elements/site-title.php:184
5597
+ #: includes/elements/image.php:144
5598
+ msgid "Alignment"
5599
+ msgstr ""
5600
+
5601
+ #: includes/elementor/widgets/circle-chart.php:181
5602
+ msgid "Chart Style"
5603
+ msgstr ""
5604
+
5605
+ #: includes/elementor/widgets/circle-chart.php:189
5606
+ msgid "Chart Width"
5607
+ msgstr ""
5608
+
5609
+ #: includes/elementor/widgets/circle-chart.php:211
5610
+ msgid "Border Thickness"
5611
+ msgstr ""
5612
+
5613
+ #: includes/elementor/widgets/circle-chart.php:231
5614
+ msgid "Default Circle Color"
5615
+ msgstr ""
5616
+
5617
+ #: includes/elementor/widgets/circle-chart.php:242
5618
+ msgid "Active Circle Color"
5619
+ msgstr ""
5620
+
5621
+ #: includes/elementor/widgets/circle-chart.php:255
5622
+ msgid "Text Style"
5623
+ msgstr ""
5624
+
5625
+ #: includes/elementor/widgets/circle-chart.php:263
5626
+ msgid "Title Style"
5627
+ msgstr ""
5628
+
5629
+ #: includes/elementor/widgets/circle-chart.php:292
5630
+ msgid "Number Style"
5631
+ msgstr ""
5632
+
5633
+ #: includes/elementor/widgets/circle-chart.php:321
5634
+ msgid "Subtitle Style"
5635
+ msgstr ""
5636
+
5637
  #: includes/elementor/widgets/contact-box.php:47
5638
  #: includes/elements/contact-box.php:16
5639
  msgid "Contact Box"
6139
  msgid "Custom width"
6140
  msgstr ""
6141
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6142
  #: includes/elementor/widgets/divider.php:232
6143
  msgid "Symbol Alignment"
6144
  msgstr ""
8427
  msgid "Top space"
8428
  msgstr ""
8429
 
 
 
 
 
 
 
 
 
8430
  #: includes/elementor/widgets/staff.php:699
8431
  #: includes/elements/socials-list.php:15 includes/elements/socials-list.php:152
8432
  #: includes/elements/socials-list.php:239
public/assets/js/plugins.js CHANGED
@@ -1,4 +1,4 @@
1
- /*! Phlox Core Plugin - v2.9.22 (2022-08)
2
  * All required plugins
3
  * http://phlox.pro/
4
  */
1
+ /*! Phlox Core Plugin - v2.10.0 (2022-08)
2
  * All required plugins
3
  * http://phlox.pro/
4
  */