Shortcodes and extra features for Phlox theme - Version 2.9.2

Version Description

Download this release

Release Info

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

Code changes from version 2.9.0 to 2.9.2

README.txt CHANGED
@@ -7,7 +7,7 @@ Tags: phlox, gallery, elementor, siteorigin, auxin, averta, auxin-elements, fram
7
  Requires PHP: 5.4
8
  Requires at least: 4.6
9
  Tested up to: 5.8.1
10
- Stable tag: 2.9.0
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: 5.8.1
10
+ Stable tag: 2.9.2
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.0 (2021-11)
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.9.2 (2021-12)
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!
admin/includes/classes/class-auxin-license-activation.php CHANGED
@@ -165,7 +165,7 @@ class Auxin_License_Activation {
165
  $output['message'] = $response['msg'] . sprintf( ' <sub>[%s]</sub>', $response['code'] );
166
 
167
  } else {
168
- $output['message'] = __( 'Connection error...', 'auxin-elements' );
169
  $output['success'] = 0;
170
  }
171
 
165
  $output['message'] = $response['msg'] . sprintf( ' <sub>[%s]</sub>', $response['code'] );
166
 
167
  } else {
168
+ $output['message'] = sprintf( "%s <a href='http://avt.li/phmli'>%s</a>", __( 'Connection error...', 'auxin-elements' ), __( 'Learn more', 'auxin-elements' ) );
169
  $output['success'] = 0;
170
  }
171
 
auxin-elements.php CHANGED
@@ -12,14 +12,14 @@
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.0
16
  * Author: averta
17
  * Author URI: http://averta.net
18
  * Text Domain: auxin-elements
19
  * License: GPL2
20
  * License URI: https://www.gnu.org/licenses/gpl-2.0.html
21
  * Domain Path: /languages
22
- * Tested up to: 5.8.1
23
  */
24
 
25
  // If this file is called directly, abort.
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.2
16
  * Author: averta
17
  * Author URI: http://averta.net
18
  * Text Domain: auxin-elements
19
  * License: GPL2
20
  * License URI: https://www.gnu.org/licenses/gpl-2.0.html
21
  * Domain Path: /languages
22
+ * Tested up to: 5.8.2
23
  */
24
 
25
  // If this file is called directly, abort.
includes/define.php CHANGED
@@ -12,7 +12,7 @@ if( ! defined( 'THEME_NAME' ) ){
12
  }
13
 
14
 
15
- define( 'AUXELS_VERSION' , '2.9.0' );
16
 
17
  define( 'AUXELS_SLUG' , 'auxin-elements' );
18
 
12
  }
13
 
14
 
15
+ define( 'AUXELS_VERSION' , '2.9.2' );
16
 
17
  define( 'AUXELS_SLUG' , 'auxin-elements' );
18
 
includes/elementor/class-auxin-elementor-core-elements.php CHANGED
@@ -104,8 +104,20 @@ final class Elements {
104
  */
105
  public function __construct() {
106
  add_action( 'plugins_loaded', array( $this, 'init' ) );
 
 
 
 
107
  }
108
 
 
 
 
 
 
 
 
 
109
  /**
110
  * Initialize the plugin
111
  *
@@ -238,7 +250,10 @@ final class Elements {
238
  'file' => $this->dir_path . '/widgets/recent-products.php',
239
  'class' => 'Elements\RecentProducts'
240
  ],
241
-
 
 
 
242
  '80' => [
243
  'file' => $this->dir_path . '/widgets/recent-comments.php',
244
  'class' => 'Elements\RecentComments'
104
  */
105
  public function __construct() {
106
  add_action( 'plugins_loaded', array( $this, 'init' ) );
107
+
108
+ if ( ! empty( $_REQUEST['action'] ) && 'elementor' === $_REQUEST['action'] && is_admin() ) {
109
+ add_action( 'init', [ $this, 'register_wc_hooks' ], 5 );
110
+ }
111
  }
112
 
113
+ public function register_wc_hooks() {
114
+ if ( !class_exists('WooCommerce') ) {
115
+ return;
116
+ }
117
+
118
+ wc()->frontend_includes();
119
+ }
120
+
121
  /**
122
  * Initialize the plugin
123
  *
250
  'file' => $this->dir_path . '/widgets/recent-products.php',
251
  'class' => 'Elements\RecentProducts'
252
  ],
253
+ '75' => [
254
+ 'file' => $this->dir_path . '/widgets/products-grid.php',
255
+ 'class' => 'Elements\ProductsGrid'
256
+ ],
257
  '80' => [
258
  'file' => $this->dir_path . '/widgets/recent-comments.php',
259
  'class' => 'Elements\RecentComments'
includes/elementor/widgets/heading-modern.php CHANGED
@@ -5,6 +5,7 @@ use Elementor\Plugin;
5
  use Elementor\Widget_Base;
6
  use Elementor\Controls_Manager;
7
  use Elementor\Group_Control_Typography;
 
8
  use Elementor\Core\Schemes\Typography;
9
  use Elementor\Group_Control_Box_Shadow;
10
  use Elementor\Group_Control_Text_Shadow;
@@ -351,6 +352,16 @@ class ModernHeading extends Widget_Base {
351
  )
352
  );
353
 
 
 
 
 
 
 
 
 
 
 
354
  $this->start_controls_tabs( 'title_tabs' );
355
 
356
  $this->start_controls_tab(
5
  use Elementor\Widget_Base;
6
  use Elementor\Controls_Manager;
7
  use Elementor\Group_Control_Typography;
8
+ use Elementor\Group_Control_Text_Stroke;
9
  use Elementor\Core\Schemes\Typography;
10
  use Elementor\Group_Control_Box_Shadow;
11
  use Elementor\Group_Control_Text_Shadow;
352
  )
353
  );
354
 
355
+ if ( class_exists( 'Elementor\Group_Control_Text_Stroke' ) ) {
356
+ $this->add_group_control(
357
+ Group_Control_Text_Stroke::get_type(),
358
+ [
359
+ 'name' => 'title_stroke',
360
+ 'selector' => '{{WRAPPER}} .aux-modern-heading-primary'
361
+ ]
362
+ );
363
+ }
364
+
365
  $this->start_controls_tabs( 'title_tabs' );
366
 
367
  $this->start_controls_tab(
includes/elementor/widgets/products-grid.php ADDED
@@ -0,0 +1,1151 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Auxin\Plugin\CoreElements\Elementor\Elements;
3
+
4
+ use Elementor\Plugin;
5
+ use Elementor\Core\Files\CSS\Post;
6
+ use Elementor\Widget_Base;
7
+ use Elementor\Controls_Manager;
8
+ use Elementor\Group_Control_Image_Size;
9
+ use Elementor\Group_Control_Typography;
10
+ use Elementor\Core\Schemes\Color;
11
+ use Elementor\Core\Schemes\Typography;
12
+ use Elementor\Utils;
13
+ use Elementor\Control_Media;
14
+ use Elementor\Group_Control_Border;
15
+ use Elementor\Group_Control_Box_Shadow;
16
+ use Elementor\Group_Control_Text_Shadow;
17
+ use Elementor\Group_Control_Background;
18
+
19
+ if ( ! defined( 'ABSPATH' ) ) {
20
+ exit; // Exit if accessed directly.
21
+ }
22
+
23
+ /**
24
+ * Elementor 'AdvancedRecentProducts' widget.
25
+ *
26
+ * Elementor widget that displays an 'AdvancedRecentProducts' with lightbox.
27
+ *
28
+ * @since 1.0.0
29
+ */
30
+ class ProductsGrid extends Widget_Base {
31
+
32
+ /**
33
+ * Get widget name.
34
+ *
35
+ * Retrieve 'AdvancedRecentProducts' widget name.
36
+ *
37
+ * @since 1.0.0
38
+ * @access public
39
+ *
40
+ * @return string Widget name.
41
+ */
42
+ public function get_name() {
43
+ return 'aux_product_grid';
44
+ }
45
+
46
+ /**
47
+ * Get widget title.
48
+ *
49
+ * Retrieve 'AdvancedRecentProducts' widget title.
50
+ *
51
+ * @since 1.0.0
52
+ * @access public
53
+ *
54
+ * @return string Widget title.
55
+ */
56
+ public function get_title() {
57
+ return __('Products Grid', 'auxin-elements' );
58
+ }
59
+
60
+ /**
61
+ * Get widget icon.
62
+ *
63
+ * Retrieve 'AdvancedRecentProducts' widget icon.
64
+ *
65
+ * @since 1.0.0
66
+ * @access public
67
+ *
68
+ * @return string Widget icon.
69
+ */
70
+ public function get_icon() {
71
+ return 'eicon-woocommerce auxin-badge-pro';
72
+ }
73
+
74
+ /**
75
+ * Get widget categories.
76
+ *
77
+ * Retrieve 'AdvancedRecentProducts' widget icon.
78
+ *
79
+ * @since 1.0.0
80
+ * @access public
81
+ *
82
+ * @return string Widget icon.
83
+ */
84
+ public function get_categories() {
85
+ return array( 'auxin-pro' );
86
+ }
87
+
88
+ /**
89
+ * Retrieve the terms in a given taxonomy or list of taxonomies.
90
+ *
91
+ * Retrieve 'AdvancedRecentProducts' widget icon.
92
+ *
93
+ * @since 1.0.0
94
+ * @access public
95
+ *
96
+ * @return string Widget icon.
97
+ */
98
+ public function get_terms() {
99
+ // Get terms
100
+ $terms = get_terms(
101
+ array(
102
+ 'taxonomy' => 'product_cat',
103
+ 'orderby' => 'count',
104
+ 'hide_empty' => true
105
+ )
106
+ );
107
+
108
+ // Then create a list
109
+ $list = array();
110
+
111
+ if ( ! is_wp_error( $terms ) && is_array( $terms ) ){
112
+ foreach ( $terms as $key => $value ) {
113
+ $list[$value->term_id] = $value->name;
114
+ }
115
+ }
116
+
117
+ return $list;
118
+ }
119
+
120
+ /**
121
+ * Register 'AdvancedRecentProducts' widget controls.
122
+ *
123
+ * Adds different input fields to allow the user to change and customize the widget settings.
124
+ *
125
+ * @since 1.0.0
126
+ * @access protected
127
+ */
128
+ protected function _register_controls() {
129
+ /*-------------------------------------------------------------------*/
130
+ /* Layout TAB
131
+ /*-------------------------------------------------------------------*/
132
+
133
+ /* Layout Section
134
+ /*-------------------------------------*/
135
+
136
+ $this->start_controls_section(
137
+ 'layout_section',
138
+ array(
139
+ 'label' => __('Layout', 'auxin-elements' ),
140
+ 'tab' => Controls_Manager::TAB_LAYOUT
141
+ )
142
+ );
143
+
144
+ $this->add_control(
145
+ 'columns',
146
+ array(
147
+ 'label' => __( 'Columns', 'auxin-elements' ),
148
+ 'type' => Controls_Manager::SELECT,
149
+ 'default' => '4',
150
+ 'options' => array(
151
+ '1' => '1',
152
+ '2' => '2',
153
+ '3' => '3',
154
+ '4' => '4',
155
+ '5' => '5',
156
+ ),
157
+ 'frontend_available' => true,
158
+ )
159
+ );
160
+
161
+ $this->add_control(
162
+ 'num',
163
+ array(
164
+ 'label' => __('Number of posts to show', 'auxin-elements'),
165
+ 'label_block' => true,
166
+ 'type' => Controls_Manager::NUMBER,
167
+ 'default' => '8',
168
+ 'min' => 1,
169
+ 'step' => 1
170
+ )
171
+ );
172
+
173
+ $this->end_controls_section();
174
+ /*-------------------------------------------------------------------*/
175
+ /* Content TAB
176
+ /*-------------------------------------------------------------------*/
177
+
178
+ /* Query Section
179
+ /*-------------------------------------*/
180
+
181
+ $this->start_controls_section(
182
+ 'query_section',
183
+ array(
184
+ 'label' => __('Query', 'auxin-elements' ),
185
+ )
186
+ );
187
+
188
+ $this->add_control(
189
+ 'product_type',
190
+ array(
191
+ 'label' => __('Products Type','auxin-elements' ),
192
+ 'label_block' => true,
193
+ 'type' => Controls_Manager::SELECT,
194
+ 'options' => array(
195
+ 'recent' => __('Recent Products' , 'auxin-elements'),
196
+ 'featured' => __('Featured Products' , 'auxin-elements'),
197
+ 'top_rated' => __('Top Rated Products', 'auxin-elements'),
198
+ 'best_selling' => __('Best Selling Products' , 'auxin-elements'),
199
+ 'sale' => __('On Sale Products' , 'auxin-elements'),
200
+ 'deal' => __('Deal Products' , 'auxin-elements'),
201
+ ),
202
+ 'default' => 'recent',
203
+ )
204
+ );
205
+
206
+ $this->add_control(
207
+ 'cat',
208
+ array(
209
+ 'label' => __('Categories', 'auxin-elements'),
210
+ 'description' => __('Specifies a category that you want to show posts from it. In order to choose the all categories leave the field empty', 'auxin-elements' ),
211
+ 'type' => Controls_Manager::SELECT2,
212
+ 'multiple' => true,
213
+ 'options' => $this->get_terms(),
214
+ 'default' => array(),
215
+ )
216
+ );
217
+
218
+ $this->add_control(
219
+ 'exclude_without_media',
220
+ array(
221
+ 'label' => __('Exclude products without media','auxin-elements' ),
222
+ 'type' => Controls_Manager::SWITCHER,
223
+ 'label_on' => __( 'On', 'auxin-elements' ),
224
+ 'label_off' => __( 'Off', 'auxin-elements' ),
225
+ 'return_value' => 'yes',
226
+ 'default' => 'yes'
227
+ )
228
+ );
229
+
230
+ $this->add_control(
231
+ 'order_by',
232
+ array(
233
+ 'label' => __('Order by', 'auxin-elements'),
234
+ 'type' => Controls_Manager::SELECT,
235
+ 'default' => 'date',
236
+ 'options' => array(
237
+ 'date' => __('Date', 'auxin-elements'),
238
+ 'menu_order date' => __('Menu Order', 'auxin-elements'),
239
+ 'title' => __('Title', 'auxin-elements'),
240
+ 'ID' => __('ID', 'auxin-elements'),
241
+ 'rand' => __('Random', 'auxin-elements'),
242
+ 'comment_count' => __('Comments', 'auxin-elements'),
243
+ 'modified' => __('Date Modified', 'auxin-elements'),
244
+ 'author' => __('Author', 'auxin-elements'),
245
+ 'post__in' => __('Inserted Post IDs', 'auxin-elements')
246
+ ),
247
+ )
248
+ );
249
+
250
+ $this->add_control(
251
+ 'order',
252
+ array(
253
+ 'label' => __('Order', 'auxin-elements'),
254
+ 'type' => Controls_Manager::SELECT,
255
+ 'default' => 'DESC',
256
+ 'options' => array(
257
+ 'DESC' => __('Descending', 'auxin-elements'),
258
+ 'ASC' => __('Ascending', 'auxin-elements'),
259
+ ),
260
+ )
261
+ );
262
+
263
+ $this->add_control(
264
+ 'only_products__in',
265
+ array(
266
+ 'label' => __('Only products','auxin-elements' ),
267
+ 'description' => __('If you intend to display ONLY specific products, you should specify the products here. You have to insert the Products IDs that are separated by comma (eg. 53,34,87,25).', 'auxin-elements' ),
268
+ 'type' => Controls_Manager::TEXT
269
+ )
270
+ );
271
+
272
+ $this->add_control(
273
+ 'include',
274
+ array(
275
+ 'label' => __('Include products','auxin-elements' ),
276
+ 'description' => __('If you intend to include additional products, you should specify the products here. You have to insert the Products IDs that are separated by comma (eg. 53,34,87,25)', 'auxin-elements' ),
277
+ 'type' => Controls_Manager::TEXT
278
+ )
279
+ );
280
+
281
+ $this->add_control(
282
+ 'exclude',
283
+ array(
284
+ 'label' => __('Exclude products','auxin-elements' ),
285
+ 'description' => __('If you intend to exclude specific products from result, you should specify the products here. You have to insert the Products IDs that are separated by comma (eg. 53,34,87,25)', 'auxin-elements' ),
286
+ 'type' => Controls_Manager::TEXT
287
+ )
288
+ );
289
+
290
+ $this->add_control(
291
+ 'offset',
292
+ array(
293
+ 'label' => __('Start offset','auxin-elements' ),
294
+ 'description' => __('Number of products to displace or pass over.', 'auxin-elements' ),
295
+ 'type' => Controls_Manager::NUMBER,
296
+ 'default' => ''
297
+ )
298
+ );
299
+
300
+ $this->end_controls_section();
301
+
302
+ /*-------------------------------------------------------------------*/
303
+ /* Settings TAB
304
+ /*-------------------------------------------------------------------*/
305
+ /*-----------------------------------------------------------------------------------*/
306
+ /* Rating Style Section
307
+ /*-----------------------------------------------------------------------------------*/
308
+
309
+ $this->start_controls_section(
310
+ 'wrappers_section',
311
+ array(
312
+ 'label' => __( 'Wrappers', 'auxin-elements' ),
313
+ 'tab' => Controls_Manager::TAB_STYLE,
314
+ )
315
+ );
316
+
317
+ $this->add_responsive_control(
318
+ 'wrapper_margin_bottom',
319
+ array(
320
+ 'label' => __( 'Product Bottom space', 'auxin-elements' ),
321
+ 'type' => Controls_Manager::SLIDER,
322
+ 'range' => array(
323
+ 'px' => array(
324
+ 'max' => 100,
325
+ ),
326
+ ),
327
+ 'selectors' => array(
328
+ '{{WRAPPER}} .type-product' => 'padding-bottom: {{SIZE}}{{UNIT}};',
329
+ ),
330
+ )
331
+ );
332
+
333
+ $this->add_responsive_control(
334
+ 'wrapper_info_padding',
335
+ array(
336
+ 'label' => __( 'Info Wrapper Padding', 'auxin-elements' ),
337
+ 'type' => Controls_Manager::DIMENSIONS,
338
+ 'size_units' => array( 'px', '%' ),
339
+ 'selectors' => array(
340
+ '{{WRAPPER}} .aux-shop-info-wrapper' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
341
+ ),
342
+ )
343
+ );
344
+
345
+ $this->add_responsive_control(
346
+ 'wrapper_meta_padding',
347
+ array(
348
+ 'label' => __( 'Meta Wrapper Padding', 'auxin-elements' ),
349
+ 'type' => Controls_Manager::DIMENSIONS,
350
+ 'size_units' => array( 'px', '%' ),
351
+ 'selectors' => array(
352
+ '{{WRAPPER}} .aux-shop-meta-wrapper' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
353
+ ),
354
+ )
355
+ );
356
+
357
+ $this->add_responsive_control(
358
+ 'wrapper_desc_padding',
359
+ array(
360
+ 'label' => __( 'Description Wrapper Padding', 'auxin-elements' ),
361
+ 'type' => Controls_Manager::DIMENSIONS,
362
+ 'size_units' => array( 'px', '%' ),
363
+ 'selectors' => array(
364
+ '{{WRAPPER}} .aux-shop-desc-wrapper' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
365
+ ),
366
+ )
367
+ );
368
+
369
+ $this->add_responsive_control(
370
+ 'wrapper_btn_padding',
371
+ array(
372
+ 'label' => __( 'Buttons Wrapper Padding', 'auxin-elements' ),
373
+ 'type' => Controls_Manager::DIMENSIONS,
374
+ 'size_units' => array( 'px', '%' ),
375
+ 'selectors' => array(
376
+ '{{WRAPPER}} .aux-shop-btns-wrapper' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
377
+ ),
378
+ )
379
+ );
380
+
381
+ $this->end_controls_section();
382
+
383
+ /*-----------------------------------------------------------------------------------*/
384
+ /* title_style_section
385
+ /*-----------------------------------------------------------------------------------*/
386
+
387
+ $this->start_controls_section(
388
+ 'title_style_section',
389
+ array(
390
+ 'label' => __( 'Title', 'auxin-elements' ),
391
+ 'tab' => Controls_Manager::TAB_STYLE,
392
+ )
393
+ );
394
+
395
+ $this->start_controls_tabs( 'title_colors' );
396
+
397
+ $this->start_controls_tab(
398
+ 'title_color_normal',
399
+ array(
400
+ 'label' => __( 'Normal' , 'auxin-elements' ),
401
+ )
402
+ );
403
+
404
+ $this->add_control(
405
+ 'title_color',
406
+ array(
407
+ 'label' => __( 'Color', 'auxin-elements' ),
408
+ 'type' => Controls_Manager::COLOR,
409
+ 'selectors' => array(
410
+ '{{WRAPPER}} .auxshp-loop-title, {{WRAPPER}} .woocommerce-loop-product__title' => 'color: {{VALUE}};',
411
+ ),
412
+ )
413
+ );
414
+
415
+ $this->end_controls_tab();
416
+
417
+ $this->start_controls_tab(
418
+ 'title_color_hover',
419
+ array(
420
+ 'label' => __( 'Hover' , 'auxin-elements' ),
421
+ )
422
+ );
423
+
424
+ $this->add_control(
425
+ 'title_hover_color',
426
+ array(
427
+ 'label' => __( 'Color', 'auxin-elements' ),
428
+ 'type' => Controls_Manager::COLOR,
429
+ 'selectors' => array(
430
+ '{{WRAPPER}} .auxshp-loop-title:hover, {{WRAPPER}} .woocommerce-loop-product__title:hover' => 'color: {{VALUE}};',
431
+ ),
432
+ )
433
+ );
434
+
435
+ $this->end_controls_tab();
436
+
437
+ $this->end_controls_tabs();
438
+
439
+ $this->add_group_control(
440
+ Group_Control_Typography::get_type(),
441
+ array(
442
+ 'name' => 'title_typography',
443
+ 'scheme' => Typography::TYPOGRAPHY_1,
444
+ 'selector' => '{{WRAPPER}} .auxshp-loop-title, {{WRAPPER}} .woocommerce-loop-product__title',
445
+ )
446
+ );
447
+
448
+ $this->end_controls_section();
449
+
450
+ /*-----------------------------------------------------------------------------------*/
451
+ /* price_style_section
452
+ /*-----------------------------------------------------------------------------------*/
453
+
454
+ $this->start_controls_section(
455
+ 'price_style_section',
456
+ array(
457
+ 'label' => __( 'Price', 'auxin-elements' ),
458
+ 'tab' => Controls_Manager::TAB_STYLE,
459
+ )
460
+ );
461
+
462
+ $this->start_controls_tabs( 'price_colors' );
463
+
464
+ $this->start_controls_tab(
465
+ 'price_color_normal',
466
+ array(
467
+ 'label' => __( 'Normal' , 'auxin-elements' ),
468
+ )
469
+ );
470
+
471
+ $this->add_control(
472
+ 'price_color',
473
+ array(
474
+ 'label' => __( 'Color', 'auxin-elements' ),
475
+ 'type' => Controls_Manager::COLOR,
476
+ 'selectors' => array(
477
+ '{{WRAPPER}} .woocommerce-Price-amount' => 'color: {{VALUE}};',
478
+ ),
479
+ )
480
+ );
481
+
482
+ $this->end_controls_tab();
483
+
484
+ $this->start_controls_tab(
485
+ 'price_color_hover',
486
+ array(
487
+ 'label' => __( 'Hover' , 'auxin-elements' ),
488
+ )
489
+ );
490
+
491
+ $this->add_control(
492
+ 'price_hover_color',
493
+ array(
494
+ 'label' => __( 'Color', 'auxin-elements' ),
495
+ 'type' => Controls_Manager::COLOR,
496
+ 'selectors' => array(
497
+ '{{WRAPPER}} .woocommerce-Price-amount:hover' => 'color: {{VALUE}};',
498
+ ),
499
+ )
500
+ );
501
+
502
+ $this->end_controls_tab();
503
+
504
+ $this->end_controls_tabs();
505
+
506
+ $this->add_group_control(
507
+ Group_Control_Typography::get_type(),
508
+ array(
509
+ 'name' => 'price_typography',
510
+ 'scheme' => Typography::TYPOGRAPHY_1,
511
+ 'selector' => '{{WRAPPER}} .woocommerce-Price-amount',
512
+ )
513
+ );
514
+
515
+ $this->end_controls_section();
516
+
517
+ if ( class_exists( 'AUXSHP') ) {
518
+
519
+ /*-----------------------------------------------------------------------------------*/
520
+ /* info_style_section
521
+ /*-----------------------------------------------------------------------------------*/
522
+
523
+ $this->start_controls_section(
524
+ 'info_style_section',
525
+ array(
526
+ 'label' => __( 'Product Info', 'auxin-elements' ),
527
+ 'tab' => Controls_Manager::TAB_STYLE,
528
+ )
529
+ );
530
+
531
+ $this->start_controls_tabs( 'info_colors' );
532
+
533
+ $this->start_controls_tab(
534
+ 'info_color_normal',
535
+ array(
536
+ 'label' => __( 'Normal' , 'auxin-elements' ),
537
+ )
538
+ );
539
+
540
+ $this->add_control(
541
+ 'info_color',
542
+ array(
543
+ 'label' => __( 'Color', 'auxin-elements' ),
544
+ 'type' => Controls_Manager::COLOR,
545
+ 'selectors' => array(
546
+ '{{WRAPPER}} .aux-shop-meta-terms > a' => 'color: {{VALUE}};',
547
+ ),
548
+ )
549
+ );
550
+
551
+ $this->end_controls_tab();
552
+
553
+ $this->start_controls_tab(
554
+ 'info_color_hover',
555
+ array(
556
+ 'label' => __( 'Hover' , 'auxin-elements' ),
557
+ )
558
+ );
559
+
560
+ $this->add_control(
561
+ 'info_hover_color',
562
+ array(
563
+ 'label' => __( 'Color', 'auxin-elements' ),
564
+ 'type' => Controls_Manager::COLOR,
565
+ 'selectors' => array(
566
+ '{{WRAPPER}} .aux-shop-meta-terms > a:hover' => 'color: {{VALUE}};',
567
+ ),
568
+ )
569
+ );
570
+
571
+ $this->end_controls_tab();
572
+
573
+ $this->end_controls_tabs();
574
+
575
+ $this->add_group_control(
576
+ Group_Control_Typography::get_type(),
577
+ array(
578
+ 'name' => 'info_typography',
579
+ 'scheme' => Typography::TYPOGRAPHY_1,
580
+ 'selector' => '{{WRAPPER}} .aux-shop-meta-terms, {{WRAPPER}} .aux-shop-meta-terms a',
581
+ )
582
+ );
583
+
584
+ $this->end_controls_section();
585
+
586
+ /*-----------------------------------------------------------------------------------*/
587
+ /* Description Style Section
588
+ /*-----------------------------------------------------------------------------------*/
589
+
590
+ $this->start_controls_section(
591
+ 'desc_style_section',
592
+ array(
593
+ 'label' => __( 'Description', 'auxin-elements' ),
594
+ 'tab' => Controls_Manager::TAB_STYLE,
595
+ )
596
+ );
597
+
598
+ $this->start_controls_tabs( 'desc_colors' );
599
+
600
+ $this->start_controls_tab(
601
+ 'desc_color_normal',
602
+ array(
603
+ 'label' => __( 'Normal' , 'auxin-elements' ),
604
+ )
605
+ );
606
+
607
+ $this->add_control(
608
+ 'desc_color',
609
+ array(
610
+ 'label' => __( 'Color', 'auxin-elements' ),
611
+ 'type' => Controls_Manager::COLOR,
612
+ 'selectors' => array(
613
+ '{{WRAPPER}} .aux-shop-desc-wrapper' => 'color: {{VALUE}};',
614
+ ),
615
+ )
616
+ );
617
+
618
+ $this->end_controls_tab();
619
+
620
+ $this->start_controls_tab(
621
+ 'desc_color_hover',
622
+ array(
623
+ 'label' => __( 'Hover' , 'auxin-elements' ),
624
+ )
625
+ );
626
+
627
+ $this->add_control(
628
+ 'desc_hover_color',
629
+ array(
630
+ 'label' => __( 'Color', 'auxin-elements' ),
631
+ 'type' => Controls_Manager::COLOR,
632
+ 'selectors' => array(
633
+ '{{WRAPPER}} .aux-shop-desc-wrapper:hover' => 'color: {{VALUE}};',
634
+ ),
635
+ )
636
+ );
637
+
638
+ $this->end_controls_tab();
639
+
640
+ $this->end_controls_tabs();
641
+
642
+ $this->add_group_control(
643
+ Group_Control_Typography::get_type(),
644
+ array(
645
+ 'name' => 'desc_typography',
646
+ 'scheme' => Typography::TYPOGRAPHY_1,
647
+ 'selector' => '{{WRAPPER}} .aux-shop-desc-wrapper',
648
+ )
649
+ );
650
+
651
+ $this->end_controls_section();
652
+
653
+ /*-----------------------------------------------------------------------------------*/
654
+ /* meta_fields_style_section
655
+ /*-----------------------------------------------------------------------------------*/
656
+
657
+ $this->start_controls_section(
658
+ 'meta_fields_section',
659
+ array(
660
+ 'label' => __( 'Meta Fields', 'auxin-elements' ),
661
+ 'tab' => Controls_Manager::TAB_STYLE,
662
+ )
663
+ );
664
+
665
+ $this->start_controls_tabs( 'meta_fields_colors' );
666
+
667
+ $this->start_controls_tab(
668
+ 'meta_fields_color_normal',
669
+ array(
670
+ 'label' => __( 'Normal' , 'auxin-elements' ),
671
+ )
672
+ );
673
+
674
+ $this->add_control(
675
+ 'meta_fields_color',
676
+ array(
677
+ 'label' => __( 'Color', 'auxin-elements' ),
678
+ 'type' => Controls_Manager::COLOR,
679
+ 'selectors' => array(
680
+ '{{WRAPPER}} .aux-shop-meta-field span' => 'color: {{VALUE}};',
681
+ ),
682
+ )
683
+ );
684
+
685
+ $this->end_controls_tab();
686
+
687
+ $this->start_controls_tab(
688
+ 'meta_fields_color_hover',
689
+ array(
690
+ 'label' => __( 'Hover' , 'auxin-elements' ),
691
+ )
692
+ );
693
+
694
+ $this->add_control(
695
+ 'meta_fields_hover_color',
696
+ array(
697
+ 'label' => __( 'Color', 'auxin-elements' ),
698
+ 'type' => Controls_Manager::COLOR,
699
+ 'selectors' => array(
700
+ '{{WRAPPER}} .aux-shop-meta-field span:hover' => 'color: {{VALUE}};',
701
+ ),
702
+ )
703
+ );
704
+
705
+ $this->end_controls_tab();
706
+
707
+ $this->end_controls_tabs();
708
+
709
+ $this->add_group_control(
710
+ Group_Control_Typography::get_type(),
711
+ array(
712
+ 'name' => 'meta_fields_typography',
713
+ 'scheme' => Typography::TYPOGRAPHY_1,
714
+ 'selector' => '{{WRAPPER}} .aux-shop-meta-field span',
715
+ )
716
+ );
717
+
718
+ $this->add_responsive_control(
719
+ 'meta_fields_padding',
720
+ array(
721
+ 'label' => __( 'Padding', 'auxin-elements' ),
722
+ 'type' => Controls_Manager::DIMENSIONS,
723
+ 'size_units' => array( 'px', '%' ),
724
+ 'selectors' => array(
725
+ '{{WRAPPER}} .aux-shop-meta-field' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
726
+ ),
727
+ )
728
+ );
729
+
730
+ $this->end_controls_section();
731
+
732
+ /*-----------------------------------------------------------------------------------*/
733
+ /* Rating Style Section
734
+ /*-----------------------------------------------------------------------------------*/
735
+
736
+ $this->start_controls_section(
737
+ 'rating_style_section',
738
+ array(
739
+ 'label' => __( 'Rating', 'auxin-elements' ),
740
+ 'tab' => Controls_Manager::TAB_STYLE,
741
+ )
742
+ );
743
+
744
+
745
+ $this->add_control(
746
+ 'rating_empty_color',
747
+ array(
748
+ 'label' => __( 'Empty Color', 'auxin-elements' ),
749
+ 'type' => Controls_Manager::COLOR,
750
+ 'selectors' => array(
751
+ '{{WRAPPER}} .aux-rating-box.aux-star-rating::before' => 'color: {{VALUE}} !important;'
752
+ )
753
+ )
754
+ );
755
+
756
+ $this->add_control(
757
+ 'rating_fill_color',
758
+ array(
759
+ 'label' => __( 'Fill Color', 'auxin-elements' ),
760
+ 'type' => Controls_Manager::COLOR,
761
+ 'selectors' => array(
762
+ '{{WRAPPER}} .aux-rating-box.aux-star-rating span::before' => 'color: {{VALUE}} !important;'
763
+ )
764
+ )
765
+ );
766
+
767
+ $this->add_responsive_control(
768
+ 'rating_size',
769
+ array(
770
+ 'label' => __( 'Size', 'auxin-elements' ),
771
+ 'type' => Controls_Manager::SLIDER,
772
+ 'size_units' => array( 'px', 'em', 'rem' ),
773
+ 'range' => array(
774
+ 'px' => array(
775
+ 'min' => 1,
776
+ 'max' => 200
777
+ )
778
+ ),
779
+ 'selectors' => array(
780
+ '{{WRAPPER}} .aux-star-rating' => 'font-size: {{SIZE}}{{UNIT}};'
781
+ )
782
+ )
783
+ );
784
+
785
+
786
+ $this->end_controls_section();
787
+ }
788
+
789
+ /*-----------------------------------------------------------------------------------*/
790
+ /* Badge Style Section
791
+ /*-----------------------------------------------------------------------------------*/
792
+
793
+ $this->start_controls_section(
794
+ 'badge_style_section',
795
+ array(
796
+ 'label' => __( 'Sales Badge', 'auxin-elements' ),
797
+ 'tab' => Controls_Manager::TAB_STYLE,
798
+ )
799
+ );
800
+
801
+
802
+ $this->start_controls_tabs( 'badge_colors' );
803
+
804
+ $this->start_controls_tab(
805
+ 'badge_color_normal',
806
+ array(
807
+ 'label' => __( 'Normal' , 'auxin-elements' ),
808
+ )
809
+ );
810
+
811
+ $this->add_control(
812
+ 'badge_color',
813
+ array(
814
+ 'label' => __( 'Color', 'auxin-elements' ),
815
+ 'type' => Controls_Manager::COLOR,
816
+ 'selectors' => array(
817
+ '{{WRAPPER}} .onsale, {{WRAPPER}} .auxin-onsale-badge' => 'color: {{VALUE}};',
818
+ ),
819
+ )
820
+ );
821
+
822
+ $this->end_controls_tab();
823
+
824
+ $this->start_controls_tab(
825
+ 'badge_color_hover',
826
+ array(
827
+ 'label' => __( 'Hover' , 'auxin-elements' ),
828
+ )
829
+ );
830
+
831
+ $this->add_control(
832
+ 'badge_hover_color',
833
+ array(
834
+ 'label' => __( 'Color', 'auxin-elements' ),
835
+ 'type' => Controls_Manager::COLOR,
836
+ 'selectors' => array(
837
+ '{{WRAPPER}} .onsale:hover, {{WRAPPER}} .auxin-onsale-badge:hover' => 'color: {{VALUE}};',
838
+ ),
839
+ )
840
+ );
841
+
842
+ $this->end_controls_tab();
843
+
844
+ $this->end_controls_tabs();
845
+
846
+ $this->add_group_control(
847
+ Group_Control_Typography::get_type(),
848
+ array(
849
+ 'name' => 'badge_typography',
850
+ 'scheme' => Typography::TYPOGRAPHY_1,
851
+ 'selector' => '{{WRAPPER}} .onsale, {{WRAPPER}} .auxin-onsale-badge',
852
+ )
853
+ );
854
+
855
+ $this->add_responsive_control(
856
+ 'wrapper_badge_padding',
857
+ array(
858
+ 'label' => __( 'Padding', 'auxin-elements' ),
859
+ 'type' => Controls_Manager::DIMENSIONS,
860
+ 'size_units' => array( 'px', '%' ),
861
+ 'selectors' => array(
862
+ '{{WRAPPER}} .onsale, {{WRAPPER}} .auxin-onsale-badge' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
863
+ ),
864
+ )
865
+ );
866
+
867
+ $this->add_group_control(
868
+ Group_Control_Background::get_type(),
869
+ array(
870
+ 'name' => 'header_background',
871
+ 'label' => __( 'Background', 'auxin-elements' ),
872
+ 'types' => array( 'classic', 'gradient' ),
873
+ 'selector' => '{{WRAPPER}} .onsale, {{WRAPPER}} .auxin-onsale-badge'
874
+ )
875
+ );
876
+
877
+ $this->end_controls_section();
878
+
879
+ if ( class_exists('AUXSHP') ) {
880
+ /*-----------------------------------------------------------------------------------*/
881
+ /* Badge Style Section
882
+ /*-----------------------------------------------------------------------------------*/
883
+
884
+ $this->start_controls_section(
885
+ 'feat_badge_style_section',
886
+ array(
887
+ 'label' => __( 'Featured Badge', 'auxin-elements' ),
888
+ 'tab' => Controls_Manager::TAB_STYLE,
889
+ )
890
+ );
891
+
892
+
893
+ $this->start_controls_tabs( 'feat_badge_colors' );
894
+
895
+ $this->start_controls_tab(
896
+ 'feat_badge_color_normal',
897
+ array(
898
+ 'label' => __( 'Normal' , 'auxin-elements' ),
899
+ )
900
+ );
901
+
902
+ $this->add_control(
903
+ 'feat_badge_color',
904
+ array(
905
+ 'label' => __( 'Color', 'auxin-elements' ),
906
+ 'type' => Controls_Manager::COLOR,
907
+ 'selectors' => array(
908
+ '{{WRAPPER}} .aux-product-featured-badge' => 'color: {{VALUE}};',
909
+ ),
910
+ )
911
+ );
912
+
913
+ $this->end_controls_tab();
914
+
915
+ $this->start_controls_tab(
916
+ 'feat_badge_color_hover',
917
+ array(
918
+ 'label' => __( 'Hover' , 'auxin-elements' ),
919
+ )
920
+ );
921
+
922
+ $this->add_control(
923
+ 'feat_badge_hover_color',
924
+ array(
925
+ 'label' => __( 'Color', 'auxin-elements' ),
926
+ 'type' => Controls_Manager::COLOR,
927
+ 'selectors' => array(
928
+ '{{WRAPPER}} .aux-product-featured-badge:hover' => 'color: {{VALUE}};',
929
+ ),
930
+ )
931
+ );
932
+
933
+ $this->end_controls_tab();
934
+
935
+ $this->end_controls_tabs();
936
+
937
+ $this->add_group_control(
938
+ Group_Control_Typography::get_type(),
939
+ array(
940
+ 'name' => 'feat_badge_typography',
941
+ 'scheme' => Typography::TYPOGRAPHY_1,
942
+ 'selector' => '{{WRAPPER}} .aux-product-featured-badge',
943
+ )
944
+ );
945
+
946
+ $this->add_responsive_control(
947
+ 'wrapper_feat_badge_padding',
948
+ array(
949
+ 'label' => __( 'Padding', 'auxin-elements' ),
950
+ 'type' => Controls_Manager::DIMENSIONS,
951
+ 'size_units' => array( 'px', '%' ),
952
+ 'selectors' => array(
953
+ '{{WRAPPER}} .aux-product-featured-badge' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
954
+ ),
955
+ )
956
+ );
957
+
958
+ $this->add_group_control(
959
+ Group_Control_Background::get_type(),
960
+ array(
961
+ 'name' => 'feat_badge_bg',
962
+ 'label' => __( 'Background', 'auxin-elements' ),
963
+ 'types' => array( 'classic', 'gradient' ),
964
+ 'selector' => '{{WRAPPER}} .aux-product-featured-badge'
965
+ )
966
+ );
967
+
968
+ $this->end_controls_section();
969
+
970
+ }
971
+ /*-----------------------------------------------------------------------------------*/
972
+ /* Button
973
+ /*-----------------------------------------------------------------------------------*/
974
+
975
+ $this->start_controls_section(
976
+ 'btn_section',
977
+ array(
978
+ 'label' => __('Button', 'auxin-elements' ),
979
+ 'tab' => Controls_Manager::TAB_STYLE,
980
+ )
981
+ );
982
+
983
+ $this->start_controls_tabs( 'btn_bg_tab' );
984
+
985
+ $this->start_controls_tab(
986
+ 'btn_bg_normal',
987
+ array(
988
+ 'label' => __( 'Normal' , 'auxin-elements' )
989
+ )
990
+ );
991
+
992
+ $this->add_group_control(
993
+ Group_Control_Background::get_type(),
994
+ array(
995
+ 'name' => 'btn',
996
+ 'label' => __( 'Background', 'auxin-elements' ),
997
+ 'types' => array( 'classic', 'gradient' ),
998
+ 'selector' => '{{WRAPPER}} .add_to_cart_button, {{WRAPPER}} a.button',
999
+ )
1000
+ );
1001
+
1002
+ $this->add_group_control(
1003
+ Group_Control_Box_Shadow::get_type(),
1004
+ array(
1005
+ 'name' => 'btn_shadow',
1006
+ 'selector' => '{{WRAPPER}} .add_to_cart_button, {{WRAPPER}} a.button'
1007
+ )
1008
+ );
1009
+
1010
+ $this->add_control(
1011
+ 'btn_text_color',
1012
+ array(
1013
+ 'label' => __( 'Color', 'auxin-elements' ),
1014
+ 'type' => Controls_Manager::COLOR,
1015
+ 'selectors' => array(
1016
+ '{{WRAPPER}} .add_to_cart_button, {{WRAPPER}} a.button' => 'color: {{VALUE}};',
1017
+ )
1018
+ )
1019
+ );
1020
+
1021
+ $this->add_group_control(
1022
+ Group_Control_Text_Shadow::get_type(),
1023
+ array(
1024
+ 'name' => 'btn_text_shadow',
1025
+ 'label' => __( 'Text Shadow', 'auxin-elements' ),
1026
+ 'selector' => '{{WRAPPER}} .add_to_cart_button, {{WRAPPER}} a.button',
1027
+ )
1028
+ );
1029
+
1030
+ $this->add_group_control(
1031
+ Group_Control_Typography::get_type(),
1032
+ array(
1033
+ 'name' => 'btn_text_typography',
1034
+ 'scheme' => Typography::TYPOGRAPHY_1,
1035
+ 'selector' => '{{WRAPPER}} .add_to_cart_button, {{WRAPPER}} a.button'
1036
+ )
1037
+ );
1038
+
1039
+ $this->end_controls_tab();
1040
+
1041
+ $this->start_controls_tab(
1042
+ 'btn_bg_hover',
1043
+ array(
1044
+ 'label' => __( 'Hover' , 'auxin-elements' )
1045
+ )
1046
+ );
1047
+
1048
+ $this->add_group_control(
1049
+ Group_Control_Background::get_type(),
1050
+ array(
1051
+ 'name' => 'btn_bg_hover',
1052
+ 'label' => __( 'Background', 'auxin-elements' ),
1053
+ 'types' => array( 'classic', 'gradient' ),
1054
+ 'selector' => '{{WRAPPER}} .add_to_cart_button:hover, {{WRAPPER}} a.button:hover',
1055
+ )
1056
+ );
1057
+
1058
+ $this->add_group_control(
1059
+ Group_Control_Box_Shadow::get_type(),
1060
+ array(
1061
+ 'name' => 'btn_shadow_hover',
1062
+ 'selector' => '{{WRAPPER}} .add_to_cart_button:hover, {{WRAPPER}} a.button:hover'
1063
+ )
1064
+ );
1065
+
1066
+ $this->add_control(
1067
+ 'btn_text_color_hover',
1068
+ array(
1069
+ 'label' => __( 'Color', 'auxin-elements' ),
1070
+ 'type' => Controls_Manager::COLOR,
1071
+ 'selectors' => array(
1072
+ '{{WRAPPER}} .add_to_cart_button, {{WRAPPER}} a.button' => 'color: {{VALUE}};',
1073
+ )
1074
+ )
1075
+ );
1076
+
1077
+ $this->add_group_control(
1078
+ Group_Control_Text_Shadow::get_type(),
1079
+ array(
1080
+ 'name' => 'btn_text_shadow_hover',
1081
+ 'label' => __( 'Text Shadow', 'auxin-elements' ),
1082
+ 'selector' => '{{WRAPPER}} .add_to_cart_button, {{WRAPPER}} a.button',
1083
+ )
1084
+ );
1085
+
1086
+ $this->add_group_control(
1087
+ Group_Control_Typography::get_type(),
1088
+ array(
1089
+ 'name' => 'btn_text_typography_hover',
1090
+ 'scheme' => Typography::TYPOGRAPHY_1,
1091
+ 'selector' => '{{WRAPPER}} .add_to_cart_button, {{WRAPPER}} a.button'
1092
+ )
1093
+ );
1094
+
1095
+ $this->end_controls_tab();
1096
+
1097
+ $this->end_controls_tabs();
1098
+
1099
+ $this->add_responsive_control(
1100
+ 'btn_padding',
1101
+ array(
1102
+ 'label' => __( 'Button Padding', 'auxin-elements' ),
1103
+ 'type' => Controls_Manager::DIMENSIONS,
1104
+ 'size_units' => array( 'px', '%' ),
1105
+ 'selectors' => array(
1106
+ '{{WRAPPER}} .add_to_cart_button, {{WRAPPER}} a.button' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
1107
+ ),
1108
+ )
1109
+ );
1110
+
1111
+ $this->end_controls_section();
1112
+
1113
+
1114
+ }
1115
+
1116
+ /**
1117
+ * Render image box widget output on the frontend.
1118
+ *
1119
+ * Written in PHP and used to generate the final HTML.
1120
+ *
1121
+ * @since 1.0.0
1122
+ * @access protected
1123
+ */
1124
+ protected function render() {
1125
+
1126
+ $settings = $this->get_settings_for_display();
1127
+
1128
+ $args = array(
1129
+ 'desktop_cnum' => $settings['columns'],
1130
+
1131
+ // Query section
1132
+ 'product_type' => $settings['product_type'],
1133
+
1134
+ // Query section
1135
+ 'cat' => $settings['cat'],
1136
+ 'num' => $settings['num'],
1137
+ 'exclude_without_media' => $settings['exclude_without_media'],
1138
+ 'order_by' => $settings['order_by'],
1139
+ 'order' => $settings['order'],
1140
+ 'include' => $settings['include'],
1141
+ 'exclude' => $settings['exclude'],
1142
+ 'only_products__in' => $settings['only_products__in'],
1143
+
1144
+ );
1145
+
1146
+ // // get the shortcode base blog page
1147
+ echo auxin_widget_products_grid_callback( $args );
1148
+
1149
+ }
1150
+
1151
+ }
includes/elementor/widgets/text.php CHANGED
@@ -6,6 +6,7 @@ use Elementor\Widget_Base;
6
  use Elementor\Controls_Manager;
7
  use Elementor\Group_Control_Image_Size;
8
  use Elementor\Group_Control_Typography;
 
9
  use Elementor\Core\Schemes\Typography;
10
  use Elementor\Group_Control_Border;
11
  use Elementor\Group_Control_Box_Shadow;
@@ -735,6 +736,15 @@ class Text extends Widget_Base {
735
 
736
  $this->end_controls_tabs();
737
 
 
 
 
 
 
 
 
 
 
738
 
739
  $this->add_group_control(
740
  Group_Control_Typography::get_type(),
6
  use Elementor\Controls_Manager;
7
  use Elementor\Group_Control_Image_Size;
8
  use Elementor\Group_Control_Typography;
9
+ use Elementor\Group_Control_Text_Stroke;
10
  use Elementor\Core\Schemes\Typography;
11
  use Elementor\Group_Control_Border;
12
  use Elementor\Group_Control_Box_Shadow;
736
 
737
  $this->end_controls_tabs();
738
 
739
+ if ( class_exists( 'Elementor\Group_Control_Text_Stroke' ) ) {
740
+ $this->add_group_control(
741
+ Group_Control_Text_Stroke::get_type(),
742
+ [
743
+ 'name' => 'title_stroke',
744
+ 'selector' => '{{WRAPPER}} .col-title a, {{WRAPPER}} .col-title'
745
+ ]
746
+ );
747
+ }
748
 
749
  $this->add_group_control(
750
  Group_Control_Typography::get_type(),
includes/elements/products-grid.php ADDED
@@ -0,0 +1,65 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Products Grid Element
4
+ *
5
+ *
6
+ * @package Auxin
7
+ * @license LICENSE.txt
8
+ * @author averta
9
+ * @link http://phlox.pro/
10
+ * @copyright (c) 2010-2021 averta
11
+ */
12
+
13
+ function auxin_widget_products_grid_callback( $atts, $shortcode_content = null ){
14
+
15
+ // Defining default attributes
16
+ $default_atts = array(
17
+ 'product_type' => '', // available values : recent, featured, top_rated, sale, deal, best_selling
18
+ 'title' => '', // header title (required)
19
+ 'subtitle' => '', // header subtitle
20
+ 'cat' => '',
21
+ 'num' => '8', // max generated entry
22
+ 'exclude_without_media' => 0,
23
+ 'order_by' => 'date',
24
+ 'order' => 'DESC',
25
+ 'only_products__in' => '', // display only these post IDs. array or string comma separated
26
+ 'include' => '', // include these post IDs in result too. array or string comma separated
27
+ 'exclude' => '', // exclude these post IDs from result. array or string comma separated
28
+ 'offset' => '',
29
+ 'desktop_cnum' => 4,
30
+ 'post_type' => 'product',
31
+ 'taxonomy_name' => 'product_cat', // the taxonomy that we intent to display in post info
32
+ 'tax_args' => '',
33
+ 'terms' => '',
34
+ 'extra_classes' => '',
35
+ 'universal_id' => '',
36
+ 'use_wp_query' => false, // true to use the global wp_query, false to use internal custom query
37
+ 'reset_query' => true,
38
+ 'wp_query_args' => array(), // additional wp_query args
39
+ 'query_args' => array(),
40
+ 'custom_wp_query' => '',
41
+ 'template_part_file' => 'products-grid',
42
+ 'extra_template_path' => AUXELS_PUB_DIR . '/templates/woocommerce',
43
+ 'base' => 'aux_products_grid',
44
+ 'base_class' => 'aux-widget-products-grid'
45
+ );
46
+
47
+ $result = auxin_get_widget_scafold( $atts, $default_atts, $shortcode_content );
48
+
49
+ ob_start();
50
+
51
+ wc_setup_loop([
52
+ 'columns'=> $result['parsed_atts']['desktop_cnum']
53
+ ]);
54
+
55
+ echo "<div class='woocommerce woocommerce-page aux-shop-archive'>";
56
+ woocommerce_product_loop_start();
57
+ // widget custom output -----------------------
58
+ include_once auxin_get_template_file( $result['parsed_atts']['template_part_file'], '', $result['parsed_atts']['extra_template_path'] );
59
+ echo auxin_products_grid( $result['parsed_atts'] );
60
+ woocommerce_product_loop_end();
61
+ unset( $GLOBALS['woocommerce_loop'] );
62
+ echo '</div>';
63
+
64
+ return ob_get_clean();
65
+ }
includes/general-functions.php CHANGED
@@ -2417,6 +2417,14 @@ function auxin_get_taxonomies( $args = [], $output = 'names', $operator = 'and'
2417
  function auxin_search_page_results($post_type = 'post',$args = array()) {
2418
  switch ($post_type) {
2419
  case 'product':
 
 
 
 
 
 
 
 
2420
  echo auxin_widget_the_recent_products_callback($args);
2421
  break;
2422
 
2417
  function auxin_search_page_results($post_type = 'post',$args = array()) {
2418
  switch ($post_type) {
2419
  case 'product':
2420
+
2421
+ if ( class_exists('AUXSHP') ) {
2422
+ $args['image_aspect_ratio'] = auxin_get_option( 'product_index_thumb_ratio', '1.33' );
2423
+ } else {
2424
+ $sizes = wc_get_image_size( 'woocommerce_thumbnail' );
2425
+ $args['image_aspect_ratio'] = $sizes['width']/$sizes['height'];
2426
+ }
2427
+
2428
  echo auxin_widget_the_recent_products_callback($args);
2429
  break;
2430
 
includes/index.php CHANGED
@@ -72,6 +72,7 @@ if( auxin_is_plugin_active( 'custom-facebook-feed/custom-facebook-feed.php' ) )
72
  // check if woocommerce is activated then it adds its element to page builder and widget
73
  if( auxin_is_plugin_active( 'woocommerce/woocommerce.php' ) ) {
74
  include_once( 'elements/recent-products.php' );
 
75
  }
76
 
77
  include_once( 'elements/latest-posts-slider.php' );
72
  // check if woocommerce is activated then it adds its element to page builder and widget
73
  if( auxin_is_plugin_active( 'woocommerce/woocommerce.php' ) ) {
74
  include_once( 'elements/recent-products.php' );
75
+ include_once( 'elements/products-grid.php' );
76
  }
77
 
78
  include_once( 'elements/latest-posts-slider.php' );
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: 2021-11-22 11:53:55+00:00\n"
6
  "PO-Revision-Date: 2016-11-09 12:50+0330\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -355,6 +355,10 @@ msgstr ""
355
  msgid "Connection error..."
356
  msgstr ""
357
 
 
 
 
 
358
  #: admin/includes/classes/class-auxin-notices.php:30
359
  msgid "You need to enter a unique id for notice."
360
  msgstr ""
@@ -705,7 +709,7 @@ msgstr ""
705
  #: admin/includes/metaboxes/metabox-fields-general-footer.php:21
706
  #: includes/elementor/modules/documents/footer.php:35
707
  #: includes/elementor/modules/documents/footer.php:46
708
- #: includes/elementor/widgets/text.php:1570
709
  msgid "Footer"
710
  msgstr ""
711
 
@@ -848,8 +852,8 @@ msgstr ""
848
 
849
  #: admin/includes/metaboxes/metabox-fields-general-header.php:21
850
  #: includes/elementor/modules/documents/header.php:35
851
- #: includes/elementor/widgets/text.php:104
852
- #: includes/elementor/widgets/text.php:347
853
  #, fuzzy
854
  msgid "Header"
855
  msgstr "تیتر گذاری"
@@ -1158,7 +1162,7 @@ msgstr ""
1158
  #: includes/elementor/widgets/custom-list.php:509
1159
  #: includes/elementor/widgets/divider.php:202
1160
  #: includes/elementor/widgets/divider.php:241
1161
- #: includes/elementor/widgets/heading-modern.php:163
1162
  #: includes/elementor/widgets/icon.php:174
1163
  #: includes/elementor/widgets/image.php:323
1164
  #: includes/elementor/widgets/modern-button.php:143
@@ -1174,7 +1178,7 @@ msgstr ""
1174
  #: includes/elementor/widgets/staff.php:878
1175
  #: includes/elementor/widgets/svg.php:288
1176
  #: includes/elementor/widgets/testimonial.php:813
1177
- #: includes/elementor/widgets/text.php:1443
1178
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:435
1179
  #: includes/elementor/widgets/theme-elements/copyright.php:146
1180
  #: includes/elementor/widgets/theme-elements/current-time.php:139
@@ -1199,7 +1203,7 @@ msgstr "وسط"
1199
  #: includes/elementor/widgets/custom-list.php:505
1200
  #: includes/elementor/widgets/divider.php:198
1201
  #: includes/elementor/widgets/divider.php:237
1202
- #: includes/elementor/widgets/heading-modern.php:159
1203
  #: includes/elementor/widgets/icon.php:170
1204
  #: includes/elementor/widgets/image.php:319
1205
  #: includes/elementor/widgets/modern-button.php:184
@@ -1215,9 +1219,9 @@ msgstr "وسط"
1215
  #: includes/elementor/widgets/staff.php:874
1216
  #: includes/elementor/widgets/svg.php:284
1217
  #: includes/elementor/widgets/testimonial.php:809
1218
- #: includes/elementor/widgets/text.php:367
1219
- #: includes/elementor/widgets/text.php:1140
1220
- #: includes/elementor/widgets/text.php:1439
1221
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:431
1222
  #: includes/elementor/widgets/theme-elements/copyright.php:142
1223
  #: includes/elementor/widgets/theme-elements/current-time.php:135
@@ -1281,7 +1285,7 @@ msgstr "تراز المان خط زمانی را مشخص می کند."
1281
  #: includes/elementor/widgets/divider.php:146
1282
  #: includes/elementor/widgets/modern-button.php:311
1283
  #: includes/elementor/widgets/staff.php:787
1284
- #: includes/elementor/widgets/text.php:1036 includes/elements/button.php:66
1285
  #: includes/elements/divider.php:90 includes/elements/socials-list.php:63
1286
  #: includes/elements/socials-list.php:201 includes/elements/staff.php:463
1287
  #: includes/elements/text.php:469 includes/elements/text.php:677
@@ -1295,7 +1299,7 @@ msgstr "کوچک"
1295
  #: includes/elementor/widgets/divider.php:145
1296
  #: includes/elementor/widgets/modern-button.php:310
1297
  #: includes/elementor/widgets/staff.php:788
1298
- #: includes/elementor/widgets/text.php:1035
1299
  #: includes/elements/before-after.php:104 includes/elements/button.php:65
1300
  #: includes/elements/divider.php:89 includes/elements/instagram-feed.php:98
1301
  #: includes/elements/socials-list.php:64 includes/elements/socials-list.php:202
@@ -1311,7 +1315,7 @@ msgstr "متوسط"
1311
  #: includes/elementor/widgets/button.php:161
1312
  #: includes/elementor/widgets/modern-button.php:309
1313
  #: includes/elementor/widgets/staff.php:789
1314
- #: includes/elementor/widgets/text.php:1034
1315
  #: includes/elements/before-after.php:105 includes/elements/button.php:64
1316
  #: includes/elements/divider.php:88 includes/elements/socials-list.php:65
1317
  #: includes/elements/socials-list.php:203 includes/elements/staff.php:110
@@ -1382,7 +1386,7 @@ msgstr ""
1382
  #: includes/elementor/widgets/recent-posts-tiles-carousel.php:130
1383
  #: includes/elementor/widgets/recent-posts-tiles.php:130
1384
  #: includes/elementor/widgets/tabs.php:195
1385
- #: includes/elementor/widgets/text.php:1139
1386
  #: includes/elementor/widgets/theme-elements/menu.php:999
1387
  #: includes/elementor/widgets/theme-elements/modern-search.php:577
1388
  #: includes/elements/button.php:179 includes/elements/code.php:99
@@ -1410,9 +1414,9 @@ msgstr "پیش فرض"
1410
  #: includes/elementor/widgets/contact-form.php:1703
1411
  #: includes/elementor/widgets/custom-list.php:918
1412
  #: includes/elementor/widgets/custom-list.php:1075
1413
- #: includes/elementor/widgets/heading-modern.php:397
1414
- #: includes/elementor/widgets/heading-modern.php:582
1415
- #: includes/elementor/widgets/heading-modern.php:753
1416
  #: includes/elementor/widgets/icon.php:246
1417
  #: includes/elementor/widgets/image.php:536
1418
  #: includes/elementor/widgets/mailchimp.php:352
@@ -1422,6 +1426,14 @@ msgstr "پیش فرض"
1422
  #: includes/elementor/widgets/modern-button.php:618
1423
  #: includes/elementor/widgets/modern-button.php:730
1424
  #: includes/elementor/widgets/modern-button.php:916
 
 
 
 
 
 
 
 
1425
  #: includes/elementor/widgets/recent-comments.php:201
1426
  #: includes/elementor/widgets/recent-comments.php:284
1427
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:997
@@ -1458,14 +1470,14 @@ msgstr "پیش فرض"
1458
  #: includes/elementor/widgets/testimonial.php:511
1459
  #: includes/elementor/widgets/testimonial.php:629
1460
  #: includes/elementor/widgets/testimonial.php:923
1461
- #: includes/elementor/widgets/text.php:566
1462
- #: includes/elementor/widgets/text.php:719
1463
- #: includes/elementor/widgets/text.php:815
1464
- #: includes/elementor/widgets/text.php:926
1465
- #: includes/elementor/widgets/text.php:1093
1466
- #: includes/elementor/widgets/text.php:1213
1467
- #: includes/elementor/widgets/text.php:1288
1468
- #: includes/elementor/widgets/text.php:1518
1469
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:516
1470
  #: includes/elementor/widgets/theme-elements/copyright.php:212
1471
  #: includes/elementor/widgets/theme-elements/logo.php:327
@@ -2220,9 +2232,10 @@ msgstr ""
2220
  #: includes/classes/class-auxin-welcome.php:431
2221
  #: includes/elementor/modules/dynamic-tags/contact-url.php:181
2222
  #: includes/elementor/modules/dynamic-tags/featured-image-data.php:90
2223
- #: includes/elementor/widgets/heading-modern.php:309
2224
- #: includes/elementor/widgets/heading-modern.php:316
2225
- #: includes/elementor/widgets/heading-modern.php:962
 
2226
  #: includes/elementor/widgets/theme-elements/logo.php:546
2227
  #: includes/elements/custom-list.php:138
2228
  #, fuzzy
@@ -2899,51 +2912,51 @@ msgstr "افزودن بخش"
2899
  msgid "Select Audio"
2900
  msgstr "انتخاب شکاف آکاردئون"
2901
 
2902
- #: includes/elementor/class-auxin-elementor-core-elements.php:404
2903
  msgid "Element class \"%s\" not found."
2904
  msgstr ""
2905
 
2906
- #: includes/elementor/class-auxin-elementor-core-elements.php:500
2907
  msgid "Module class \"%s\" not found."
2908
  msgstr ""
2909
 
2910
- #: includes/elementor/class-auxin-elementor-core-elements.php:573
2911
  msgid "%s - General"
2912
  msgstr ""
2913
 
2914
- #: includes/elementor/class-auxin-elementor-core-elements.php:581
2915
  msgid "%s - Featured"
2916
  msgstr ""
2917
 
2918
- #: includes/elementor/class-auxin-elementor-core-elements.php:589
2919
  #, fuzzy
2920
  msgid "%s - Posts"
2921
  msgstr "نوشته ها"
2922
 
2923
- #: includes/elementor/class-auxin-elementor-core-elements.php:597
2924
  msgid "%s - Portfolio"
2925
  msgstr ""
2926
 
2927
  #. translators: 1: Plugin name 2: PHP 3: Required PHP version
2928
- #: includes/elementor/class-auxin-elementor-core-elements.php:671
2929
- #: includes/elementor/class-auxin-elementor-core-elements.php:695
2930
  msgid "\"%1$s\" requires \"%2$s\" version %3$s or greater."
2931
  msgstr ""
2932
 
2933
- #: includes/elementor/class-auxin-elementor-core-elements.php:673
2934
  msgid "Elementor"
2935
  msgstr ""
2936
 
2937
- #: includes/elementor/class-auxin-elementor-core-elements.php:697
2938
  #: includes/elements/code.php:82
2939
  msgid "PHP"
2940
  msgstr ""
2941
 
2942
- #: includes/elementor/class-auxin-elementor-core-elements.php:754
2943
  msgid "Phlox Icons - Set 1"
2944
  msgstr ""
2945
 
2946
- #: includes/elementor/class-auxin-elementor-core-elements.php:776
2947
  msgid "Phlox Icons - Set 2"
2948
  msgstr ""
2949
 
@@ -3109,7 +3122,7 @@ msgstr ""
3109
  #: includes/elementor/modules/common.php:658
3110
  #: includes/elementor/widgets/modern-button.php:139
3111
  #: includes/elementor/widgets/staff.php:847
3112
- #: includes/elementor/widgets/text.php:363 includes/elements/staff.php:226
3113
  #: includes/elements/text.php:616
3114
  #, fuzzy
3115
  msgid "Top"
@@ -3122,7 +3135,7 @@ msgstr "بالا"
3122
  #: includes/elementor/widgets/custom-list.php:513
3123
  #: includes/elementor/widgets/divider.php:206
3124
  #: includes/elementor/widgets/divider.php:245
3125
- #: includes/elementor/widgets/heading-modern.php:167
3126
  #: includes/elementor/widgets/icon.php:178
3127
  #: includes/elementor/widgets/image.php:327
3128
  #: includes/elementor/widgets/modern-button.php:192
@@ -3138,9 +3151,9 @@ msgstr "بالا"
3138
  #: includes/elementor/widgets/staff.php:882
3139
  #: includes/elementor/widgets/svg.php:292
3140
  #: includes/elementor/widgets/testimonial.php:817
3141
- #: includes/elementor/widgets/text.php:371
3142
- #: includes/elementor/widgets/text.php:1141
3143
- #: includes/elementor/widgets/text.php:1447
3144
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:439
3145
  #: includes/elementor/widgets/theme-elements/copyright.php:150
3146
  #: includes/elementor/widgets/theme-elements/current-time.php:143
@@ -3188,10 +3201,10 @@ msgstr ""
3188
  #: includes/elementor/widgets/contact-form.php:976
3189
  #: includes/elementor/widgets/contact-form.php:1219
3190
  #: includes/elementor/widgets/contact-form.php:1572
3191
- #: includes/elementor/widgets/heading-modern.php:475
3192
- #: includes/elementor/widgets/heading-modern.php:660
3193
- #: includes/elementor/widgets/heading-modern.php:831
3194
- #: includes/elementor/widgets/heading-modern.php:1004
3195
  #: includes/elementor/widgets/image.php:426
3196
  #: includes/elementor/widgets/mailchimp.php:234
3197
  #: includes/elementor/widgets/mailchimp.php:481
@@ -3233,7 +3246,7 @@ msgstr "ارتفاع"
3233
  #: includes/elementor/widgets/contact-form.php:1599
3234
  #: includes/elementor/widgets/custom-list.php:396
3235
  #: includes/elementor/widgets/gmap.php:168
3236
- #: includes/elementor/widgets/heading-modern.php:1075
3237
  #: includes/elementor/widgets/mailchimp.php:261
3238
  #: includes/elementor/widgets/mailchimp.php:508
3239
  #: includes/elementor/widgets/mailchimp.php:736
@@ -3404,12 +3417,12 @@ msgstr "تعداد نوشته ها"
3404
  #: includes/elementor/modules/dynamic-tags/comments-number.php:58
3405
  #: includes/elementor/widgets/button.php:116
3406
  #: includes/elementor/widgets/custom-list.php:138
3407
- #: includes/elementor/widgets/heading-modern.php:120
3408
- #: includes/elementor/widgets/heading-modern.php:270
3409
  #: includes/elementor/widgets/icon.php:154
3410
  #: includes/elementor/widgets/modern-button.php:210
3411
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:743
3412
- #: includes/elementor/widgets/text.php:321
3413
  #: includes/elementor/widgets/theme-elements/logo.php:182
3414
  #: includes/elementor/widgets/theme-elements/logo.php:196
3415
  #: includes/elementor/widgets/theme-elements/site-title.php:212
@@ -3436,8 +3449,8 @@ msgstr "پیوند"
3436
  #: includes/elementor/widgets/recent-posts-timeline.php:316
3437
  #: includes/elementor/widgets/recent-posts-timeline.php:519
3438
  #: includes/elementor/widgets/testimonial.php:238
3439
- #: includes/elementor/widgets/text.php:115
3440
- #: includes/elementor/widgets/text.php:1583
3441
  #: includes/elementor/widgets/theme-elements/menu.php:658
3442
  #: includes/elementor/widgets/theme-elements/search.php:118
3443
  #: includes/elements/flickr.php:156 includes/elements/flickr.php:205
@@ -3479,7 +3492,7 @@ msgstr ""
3479
  #: includes/elementor/widgets/accordion.php:145
3480
  #: includes/elementor/widgets/modern-button.php:277
3481
  #: includes/elementor/widgets/svg.php:107
3482
- #: includes/elementor/widgets/text.php:111
3483
  #: includes/elementor/widgets/theme-elements/logo.php:135
3484
  #: includes/elementor/widgets/theme-elements/menu.php:156
3485
  #: includes/elementor/widgets/theme-elements/menu.php:995
@@ -3601,7 +3614,9 @@ msgstr "بخش"
3601
  #: includes/elementor/modules/dynamic-tags/featured-image-data.php:87
3602
  #: includes/elementor/modules/query-control/controls/group-control-query.php:346
3603
  #: includes/elementor/widgets/accordion.php:534
3604
- #: includes/elementor/widgets/heading-modern.php:107
 
 
3605
  #: includes/elementor/widgets/recent-comments.php:171
3606
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:781
3607
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:1028
@@ -3619,8 +3634,8 @@ msgstr "بخش"
3619
  #: includes/elementor/widgets/recent-products.php:543
3620
  #: includes/elementor/widgets/staff.php:452
3621
  #: includes/elementor/widgets/tabs.php:373
3622
- #: includes/elementor/widgets/text.php:232
3623
- #: includes/elementor/widgets/text.php:686
3624
  #: includes/elementor/widgets/theme-elements/logo.php:454
3625
  #: includes/elementor/widgets/theme-elements/site-title.php:94
3626
  #: includes/elementor/widgets/touch-slider.php:332
@@ -4025,6 +4040,7 @@ msgstr "شناسه کاربر"
4025
 
4026
  #: includes/elementor/modules/dynamic-tags/user-info.php:76
4027
  #: includes/elementor/widgets/gallery.php:304
 
4028
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:782
4029
  #: includes/elementor/widgets/recent-posts-land-style.php:415
4030
  #: includes/elementor/widgets/recent-posts-masonry.php:511
@@ -4086,6 +4102,7 @@ msgstr ""
4086
  #: includes/elementor/modules/query-control/controls/group-control-query.php:130
4087
  #: includes/elementor/modules/query-control/controls/group-control-query.php:169
4088
  #: includes/elementor/modules/query-control/controls/group-control-query.php:225
 
4089
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:786
4090
  #: includes/elementor/widgets/recent-posts-land-style.php:419
4091
  #: includes/elementor/widgets/recent-posts-masonry.php:515
@@ -4180,6 +4197,7 @@ msgstr ""
4180
 
4181
  #: includes/elementor/modules/query-control/controls/group-control-query.php:276
4182
  #: includes/elementor/modules/query-control/controls/group-control-query.php:345
 
4183
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:779
4184
  #: includes/elementor/widgets/recent-posts-land-style.php:412
4185
  #: includes/elementor/widgets/recent-posts-masonry.php:508
@@ -4256,6 +4274,7 @@ msgstr "مرتب سازی بر اساس"
4256
 
4257
  #: includes/elementor/modules/query-control/controls/group-control-query.php:347
4258
  #: includes/elementor/widgets/gallery.php:302
 
4259
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:780
4260
  #: includes/elementor/widgets/recent-posts-land-style.php:413
4261
  #: includes/elementor/widgets/recent-posts-masonry.php:509
@@ -4280,6 +4299,7 @@ msgid "Menu Order"
4280
  msgstr "ترتیب فهرست"
4281
 
4282
  #: includes/elementor/modules/query-control/controls/group-control-query.php:348
 
4283
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:783
4284
  #: includes/elementor/widgets/recent-posts-land-style.php:416
4285
  #: includes/elementor/widgets/recent-posts-masonry.php:512
@@ -4304,6 +4324,7 @@ msgstr "تصادفی"
4304
 
4305
  #: includes/elementor/modules/query-control/controls/group-control-query.php:356
4306
  #: includes/elementor/widgets/gallery.php:282
 
4307
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:798
4308
  #: includes/elementor/widgets/recent-posts-land-style.php:428
4309
  #: includes/elementor/widgets/recent-posts-masonry.php:524
@@ -4455,9 +4476,9 @@ msgstr "آکاردئون"
4455
  #: includes/elementor/widgets/tabs.php:136
4456
  #: includes/elementor/widgets/tabs.php:439
4457
  #: includes/elementor/widgets/testimonial.php:193
4458
- #: includes/elementor/widgets/text.php:225
4459
- #: includes/elementor/widgets/text.php:263
4460
- #: includes/elementor/widgets/text.php:895
4461
  #: includes/elements/accordion-widget.php:76 includes/elements/accordion.php:93
4462
  #: includes/elements/dropcap.php:82 includes/elements/highlight.php:78
4463
  #: includes/elements/staff.php:514 includes/elements/tabs.php:92
@@ -4537,12 +4558,12 @@ msgstr ""
4537
  #: includes/elementor/widgets/custom-list.php:258
4538
  #: includes/elementor/widgets/custom-list.php:970
4539
  #: includes/elementor/widgets/custom-list.php:1022
4540
- #: includes/elementor/widgets/heading-modern.php:437
4541
- #: includes/elementor/widgets/heading-modern.php:622
4542
- #: includes/elementor/widgets/heading-modern.php:793
4543
- #: includes/elementor/widgets/heading-modern.php:915
4544
- #: includes/elementor/widgets/heading-modern.php:991
4545
- #: includes/elementor/widgets/heading-modern.php:1105
4546
  #: includes/elementor/widgets/modern-button.php:658
4547
  #: includes/elementor/widgets/modern-button.php:770
4548
  #: includes/elementor/widgets/modern-button.php:876
@@ -4591,7 +4612,7 @@ msgstr ""
4591
  #: includes/elementor/widgets/recent-products.php:522
4592
  #: includes/elementor/widgets/tabs.php:235
4593
  #: includes/elementor/widgets/tabs.php:493
4594
- #: includes/elementor/widgets/text.php:1474
4595
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:463
4596
  #: includes/elementor/widgets/theme-elements/logo.php:390
4597
  #: includes/elementor/widgets/theme-elements/menu.php:421
@@ -4625,9 +4646,9 @@ msgstr "کادربندی شده"
4625
  #: includes/elementor/widgets/contact-form.php:1677
4626
  #: includes/elementor/widgets/custom-list.php:889
4627
  #: includes/elementor/widgets/custom-list.php:1038
4628
- #: includes/elementor/widgets/heading-modern.php:359
4629
- #: includes/elementor/widgets/heading-modern.php:544
4630
- #: includes/elementor/widgets/heading-modern.php:715
4631
  #: includes/elementor/widgets/icon.php:204
4632
  #: includes/elementor/widgets/image.php:499
4633
  #: includes/elementor/widgets/mailchimp.php:326
@@ -4638,6 +4659,14 @@ msgstr "کادربندی شده"
4638
  #: includes/elementor/widgets/modern-button.php:579
4639
  #: includes/elementor/widgets/modern-button.php:691
4640
  #: includes/elementor/widgets/modern-button.php:817
 
 
 
 
 
 
 
 
4641
  #: includes/elementor/widgets/recent-comments.php:181
4642
  #: includes/elementor/widgets/recent-comments.php:264
4643
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:974
@@ -4674,15 +4703,15 @@ msgstr "کادربندی شده"
4674
  #: includes/elementor/widgets/testimonial.php:473
4675
  #: includes/elementor/widgets/testimonial.php:591
4676
  #: includes/elementor/widgets/testimonial.php:887
4677
- #: includes/elementor/widgets/text.php:507
4678
- #: includes/elementor/widgets/text.php:699
4679
- #: includes/elementor/widgets/text.php:795
4680
- #: includes/elementor/widgets/text.php:906
4681
- #: includes/elementor/widgets/text.php:1066
4682
- #: includes/elementor/widgets/text.php:1193
4683
- #: includes/elementor/widgets/text.php:1250
4684
- #: includes/elementor/widgets/text.php:1382
4685
- #: includes/elementor/widgets/text.php:1490
4686
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:490
4687
  #: includes/elementor/widgets/theme-elements/copyright.php:175
4688
  #: includes/elementor/widgets/theme-elements/logo.php:293
@@ -4766,10 +4795,10 @@ msgstr ""
4766
  #: includes/elementor/widgets/contact-form.php:1648
4767
  #: includes/elementor/widgets/custom-list.php:983
4768
  #: includes/elementor/widgets/custom-list.php:1009
4769
- #: includes/elementor/widgets/heading-modern.php:450
4770
- #: includes/elementor/widgets/heading-modern.php:635
4771
- #: includes/elementor/widgets/heading-modern.php:806
4772
- #: includes/elementor/widgets/heading-modern.php:1118
4773
  #: includes/elementor/widgets/icon.php:311
4774
  #: includes/elementor/widgets/mailchimp.php:310
4775
  #: includes/elementor/widgets/mailchimp.php:556
@@ -4777,6 +4806,9 @@ msgstr ""
4777
  #: includes/elementor/widgets/modern-button.php:432
4778
  #: includes/elementor/widgets/modern-button.php:888
4779
  #: includes/elementor/widgets/modern-button.php:987
 
 
 
4780
  #: includes/elementor/widgets/quote.php:333
4781
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:1403
4782
  #: includes/elementor/widgets/staff.php:810
@@ -4784,11 +4816,11 @@ msgstr ""
4784
  #: includes/elementor/widgets/tabs.php:467
4785
  #: includes/elementor/widgets/testimonial.php:695
4786
  #: includes/elementor/widgets/testimonial.php:843
4787
- #: includes/elementor/widgets/text.php:392
4788
- #: includes/elementor/widgets/text.php:490
4789
- #: includes/elementor/widgets/text.php:967
4790
- #: includes/elementor/widgets/text.php:1401
4791
- #: includes/elementor/widgets/text.php:1462
4792
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:475
4793
  #: includes/elementor/widgets/theme-elements/menu.php:517
4794
  #: includes/elementor/widgets/theme-elements/menu.php:956
@@ -4836,14 +4868,14 @@ msgstr "تیتر گذاری"
4836
  #: includes/elementor/widgets/custom-list.php:896
4837
  #: includes/elementor/widgets/custom-list.php:925
4838
  #: includes/elementor/widgets/divider.php:376
4839
- #: includes/elementor/widgets/heading-modern.php:366
4840
- #: includes/elementor/widgets/heading-modern.php:404
4841
- #: includes/elementor/widgets/heading-modern.php:551
4842
- #: includes/elementor/widgets/heading-modern.php:589
4843
- #: includes/elementor/widgets/heading-modern.php:722
4844
- #: includes/elementor/widgets/heading-modern.php:760
4845
- #: includes/elementor/widgets/heading-modern.php:928
4846
- #: includes/elementor/widgets/heading-modern.php:971
4847
  #: includes/elementor/widgets/mailchimp.php:196
4848
  #: includes/elementor/widgets/mailchimp.php:423
4849
  #: includes/elementor/widgets/mailchimp.php:578
@@ -4856,6 +4888,22 @@ msgstr "تیتر گذاری"
4856
  #: includes/elementor/widgets/modern-button.php:746
4857
  #: includes/elementor/widgets/modern-button.php:847
4858
  #: includes/elementor/widgets/modern-button.php:946
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4859
  #: includes/elementor/widgets/recent-comments.php:188
4860
  #: includes/elementor/widgets/recent-comments.php:208
4861
  #: includes/elementor/widgets/recent-comments.php:271
@@ -4922,16 +4970,16 @@ msgstr "تیتر گذاری"
4922
  #: includes/elementor/widgets/testimonial.php:521
4923
  #: includes/elementor/widgets/testimonial.php:601
4924
  #: includes/elementor/widgets/testimonial.php:639
4925
- #: includes/elementor/widgets/text.php:706
4926
- #: includes/elementor/widgets/text.php:726
4927
- #: includes/elementor/widgets/text.php:802
4928
- #: includes/elementor/widgets/text.php:822
4929
- #: includes/elementor/widgets/text.php:913
4930
- #: includes/elementor/widgets/text.php:933
4931
- #: includes/elementor/widgets/text.php:1200
4932
- #: includes/elementor/widgets/text.php:1220
4933
- #: includes/elementor/widgets/text.php:1257
4934
- #: includes/elementor/widgets/text.php:1295
4935
  #: includes/elementor/widgets/theme-elements/copyright.php:182
4936
  #: includes/elementor/widgets/theme-elements/copyright.php:219
4937
  #: includes/elementor/widgets/theme-elements/current-time.php:172
@@ -4999,7 +5047,7 @@ msgstr "فایل صوتی را به صورت خودکار پخش کن."
4999
  #: includes/elementor/widgets/gallery.php:273
5000
  #: includes/elementor/widgets/gmap.php:193
5001
  #: includes/elementor/widgets/gmap.php:214
5002
- #: includes/elementor/widgets/heading-modern.php:190
5003
  #: includes/elementor/widgets/image.php:155
5004
  #: includes/elementor/widgets/image.php:188
5005
  #: includes/elementor/widgets/image.php:288
@@ -5008,6 +5056,7 @@ msgstr "فایل صوتی را به صورت خودکار پخش کن."
5008
  #: includes/elementor/widgets/image.php:399
5009
  #: includes/elementor/widgets/modern-button.php:226
5010
  #: includes/elementor/widgets/modern-button.php:238
 
5011
  #: includes/elementor/widgets/quote.php:221
5012
  #: includes/elementor/widgets/recent-comments.php:155
5013
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:282
@@ -5103,8 +5152,8 @@ msgstr "فایل صوتی را به صورت خودکار پخش کن."
5103
  #: includes/elementor/widgets/staff.php:225
5104
  #: includes/elementor/widgets/staff.php:277
5105
  #: includes/elementor/widgets/testimonial.php:154
5106
- #: includes/elementor/widgets/text.php:164
5107
- #: includes/elementor/widgets/text.php:288
5108
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:128
5109
  #: includes/elementor/widgets/theme-elements/copyright.php:115
5110
  #: includes/elementor/widgets/theme-elements/copyright.php:128
@@ -5145,7 +5194,7 @@ msgstr ""
5145
  #: includes/elementor/widgets/gallery.php:274
5146
  #: includes/elementor/widgets/gmap.php:194
5147
  #: includes/elementor/widgets/gmap.php:215
5148
- #: includes/elementor/widgets/heading-modern.php:191
5149
  #: includes/elementor/widgets/image.php:156
5150
  #: includes/elementor/widgets/image.php:189
5151
  #: includes/elementor/widgets/image.php:289
@@ -5154,6 +5203,7 @@ msgstr ""
5154
  #: includes/elementor/widgets/image.php:400
5155
  #: includes/elementor/widgets/modern-button.php:227
5156
  #: includes/elementor/widgets/modern-button.php:239
 
5157
  #: includes/elementor/widgets/quote.php:222
5158
  #: includes/elementor/widgets/recent-comments.php:156
5159
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:283
@@ -5249,8 +5299,8 @@ msgstr ""
5249
  #: includes/elementor/widgets/staff.php:226
5250
  #: includes/elementor/widgets/staff.php:278
5251
  #: includes/elementor/widgets/testimonial.php:155
5252
- #: includes/elementor/widgets/text.php:165
5253
- #: includes/elementor/widgets/text.php:289
5254
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:129
5255
  #: includes/elementor/widgets/theme-elements/copyright.php:116
5256
  #: includes/elementor/widgets/theme-elements/copyright.php:129
@@ -5285,7 +5335,7 @@ msgstr "تکرار صدا"
5285
  #: includes/elementor/widgets/button.php:283
5286
  #: includes/elementor/widgets/modern-button.php:320
5287
  #: includes/elementor/widgets/tabs.php:149
5288
- #: includes/elementor/widgets/text.php:1054
5289
  #: includes/elementor/widgets/theme-elements/menu.php:616
5290
  #: includes/elements/audio.php:97
5291
  msgid "Skin"
@@ -5344,6 +5394,7 @@ msgid "Style"
5344
  msgstr "ظاهر"
5345
 
5346
  #: includes/elementor/widgets/before-after.php:155
 
5347
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:850
5348
  #: includes/elementor/widgets/recent-posts-land-style.php:468
5349
  #: includes/elementor/widgets/recent-posts-masonry.php:564
@@ -5378,8 +5429,8 @@ msgstr ""
5378
  #: includes/elementor/widgets/custom-list.php:419
5379
  #: includes/elementor/widgets/custom-list.php:707
5380
  #: includes/elementor/widgets/divider.php:138
5381
- #: includes/elementor/widgets/heading-modern.php:893
5382
- #: includes/elementor/widgets/heading-modern.php:1046
5383
  #: includes/elementor/widgets/mailchimp.php:207
5384
  #: includes/elementor/widgets/mailchimp.php:454
5385
  #: includes/elementor/widgets/mailchimp.php:682
@@ -5398,8 +5449,9 @@ msgstr "عرض"
5398
  #: includes/elementor/widgets/button.php:100
5399
  #: includes/elementor/widgets/modern-button.php:101
5400
  #: includes/elementor/widgets/modern-button.php:269
5401
- #: includes/elementor/widgets/text.php:278
5402
- #: includes/elementor/widgets/text.php:1018
 
5403
  #: includes/elementor/widgets/theme-elements/modern-search.php:99
5404
  #: includes/elementor/widgets/theme-elements/modern-search.php:434
5405
  #: includes/elementor/widgets/theme-elements/search.php:120
@@ -5418,13 +5470,13 @@ msgid "Button"
5418
  msgstr "اندازه دکمه"
5419
 
5420
  #: includes/elementor/widgets/button.php:107
5421
- #: includes/elementor/widgets/text.php:298 includes/elements/button.php:43
5422
  #: includes/elements/text.php:651
5423
  msgid "Button label"
5424
  msgstr "برچسب دکمه"
5425
 
5426
  #: includes/elementor/widgets/button.php:117
5427
- #: includes/elementor/widgets/text.php:322 includes/elements/text.php:844
5428
  msgid "If you want to link your button."
5429
  msgstr "اگر می خواهید دکمه را لینک کنید."
5430
 
@@ -5435,10 +5487,10 @@ msgid "Open Video in Lightbox"
5435
  msgstr "بازشدن لایت باکس"
5436
 
5437
  #: includes/elementor/widgets/button.php:148
5438
- #: includes/elementor/widgets/heading-modern.php:1038
5439
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:1532
5440
  #: includes/elementor/widgets/recent-posts-masonry.php:1073
5441
- #: includes/elementor/widgets/text.php:1419
5442
  #, fuzzy
5443
  msgid "Wrapper"
5444
  msgstr "ظاهر Wrapper"
@@ -5450,7 +5502,7 @@ msgstr "اندازه دکمه"
5450
 
5451
  #: includes/elementor/widgets/button.php:160
5452
  #: includes/elementor/widgets/modern-button.php:308
5453
- #: includes/elementor/widgets/text.php:1033 includes/elements/button.php:63
5454
  #: includes/elements/text.php:674 includes/general-hooks.php:698
5455
  #: includes/general-hooks.php:1110
5456
  msgid "Exlarge"
@@ -5459,7 +5511,7 @@ msgstr "خیلی بزرگ"
5459
  #: includes/elementor/widgets/button.php:164
5460
  #: includes/elementor/widgets/divider.php:147
5461
  #: includes/elementor/widgets/modern-button.php:312
5462
- #: includes/elementor/widgets/text.php:1037 includes/elements/button.php:67
5463
  #: includes/elements/divider.php:91 includes/elements/text.php:678
5464
  #: includes/general-hooks.php:702 includes/general-hooks.php:1114
5465
  msgid "Tiny"
@@ -5476,14 +5528,14 @@ msgid "Button shape"
5476
  msgstr "ظاهر شکل دکمه"
5477
 
5478
  #: includes/elementor/widgets/button.php:188
5479
- #: includes/elementor/widgets/text.php:1358 includes/elements/button.php:91
5480
  #: includes/elements/text.php:708
5481
  msgid "Box"
5482
  msgstr "جعبه"
5483
 
5484
  #: includes/elementor/widgets/button.php:192
5485
  #: includes/elementor/widgets/modern-button.php:295
5486
- #: includes/elementor/widgets/text.php:1362 includes/elements/button.php:95
5487
  #: includes/elements/text.php:712 includes/general-hooks.php:733
5488
  #: includes/general-hooks.php:1145
5489
  msgid "Round"
@@ -5491,7 +5543,7 @@ msgstr "گرد"
5491
 
5492
  #: includes/elementor/widgets/button.php:196
5493
  #: includes/elementor/widgets/modern-button.php:296
5494
- #: includes/elementor/widgets/text.php:1366 includes/elements/button.php:99
5495
  #: includes/elements/text.php:716 includes/general-hooks.php:737
5496
  #: includes/general-hooks.php:1149
5497
  msgid "Curve"
@@ -5503,7 +5555,7 @@ msgid "Button style"
5503
  msgstr "ظاهر دکمه"
5504
 
5505
  #: includes/elementor/widgets/button.php:215
5506
- #: includes/elementor/widgets/text.php:1386 includes/elements/button.php:122
5507
  #: includes/elements/text.php:742 includes/general-hooks.php:770
5508
  #: includes/general-hooks.php:1182
5509
  msgid "3D"
@@ -5511,7 +5563,7 @@ msgstr "سه بعدی"
5511
 
5512
  #: includes/elementor/widgets/button.php:219
5513
  #: includes/elementor/widgets/modern-button.php:282
5514
- #: includes/elementor/widgets/text.php:1390 includes/elements/button.php:126
5515
  #: includes/elements/text.php:746 includes/general-hooks.php:774
5516
  #: includes/general-hooks.php:1186
5517
  msgid "Outline"
@@ -5531,11 +5583,15 @@ msgstr "تراز"
5531
  #: includes/elementor/widgets/button.php:330
5532
  #: includes/elementor/widgets/carousel-navigation.php:292
5533
  #: includes/elementor/widgets/carousel-navigation.php:399
5534
- #: includes/elementor/widgets/heading-modern.php:949
5535
  #: includes/elementor/widgets/modern-button.php:362
5536
  #: includes/elementor/widgets/modern-button.php:415
5537
  #: includes/elementor/widgets/modern-button.php:859
5538
  #: includes/elementor/widgets/modern-button.php:958
 
 
 
 
5539
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:1340
5540
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:1370
5541
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:1574
@@ -5550,11 +5606,11 @@ msgstr "تراز"
5550
  #: includes/elementor/widgets/recent-posts-masonry.php:1282
5551
  #: includes/elementor/widgets/testimonial.php:895
5552
  #: includes/elementor/widgets/testimonial.php:931
5553
- #: includes/elementor/widgets/text.php:383
5554
- #: includes/elementor/widgets/text.php:554
5555
- #: includes/elementor/widgets/text.php:613
5556
- #: includes/elementor/widgets/text.php:1074
5557
- #: includes/elementor/widgets/text.php:1101
5558
  #: includes/elementor/widgets/theme-elements/menu.php:403
5559
  #: includes/elementor/widgets/theme-elements/menu.php:480
5560
  #: includes/elementor/widgets/theme-elements/menu.php:593
@@ -5579,8 +5635,8 @@ msgstr "اندازه پس زمینه"
5579
  #: includes/elementor/widgets/icon.php:114
5580
  #: includes/elementor/widgets/icon.php:194
5581
  #: includes/elementor/widgets/modern-button.php:789
5582
- #: includes/elementor/widgets/text.php:116
5583
- #: includes/elementor/widgets/text.php:126
5584
  #: includes/elementor/widgets/theme-elements/modern-search.php:106
5585
  #: includes/elementor/widgets/theme-elements/modern-search.php:236
5586
  #: includes/elementor/widgets/theme-elements/search.php:106
@@ -5597,46 +5653,46 @@ msgid "Icon"
5597
  msgstr "شکلک"
5598
 
5599
  #: includes/elementor/widgets/button.php:365
5600
- #: includes/elementor/widgets/text.php:310 includes/elements/button.php:158
5601
  #: includes/elements/text.php:784
5602
  msgid "Icon for button"
5603
  msgstr "شکلک برای دکمه"
5604
 
5605
  #: includes/elementor/widgets/button.php:373
5606
- #: includes/elementor/widgets/text.php:1135 includes/elements/button.php:171
5607
  #: includes/elements/text.php:800 includes/general-hooks.php:377
5608
  msgid "Icon alignment"
5609
  msgstr "تراز شکلک"
5610
 
5611
  #: includes/elementor/widgets/button.php:380
5612
  #: includes/elementor/widgets/modern-button.php:804
5613
- #: includes/elementor/widgets/text.php:1142 includes/elements/button.php:191
5614
  #: includes/elements/text.php:809 includes/general-hooks.php:859
5615
  #: includes/general-hooks.php:1271
5616
  msgid "Over"
5617
  msgstr "رو"
5618
 
5619
  #: includes/elementor/widgets/button.php:381
5620
- #: includes/elementor/widgets/text.php:1143 includes/elements/button.php:195
5621
  #: includes/elements/text.php:810 includes/general-hooks.php:863
5622
  #: includes/general-hooks.php:1275
5623
  msgid "Animate from Left"
5624
  msgstr "متحرک سازی از چپ"
5625
 
5626
  #: includes/elementor/widgets/button.php:382
5627
- #: includes/elementor/widgets/text.php:1144 includes/elements/text.php:811
5628
  msgid "Animate from Right"
5629
  msgstr "متحرک سازی از راست"
5630
 
5631
  #: includes/elementor/widgets/button.php:390
5632
- #: includes/elementor/widgets/text.php:429
5633
- #: includes/elementor/widgets/text.php:1156
5634
  #, fuzzy
5635
  msgid "Icon Size"
5636
  msgstr "اندازه شکلک"
5637
 
5638
  #: includes/elementor/widgets/button.php:413
5639
- #: includes/elementor/widgets/text.php:1341
5640
  #: includes/elementor/widgets/theme-elements/search.php:245
5641
  #, fuzzy
5642
  msgid "Icon Margin"
@@ -5663,12 +5719,12 @@ msgstr ""
5663
 
5664
  #: includes/elementor/widgets/button.php:516
5665
  #: includes/elementor/widgets/button.php:554
5666
- #: includes/elementor/widgets/heading-modern.php:378
5667
- #: includes/elementor/widgets/heading-modern.php:416
5668
- #: includes/elementor/widgets/heading-modern.php:563
5669
- #: includes/elementor/widgets/heading-modern.php:601
5670
- #: includes/elementor/widgets/heading-modern.php:734
5671
- #: includes/elementor/widgets/heading-modern.php:772
5672
  #: includes/elementor/widgets/image.php:680
5673
  #: includes/elementor/widgets/modern-button.php:508
5674
  #: includes/elementor/widgets/modern-button.php:546
@@ -5676,15 +5732,17 @@ msgstr ""
5676
  #: includes/elementor/widgets/modern-button.php:646
5677
  #: includes/elementor/widgets/modern-button.php:720
5678
  #: includes/elementor/widgets/modern-button.php:758
 
 
5679
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:1857
5680
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:1913
5681
  #: includes/elementor/widgets/recent-posts-masonry.php:1255
5682
  #: includes/elementor/widgets/recent-posts-masonry.php:1311
5683
- #: includes/elementor/widgets/text.php:752
5684
- #: includes/elementor/widgets/text.php:848
5685
- #: includes/elementor/widgets/text.php:959
5686
- #: includes/elementor/widgets/text.php:1269
5687
- #: includes/elementor/widgets/text.php:1307
5688
  #: includes/elementor/widgets/theme-elements/current-time.php:184
5689
  #: includes/elementor/widgets/theme-elements/logo.php:507
5690
  #: includes/elementor/widgets/theme-elements/logo.php:599
@@ -5776,8 +5834,9 @@ msgstr "فاصله بین اسلایدها"
5776
  #: includes/elementor/widgets/modern-button.php:304
5777
  #: includes/elementor/widgets/modern-button.php:824
5778
  #: includes/elementor/widgets/modern-button.php:923
 
5779
  #: includes/elementor/widgets/testimonial.php:756
5780
- #: includes/elementor/widgets/text.php:1029
5781
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:268
5782
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:400
5783
  #: includes/elementor/widgets/theme-elements/modern-search.php:264
@@ -6144,6 +6203,7 @@ msgid "List Items"
6144
  msgstr ""
6145
 
6146
  #: includes/elementor/widgets/custom-list.php:374
 
6147
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:120
6148
  #: includes/elementor/widgets/recent-posts-masonry.php:120
6149
  #: includes/elementor/widgets/recent-posts-tiles-carousel.php:117
@@ -6244,7 +6304,7 @@ msgstr "خط چین"
6244
 
6245
  #: includes/elementor/widgets/custom-list.php:599
6246
  #: includes/elementor/widgets/custom-list.php:686
6247
- #: includes/elementor/widgets/heading-modern.php:876
6248
  #, fuzzy
6249
  msgid "Weight"
6250
  msgstr "ارتفاع"
@@ -6255,7 +6315,7 @@ msgid "Left Space"
6255
  msgstr "فاصله خالی"
6256
 
6257
  #: includes/elementor/widgets/custom-list.php:651
6258
- #: includes/elementor/widgets/heading-modern.php:188
6259
  #: includes/elements/custom-list.php:172
6260
  #, fuzzy
6261
  msgid "Display Divider"
@@ -6287,7 +6347,7 @@ msgstr ""
6287
 
6288
  #: includes/elementor/widgets/divider.php:47
6289
  #: includes/elementor/widgets/divider.php:95
6290
- #: includes/elementor/widgets/heading-modern.php:865
6291
  #: includes/elements/divider.php:16
6292
  #, fuzzy
6293
  msgid "Divider"
@@ -6300,8 +6360,8 @@ msgstr "فاصله خالی"
6300
  #: includes/elementor/widgets/divider.php:119
6301
  #: includes/elementor/widgets/icon.php:140
6302
  #: includes/elementor/widgets/staff.php:200
6303
- #: includes/elementor/widgets/text.php:460
6304
- #: includes/elementor/widgets/text.php:655
6305
  #: includes/elements/about-widget.php:121 includes/elements/divider.php:69
6306
  #: includes/elements/dropcap.php:72 includes/elements/staff.php:168
6307
  #: includes/elements/text.php:539 includes/elements/text.php:581
@@ -6335,7 +6395,7 @@ msgid "Custom width"
6335
  msgstr "تصویر دلخواه"
6336
 
6337
  #: includes/elementor/widgets/divider.php:193
6338
- #: includes/elementor/widgets/heading-modern.php:154
6339
  #: includes/elementor/widgets/icon.php:166
6340
  #: includes/elementor/widgets/image.php:314
6341
  #: includes/elementor/widgets/modern-button.php:180
@@ -6491,6 +6551,7 @@ msgid "Pattern 7"
6491
  msgstr ""
6492
 
6493
  #: includes/elementor/widgets/gallery.php:152
 
6494
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:128
6495
  #: includes/elementor/widgets/recent-posts-masonry.php:128
6496
  #: includes/elementor/widgets/recent-products.php:137
@@ -6637,70 +6698,70 @@ msgid ""
6637
  "and insert it in customizer \"Google Maps API Key\" field."
6638
  msgstr ""
6639
 
6640
- #: includes/elementor/widgets/heading-modern.php:52
6641
  #, fuzzy
6642
  msgid "Modern Heading"
6643
  msgstr "تیتر گذاری"
6644
 
6645
- #: includes/elementor/widgets/heading-modern.php:100
6646
- #: includes/elementor/widgets/heading-modern.php:339
6647
  msgid "Heading"
6648
  msgstr "تیتر گذاری"
6649
 
6650
- #: includes/elementor/widgets/heading-modern.php:112
6651
  msgid "Add your heading text here .."
6652
  msgstr ""
6653
 
6654
- #: includes/elementor/widgets/heading-modern.php:134
6655
- #: includes/elementor/widgets/heading-modern.php:284
6656
  msgid "HTML Tag"
6657
  msgstr ""
6658
 
6659
- #: includes/elementor/widgets/heading-modern.php:201
6660
  #, fuzzy
6661
  msgid "Divider Position"
6662
  msgstr "ظاهر جداکننده"
6663
 
6664
- #: includes/elementor/widgets/heading-modern.php:204
6665
  #, fuzzy
6666
  msgid "Before Heading"
6667
  msgstr "تیتر گذاری"
6668
 
6669
- #: includes/elementor/widgets/heading-modern.php:205
6670
  #, fuzzy
6671
  msgid "Between Headings"
6672
  msgstr "تیتر گذاری"
6673
 
6674
- #: includes/elementor/widgets/heading-modern.php:206
6675
  #, fuzzy
6676
  msgid "After Headings"
6677
  msgstr "تیتر گذاری"
6678
 
6679
- #: includes/elementor/widgets/heading-modern.php:224
6680
- #: includes/elementor/widgets/heading-modern.php:509
6681
  msgid "Secondary Heading"
6682
  msgstr ""
6683
 
6684
- #: includes/elementor/widgets/heading-modern.php:231
6685
  msgid "Before Text"
6686
  msgstr ""
6687
 
6688
- #: includes/elementor/widgets/heading-modern.php:244
6689
  #: includes/elementor/widgets/modern-button.php:117
6690
  #: includes/elementor/widgets/modern-button.php:565
6691
  #: includes/elements/highlight.php:18
6692
  msgid "Highlighted Text"
6693
  msgstr "متن هایلایت شده"
6694
 
6695
- #: includes/elementor/widgets/heading-modern.php:257
6696
  #: includes/elementor/widgets/modern-button.php:126
6697
  #: includes/elementor/widgets/modern-button.php:677
6698
  msgid "After Text"
6699
  msgstr ""
6700
 
6701
- #: includes/elementor/widgets/heading-modern.php:462
6702
- #: includes/elementor/widgets/heading-modern.php:647
6703
- #: includes/elementor/widgets/heading-modern.php:818
6704
  #: includes/elementor/widgets/image.php:484
6705
  #: includes/elementor/widgets/svg.php:305
6706
  #: includes/elementor/widgets/testimonial.php:306
@@ -6710,7 +6771,7 @@ msgstr ""
6710
  msgid "Border radius"
6711
  msgstr "کادربندی شده"
6712
 
6713
- #: includes/elementor/widgets/heading-modern.php:695
6714
  msgid "Secondary Heading - Highlighted"
6715
  msgstr ""
6716
 
@@ -6792,8 +6853,8 @@ msgstr "تصویر پس زمینه"
6792
  #: includes/elementor/widgets/svg.php:110
6793
  #: includes/elementor/widgets/testimonial.php:102
6794
  #: includes/elementor/widgets/testimonial.php:267
6795
- #: includes/elementor/widgets/text.php:117
6796
- #: includes/elementor/widgets/text.php:139
6797
  #: includes/elementor/widgets/theme-elements/logo.php:214
6798
  #: includes/elements/about-widget.php:100 includes/elements/image.php:15
6799
  #: includes/elements/image.php:57 includes/elements/text.php:375
@@ -6902,7 +6963,7 @@ msgstr "تراز تصویر در محتوا."
6902
  #: includes/elementor/widgets/recent-posts-timeline.php:192
6903
  #: includes/elementor/widgets/recent-products.php:224
6904
  #: includes/elementor/widgets/staff.php:223
6905
- #: includes/elementor/widgets/text.php:162
6906
  #, fuzzy
6907
  msgid "Preload image"
6908
  msgstr "تصویر شاخص"
@@ -6914,7 +6975,7 @@ msgstr "تصویر شاخص"
6914
  #: includes/elementor/widgets/recent-posts-timeline.php:207
6915
  #: includes/elementor/widgets/recent-products.php:239
6916
  #: includes/elementor/widgets/staff.php:235
6917
- #: includes/elementor/widgets/text.php:177
6918
  msgid "While loading image display"
6919
  msgstr ""
6920
 
@@ -6925,7 +6986,7 @@ msgstr ""
6925
  #: includes/elementor/widgets/recent-posts-timeline.php:222
6926
  #: includes/elementor/widgets/recent-products.php:254
6927
  #: includes/elementor/widgets/staff.php:250
6928
- #: includes/elementor/widgets/text.php:193
6929
  msgid "Placeholder color while loading image"
6930
  msgstr ""
6931
 
@@ -7074,131 +7135,563 @@ msgstr ""
7074
  msgid "Below"
7075
  msgstr ""
7076
 
7077
- #: includes/elementor/widgets/quote.php:50
7078
- #, fuzzy
7079
- msgid "Blockquote"
7080
- msgstr "نقل قول"
7081
-
7082
- #: includes/elementor/widgets/quote.php:106
7083
- #, fuzzy
7084
- msgid "Enter a text as a quote content."
7085
- msgstr "متنی را به عنوان محتوا وارد کنید."
7086
-
7087
- #: includes/elementor/widgets/quote.php:108
7088
- #, fuzzy
7089
- msgid "Type your description here"
7090
- msgstr "توضیحات المان"
7091
-
7092
- #: includes/elementor/widgets/quote.php:156 includes/elements/quote.php:103
7093
- #, fuzzy
7094
- msgid "Text alignment"
7095
- msgstr "تراز متن"
7096
 
7097
- #: includes/elementor/widgets/quote.php:211
7098
- #, fuzzy
7099
- msgid "Quote Symbol"
7100
- msgstr "نقل قول معمولی"
 
 
 
 
 
 
 
 
 
 
 
 
 
7101
 
7102
- #: includes/elementor/widgets/quote.php:219 includes/elements/quote.php:142
7103
- msgid "Insert quote symbol"
7104
- msgstr "افزودن نماد نقل قول"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7105
 
7106
- #: includes/elementor/widgets/quote.php:230
7107
- #, fuzzy
7108
- msgid "Quote symbol color"
7109
- msgstr "رنگ سفارشی"
7110
 
7111
- #: includes/elementor/widgets/quote.php:256
 
 
7112
  #, fuzzy
7113
- msgid "Text indent"
7114
- msgstr "تراز متن"
7115
 
7116
- #: includes/elementor/widgets/quote.php:305
7117
- msgid "Block"
7118
  msgstr ""
7119
 
7120
- #: includes/elementor/widgets/quote.php:322
7121
- #: includes/elementor/widgets/recent-posts-grid-carousel.php:200
7122
- #: includes/elements/instagram-feed.php:224
7123
- #: includes/elements/recent-posts-grid-carousel.php:579
7124
- msgid "Background color"
7125
- msgstr "رنگ پس زمینه"
7126
-
7127
- #: includes/elementor/widgets/recent-comments.php:49
7128
- msgid "Recent Commented Posts"
7129
  msgstr ""
7130
 
7131
- #: includes/elementor/widgets/recent-comments.php:78
7132
- msgid "All Post Types"
7133
  msgstr ""
7134
 
7135
- #: includes/elementor/widgets/recent-comments.php:130
7136
- #: includes/elementor/widgets/theme-elements/modern-search.php:143
7137
- #, fuzzy
7138
- msgid "Post Types"
7139
- msgstr "نوشته ها"
7140
-
7141
- #: includes/elementor/widgets/recent-comments.php:141
7142
- #, fuzzy
7143
- msgid "Number of comments to show"
7144
- msgstr "تعداد نوشته ها برای نمایش"
7145
 
7146
- #: includes/elementor/widgets/recent-comments.php:153
7147
- #, fuzzy
7148
- msgid "Display info"
7149
- msgstr "نمایش تصویر"
7150
 
7151
- #: includes/elementor/widgets/recent-comments.php:232
7152
- #: includes/elementor/widgets/recent-comments.php:315
7153
- #: includes/elementor/widgets/recent-posts-grid-carousel.php:1107
7154
- #: includes/elementor/widgets/recent-posts-grid-carousel.php:1211
7155
- #: includes/elementor/widgets/recent-posts-grid-carousel.php:1293
7156
- #: includes/elementor/widgets/recent-posts-grid-carousel.php:1415
7157
- #: includes/elementor/widgets/recent-posts-grid-carousel.php:1510
7158
- #: includes/elementor/widgets/recent-posts-land-style.php:664
7159
- #: includes/elementor/widgets/recent-posts-land-style.php:768
7160
- #: includes/elementor/widgets/recent-posts-land-style.php:850
7161
- #: includes/elementor/widgets/recent-posts-land-style.php:936
7162
- #: includes/elementor/widgets/recent-posts-masonry.php:780
7163
- #: includes/elementor/widgets/recent-posts-masonry.php:884
7164
- #: includes/elementor/widgets/recent-posts-masonry.php:966
7165
- #: includes/elementor/widgets/recent-posts-masonry.php:1052
7166
- #: includes/elementor/widgets/recent-posts-tiles-carousel.php:554
7167
- #: includes/elementor/widgets/recent-posts-tiles-carousel.php:658
7168
- #: includes/elementor/widgets/recent-posts-tiles.php:495
7169
- #: includes/elementor/widgets/recent-posts-tiles.php:599
7170
- #: includes/elementor/widgets/recent-posts-timeline.php:677
7171
- #: includes/elementor/widgets/recent-posts-timeline.php:781
7172
- #: includes/elementor/widgets/recent-posts-timeline.php:863
7173
- #: includes/elementor/widgets/recent-posts-timeline.php:949
7174
- #: includes/elementor/widgets/recent-products.php:684
7175
- #: includes/elementor/widgets/staff.php:550
7176
- #: includes/elementor/widgets/staff.php:612
7177
- #: includes/elementor/widgets/staff.php:674
7178
- #: includes/elementor/widgets/testimonial.php:553
7179
- #: includes/elementor/widgets/testimonial.php:774
7180
- #: includes/elementor/widgets/text.php:760
7181
- #: includes/elementor/widgets/text.php:873
7182
- #: includes/elementor/widgets/text.php:996
7183
- #, fuzzy
7184
- msgid "Bottom space"
7185
- msgstr "فضای بین ستون ها"
7186
 
7187
- #: includes/elementor/widgets/recent-comments.php:254
7188
  #, fuzzy
7189
- msgid "Meta Info"
7190
- msgstr "اطلاعات"
 
 
7191
 
7192
- #: includes/elementor/widgets/recent-comments.php:331
7193
- #: includes/elementor/widgets/recent-posts-grid-carousel.php:1230
7194
- #: includes/elementor/widgets/recent-posts-land-style.php:787
7195
- #: includes/elementor/widgets/recent-posts-masonry.php:903
7196
- #: includes/elementor/widgets/recent-posts-tiles-carousel.php:677
7197
- #: includes/elementor/widgets/recent-posts-tiles.php:618
7198
- #: includes/elementor/widgets/recent-posts-timeline.php:800
7199
  #, fuzzy
7200
- msgid "Space between metas"
7201
- msgstr "فاصله بین اسلایدها"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7202
 
7203
  #: includes/elementor/widgets/recent-comments.php:408
7204
  msgid "No comments found!"
@@ -7624,7 +8117,7 @@ msgstr "مشخص می کند نویسنده یا بیشتر بخوانید در
7624
  #: includes/elementor/widgets/recent-posts-masonry.php:385
7625
  #: includes/elementor/widgets/recent-posts-masonry.php:1208
7626
  #: includes/elementor/widgets/recent-posts-timeline.php:314
7627
- #: includes/elementor/widgets/text.php:300
7628
  #: includes/elements/recent-posts-grid-carousel.php:447
7629
  #: includes/elements/recent-posts-land-style.php:371
7630
  #: includes/elements/recent-posts-masonry.php:347
@@ -7640,129 +8133,23 @@ msgstr "بیشتر بخوانید"
7640
  msgid "Display Author in Footer"
7641
  msgstr "نمایش نویسنده یا ادامه نوشته"
7642
 
7643
- #: includes/elementor/widgets/recent-posts-grid-carousel.php:623
7644
- #: includes/elementor/widgets/recent-posts-land-style.php:317
7645
- #: includes/elementor/widgets/recent-posts-masonry.php:413
7646
- #: includes/elementor/widgets/recent-posts-timeline.php:342
7647
- #, fuzzy
7648
- msgid "Enable it to display author name in footer"
7649
- msgstr "برای نمایش مطالب اخیر این گزینه را فعال کنید."
7650
-
7651
- #: includes/elementor/widgets/recent-posts-grid-carousel.php:638
7652
- #, fuzzy
7653
- msgid "Meta info position"
7654
- msgstr "موقعیت تصویر یا شکلک"
7655
-
7656
- #: includes/elementor/widgets/recent-posts-grid-carousel.php:660
7657
- #: includes/elementor/widgets/recent-posts-land-style.php:338
7658
- #: includes/elementor/widgets/recent-posts-masonry.php:434
7659
- #: includes/elementor/widgets/recent-posts-tiles-carousel.php:329
7660
- #: includes/elementor/widgets/recent-posts-tiles.php:231
7661
- #: includes/elementor/widgets/recent-posts-timeline.php:363
7662
- #: includes/elementor/widgets/recent-products.php:308
7663
- #: includes/elements/latest-posts-slider.php:70
7664
- #: includes/elements/latest-posts-slider.php:84
7665
- #: includes/elements/latest-posts-slider.php:98
7666
- #: includes/elements/latest-posts-slider.php:112
7667
- #: includes/elements/latest-posts-slider.php:126
7668
- #: includes/elements/latest-posts-slider.php:150
7669
- #: includes/elements/latest-posts-slider.php:168
7670
- #: includes/elements/latest-posts-slider.php:238
7671
- #: includes/elements/recent-posts-grid-carousel.php:95
7672
- #: includes/elements/recent-posts-grid-carousel.php:109
7673
- #: includes/elements/recent-posts-grid-carousel.php:142
7674
- #: includes/elements/recent-posts-grid-carousel.php:155
7675
- #: includes/elements/recent-posts-grid-carousel.php:196
7676
- #: includes/elements/recent-posts-grid-carousel.php:214
7677
- #: includes/elements/recent-posts-grid-carousel.php:228
7678
- #: includes/elements/recent-posts-grid-carousel.php:242
7679
- #: includes/elements/recent-posts-grid-carousel.php:256
7680
- #: includes/elements/recent-posts-grid-carousel.php:270
7681
- #: includes/elements/recent-posts-land-style.php:82
7682
- #: includes/elements/recent-posts-land-style.php:96
7683
- #: includes/elements/recent-posts-land-style.php:129
7684
- #: includes/elements/recent-posts-land-style.php:142
7685
- #: includes/elements/recent-posts-land-style.php:158
7686
- #: includes/elements/recent-posts-land-style.php:183
7687
- #: includes/elements/recent-posts-land-style.php:201
7688
- #: includes/elements/recent-posts-land-style.php:215
7689
- #: includes/elements/recent-posts-land-style.php:229
7690
- #: includes/elements/recent-posts-land-style.php:243
7691
- #: includes/elements/recent-posts-land-style.php:257
7692
- #: includes/elements/recent-posts-masonry.php:82
7693
- #: includes/elements/recent-posts-masonry.php:96
7694
- #: includes/elements/recent-posts-masonry.php:109
7695
- #: includes/elements/recent-posts-masonry.php:122
7696
- #: includes/elements/recent-posts-masonry.php:163
7697
- #: includes/elements/recent-posts-masonry.php:181
7698
- #: includes/elements/recent-posts-masonry.php:195
7699
- #: includes/elements/recent-posts-masonry.php:209
7700
- #: includes/elements/recent-posts-masonry.php:223
7701
- #: includes/elements/recent-posts-masonry.php:237
7702
- #: includes/elements/recent-posts-tiles-carousel.php:68
7703
- #: includes/elements/recent-posts-tiles-carousel.php:82
7704
- #: includes/elements/recent-posts-tiles-carousel.php:96
7705
- #: includes/elements/recent-posts-tiles-carousel.php:109
7706
- #: includes/elements/recent-posts-tiles-carousel.php:122
7707
- #: includes/elements/recent-posts-tiles-carousel.php:138
7708
- #: includes/elements/recent-posts-tiles-carousel.php:163
7709
- #: includes/elements/recent-posts-tiles-carousel.php:181
7710
- #: includes/elements/recent-posts-tiles-carousel.php:195
7711
- #: includes/elements/recent-posts-tiles-carousel.php:209
7712
- #: includes/elements/recent-posts-tiles-carousel.php:223
7713
- #: includes/elements/recent-posts-tiles-carousel.php:248
7714
- #: includes/elements/recent-posts-tiles-carousel.php:266
7715
- #: includes/elements/recent-posts-tiles-carousel.php:280
7716
- #: includes/elements/recent-posts-tiles.php:81
7717
- #: includes/elements/recent-posts-tiles.php:95
7718
- #: includes/elements/recent-posts-tiles.php:108
7719
- #: includes/elements/recent-posts-tiles.php:121
7720
- #: includes/elements/recent-posts-tiles.php:137
7721
- #: includes/elements/recent-posts-tiles.php:193
7722
- #: includes/elements/recent-posts-tiles.php:211
7723
- #: includes/elements/recent-posts-tiles.php:225
7724
- #: includes/elements/recent-posts-tiles.php:239
7725
- #: includes/elements/recent-posts-tiles.php:253
7726
- #: includes/elements/recent-posts-tiles.php:278
7727
- #: includes/elements/recent-posts-tiles.php:296
7728
- #: includes/elements/recent-posts-tiles.php:310
7729
- #: includes/elements/recent-posts-timeline.php:76
7730
- #: includes/elements/recent-posts-timeline.php:90
7731
- #: includes/elements/recent-posts-timeline.php:103
7732
- #: includes/elements/recent-posts-timeline.php:116
7733
- #: includes/elements/recent-posts-timeline.php:132
7734
- #: includes/elements/recent-posts-timeline.php:188
7735
- #: includes/elements/recent-posts-timeline.php:206
7736
- #: includes/elements/recent-posts-timeline.php:220
7737
- #: includes/elements/recent-posts-timeline.php:234
7738
- #: includes/elements/recent-posts-timeline.php:248
7739
- #: includes/elements/recent-posts-timeline.php:262
7740
- msgid "Query"
7741
- msgstr ""
7742
 
7743
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:667
7744
  msgid "Use wp query"
7745
  msgstr ""
7746
 
7747
- #: includes/elementor/widgets/recent-posts-grid-carousel.php:679
7748
- #: includes/elementor/widgets/recent-posts-land-style.php:345
7749
- #: includes/elementor/widgets/recent-posts-masonry.php:441
7750
- #: includes/elementor/widgets/recent-posts-tiles-carousel.php:336
7751
- #: includes/elementor/widgets/recent-posts-tiles.php:238
7752
- #: includes/elementor/widgets/recent-posts-timeline.php:370
7753
- #: includes/elementor/widgets/recent-products.php:315
7754
- #: includes/elements/popular-posts-widget.php:236
7755
- #: includes/elements/recent-posts-grid-carousel.php:84
7756
- #: includes/elements/recent-posts-land-style.php:71
7757
- #: includes/elements/recent-posts-masonry.php:71
7758
- #: includes/elements/recent-posts-tiles-carousel.php:57
7759
- #: includes/elements/recent-posts-tiles.php:70
7760
- #: includes/elements/recent-posts-timeline.php:65
7761
- #: includes/elements/recent-posts-widget.php:191
7762
- #: includes/elements/recent-products.php:70
7763
- msgid "Categories"
7764
- msgstr "دسته ها"
7765
-
7766
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:680
7767
  #: includes/elementor/widgets/recent-posts-land-style.php:346
7768
  #: includes/elementor/widgets/recent-posts-masonry.php:442
@@ -7781,23 +8168,6 @@ msgstr "دسته ها"
7781
  msgid "Specifies a category that you want to show posts from it."
7782
  msgstr "دسته ای که می خواهید نوشته ها از آن نشان داده شوند را مشخص کنید."
7783
 
7784
- #: includes/elementor/widgets/recent-posts-grid-carousel.php:694
7785
- #: includes/elementor/widgets/recent-posts-land-style.php:357
7786
- #: includes/elementor/widgets/recent-posts-masonry.php:453
7787
- #: includes/elementor/widgets/recent-posts-tiles-carousel.php:348
7788
- #: includes/elementor/widgets/recent-posts-tiles.php:250
7789
- #: includes/elementor/widgets/recent-posts-timeline.php:382
7790
- #: includes/elementor/widgets/recent-products.php:327
7791
- #: includes/elements/popular-posts-widget.php:65
7792
- #: includes/elements/recent-posts-grid-carousel.php:99
7793
- #: includes/elements/recent-posts-land-style.php:86
7794
- #: includes/elements/recent-posts-masonry.php:86
7795
- #: includes/elements/recent-posts-tiles.php:85
7796
- #: includes/elements/recent-posts-timeline.php:80
7797
- #: includes/elements/recent-posts-widget.php:71
7798
- msgid "Number of posts to show"
7799
- msgstr "تعداد نوشته ها برای نمایش"
7800
-
7801
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:706
7802
  #: includes/elementor/widgets/recent-posts-land-style.php:369
7803
  #: includes/elementor/widgets/recent-posts-masonry.php:465
@@ -7865,136 +8235,6 @@ msgstr "فایل ویدیو"
7865
  msgid "Exclude quote and link post formats"
7866
  msgstr "نادیده گرفتن نوشته های سبک نقل قول و لینک"
7867
 
7868
- #: includes/elementor/widgets/recent-posts-grid-carousel.php:775
7869
- #: includes/elementor/widgets/recent-posts-land-style.php:408
7870
- #: includes/elementor/widgets/recent-posts-masonry.php:504
7871
- #: includes/elementor/widgets/recent-posts-tiles-carousel.php:399
7872
- #: includes/elementor/widgets/recent-posts-tiles.php:301
7873
- #: includes/elementor/widgets/recent-posts-timeline.php:433
7874
- #: includes/elementor/widgets/recent-products.php:378
7875
- #: includes/elements/latest-posts-slider.php:130
7876
- #: includes/elements/popular-posts-widget.php:189
7877
- #: includes/elements/recent-posts-grid-carousel.php:175
7878
- #: includes/elements/recent-posts-land-style.php:162
7879
- #: includes/elements/recent-posts-masonry.php:142
7880
- #: includes/elements/recent-posts-tiles-carousel.php:142
7881
- #: includes/elements/recent-posts-tiles-carousel.php:227
7882
- #: includes/elements/recent-posts-tiles.php:172
7883
- #: includes/elements/recent-posts-tiles.php:257
7884
- #: includes/elements/recent-posts-timeline.php:167
7885
- #: includes/elements/recent-posts-widget.php:149
7886
- #: includes/elements/recent-products.php:121
7887
- msgid "Order by"
7888
- msgstr "مرتب سازی بر اساس"
7889
-
7890
- #: includes/elementor/widgets/recent-posts-grid-carousel.php:784
7891
- #: includes/elementor/widgets/recent-posts-land-style.php:417
7892
- #: includes/elementor/widgets/recent-posts-masonry.php:513
7893
- #: includes/elementor/widgets/recent-posts-tiles-carousel.php:408
7894
- #: includes/elementor/widgets/recent-posts-tiles.php:310
7895
- #: includes/elementor/widgets/recent-posts-timeline.php:442
7896
- #: includes/elementor/widgets/recent-products.php:387
7897
- #: includes/elements/latest-posts-slider.php:141
7898
- #: includes/elements/popular-posts-widget.php:202
7899
- #: includes/elements/recent-posts-grid-carousel.php:188
7900
- #: includes/elements/recent-posts-land-style.php:175
7901
- #: includes/elements/recent-posts-masonry.php:155
7902
- #: includes/elements/recent-posts-tiles-carousel.php:155
7903
- #: includes/elements/recent-posts-tiles-carousel.php:240
7904
- #: includes/elements/recent-posts-tiles.php:185
7905
- #: includes/elements/recent-posts-tiles.php:270
7906
- #: includes/elements/recent-posts-timeline.php:180
7907
- #: includes/elements/recent-posts-widget.php:162
7908
- #: includes/elements/recent-products.php:134
7909
- msgid "Comments"
7910
- msgstr "دیدگاه ها"
7911
-
7912
- #: includes/elementor/widgets/recent-posts-grid-carousel.php:785
7913
- #: includes/elementor/widgets/recent-posts-land-style.php:418
7914
- #: includes/elementor/widgets/recent-posts-masonry.php:514
7915
- #: includes/elementor/widgets/recent-posts-tiles-carousel.php:409
7916
- #: includes/elementor/widgets/recent-posts-tiles.php:311
7917
- #: includes/elementor/widgets/recent-posts-timeline.php:443
7918
- #: includes/elementor/widgets/recent-products.php:388
7919
- #: includes/elements/latest-posts-slider.php:142
7920
- #: includes/elements/popular-posts-widget.php:203
7921
- #: includes/elements/recent-posts-grid-carousel.php:189
7922
- #: includes/elements/recent-posts-land-style.php:176
7923
- #: includes/elements/recent-posts-masonry.php:156
7924
- #: includes/elements/recent-posts-tiles-carousel.php:156
7925
- #: includes/elements/recent-posts-tiles-carousel.php:241
7926
- #: includes/elements/recent-posts-tiles.php:186
7927
- #: includes/elements/recent-posts-tiles.php:271
7928
- #: includes/elements/recent-posts-timeline.php:181
7929
- #: includes/elements/recent-posts-widget.php:163
7930
- #: includes/elements/recent-products.php:135
7931
- msgid "Date Modified"
7932
- msgstr "تاریخ ویرایش"
7933
-
7934
- #: includes/elementor/widgets/recent-posts-grid-carousel.php:787
7935
- #: includes/elementor/widgets/recent-posts-land-style.php:420
7936
- #: includes/elementor/widgets/recent-posts-masonry.php:516
7937
- #: includes/elementor/widgets/recent-posts-tiles-carousel.php:411
7938
- #: includes/elementor/widgets/recent-posts-tiles.php:313
7939
- #: includes/elementor/widgets/recent-posts-timeline.php:445
7940
- #: includes/elementor/widgets/recent-products.php:390
7941
- #: includes/elements/recent-posts-grid-carousel.php:191
7942
- #: includes/elements/recent-posts-land-style.php:178
7943
- #: includes/elements/recent-posts-masonry.php:158
7944
- #: includes/elements/recent-posts-tiles-carousel.php:158
7945
- #: includes/elements/recent-posts-tiles-carousel.php:243
7946
- #: includes/elements/recent-posts-tiles.php:188
7947
- #: includes/elements/recent-posts-tiles.php:273
7948
- #: includes/elements/recent-posts-timeline.php:183
7949
- #: includes/elements/recent-products.php:137
7950
- #, fuzzy
7951
- msgid "Inserted Post IDs"
7952
- msgstr "افزودن متای نوشته"
7953
-
7954
- #: includes/elementor/widgets/recent-posts-grid-carousel.php:802
7955
- #: includes/elementor/widgets/recent-posts-land-style.php:432
7956
- #: includes/elementor/widgets/recent-posts-masonry.php:528
7957
- #: includes/elementor/widgets/recent-posts-tiles-carousel.php:423
7958
- #: includes/elementor/widgets/recent-posts-tiles.php:325
7959
- #: includes/elementor/widgets/recent-posts-timeline.php:457
7960
- #: includes/elementor/widgets/recent-products.php:402
7961
- #: includes/elements/latest-posts-slider.php:160
7962
- #: includes/elements/popular-posts-widget.php:221
7963
- #: includes/elements/recent-posts-grid-carousel.php:208
7964
- #: includes/elements/recent-posts-land-style.php:195
7965
- #: includes/elements/recent-posts-masonry.php:175
7966
- #: includes/elements/recent-posts-tiles-carousel.php:175
7967
- #: includes/elements/recent-posts-tiles-carousel.php:260
7968
- #: includes/elements/recent-posts-tiles.php:205
7969
- #: includes/elements/recent-posts-tiles.php:290
7970
- #: includes/elements/recent-posts-timeline.php:200
7971
- #: includes/elements/recent-posts-widget.php:181
7972
- #: includes/elements/recent-products.php:154
7973
- msgid "Descending"
7974
- msgstr "نزولی"
7975
-
7976
- #: includes/elementor/widgets/recent-posts-grid-carousel.php:803
7977
- #: includes/elementor/widgets/recent-posts-land-style.php:433
7978
- #: includes/elementor/widgets/recent-posts-masonry.php:529
7979
- #: includes/elementor/widgets/recent-posts-tiles-carousel.php:424
7980
- #: includes/elementor/widgets/recent-posts-tiles.php:326
7981
- #: includes/elementor/widgets/recent-posts-timeline.php:458
7982
- #: includes/elementor/widgets/recent-products.php:403
7983
- #: includes/elements/latest-posts-slider.php:161
7984
- #: includes/elements/popular-posts-widget.php:222
7985
- #: includes/elements/recent-posts-grid-carousel.php:209
7986
- #: includes/elements/recent-posts-land-style.php:196
7987
- #: includes/elements/recent-posts-masonry.php:176
7988
- #: includes/elements/recent-posts-tiles-carousel.php:176
7989
- #: includes/elements/recent-posts-tiles-carousel.php:261
7990
- #: includes/elements/recent-posts-tiles.php:206
7991
- #: includes/elements/recent-posts-tiles.php:291
7992
- #: includes/elements/recent-posts-timeline.php:201
7993
- #: includes/elements/recent-posts-widget.php:182
7994
- #: includes/elements/recent-products.php:155
7995
- msgid "Ascending"
7996
- msgstr "صعودی"
7997
-
7998
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:814
7999
  #: includes/elementor/widgets/recent-posts-land-style.php:441
8000
  #: includes/elementor/widgets/recent-posts-masonry.php:537
@@ -8264,8 +8504,8 @@ msgid "Padding for content wrapper"
8264
  msgstr ""
8265
 
8266
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:1629
8267
- #: includes/elementor/widgets/text.php:622
8268
- #: includes/elementor/widgets/text.php:1543
8269
  msgid "Transition duration"
8270
  msgstr ""
8271
 
@@ -8273,12 +8513,6 @@ msgstr ""
8273
  msgid "Flip Wrapper"
8274
  msgstr ""
8275
 
8276
- #: includes/elementor/widgets/recent-posts-grid-carousel.php:1934
8277
- #: includes/elementor/widgets/recent-posts-masonry.php:1332
8278
- #, fuzzy
8279
- msgid "Button Padding"
8280
- msgstr "اندازه دکمه"
8281
-
8282
  #: includes/elementor/widgets/recent-posts-land-style.php:49
8283
  #, fuzzy
8284
  msgid "Land Style Posts"
@@ -8375,12 +8609,6 @@ msgstr "تراز المان خط زمانی را مشخص می کند."
8375
  msgid "Display post meta"
8376
  msgstr "نمایش متای پست"
8377
 
8378
- #: includes/elementor/widgets/recent-products.php:49
8379
- #: includes/elements/recent-products.php:15
8380
- #, fuzzy
8381
- msgid "Recent Products"
8382
- msgstr "اکسین نوشته های اخیر"
8383
-
8384
  #: includes/elementor/widgets/recent-products.php:185
8385
  #: includes/elements/recent-products.php:220
8386
  #, fuzzy
@@ -8404,47 +8632,6 @@ msgstr "نمایش عنوان پست"
8404
  msgid "Display Add To Cart"
8405
  msgstr "نمایش تاریخ نوشته"
8406
 
8407
- #: includes/elementor/widgets/recent-products.php:411
8408
- #: includes/elements/recent-products.php:164
8409
- msgid "Only products"
8410
- msgstr ""
8411
-
8412
- #: includes/elementor/widgets/recent-products.php:412
8413
- #: includes/elements/recent-products.php:165
8414
- msgid ""
8415
- "If you intend to display ONLY specific products, you should specify the "
8416
- "products here. You have to insert the Products IDs that are separated by "
8417
- "comma (eg. 53,34,87,25)."
8418
- msgstr ""
8419
-
8420
- #: includes/elementor/widgets/recent-products.php:420
8421
- #: includes/elements/recent-products.php:178
8422
- #, fuzzy
8423
- msgid "Include products"
8424
- msgstr "شامل شدن این نوشته ها"
8425
-
8426
- #: includes/elementor/widgets/recent-products.php:421
8427
- #: includes/elements/recent-products.php:179
8428
- msgid ""
8429
- "If you intend to include additional products, you should specify the "
8430
- "products here. You have to insert the Products IDs that are separated by "
8431
- "comma (eg. 53,34,87,25)"
8432
- msgstr ""
8433
-
8434
- #: includes/elementor/widgets/recent-products.php:429
8435
- #: includes/elements/recent-products.php:192
8436
- #, fuzzy
8437
- msgid "Exclude products"
8438
- msgstr "نادیده گرفتن این نوشته ها"
8439
-
8440
- #: includes/elementor/widgets/recent-products.php:430
8441
- #: includes/elements/recent-products.php:193
8442
- msgid ""
8443
- "If you intend to exclude specific products from result, you should specify "
8444
- "the products here. You have to insert the Products IDs that are separated by "
8445
- "comma (eg. 53,34,87,25)"
8446
- msgstr ""
8447
-
8448
  #: includes/elementor/widgets/recent-products.php:580
8449
  msgid "Spacing"
8450
  msgstr "فاصله"
@@ -8519,7 +8706,7 @@ msgid "Staff Name"
8519
  msgstr ""
8520
 
8521
  #: includes/elementor/widgets/staff.php:108
8522
- #: includes/elementor/widgets/text.php:233 includes/elements/text.php:44
8523
  msgid "Text title, leave it empty if you don`t need title."
8524
  msgstr "عناون متن، اگر به عنوان نیاز ندارید این بخش را خالی بگذارید."
8525
 
@@ -8532,7 +8719,7 @@ msgid "Staff Page Link"
8532
  msgstr ""
8533
 
8534
  #: includes/elementor/widgets/staff.php:141
8535
- #: includes/elementor/widgets/text.php:264 includes/elements/staff.php:515
8536
  #: includes/elements/testimonial.php:167 includes/elements/text.php:882
8537
  msgid "Enter a text as a text content."
8538
  msgstr "متنی را به عنوان محتوا وارد کنید."
@@ -8546,29 +8733,29 @@ msgid "Limit the number of words in the Content"
8546
  msgstr ""
8547
 
8548
  #: includes/elementor/widgets/staff.php:196
8549
- #: includes/elementor/widgets/text.php:647 includes/elements/staff.php:161
8550
  #: includes/elements/text.php:571
8551
  #, fuzzy
8552
  msgid "Image shape"
8553
  msgstr "اندازه تصویر"
8554
 
8555
  #: includes/elementor/widgets/staff.php:204
8556
- #: includes/elementor/widgets/text.php:464
8557
- #: includes/elementor/widgets/text.php:659 includes/elements/staff.php:172
8558
  #: includes/elements/text.php:543 includes/elements/text.php:585
8559
  msgid "Semi-circle"
8560
  msgstr "نیم دایره"
8561
 
8562
  #: includes/elementor/widgets/staff.php:208
8563
- #: includes/elementor/widgets/text.php:468
8564
- #: includes/elementor/widgets/text.php:663 includes/elements/staff.php:176
8565
  #: includes/elements/text.php:547 includes/elements/text.php:589
8566
  msgid "Round Rectangle"
8567
  msgstr "مستطیل دورگرد"
8568
 
8569
  #: includes/elementor/widgets/staff.php:212
8570
- #: includes/elementor/widgets/text.php:476
8571
- #: includes/elementor/widgets/text.php:667 includes/elements/staff.php:180
8572
  #: includes/elements/text.php:555 includes/elements/text.php:593
8573
  msgid "Rectangle"
8574
  msgstr "مستطیل"
@@ -8638,15 +8825,15 @@ msgid "LinkedIn Address"
8638
  msgstr "آدرس"
8639
 
8640
  #: includes/elementor/widgets/staff.php:531
8641
- #: includes/elementor/widgets/text.php:856
8642
- #: includes/elementor/widgets/text.php:979
8643
  #, fuzzy
8644
  msgid "Top space"
8645
  msgstr "فضای خالی"
8646
 
8647
  #: includes/elementor/widgets/staff.php:575
8648
- #: includes/elementor/widgets/text.php:242
8649
- #: includes/elementor/widgets/text.php:782
8650
  #: includes/elements/recent-posts-grid-carousel.php:70
8651
  #: includes/elements/recent-products.php:56 includes/elements/text.php:59
8652
  msgid "Subtitle"
@@ -8688,13 +8875,8 @@ msgstr "اندازه شکلک"
8688
  msgid "X-Large"
8689
  msgstr "خیلی بزرگ"
8690
 
8691
- #: includes/elementor/widgets/staff.php:831
8692
- #, fuzzy
8693
- msgid "Wrappers"
8694
- msgstr "ظاهر Wrapper"
8695
-
8696
  #: includes/elementor/widgets/staff.php:870
8697
- #: includes/elementor/widgets/text.php:1435
8698
  #: includes/elementor/widgets/theme-elements/menu.php:324
8699
  #: includes/elementor/widgets/theme-elements/menu.php:1341
8700
  #: includes/elements/text.php:118
@@ -8722,7 +8904,7 @@ msgid "Choose Image"
8722
  msgstr "انتخاب .."
8723
 
8724
  #: includes/elementor/widgets/svg.php:137
8725
- #: includes/elementor/widgets/text.php:209
8726
  #: includes/elementor/widgets/theme-elements/menu.php:1116
8727
  msgid "Enter inline SVG content here"
8728
  msgstr ""
@@ -8851,19 +9033,6 @@ msgstr ""
8851
  msgid "Occupation"
8852
  msgstr "عملیات هنگام کلیک"
8853
 
8854
- #: includes/elementor/widgets/testimonial.php:722
8855
- msgid "Rating"
8856
- msgstr ""
8857
-
8858
- #: includes/elementor/widgets/testimonial.php:734
8859
- msgid "Empty Color"
8860
- msgstr ""
8861
-
8862
- #: includes/elementor/widgets/testimonial.php:745
8863
- #, fuzzy
8864
- msgid "Fill Color"
8865
- msgstr "رنگ شکلک"
8866
-
8867
  #: includes/elementor/widgets/testimonial.php:796
8868
  #, fuzzy
8869
  msgid "Content Box"
@@ -8874,127 +9043,127 @@ msgstr "محتوا"
8874
  msgid "Content Alignment"
8875
  msgstr "تراز شکلک"
8876
 
8877
- #: includes/elementor/widgets/text.php:53 includes/elements/text.php:15
8878
  #, fuzzy
8879
  msgid "Info Box"
8880
  msgstr "اطلاعات"
8881
 
8882
- #: includes/elementor/widgets/text.php:118
8883
  msgid "Inline SVG"
8884
  msgstr ""
8885
 
8886
- #: includes/elementor/widgets/text.php:128
8887
  #: includes/elementor/widgets/theme-elements/search.php:132
8888
  #: includes/elements/text.php:387
8889
  #, fuzzy
8890
  msgid "Please choose an icon from the list."
8891
  msgstr "لطفا یکی از شکلک های موجود را انتخاب کنید."
8892
 
8893
- #: includes/elementor/widgets/text.php:250 includes/elements/text.php:75
8894
  #, fuzzy
8895
  msgid "Title Link"
8896
  msgstr "لینک عنوان"
8897
 
8898
- #: includes/elementor/widgets/text.php:285 includes/elements/text.php:637
8899
  #, fuzzy
8900
  msgid "Display button"
8901
  msgstr "نمایش دکمه لایک"
8902
 
8903
- #: includes/elementor/widgets/text.php:286 includes/elements/text.php:638
8904
  #, fuzzy
8905
  msgid "Display a button in text widget"
8906
  msgstr "نمایش دکمه لایک"
8907
 
8908
- #: includes/elementor/widgets/text.php:358
8909
  #, fuzzy
8910
  msgid "Header Position"
8911
  msgstr "موقعیت"
8912
 
8913
- #: includes/elementor/widgets/text.php:409
8914
  #, fuzzy
8915
  msgid "Icon/Image"
8916
  msgstr "تصویر"
8917
 
8918
- #: includes/elementor/widgets/text.php:421
8919
  #, fuzzy
8920
  msgid "Border"
8921
  msgstr "کادربندی شده"
8922
 
8923
- #: includes/elementor/widgets/text.php:455 includes/elements/text.php:533
8924
  msgid "Icon background shape"
8925
  msgstr "شکل پس زمینه شکلک"
8926
 
8927
- #: includes/elementor/widgets/text.php:472 includes/elements/text.php:551
8928
  #, fuzzy
8929
  msgid "Cross Rectangle"
8930
  msgstr "مستطیل"
8931
 
8932
- #: includes/elementor/widgets/text.php:523
8933
- #: includes/elementor/widgets/text.php:582
8934
  #: includes/elementor/widgets/theme-elements/search.php:233
8935
  #: includes/elements/text.php:445
8936
  msgid "Icon color"
8937
  msgstr "رنگ شکلک"
8938
 
8939
- #: includes/elementor/widgets/text.php:538
8940
- #: includes/elementor/widgets/text.php:597 includes/elements/text.php:486
8941
  msgid "Icon background color"
8942
  msgstr "رنگ پس زمینه شکلک"
8943
 
8944
- #: includes/elementor/widgets/text.php:651 includes/elements/text.php:577
8945
  #, fuzzy
8946
  msgid "Default Aspect"
8947
  msgstr "پیش فرض"
8948
 
8949
- #: includes/elementor/widgets/text.php:1045
8950
  #, fuzzy
8951
  msgid "Button Skin"
8952
  msgstr "اندازه دکمه"
8953
 
8954
- #: includes/elementor/widgets/text.php:1122
8955
  #, fuzzy
8956
  msgid "Button Icon"
8957
  msgstr "اندازه دکمه"
8958
 
8959
- #: includes/elementor/widgets/text.php:1235
8960
  #, fuzzy
8961
  msgid "Button Text"
8962
  msgstr "متن دکمه"
8963
 
8964
- #: includes/elementor/widgets/text.php:1328
8965
  #, fuzzy
8966
  msgid "Button Wrapper"
8967
  msgstr "نوع دکمه"
8968
 
8969
- #: includes/elementor/widgets/text.php:1353
8970
  #, fuzzy
8971
  msgid "Shape Style"
8972
  msgstr "ظاهر نقشه"
8973
 
8974
- #: includes/elementor/widgets/text.php:1377 includes/general-hooks.php:759
8975
  #: includes/general-hooks.php:1171
8976
  #, fuzzy
8977
  msgid "Button Style"
8978
  msgstr "ظاهر دکمه"
8979
 
8980
- #: includes/elementor/widgets/text.php:1427
8981
  #, fuzzy
8982
  msgid "Overlay"
8983
  msgstr "رو"
8984
 
8985
- #: includes/elementor/widgets/text.php:1578 includes/elements/text.php:896
8986
  msgid "Footer Shape"
8987
  msgstr ""
8988
 
8989
- #: includes/elementor/widgets/text.php:1587 includes/elements/text.php:907
8990
  msgid "Wave"
8991
  msgstr ""
8992
 
8993
- #: includes/elementor/widgets/text.php:1591 includes/elements/text.php:911
8994
  msgid "Tail"
8995
  msgstr ""
8996
 
8997
- #: includes/elementor/widgets/text.php:1602 includes/elements/button.php:212
8998
  #: includes/elements/text.php:825
8999
  msgid "Color of button"
9000
  msgstr "رنگ دکمه"
@@ -11354,11 +11523,6 @@ msgstr "عنوان مطالب اخیر، اگر به عنوان نیازی ند
11354
  msgid "Vertical 10:15"
11355
  msgstr "عمودی 3:4"
11356
 
11357
- #: includes/elements/recent-products.php:207
11358
- #, fuzzy
11359
- msgid "Number of products to displace or pass over."
11360
- msgstr "تعداد نوشته هایی که باید از آن ها عبور کرد یا آن ها را نادیده گرفت."
11361
-
11362
  #: includes/elements/sample-element.php:19
11363
  msgid "Auxin Callout "
11364
  msgstr "اکسین فراخوان"
@@ -11972,7 +12136,7 @@ msgstr ""
11972
  msgid "Page Not Found"
11973
  msgstr ""
11974
 
11975
- #: includes/general-functions.php:2500
11976
  #, fuzzy
11977
  msgid "Select Page"
11978
  msgstr "تراز شکلک را انتخاب کنید."
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: 2021-12-27 09:18:44+00:00\n"
6
  "PO-Revision-Date: 2016-11-09 12:50+0330\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
355
  msgid "Connection error..."
356
  msgstr ""
357
 
358
+ #: admin/includes/classes/class-auxin-license-activation.php:168
359
+ msgid "Learn more"
360
+ msgstr ""
361
+
362
  #: admin/includes/classes/class-auxin-notices.php:30
363
  msgid "You need to enter a unique id for notice."
364
  msgstr ""
709
  #: admin/includes/metaboxes/metabox-fields-general-footer.php:21
710
  #: includes/elementor/modules/documents/footer.php:35
711
  #: includes/elementor/modules/documents/footer.php:46
712
+ #: includes/elementor/widgets/text.php:1580
713
  msgid "Footer"
714
  msgstr ""
715
 
852
 
853
  #: admin/includes/metaboxes/metabox-fields-general-header.php:21
854
  #: includes/elementor/modules/documents/header.php:35
855
+ #: includes/elementor/widgets/text.php:105
856
+ #: includes/elementor/widgets/text.php:348
857
  #, fuzzy
858
  msgid "Header"
859
  msgstr "تیتر گذاری"
1162
  #: includes/elementor/widgets/custom-list.php:509
1163
  #: includes/elementor/widgets/divider.php:202
1164
  #: includes/elementor/widgets/divider.php:241
1165
+ #: includes/elementor/widgets/heading-modern.php:164
1166
  #: includes/elementor/widgets/icon.php:174
1167
  #: includes/elementor/widgets/image.php:323
1168
  #: includes/elementor/widgets/modern-button.php:143
1178
  #: includes/elementor/widgets/staff.php:878
1179
  #: includes/elementor/widgets/svg.php:288
1180
  #: includes/elementor/widgets/testimonial.php:813
1181
+ #: includes/elementor/widgets/text.php:1453
1182
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:435
1183
  #: includes/elementor/widgets/theme-elements/copyright.php:146
1184
  #: includes/elementor/widgets/theme-elements/current-time.php:139
1203
  #: includes/elementor/widgets/custom-list.php:505
1204
  #: includes/elementor/widgets/divider.php:198
1205
  #: includes/elementor/widgets/divider.php:237
1206
+ #: includes/elementor/widgets/heading-modern.php:160
1207
  #: includes/elementor/widgets/icon.php:170
1208
  #: includes/elementor/widgets/image.php:319
1209
  #: includes/elementor/widgets/modern-button.php:184
1219
  #: includes/elementor/widgets/staff.php:874
1220
  #: includes/elementor/widgets/svg.php:284
1221
  #: includes/elementor/widgets/testimonial.php:809
1222
+ #: includes/elementor/widgets/text.php:368
1223
+ #: includes/elementor/widgets/text.php:1150
1224
+ #: includes/elementor/widgets/text.php:1449
1225
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:431
1226
  #: includes/elementor/widgets/theme-elements/copyright.php:142
1227
  #: includes/elementor/widgets/theme-elements/current-time.php:135
1285
  #: includes/elementor/widgets/divider.php:146
1286
  #: includes/elementor/widgets/modern-button.php:311
1287
  #: includes/elementor/widgets/staff.php:787
1288
+ #: includes/elementor/widgets/text.php:1046 includes/elements/button.php:66
1289
  #: includes/elements/divider.php:90 includes/elements/socials-list.php:63
1290
  #: includes/elements/socials-list.php:201 includes/elements/staff.php:463
1291
  #: includes/elements/text.php:469 includes/elements/text.php:677
1299
  #: includes/elementor/widgets/divider.php:145
1300
  #: includes/elementor/widgets/modern-button.php:310
1301
  #: includes/elementor/widgets/staff.php:788
1302
+ #: includes/elementor/widgets/text.php:1045
1303
  #: includes/elements/before-after.php:104 includes/elements/button.php:65
1304
  #: includes/elements/divider.php:89 includes/elements/instagram-feed.php:98
1305
  #: includes/elements/socials-list.php:64 includes/elements/socials-list.php:202
1315
  #: includes/elementor/widgets/button.php:161
1316
  #: includes/elementor/widgets/modern-button.php:309
1317
  #: includes/elementor/widgets/staff.php:789
1318
+ #: includes/elementor/widgets/text.php:1044
1319
  #: includes/elements/before-after.php:105 includes/elements/button.php:64
1320
  #: includes/elements/divider.php:88 includes/elements/socials-list.php:65
1321
  #: includes/elements/socials-list.php:203 includes/elements/staff.php:110
1386
  #: includes/elementor/widgets/recent-posts-tiles-carousel.php:130
1387
  #: includes/elementor/widgets/recent-posts-tiles.php:130
1388
  #: includes/elementor/widgets/tabs.php:195
1389
+ #: includes/elementor/widgets/text.php:1149
1390
  #: includes/elementor/widgets/theme-elements/menu.php:999
1391
  #: includes/elementor/widgets/theme-elements/modern-search.php:577
1392
  #: includes/elements/button.php:179 includes/elements/code.php:99
1414
  #: includes/elementor/widgets/contact-form.php:1703
1415
  #: includes/elementor/widgets/custom-list.php:918
1416
  #: includes/elementor/widgets/custom-list.php:1075
1417
+ #: includes/elementor/widgets/heading-modern.php:408
1418
+ #: includes/elementor/widgets/heading-modern.php:593
1419
+ #: includes/elementor/widgets/heading-modern.php:764
1420
  #: includes/elementor/widgets/icon.php:246
1421
  #: includes/elementor/widgets/image.php:536
1422
  #: includes/elementor/widgets/mailchimp.php:352
1426
  #: includes/elementor/widgets/modern-button.php:618
1427
  #: includes/elementor/widgets/modern-button.php:730
1428
  #: includes/elementor/widgets/modern-button.php:916
1429
+ #: includes/elementor/widgets/products-grid.php:420
1430
+ #: includes/elementor/widgets/products-grid.php:487
1431
+ #: includes/elementor/widgets/products-grid.php:556
1432
+ #: includes/elementor/widgets/products-grid.php:623
1433
+ #: includes/elementor/widgets/products-grid.php:690
1434
+ #: includes/elementor/widgets/products-grid.php:827
1435
+ #: includes/elementor/widgets/products-grid.php:918
1436
+ #: includes/elementor/widgets/products-grid.php:1044
1437
  #: includes/elementor/widgets/recent-comments.php:201
1438
  #: includes/elementor/widgets/recent-comments.php:284
1439
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:997
1470
  #: includes/elementor/widgets/testimonial.php:511
1471
  #: includes/elementor/widgets/testimonial.php:629
1472
  #: includes/elementor/widgets/testimonial.php:923
1473
+ #: includes/elementor/widgets/text.php:567
1474
+ #: includes/elementor/widgets/text.php:720
1475
+ #: includes/elementor/widgets/text.php:825
1476
+ #: includes/elementor/widgets/text.php:936
1477
+ #: includes/elementor/widgets/text.php:1103
1478
+ #: includes/elementor/widgets/text.php:1223
1479
+ #: includes/elementor/widgets/text.php:1298
1480
+ #: includes/elementor/widgets/text.php:1528
1481
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:516
1482
  #: includes/elementor/widgets/theme-elements/copyright.php:212
1483
  #: includes/elementor/widgets/theme-elements/logo.php:327
2232
  #: includes/classes/class-auxin-welcome.php:431
2233
  #: includes/elementor/modules/dynamic-tags/contact-url.php:181
2234
  #: includes/elementor/modules/dynamic-tags/featured-image-data.php:90
2235
+ #: includes/elementor/widgets/heading-modern.php:310
2236
+ #: includes/elementor/widgets/heading-modern.php:317
2237
+ #: includes/elementor/widgets/heading-modern.php:973
2238
+ #: includes/elementor/widgets/products-grid.php:593
2239
  #: includes/elementor/widgets/theme-elements/logo.php:546
2240
  #: includes/elements/custom-list.php:138
2241
  #, fuzzy
2912
  msgid "Select Audio"
2913
  msgstr "انتخاب شکاف آکاردئون"
2914
 
2915
+ #: includes/elementor/class-auxin-elementor-core-elements.php:419
2916
  msgid "Element class \"%s\" not found."
2917
  msgstr ""
2918
 
2919
+ #: includes/elementor/class-auxin-elementor-core-elements.php:515
2920
  msgid "Module class \"%s\" not found."
2921
  msgstr ""
2922
 
2923
+ #: includes/elementor/class-auxin-elementor-core-elements.php:588
2924
  msgid "%s - General"
2925
  msgstr ""
2926
 
2927
+ #: includes/elementor/class-auxin-elementor-core-elements.php:596
2928
  msgid "%s - Featured"
2929
  msgstr ""
2930
 
2931
+ #: includes/elementor/class-auxin-elementor-core-elements.php:604
2932
  #, fuzzy
2933
  msgid "%s - Posts"
2934
  msgstr "نوشته ها"
2935
 
2936
+ #: includes/elementor/class-auxin-elementor-core-elements.php:612
2937
  msgid "%s - Portfolio"
2938
  msgstr ""
2939
 
2940
  #. translators: 1: Plugin name 2: PHP 3: Required PHP version
2941
+ #: includes/elementor/class-auxin-elementor-core-elements.php:686
2942
+ #: includes/elementor/class-auxin-elementor-core-elements.php:710
2943
  msgid "\"%1$s\" requires \"%2$s\" version %3$s or greater."
2944
  msgstr ""
2945
 
2946
+ #: includes/elementor/class-auxin-elementor-core-elements.php:688
2947
  msgid "Elementor"
2948
  msgstr ""
2949
 
2950
+ #: includes/elementor/class-auxin-elementor-core-elements.php:712
2951
  #: includes/elements/code.php:82
2952
  msgid "PHP"
2953
  msgstr ""
2954
 
2955
+ #: includes/elementor/class-auxin-elementor-core-elements.php:769
2956
  msgid "Phlox Icons - Set 1"
2957
  msgstr ""
2958
 
2959
+ #: includes/elementor/class-auxin-elementor-core-elements.php:791
2960
  msgid "Phlox Icons - Set 2"
2961
  msgstr ""
2962
 
3122
  #: includes/elementor/modules/common.php:658
3123
  #: includes/elementor/widgets/modern-button.php:139
3124
  #: includes/elementor/widgets/staff.php:847
3125
+ #: includes/elementor/widgets/text.php:364 includes/elements/staff.php:226
3126
  #: includes/elements/text.php:616
3127
  #, fuzzy
3128
  msgid "Top"
3135
  #: includes/elementor/widgets/custom-list.php:513
3136
  #: includes/elementor/widgets/divider.php:206
3137
  #: includes/elementor/widgets/divider.php:245
3138
+ #: includes/elementor/widgets/heading-modern.php:168
3139
  #: includes/elementor/widgets/icon.php:178
3140
  #: includes/elementor/widgets/image.php:327
3141
  #: includes/elementor/widgets/modern-button.php:192
3151
  #: includes/elementor/widgets/staff.php:882
3152
  #: includes/elementor/widgets/svg.php:292
3153
  #: includes/elementor/widgets/testimonial.php:817
3154
+ #: includes/elementor/widgets/text.php:372
3155
+ #: includes/elementor/widgets/text.php:1151
3156
+ #: includes/elementor/widgets/text.php:1457
3157
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:439
3158
  #: includes/elementor/widgets/theme-elements/copyright.php:150
3159
  #: includes/elementor/widgets/theme-elements/current-time.php:143
3201
  #: includes/elementor/widgets/contact-form.php:976
3202
  #: includes/elementor/widgets/contact-form.php:1219
3203
  #: includes/elementor/widgets/contact-form.php:1572
3204
+ #: includes/elementor/widgets/heading-modern.php:486
3205
+ #: includes/elementor/widgets/heading-modern.php:671
3206
+ #: includes/elementor/widgets/heading-modern.php:842
3207
+ #: includes/elementor/widgets/heading-modern.php:1015
3208
  #: includes/elementor/widgets/image.php:426
3209
  #: includes/elementor/widgets/mailchimp.php:234
3210
  #: includes/elementor/widgets/mailchimp.php:481
3246
  #: includes/elementor/widgets/contact-form.php:1599
3247
  #: includes/elementor/widgets/custom-list.php:396
3248
  #: includes/elementor/widgets/gmap.php:168
3249
+ #: includes/elementor/widgets/heading-modern.php:1086
3250
  #: includes/elementor/widgets/mailchimp.php:261
3251
  #: includes/elementor/widgets/mailchimp.php:508
3252
  #: includes/elementor/widgets/mailchimp.php:736
3417
  #: includes/elementor/modules/dynamic-tags/comments-number.php:58
3418
  #: includes/elementor/widgets/button.php:116
3419
  #: includes/elementor/widgets/custom-list.php:138
3420
+ #: includes/elementor/widgets/heading-modern.php:121
3421
+ #: includes/elementor/widgets/heading-modern.php:271
3422
  #: includes/elementor/widgets/icon.php:154
3423
  #: includes/elementor/widgets/modern-button.php:210
3424
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:743
3425
+ #: includes/elementor/widgets/text.php:322
3426
  #: includes/elementor/widgets/theme-elements/logo.php:182
3427
  #: includes/elementor/widgets/theme-elements/logo.php:196
3428
  #: includes/elementor/widgets/theme-elements/site-title.php:212
3449
  #: includes/elementor/widgets/recent-posts-timeline.php:316
3450
  #: includes/elementor/widgets/recent-posts-timeline.php:519
3451
  #: includes/elementor/widgets/testimonial.php:238
3452
+ #: includes/elementor/widgets/text.php:116
3453
+ #: includes/elementor/widgets/text.php:1593
3454
  #: includes/elementor/widgets/theme-elements/menu.php:658
3455
  #: includes/elementor/widgets/theme-elements/search.php:118
3456
  #: includes/elements/flickr.php:156 includes/elements/flickr.php:205
3492
  #: includes/elementor/widgets/accordion.php:145
3493
  #: includes/elementor/widgets/modern-button.php:277
3494
  #: includes/elementor/widgets/svg.php:107
3495
+ #: includes/elementor/widgets/text.php:112
3496
  #: includes/elementor/widgets/theme-elements/logo.php:135
3497
  #: includes/elementor/widgets/theme-elements/menu.php:156
3498
  #: includes/elementor/widgets/theme-elements/menu.php:995
3614
  #: includes/elementor/modules/dynamic-tags/featured-image-data.php:87
3615
  #: includes/elementor/modules/query-control/controls/group-control-query.php:346
3616
  #: includes/elementor/widgets/accordion.php:534
3617
+ #: includes/elementor/widgets/heading-modern.php:108
3618
+ #: includes/elementor/widgets/products-grid.php:239
3619
+ #: includes/elementor/widgets/products-grid.php:390
3620
  #: includes/elementor/widgets/recent-comments.php:171
3621
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:781
3622
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:1028
3634
  #: includes/elementor/widgets/recent-products.php:543
3635
  #: includes/elementor/widgets/staff.php:452
3636
  #: includes/elementor/widgets/tabs.php:373
3637
+ #: includes/elementor/widgets/text.php:233
3638
+ #: includes/elementor/widgets/text.php:687
3639
  #: includes/elementor/widgets/theme-elements/logo.php:454
3640
  #: includes/elementor/widgets/theme-elements/site-title.php:94
3641
  #: includes/elementor/widgets/touch-slider.php:332
4040
 
4041
  #: includes/elementor/modules/dynamic-tags/user-info.php:76
4042
  #: includes/elementor/widgets/gallery.php:304
4043
+ #: includes/elementor/widgets/products-grid.php:240
4044
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:782
4045
  #: includes/elementor/widgets/recent-posts-land-style.php:415
4046
  #: includes/elementor/widgets/recent-posts-masonry.php:511
4102
  #: includes/elementor/modules/query-control/controls/group-control-query.php:130
4103
  #: includes/elementor/modules/query-control/controls/group-control-query.php:169
4104
  #: includes/elementor/modules/query-control/controls/group-control-query.php:225
4105
+ #: includes/elementor/widgets/products-grid.php:244
4106
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:786
4107
  #: includes/elementor/widgets/recent-posts-land-style.php:419
4108
  #: includes/elementor/widgets/recent-posts-masonry.php:515
4197
 
4198
  #: includes/elementor/modules/query-control/controls/group-control-query.php:276
4199
  #: includes/elementor/modules/query-control/controls/group-control-query.php:345
4200
+ #: includes/elementor/widgets/products-grid.php:237
4201
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:779
4202
  #: includes/elementor/widgets/recent-posts-land-style.php:412
4203
  #: includes/elementor/widgets/recent-posts-masonry.php:508
4274
 
4275
  #: includes/elementor/modules/query-control/controls/group-control-query.php:347
4276
  #: includes/elementor/widgets/gallery.php:302
4277
+ #: includes/elementor/widgets/products-grid.php:238
4278
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:780
4279
  #: includes/elementor/widgets/recent-posts-land-style.php:413
4280
  #: includes/elementor/widgets/recent-posts-masonry.php:509
4299
  msgstr "ترتیب فهرست"
4300
 
4301
  #: includes/elementor/modules/query-control/controls/group-control-query.php:348
4302
+ #: includes/elementor/widgets/products-grid.php:241
4303
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:783
4304
  #: includes/elementor/widgets/recent-posts-land-style.php:416
4305
  #: includes/elementor/widgets/recent-posts-masonry.php:512
4324
 
4325
  #: includes/elementor/modules/query-control/controls/group-control-query.php:356
4326
  #: includes/elementor/widgets/gallery.php:282
4327
+ #: includes/elementor/widgets/products-grid.php:253
4328
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:798
4329
  #: includes/elementor/widgets/recent-posts-land-style.php:428
4330
  #: includes/elementor/widgets/recent-posts-masonry.php:524
4476
  #: includes/elementor/widgets/tabs.php:136
4477
  #: includes/elementor/widgets/tabs.php:439
4478
  #: includes/elementor/widgets/testimonial.php:193
4479
+ #: includes/elementor/widgets/text.php:226
4480
+ #: includes/elementor/widgets/text.php:264
4481
+ #: includes/elementor/widgets/text.php:905
4482
  #: includes/elements/accordion-widget.php:76 includes/elements/accordion.php:93
4483
  #: includes/elements/dropcap.php:82 includes/elements/highlight.php:78
4484
  #: includes/elements/staff.php:514 includes/elements/tabs.php:92
4558
  #: includes/elementor/widgets/custom-list.php:258
4559
  #: includes/elementor/widgets/custom-list.php:970
4560
  #: includes/elementor/widgets/custom-list.php:1022
4561
+ #: includes/elementor/widgets/heading-modern.php:448
4562
+ #: includes/elementor/widgets/heading-modern.php:633
4563
+ #: includes/elementor/widgets/heading-modern.php:804
4564
+ #: includes/elementor/widgets/heading-modern.php:926
4565
+ #: includes/elementor/widgets/heading-modern.php:1002
4566
+ #: includes/elementor/widgets/heading-modern.php:1116
4567
  #: includes/elementor/widgets/modern-button.php:658
4568
  #: includes/elementor/widgets/modern-button.php:770
4569
  #: includes/elementor/widgets/modern-button.php:876
4612
  #: includes/elementor/widgets/recent-products.php:522
4613
  #: includes/elementor/widgets/tabs.php:235
4614
  #: includes/elementor/widgets/tabs.php:493
4615
+ #: includes/elementor/widgets/text.php:1484
4616
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:463
4617
  #: includes/elementor/widgets/theme-elements/logo.php:390
4618
  #: includes/elementor/widgets/theme-elements/menu.php:421
4646
  #: includes/elementor/widgets/contact-form.php:1677
4647
  #: includes/elementor/widgets/custom-list.php:889
4648
  #: includes/elementor/widgets/custom-list.php:1038
4649
+ #: includes/elementor/widgets/heading-modern.php:370
4650
+ #: includes/elementor/widgets/heading-modern.php:555
4651
+ #: includes/elementor/widgets/heading-modern.php:726
4652
  #: includes/elementor/widgets/icon.php:204
4653
  #: includes/elementor/widgets/image.php:499
4654
  #: includes/elementor/widgets/mailchimp.php:326
4659
  #: includes/elementor/widgets/modern-button.php:579
4660
  #: includes/elementor/widgets/modern-button.php:691
4661
  #: includes/elementor/widgets/modern-button.php:817
4662
+ #: includes/elementor/widgets/products-grid.php:400
4663
+ #: includes/elementor/widgets/products-grid.php:467
4664
+ #: includes/elementor/widgets/products-grid.php:536
4665
+ #: includes/elementor/widgets/products-grid.php:603
4666
+ #: includes/elementor/widgets/products-grid.php:670
4667
+ #: includes/elementor/widgets/products-grid.php:807
4668
+ #: includes/elementor/widgets/products-grid.php:898
4669
+ #: includes/elementor/widgets/products-grid.php:988
4670
  #: includes/elementor/widgets/recent-comments.php:181
4671
  #: includes/elementor/widgets/recent-comments.php:264
4672
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:974
4703
  #: includes/elementor/widgets/testimonial.php:473
4704
  #: includes/elementor/widgets/testimonial.php:591
4705
  #: includes/elementor/widgets/testimonial.php:887
4706
+ #: includes/elementor/widgets/text.php:508
4707
+ #: includes/elementor/widgets/text.php:700
4708
+ #: includes/elementor/widgets/text.php:805
4709
+ #: includes/elementor/widgets/text.php:916
4710
+ #: includes/elementor/widgets/text.php:1076
4711
+ #: includes/elementor/widgets/text.php:1203
4712
+ #: includes/elementor/widgets/text.php:1260
4713
+ #: includes/elementor/widgets/text.php:1392
4714
+ #: includes/elementor/widgets/text.php:1500
4715
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:490
4716
  #: includes/elementor/widgets/theme-elements/copyright.php:175
4717
  #: includes/elementor/widgets/theme-elements/logo.php:293
4795
  #: includes/elementor/widgets/contact-form.php:1648
4796
  #: includes/elementor/widgets/custom-list.php:983
4797
  #: includes/elementor/widgets/custom-list.php:1009
4798
+ #: includes/elementor/widgets/heading-modern.php:461
4799
+ #: includes/elementor/widgets/heading-modern.php:646
4800
+ #: includes/elementor/widgets/heading-modern.php:817
4801
+ #: includes/elementor/widgets/heading-modern.php:1129
4802
  #: includes/elementor/widgets/icon.php:311
4803
  #: includes/elementor/widgets/mailchimp.php:310
4804
  #: includes/elementor/widgets/mailchimp.php:556
4806
  #: includes/elementor/widgets/modern-button.php:432
4807
  #: includes/elementor/widgets/modern-button.php:888
4808
  #: includes/elementor/widgets/modern-button.php:987
4809
+ #: includes/elementor/widgets/products-grid.php:721
4810
+ #: includes/elementor/widgets/products-grid.php:858
4811
+ #: includes/elementor/widgets/products-grid.php:949
4812
  #: includes/elementor/widgets/quote.php:333
4813
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:1403
4814
  #: includes/elementor/widgets/staff.php:810
4816
  #: includes/elementor/widgets/tabs.php:467
4817
  #: includes/elementor/widgets/testimonial.php:695
4818
  #: includes/elementor/widgets/testimonial.php:843
4819
+ #: includes/elementor/widgets/text.php:393
4820
+ #: includes/elementor/widgets/text.php:491
4821
+ #: includes/elementor/widgets/text.php:977
4822
+ #: includes/elementor/widgets/text.php:1411
4823
+ #: includes/elementor/widgets/text.php:1472
4824
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:475
4825
  #: includes/elementor/widgets/theme-elements/menu.php:517
4826
  #: includes/elementor/widgets/theme-elements/menu.php:956
4868
  #: includes/elementor/widgets/custom-list.php:896
4869
  #: includes/elementor/widgets/custom-list.php:925
4870
  #: includes/elementor/widgets/divider.php:376
4871
+ #: includes/elementor/widgets/heading-modern.php:377
4872
+ #: includes/elementor/widgets/heading-modern.php:415
4873
+ #: includes/elementor/widgets/heading-modern.php:562
4874
+ #: includes/elementor/widgets/heading-modern.php:600
4875
+ #: includes/elementor/widgets/heading-modern.php:733
4876
+ #: includes/elementor/widgets/heading-modern.php:771
4877
+ #: includes/elementor/widgets/heading-modern.php:939
4878
+ #: includes/elementor/widgets/heading-modern.php:982
4879
  #: includes/elementor/widgets/mailchimp.php:196
4880
  #: includes/elementor/widgets/mailchimp.php:423
4881
  #: includes/elementor/widgets/mailchimp.php:578
4888
  #: includes/elementor/widgets/modern-button.php:746
4889
  #: includes/elementor/widgets/modern-button.php:847
4890
  #: includes/elementor/widgets/modern-button.php:946
4891
+ #: includes/elementor/widgets/products-grid.php:407
4892
+ #: includes/elementor/widgets/products-grid.php:427
4893
+ #: includes/elementor/widgets/products-grid.php:474
4894
+ #: includes/elementor/widgets/products-grid.php:494
4895
+ #: includes/elementor/widgets/products-grid.php:543
4896
+ #: includes/elementor/widgets/products-grid.php:563
4897
+ #: includes/elementor/widgets/products-grid.php:610
4898
+ #: includes/elementor/widgets/products-grid.php:630
4899
+ #: includes/elementor/widgets/products-grid.php:677
4900
+ #: includes/elementor/widgets/products-grid.php:697
4901
+ #: includes/elementor/widgets/products-grid.php:814
4902
+ #: includes/elementor/widgets/products-grid.php:834
4903
+ #: includes/elementor/widgets/products-grid.php:905
4904
+ #: includes/elementor/widgets/products-grid.php:925
4905
+ #: includes/elementor/widgets/products-grid.php:1013
4906
+ #: includes/elementor/widgets/products-grid.php:1069
4907
  #: includes/elementor/widgets/recent-comments.php:188
4908
  #: includes/elementor/widgets/recent-comments.php:208
4909
  #: includes/elementor/widgets/recent-comments.php:271
4970
  #: includes/elementor/widgets/testimonial.php:521
4971
  #: includes/elementor/widgets/testimonial.php:601
4972
  #: includes/elementor/widgets/testimonial.php:639
4973
+ #: includes/elementor/widgets/text.php:707
4974
+ #: includes/elementor/widgets/text.php:727
4975
+ #: includes/elementor/widgets/text.php:812
4976
+ #: includes/elementor/widgets/text.php:832
4977
+ #: includes/elementor/widgets/text.php:923
4978
+ #: includes/elementor/widgets/text.php:943
4979
+ #: includes/elementor/widgets/text.php:1210
4980
+ #: includes/elementor/widgets/text.php:1230
4981
+ #: includes/elementor/widgets/text.php:1267
4982
+ #: includes/elementor/widgets/text.php:1305
4983
  #: includes/elementor/widgets/theme-elements/copyright.php:182
4984
  #: includes/elementor/widgets/theme-elements/copyright.php:219
4985
  #: includes/elementor/widgets/theme-elements/current-time.php:172
5047
  #: includes/elementor/widgets/gallery.php:273
5048
  #: includes/elementor/widgets/gmap.php:193
5049
  #: includes/elementor/widgets/gmap.php:214
5050
+ #: includes/elementor/widgets/heading-modern.php:191
5051
  #: includes/elementor/widgets/image.php:155
5052
  #: includes/elementor/widgets/image.php:188
5053
  #: includes/elementor/widgets/image.php:288
5056
  #: includes/elementor/widgets/image.php:399
5057
  #: includes/elementor/widgets/modern-button.php:226
5058
  #: includes/elementor/widgets/modern-button.php:238
5059
+ #: includes/elementor/widgets/products-grid.php:223
5060
  #: includes/elementor/widgets/quote.php:221
5061
  #: includes/elementor/widgets/recent-comments.php:155
5062
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:282
5152
  #: includes/elementor/widgets/staff.php:225
5153
  #: includes/elementor/widgets/staff.php:277
5154
  #: includes/elementor/widgets/testimonial.php:154
5155
+ #: includes/elementor/widgets/text.php:165
5156
+ #: includes/elementor/widgets/text.php:289
5157
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:128
5158
  #: includes/elementor/widgets/theme-elements/copyright.php:115
5159
  #: includes/elementor/widgets/theme-elements/copyright.php:128
5194
  #: includes/elementor/widgets/gallery.php:274
5195
  #: includes/elementor/widgets/gmap.php:194
5196
  #: includes/elementor/widgets/gmap.php:215
5197
+ #: includes/elementor/widgets/heading-modern.php:192
5198
  #: includes/elementor/widgets/image.php:156
5199
  #: includes/elementor/widgets/image.php:189
5200
  #: includes/elementor/widgets/image.php:289
5203
  #: includes/elementor/widgets/image.php:400
5204
  #: includes/elementor/widgets/modern-button.php:227
5205
  #: includes/elementor/widgets/modern-button.php:239
5206
+ #: includes/elementor/widgets/products-grid.php:224
5207
  #: includes/elementor/widgets/quote.php:222
5208
  #: includes/elementor/widgets/recent-comments.php:156
5209
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:283
5299
  #: includes/elementor/widgets/staff.php:226
5300
  #: includes/elementor/widgets/staff.php:278
5301
  #: includes/elementor/widgets/testimonial.php:155
5302
+ #: includes/elementor/widgets/text.php:166
5303
+ #: includes/elementor/widgets/text.php:290
5304
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:129
5305
  #: includes/elementor/widgets/theme-elements/copyright.php:116
5306
  #: includes/elementor/widgets/theme-elements/copyright.php:129
5335
  #: includes/elementor/widgets/button.php:283
5336
  #: includes/elementor/widgets/modern-button.php:320
5337
  #: includes/elementor/widgets/tabs.php:149
5338
+ #: includes/elementor/widgets/text.php:1064
5339
  #: includes/elementor/widgets/theme-elements/menu.php:616
5340
  #: includes/elements/audio.php:97
5341
  msgid "Skin"
5394
  msgstr "ظاهر"
5395
 
5396
  #: includes/elementor/widgets/before-after.php:155
5397
+ #: includes/elementor/widgets/products-grid.php:293
5398
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:850
5399
  #: includes/elementor/widgets/recent-posts-land-style.php:468
5400
  #: includes/elementor/widgets/recent-posts-masonry.php:564
5429
  #: includes/elementor/widgets/custom-list.php:419
5430
  #: includes/elementor/widgets/custom-list.php:707
5431
  #: includes/elementor/widgets/divider.php:138
5432
+ #: includes/elementor/widgets/heading-modern.php:904
5433
+ #: includes/elementor/widgets/heading-modern.php:1057
5434
  #: includes/elementor/widgets/mailchimp.php:207
5435
  #: includes/elementor/widgets/mailchimp.php:454
5436
  #: includes/elementor/widgets/mailchimp.php:682
5449
  #: includes/elementor/widgets/button.php:100
5450
  #: includes/elementor/widgets/modern-button.php:101
5451
  #: includes/elementor/widgets/modern-button.php:269
5452
+ #: includes/elementor/widgets/products-grid.php:978
5453
+ #: includes/elementor/widgets/text.php:279
5454
+ #: includes/elementor/widgets/text.php:1028
5455
  #: includes/elementor/widgets/theme-elements/modern-search.php:99
5456
  #: includes/elementor/widgets/theme-elements/modern-search.php:434
5457
  #: includes/elementor/widgets/theme-elements/search.php:120
5470
  msgstr "اندازه دکمه"
5471
 
5472
  #: includes/elementor/widgets/button.php:107
5473
+ #: includes/elementor/widgets/text.php:299 includes/elements/button.php:43
5474
  #: includes/elements/text.php:651
5475
  msgid "Button label"
5476
  msgstr "برچسب دکمه"
5477
 
5478
  #: includes/elementor/widgets/button.php:117
5479
+ #: includes/elementor/widgets/text.php:323 includes/elements/text.php:844
5480
  msgid "If you want to link your button."
5481
  msgstr "اگر می خواهید دکمه را لینک کنید."
5482
 
5487
  msgstr "بازشدن لایت باکس"
5488
 
5489
  #: includes/elementor/widgets/button.php:148
5490
+ #: includes/elementor/widgets/heading-modern.php:1049
5491
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:1532
5492
  #: includes/elementor/widgets/recent-posts-masonry.php:1073
5493
+ #: includes/elementor/widgets/text.php:1429
5494
  #, fuzzy
5495
  msgid "Wrapper"
5496
  msgstr "ظاهر Wrapper"
5502
 
5503
  #: includes/elementor/widgets/button.php:160
5504
  #: includes/elementor/widgets/modern-button.php:308
5505
+ #: includes/elementor/widgets/text.php:1043 includes/elements/button.php:63
5506
  #: includes/elements/text.php:674 includes/general-hooks.php:698
5507
  #: includes/general-hooks.php:1110
5508
  msgid "Exlarge"
5511
  #: includes/elementor/widgets/button.php:164
5512
  #: includes/elementor/widgets/divider.php:147
5513
  #: includes/elementor/widgets/modern-button.php:312
5514
+ #: includes/elementor/widgets/text.php:1047 includes/elements/button.php:67
5515
  #: includes/elements/divider.php:91 includes/elements/text.php:678
5516
  #: includes/general-hooks.php:702 includes/general-hooks.php:1114
5517
  msgid "Tiny"
5528
  msgstr "ظاهر شکل دکمه"
5529
 
5530
  #: includes/elementor/widgets/button.php:188
5531
+ #: includes/elementor/widgets/text.php:1368 includes/elements/button.php:91
5532
  #: includes/elements/text.php:708
5533
  msgid "Box"
5534
  msgstr "جعبه"
5535
 
5536
  #: includes/elementor/widgets/button.php:192
5537
  #: includes/elementor/widgets/modern-button.php:295
5538
+ #: includes/elementor/widgets/text.php:1372 includes/elements/button.php:95
5539
  #: includes/elements/text.php:712 includes/general-hooks.php:733
5540
  #: includes/general-hooks.php:1145
5541
  msgid "Round"
5543
 
5544
  #: includes/elementor/widgets/button.php:196
5545
  #: includes/elementor/widgets/modern-button.php:296
5546
+ #: includes/elementor/widgets/text.php:1376 includes/elements/button.php:99
5547
  #: includes/elements/text.php:716 includes/general-hooks.php:737
5548
  #: includes/general-hooks.php:1149
5549
  msgid "Curve"
5555
  msgstr "ظاهر دکمه"
5556
 
5557
  #: includes/elementor/widgets/button.php:215
5558
+ #: includes/elementor/widgets/text.php:1396 includes/elements/button.php:122
5559
  #: includes/elements/text.php:742 includes/general-hooks.php:770
5560
  #: includes/general-hooks.php:1182
5561
  msgid "3D"
5563
 
5564
  #: includes/elementor/widgets/button.php:219
5565
  #: includes/elementor/widgets/modern-button.php:282
5566
+ #: includes/elementor/widgets/text.php:1400 includes/elements/button.php:126
5567
  #: includes/elements/text.php:746 includes/general-hooks.php:774
5568
  #: includes/general-hooks.php:1186
5569
  msgid "Outline"
5583
  #: includes/elementor/widgets/button.php:330
5584
  #: includes/elementor/widgets/carousel-navigation.php:292
5585
  #: includes/elementor/widgets/carousel-navigation.php:399
5586
+ #: includes/elementor/widgets/heading-modern.php:960
5587
  #: includes/elementor/widgets/modern-button.php:362
5588
  #: includes/elementor/widgets/modern-button.php:415
5589
  #: includes/elementor/widgets/modern-button.php:859
5590
  #: includes/elementor/widgets/modern-button.php:958
5591
+ #: includes/elementor/widgets/products-grid.php:871
5592
+ #: includes/elementor/widgets/products-grid.php:962
5593
+ #: includes/elementor/widgets/products-grid.php:996
5594
+ #: includes/elementor/widgets/products-grid.php:1052
5595
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:1340
5596
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:1370
5597
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:1574
5606
  #: includes/elementor/widgets/recent-posts-masonry.php:1282
5607
  #: includes/elementor/widgets/testimonial.php:895
5608
  #: includes/elementor/widgets/testimonial.php:931
5609
+ #: includes/elementor/widgets/text.php:384
5610
+ #: includes/elementor/widgets/text.php:555
5611
+ #: includes/elementor/widgets/text.php:614
5612
+ #: includes/elementor/widgets/text.php:1084
5613
+ #: includes/elementor/widgets/text.php:1111
5614
  #: includes/elementor/widgets/theme-elements/menu.php:403
5615
  #: includes/elementor/widgets/theme-elements/menu.php:480
5616
  #: includes/elementor/widgets/theme-elements/menu.php:593
5635
  #: includes/elementor/widgets/icon.php:114
5636
  #: includes/elementor/widgets/icon.php:194
5637
  #: includes/elementor/widgets/modern-button.php:789
5638
+ #: includes/elementor/widgets/text.php:117
5639
+ #: includes/elementor/widgets/text.php:127
5640
  #: includes/elementor/widgets/theme-elements/modern-search.php:106
5641
  #: includes/elementor/widgets/theme-elements/modern-search.php:236
5642
  #: includes/elementor/widgets/theme-elements/search.php:106
5653
  msgstr "شکلک"
5654
 
5655
  #: includes/elementor/widgets/button.php:365
5656
+ #: includes/elementor/widgets/text.php:311 includes/elements/button.php:158
5657
  #: includes/elements/text.php:784
5658
  msgid "Icon for button"
5659
  msgstr "شکلک برای دکمه"
5660
 
5661
  #: includes/elementor/widgets/button.php:373
5662
+ #: includes/elementor/widgets/text.php:1145 includes/elements/button.php:171
5663
  #: includes/elements/text.php:800 includes/general-hooks.php:377
5664
  msgid "Icon alignment"
5665
  msgstr "تراز شکلک"
5666
 
5667
  #: includes/elementor/widgets/button.php:380
5668
  #: includes/elementor/widgets/modern-button.php:804
5669
+ #: includes/elementor/widgets/text.php:1152 includes/elements/button.php:191
5670
  #: includes/elements/text.php:809 includes/general-hooks.php:859
5671
  #: includes/general-hooks.php:1271
5672
  msgid "Over"
5673
  msgstr "رو"
5674
 
5675
  #: includes/elementor/widgets/button.php:381
5676
+ #: includes/elementor/widgets/text.php:1153 includes/elements/button.php:195
5677
  #: includes/elements/text.php:810 includes/general-hooks.php:863
5678
  #: includes/general-hooks.php:1275
5679
  msgid "Animate from Left"
5680
  msgstr "متحرک سازی از چپ"
5681
 
5682
  #: includes/elementor/widgets/button.php:382
5683
+ #: includes/elementor/widgets/text.php:1154 includes/elements/text.php:811
5684
  msgid "Animate from Right"
5685
  msgstr "متحرک سازی از راست"
5686
 
5687
  #: includes/elementor/widgets/button.php:390
5688
+ #: includes/elementor/widgets/text.php:430
5689
+ #: includes/elementor/widgets/text.php:1166
5690
  #, fuzzy
5691
  msgid "Icon Size"
5692
  msgstr "اندازه شکلک"
5693
 
5694
  #: includes/elementor/widgets/button.php:413
5695
+ #: includes/elementor/widgets/text.php:1351
5696
  #: includes/elementor/widgets/theme-elements/search.php:245
5697
  #, fuzzy
5698
  msgid "Icon Margin"
5719
 
5720
  #: includes/elementor/widgets/button.php:516
5721
  #: includes/elementor/widgets/button.php:554
5722
+ #: includes/elementor/widgets/heading-modern.php:389
5723
+ #: includes/elementor/widgets/heading-modern.php:427
5724
+ #: includes/elementor/widgets/heading-modern.php:574
5725
+ #: includes/elementor/widgets/heading-modern.php:612
5726
+ #: includes/elementor/widgets/heading-modern.php:745
5727
+ #: includes/elementor/widgets/heading-modern.php:783
5728
  #: includes/elementor/widgets/image.php:680
5729
  #: includes/elementor/widgets/modern-button.php:508
5730
  #: includes/elementor/widgets/modern-button.php:546
5732
  #: includes/elementor/widgets/modern-button.php:646
5733
  #: includes/elementor/widgets/modern-button.php:720
5734
  #: includes/elementor/widgets/modern-button.php:758
5735
+ #: includes/elementor/widgets/products-grid.php:1025
5736
+ #: includes/elementor/widgets/products-grid.php:1081
5737
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:1857
5738
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:1913
5739
  #: includes/elementor/widgets/recent-posts-masonry.php:1255
5740
  #: includes/elementor/widgets/recent-posts-masonry.php:1311
5741
+ #: includes/elementor/widgets/text.php:762
5742
+ #: includes/elementor/widgets/text.php:858
5743
+ #: includes/elementor/widgets/text.php:969
5744
+ #: includes/elementor/widgets/text.php:1279
5745
+ #: includes/elementor/widgets/text.php:1317
5746
  #: includes/elementor/widgets/theme-elements/current-time.php:184
5747
  #: includes/elementor/widgets/theme-elements/logo.php:507
5748
  #: includes/elementor/widgets/theme-elements/logo.php:599
5834
  #: includes/elementor/widgets/modern-button.php:304
5835
  #: includes/elementor/widgets/modern-button.php:824
5836
  #: includes/elementor/widgets/modern-button.php:923
5837
+ #: includes/elementor/widgets/products-grid.php:770
5838
  #: includes/elementor/widgets/testimonial.php:756
5839
+ #: includes/elementor/widgets/text.php:1039
5840
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:268
5841
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:400
5842
  #: includes/elementor/widgets/theme-elements/modern-search.php:264
6203
  msgstr ""
6204
 
6205
  #: includes/elementor/widgets/custom-list.php:374
6206
+ #: includes/elementor/widgets/products-grid.php:139
6207
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:120
6208
  #: includes/elementor/widgets/recent-posts-masonry.php:120
6209
  #: includes/elementor/widgets/recent-posts-tiles-carousel.php:117
6304
 
6305
  #: includes/elementor/widgets/custom-list.php:599
6306
  #: includes/elementor/widgets/custom-list.php:686
6307
+ #: includes/elementor/widgets/heading-modern.php:887
6308
  #, fuzzy
6309
  msgid "Weight"
6310
  msgstr "ارتفاع"
6315
  msgstr "فاصله خالی"
6316
 
6317
  #: includes/elementor/widgets/custom-list.php:651
6318
+ #: includes/elementor/widgets/heading-modern.php:189
6319
  #: includes/elements/custom-list.php:172
6320
  #, fuzzy
6321
  msgid "Display Divider"
6347
 
6348
  #: includes/elementor/widgets/divider.php:47
6349
  #: includes/elementor/widgets/divider.php:95
6350
+ #: includes/elementor/widgets/heading-modern.php:876
6351
  #: includes/elements/divider.php:16
6352
  #, fuzzy
6353
  msgid "Divider"
6360
  #: includes/elementor/widgets/divider.php:119
6361
  #: includes/elementor/widgets/icon.php:140
6362
  #: includes/elementor/widgets/staff.php:200
6363
+ #: includes/elementor/widgets/text.php:461
6364
+ #: includes/elementor/widgets/text.php:656
6365
  #: includes/elements/about-widget.php:121 includes/elements/divider.php:69
6366
  #: includes/elements/dropcap.php:72 includes/elements/staff.php:168
6367
  #: includes/elements/text.php:539 includes/elements/text.php:581
6395
  msgstr "تصویر دلخواه"
6396
 
6397
  #: includes/elementor/widgets/divider.php:193
6398
+ #: includes/elementor/widgets/heading-modern.php:155
6399
  #: includes/elementor/widgets/icon.php:166
6400
  #: includes/elementor/widgets/image.php:314
6401
  #: includes/elementor/widgets/modern-button.php:180
6551
  msgstr ""
6552
 
6553
  #: includes/elementor/widgets/gallery.php:152
6554
+ #: includes/elementor/widgets/products-grid.php:147
6555
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:128
6556
  #: includes/elementor/widgets/recent-posts-masonry.php:128
6557
  #: includes/elementor/widgets/recent-products.php:137
6698
  "and insert it in customizer \"Google Maps API Key\" field."
6699
  msgstr ""
6700
 
6701
+ #: includes/elementor/widgets/heading-modern.php:53
6702
  #, fuzzy
6703
  msgid "Modern Heading"
6704
  msgstr "تیتر گذاری"
6705
 
6706
+ #: includes/elementor/widgets/heading-modern.php:101
6707
+ #: includes/elementor/widgets/heading-modern.php:340
6708
  msgid "Heading"
6709
  msgstr "تیتر گذاری"
6710
 
6711
+ #: includes/elementor/widgets/heading-modern.php:113
6712
  msgid "Add your heading text here .."
6713
  msgstr ""
6714
 
6715
+ #: includes/elementor/widgets/heading-modern.php:135
6716
+ #: includes/elementor/widgets/heading-modern.php:285
6717
  msgid "HTML Tag"
6718
  msgstr ""
6719
 
6720
+ #: includes/elementor/widgets/heading-modern.php:202
6721
  #, fuzzy
6722
  msgid "Divider Position"
6723
  msgstr "ظاهر جداکننده"
6724
 
6725
+ #: includes/elementor/widgets/heading-modern.php:205
6726
  #, fuzzy
6727
  msgid "Before Heading"
6728
  msgstr "تیتر گذاری"
6729
 
6730
+ #: includes/elementor/widgets/heading-modern.php:206
6731
  #, fuzzy
6732
  msgid "Between Headings"
6733
  msgstr "تیتر گذاری"
6734
 
6735
+ #: includes/elementor/widgets/heading-modern.php:207
6736
  #, fuzzy
6737
  msgid "After Headings"
6738
  msgstr "تیتر گذاری"
6739
 
6740
+ #: includes/elementor/widgets/heading-modern.php:225
6741
+ #: includes/elementor/widgets/heading-modern.php:520
6742
  msgid "Secondary Heading"
6743
  msgstr ""
6744
 
6745
+ #: includes/elementor/widgets/heading-modern.php:232
6746
  msgid "Before Text"
6747
  msgstr ""
6748
 
6749
+ #: includes/elementor/widgets/heading-modern.php:245
6750
  #: includes/elementor/widgets/modern-button.php:117
6751
  #: includes/elementor/widgets/modern-button.php:565
6752
  #: includes/elements/highlight.php:18
6753
  msgid "Highlighted Text"
6754
  msgstr "متن هایلایت شده"
6755
 
6756
+ #: includes/elementor/widgets/heading-modern.php:258
6757
  #: includes/elementor/widgets/modern-button.php:126
6758
  #: includes/elementor/widgets/modern-button.php:677
6759
  msgid "After Text"
6760
  msgstr ""
6761
 
6762
+ #: includes/elementor/widgets/heading-modern.php:473
6763
+ #: includes/elementor/widgets/heading-modern.php:658
6764
+ #: includes/elementor/widgets/heading-modern.php:829
6765
  #: includes/elementor/widgets/image.php:484
6766
  #: includes/elementor/widgets/svg.php:305
6767
  #: includes/elementor/widgets/testimonial.php:306
6771
  msgid "Border radius"
6772
  msgstr "کادربندی شده"
6773
 
6774
+ #: includes/elementor/widgets/heading-modern.php:706
6775
  msgid "Secondary Heading - Highlighted"
6776
  msgstr ""
6777
 
6853
  #: includes/elementor/widgets/svg.php:110
6854
  #: includes/elementor/widgets/testimonial.php:102
6855
  #: includes/elementor/widgets/testimonial.php:267
6856
+ #: includes/elementor/widgets/text.php:118
6857
+ #: includes/elementor/widgets/text.php:140
6858
  #: includes/elementor/widgets/theme-elements/logo.php:214
6859
  #: includes/elements/about-widget.php:100 includes/elements/image.php:15
6860
  #: includes/elements/image.php:57 includes/elements/text.php:375
6963
  #: includes/elementor/widgets/recent-posts-timeline.php:192
6964
  #: includes/elementor/widgets/recent-products.php:224
6965
  #: includes/elementor/widgets/staff.php:223
6966
+ #: includes/elementor/widgets/text.php:163
6967
  #, fuzzy
6968
  msgid "Preload image"
6969
  msgstr "تصویر شاخص"
6975
  #: includes/elementor/widgets/recent-posts-timeline.php:207
6976
  #: includes/elementor/widgets/recent-products.php:239
6977
  #: includes/elementor/widgets/staff.php:235
6978
+ #: includes/elementor/widgets/text.php:178
6979
  msgid "While loading image display"
6980
  msgstr ""
6981
 
6986
  #: includes/elementor/widgets/recent-posts-timeline.php:222
6987
  #: includes/elementor/widgets/recent-products.php:254
6988
  #: includes/elementor/widgets/staff.php:250
6989
+ #: includes/elementor/widgets/text.php:194
6990
  msgid "Placeholder color while loading image"
6991
  msgstr ""
6992
 
7135
  msgid "Below"
7136
  msgstr ""
7137
 
7138
+ #: includes/elementor/widgets/products-grid.php:57
7139
+ msgid "Products Grid"
7140
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7141
 
7142
+ #: includes/elementor/widgets/products-grid.php:164
7143
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:694
7144
+ #: includes/elementor/widgets/recent-posts-land-style.php:357
7145
+ #: includes/elementor/widgets/recent-posts-masonry.php:453
7146
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:348
7147
+ #: includes/elementor/widgets/recent-posts-tiles.php:250
7148
+ #: includes/elementor/widgets/recent-posts-timeline.php:382
7149
+ #: includes/elementor/widgets/recent-products.php:327
7150
+ #: includes/elements/popular-posts-widget.php:65
7151
+ #: includes/elements/recent-posts-grid-carousel.php:99
7152
+ #: includes/elements/recent-posts-land-style.php:86
7153
+ #: includes/elements/recent-posts-masonry.php:86
7154
+ #: includes/elements/recent-posts-tiles.php:85
7155
+ #: includes/elements/recent-posts-timeline.php:80
7156
+ #: includes/elements/recent-posts-widget.php:71
7157
+ msgid "Number of posts to show"
7158
+ msgstr "تعداد نوشته ها برای نمایش"
7159
 
7160
+ #: includes/elementor/widgets/products-grid.php:184
7161
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:660
7162
+ #: includes/elementor/widgets/recent-posts-land-style.php:338
7163
+ #: includes/elementor/widgets/recent-posts-masonry.php:434
7164
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:329
7165
+ #: includes/elementor/widgets/recent-posts-tiles.php:231
7166
+ #: includes/elementor/widgets/recent-posts-timeline.php:363
7167
+ #: includes/elementor/widgets/recent-products.php:308
7168
+ #: includes/elements/latest-posts-slider.php:70
7169
+ #: includes/elements/latest-posts-slider.php:84
7170
+ #: includes/elements/latest-posts-slider.php:98
7171
+ #: includes/elements/latest-posts-slider.php:112
7172
+ #: includes/elements/latest-posts-slider.php:126
7173
+ #: includes/elements/latest-posts-slider.php:150
7174
+ #: includes/elements/latest-posts-slider.php:168
7175
+ #: includes/elements/latest-posts-slider.php:238
7176
+ #: includes/elements/recent-posts-grid-carousel.php:95
7177
+ #: includes/elements/recent-posts-grid-carousel.php:109
7178
+ #: includes/elements/recent-posts-grid-carousel.php:142
7179
+ #: includes/elements/recent-posts-grid-carousel.php:155
7180
+ #: includes/elements/recent-posts-grid-carousel.php:196
7181
+ #: includes/elements/recent-posts-grid-carousel.php:214
7182
+ #: includes/elements/recent-posts-grid-carousel.php:228
7183
+ #: includes/elements/recent-posts-grid-carousel.php:242
7184
+ #: includes/elements/recent-posts-grid-carousel.php:256
7185
+ #: includes/elements/recent-posts-grid-carousel.php:270
7186
+ #: includes/elements/recent-posts-land-style.php:82
7187
+ #: includes/elements/recent-posts-land-style.php:96
7188
+ #: includes/elements/recent-posts-land-style.php:129
7189
+ #: includes/elements/recent-posts-land-style.php:142
7190
+ #: includes/elements/recent-posts-land-style.php:158
7191
+ #: includes/elements/recent-posts-land-style.php:183
7192
+ #: includes/elements/recent-posts-land-style.php:201
7193
+ #: includes/elements/recent-posts-land-style.php:215
7194
+ #: includes/elements/recent-posts-land-style.php:229
7195
+ #: includes/elements/recent-posts-land-style.php:243
7196
+ #: includes/elements/recent-posts-land-style.php:257
7197
+ #: includes/elements/recent-posts-masonry.php:82
7198
+ #: includes/elements/recent-posts-masonry.php:96
7199
+ #: includes/elements/recent-posts-masonry.php:109
7200
+ #: includes/elements/recent-posts-masonry.php:122
7201
+ #: includes/elements/recent-posts-masonry.php:163
7202
+ #: includes/elements/recent-posts-masonry.php:181
7203
+ #: includes/elements/recent-posts-masonry.php:195
7204
+ #: includes/elements/recent-posts-masonry.php:209
7205
+ #: includes/elements/recent-posts-masonry.php:223
7206
+ #: includes/elements/recent-posts-masonry.php:237
7207
+ #: includes/elements/recent-posts-tiles-carousel.php:68
7208
+ #: includes/elements/recent-posts-tiles-carousel.php:82
7209
+ #: includes/elements/recent-posts-tiles-carousel.php:96
7210
+ #: includes/elements/recent-posts-tiles-carousel.php:109
7211
+ #: includes/elements/recent-posts-tiles-carousel.php:122
7212
+ #: includes/elements/recent-posts-tiles-carousel.php:138
7213
+ #: includes/elements/recent-posts-tiles-carousel.php:163
7214
+ #: includes/elements/recent-posts-tiles-carousel.php:181
7215
+ #: includes/elements/recent-posts-tiles-carousel.php:195
7216
+ #: includes/elements/recent-posts-tiles-carousel.php:209
7217
+ #: includes/elements/recent-posts-tiles-carousel.php:223
7218
+ #: includes/elements/recent-posts-tiles-carousel.php:248
7219
+ #: includes/elements/recent-posts-tiles-carousel.php:266
7220
+ #: includes/elements/recent-posts-tiles-carousel.php:280
7221
+ #: includes/elements/recent-posts-tiles.php:81
7222
+ #: includes/elements/recent-posts-tiles.php:95
7223
+ #: includes/elements/recent-posts-tiles.php:108
7224
+ #: includes/elements/recent-posts-tiles.php:121
7225
+ #: includes/elements/recent-posts-tiles.php:137
7226
+ #: includes/elements/recent-posts-tiles.php:193
7227
+ #: includes/elements/recent-posts-tiles.php:211
7228
+ #: includes/elements/recent-posts-tiles.php:225
7229
+ #: includes/elements/recent-posts-tiles.php:239
7230
+ #: includes/elements/recent-posts-tiles.php:253
7231
+ #: includes/elements/recent-posts-tiles.php:278
7232
+ #: includes/elements/recent-posts-tiles.php:296
7233
+ #: includes/elements/recent-posts-tiles.php:310
7234
+ #: includes/elements/recent-posts-timeline.php:76
7235
+ #: includes/elements/recent-posts-timeline.php:90
7236
+ #: includes/elements/recent-posts-timeline.php:103
7237
+ #: includes/elements/recent-posts-timeline.php:116
7238
+ #: includes/elements/recent-posts-timeline.php:132
7239
+ #: includes/elements/recent-posts-timeline.php:188
7240
+ #: includes/elements/recent-posts-timeline.php:206
7241
+ #: includes/elements/recent-posts-timeline.php:220
7242
+ #: includes/elements/recent-posts-timeline.php:234
7243
+ #: includes/elements/recent-posts-timeline.php:248
7244
+ #: includes/elements/recent-posts-timeline.php:262
7245
+ msgid "Query"
7246
+ msgstr ""
7247
 
7248
+ #: includes/elementor/widgets/products-grid.php:191
7249
+ msgid "Products Type"
7250
+ msgstr ""
 
7251
 
7252
+ #: includes/elementor/widgets/products-grid.php:195
7253
+ #: includes/elementor/widgets/recent-products.php:49
7254
+ #: includes/elements/recent-products.php:15
7255
  #, fuzzy
7256
+ msgid "Recent Products"
7257
+ msgstr "اکسین نوشته های اخیر"
7258
 
7259
+ #: includes/elementor/widgets/products-grid.php:196
7260
+ msgid "Featured Products"
7261
  msgstr ""
7262
 
7263
+ #: includes/elementor/widgets/products-grid.php:197
7264
+ msgid "Top Rated Products"
 
 
 
 
 
 
 
7265
  msgstr ""
7266
 
7267
+ #: includes/elementor/widgets/products-grid.php:198
7268
+ msgid "Best Selling Products"
7269
  msgstr ""
7270
 
7271
+ #: includes/elementor/widgets/products-grid.php:199
7272
+ msgid "On Sale Products"
7273
+ msgstr ""
 
 
 
 
 
 
 
7274
 
7275
+ #: includes/elementor/widgets/products-grid.php:200
7276
+ msgid "Deal Products"
7277
+ msgstr ""
 
7278
 
7279
+ #: includes/elementor/widgets/products-grid.php:209
7280
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:679
7281
+ #: includes/elementor/widgets/recent-posts-land-style.php:345
7282
+ #: includes/elementor/widgets/recent-posts-masonry.php:441
7283
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:336
7284
+ #: includes/elementor/widgets/recent-posts-tiles.php:238
7285
+ #: includes/elementor/widgets/recent-posts-timeline.php:370
7286
+ #: includes/elementor/widgets/recent-products.php:315
7287
+ #: includes/elements/popular-posts-widget.php:236
7288
+ #: includes/elements/recent-posts-grid-carousel.php:84
7289
+ #: includes/elements/recent-posts-land-style.php:71
7290
+ #: includes/elements/recent-posts-masonry.php:71
7291
+ #: includes/elements/recent-posts-tiles-carousel.php:57
7292
+ #: includes/elements/recent-posts-tiles.php:70
7293
+ #: includes/elements/recent-posts-timeline.php:65
7294
+ #: includes/elements/recent-posts-widget.php:191
7295
+ #: includes/elements/recent-products.php:70
7296
+ msgid "Categories"
7297
+ msgstr "دسته ها"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7298
 
7299
+ #: includes/elementor/widgets/products-grid.php:210
7300
  #, fuzzy
7301
+ msgid ""
7302
+ "Specifies a category that you want to show posts from it. In order to choose "
7303
+ "the all categories leave the field empty"
7304
+ msgstr "دسته ای که می خواهید نوشته ها از آن نشان داده شوند را مشخص کنید."
7305
 
7306
+ #: includes/elementor/widgets/products-grid.php:221
 
 
 
 
 
 
7307
  #, fuzzy
7308
+ msgid "Exclude products without media"
7309
+ msgstr "نادیده گرفتن نوشته های بدون رسانه"
7310
+
7311
+ #: includes/elementor/widgets/products-grid.php:233
7312
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:775
7313
+ #: includes/elementor/widgets/recent-posts-land-style.php:408
7314
+ #: includes/elementor/widgets/recent-posts-masonry.php:504
7315
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:399
7316
+ #: includes/elementor/widgets/recent-posts-tiles.php:301
7317
+ #: includes/elementor/widgets/recent-posts-timeline.php:433
7318
+ #: includes/elementor/widgets/recent-products.php:378
7319
+ #: includes/elements/latest-posts-slider.php:130
7320
+ #: includes/elements/popular-posts-widget.php:189
7321
+ #: includes/elements/recent-posts-grid-carousel.php:175
7322
+ #: includes/elements/recent-posts-land-style.php:162
7323
+ #: includes/elements/recent-posts-masonry.php:142
7324
+ #: includes/elements/recent-posts-tiles-carousel.php:142
7325
+ #: includes/elements/recent-posts-tiles-carousel.php:227
7326
+ #: includes/elements/recent-posts-tiles.php:172
7327
+ #: includes/elements/recent-posts-tiles.php:257
7328
+ #: includes/elements/recent-posts-timeline.php:167
7329
+ #: includes/elements/recent-posts-widget.php:149
7330
+ #: includes/elements/recent-products.php:121
7331
+ msgid "Order by"
7332
+ msgstr "مرتب سازی بر اساس"
7333
+
7334
+ #: includes/elementor/widgets/products-grid.php:242
7335
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:784
7336
+ #: includes/elementor/widgets/recent-posts-land-style.php:417
7337
+ #: includes/elementor/widgets/recent-posts-masonry.php:513
7338
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:408
7339
+ #: includes/elementor/widgets/recent-posts-tiles.php:310
7340
+ #: includes/elementor/widgets/recent-posts-timeline.php:442
7341
+ #: includes/elementor/widgets/recent-products.php:387
7342
+ #: includes/elements/latest-posts-slider.php:141
7343
+ #: includes/elements/popular-posts-widget.php:202
7344
+ #: includes/elements/recent-posts-grid-carousel.php:188
7345
+ #: includes/elements/recent-posts-land-style.php:175
7346
+ #: includes/elements/recent-posts-masonry.php:155
7347
+ #: includes/elements/recent-posts-tiles-carousel.php:155
7348
+ #: includes/elements/recent-posts-tiles-carousel.php:240
7349
+ #: includes/elements/recent-posts-tiles.php:185
7350
+ #: includes/elements/recent-posts-tiles.php:270
7351
+ #: includes/elements/recent-posts-timeline.php:180
7352
+ #: includes/elements/recent-posts-widget.php:162
7353
+ #: includes/elements/recent-products.php:134
7354
+ msgid "Comments"
7355
+ msgstr "دیدگاه ها"
7356
+
7357
+ #: includes/elementor/widgets/products-grid.php:243
7358
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:785
7359
+ #: includes/elementor/widgets/recent-posts-land-style.php:418
7360
+ #: includes/elementor/widgets/recent-posts-masonry.php:514
7361
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:409
7362
+ #: includes/elementor/widgets/recent-posts-tiles.php:311
7363
+ #: includes/elementor/widgets/recent-posts-timeline.php:443
7364
+ #: includes/elementor/widgets/recent-products.php:388
7365
+ #: includes/elements/latest-posts-slider.php:142
7366
+ #: includes/elements/popular-posts-widget.php:203
7367
+ #: includes/elements/recent-posts-grid-carousel.php:189
7368
+ #: includes/elements/recent-posts-land-style.php:176
7369
+ #: includes/elements/recent-posts-masonry.php:156
7370
+ #: includes/elements/recent-posts-tiles-carousel.php:156
7371
+ #: includes/elements/recent-posts-tiles-carousel.php:241
7372
+ #: includes/elements/recent-posts-tiles.php:186
7373
+ #: includes/elements/recent-posts-tiles.php:271
7374
+ #: includes/elements/recent-posts-timeline.php:181
7375
+ #: includes/elements/recent-posts-widget.php:163
7376
+ #: includes/elements/recent-products.php:135
7377
+ msgid "Date Modified"
7378
+ msgstr "تاریخ ویرایش"
7379
+
7380
+ #: includes/elementor/widgets/products-grid.php:245
7381
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:787
7382
+ #: includes/elementor/widgets/recent-posts-land-style.php:420
7383
+ #: includes/elementor/widgets/recent-posts-masonry.php:516
7384
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:411
7385
+ #: includes/elementor/widgets/recent-posts-tiles.php:313
7386
+ #: includes/elementor/widgets/recent-posts-timeline.php:445
7387
+ #: includes/elementor/widgets/recent-products.php:390
7388
+ #: includes/elements/recent-posts-grid-carousel.php:191
7389
+ #: includes/elements/recent-posts-land-style.php:178
7390
+ #: includes/elements/recent-posts-masonry.php:158
7391
+ #: includes/elements/recent-posts-tiles-carousel.php:158
7392
+ #: includes/elements/recent-posts-tiles-carousel.php:243
7393
+ #: includes/elements/recent-posts-tiles.php:188
7394
+ #: includes/elements/recent-posts-tiles.php:273
7395
+ #: includes/elements/recent-posts-timeline.php:183
7396
+ #: includes/elements/recent-products.php:137
7397
+ #, fuzzy
7398
+ msgid "Inserted Post IDs"
7399
+ msgstr "افزودن متای نوشته"
7400
+
7401
+ #: includes/elementor/widgets/products-grid.php:257
7402
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:802
7403
+ #: includes/elementor/widgets/recent-posts-land-style.php:432
7404
+ #: includes/elementor/widgets/recent-posts-masonry.php:528
7405
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:423
7406
+ #: includes/elementor/widgets/recent-posts-tiles.php:325
7407
+ #: includes/elementor/widgets/recent-posts-timeline.php:457
7408
+ #: includes/elementor/widgets/recent-products.php:402
7409
+ #: includes/elements/latest-posts-slider.php:160
7410
+ #: includes/elements/popular-posts-widget.php:221
7411
+ #: includes/elements/recent-posts-grid-carousel.php:208
7412
+ #: includes/elements/recent-posts-land-style.php:195
7413
+ #: includes/elements/recent-posts-masonry.php:175
7414
+ #: includes/elements/recent-posts-tiles-carousel.php:175
7415
+ #: includes/elements/recent-posts-tiles-carousel.php:260
7416
+ #: includes/elements/recent-posts-tiles.php:205
7417
+ #: includes/elements/recent-posts-tiles.php:290
7418
+ #: includes/elements/recent-posts-timeline.php:200
7419
+ #: includes/elements/recent-posts-widget.php:181
7420
+ #: includes/elements/recent-products.php:154
7421
+ msgid "Descending"
7422
+ msgstr "نزولی"
7423
+
7424
+ #: includes/elementor/widgets/products-grid.php:258
7425
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:803
7426
+ #: includes/elementor/widgets/recent-posts-land-style.php:433
7427
+ #: includes/elementor/widgets/recent-posts-masonry.php:529
7428
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:424
7429
+ #: includes/elementor/widgets/recent-posts-tiles.php:326
7430
+ #: includes/elementor/widgets/recent-posts-timeline.php:458
7431
+ #: includes/elementor/widgets/recent-products.php:403
7432
+ #: includes/elements/latest-posts-slider.php:161
7433
+ #: includes/elements/popular-posts-widget.php:222
7434
+ #: includes/elements/recent-posts-grid-carousel.php:209
7435
+ #: includes/elements/recent-posts-land-style.php:196
7436
+ #: includes/elements/recent-posts-masonry.php:176
7437
+ #: includes/elements/recent-posts-tiles-carousel.php:176
7438
+ #: includes/elements/recent-posts-tiles-carousel.php:261
7439
+ #: includes/elements/recent-posts-tiles.php:206
7440
+ #: includes/elements/recent-posts-tiles.php:291
7441
+ #: includes/elements/recent-posts-timeline.php:201
7442
+ #: includes/elements/recent-posts-widget.php:182
7443
+ #: includes/elements/recent-products.php:155
7444
+ msgid "Ascending"
7445
+ msgstr "صعودی"
7446
+
7447
+ #: includes/elementor/widgets/products-grid.php:266
7448
+ #: includes/elementor/widgets/recent-products.php:411
7449
+ #: includes/elements/recent-products.php:164
7450
+ msgid "Only products"
7451
+ msgstr ""
7452
+
7453
+ #: includes/elementor/widgets/products-grid.php:267
7454
+ #: includes/elementor/widgets/recent-products.php:412
7455
+ #: includes/elements/recent-products.php:165
7456
+ msgid ""
7457
+ "If you intend to display ONLY specific products, you should specify the "
7458
+ "products here. You have to insert the Products IDs that are separated by "
7459
+ "comma (eg. 53,34,87,25)."
7460
+ msgstr ""
7461
+
7462
+ #: includes/elementor/widgets/products-grid.php:275
7463
+ #: includes/elementor/widgets/recent-products.php:420
7464
+ #: includes/elements/recent-products.php:178
7465
+ #, fuzzy
7466
+ msgid "Include products"
7467
+ msgstr "شامل شدن این نوشته ها"
7468
+
7469
+ #: includes/elementor/widgets/products-grid.php:276
7470
+ #: includes/elementor/widgets/recent-products.php:421
7471
+ #: includes/elements/recent-products.php:179
7472
+ msgid ""
7473
+ "If you intend to include additional products, you should specify the "
7474
+ "products here. You have to insert the Products IDs that are separated by "
7475
+ "comma (eg. 53,34,87,25)"
7476
+ msgstr ""
7477
+
7478
+ #: includes/elementor/widgets/products-grid.php:284
7479
+ #: includes/elementor/widgets/recent-products.php:429
7480
+ #: includes/elements/recent-products.php:192
7481
+ #, fuzzy
7482
+ msgid "Exclude products"
7483
+ msgstr "نادیده گرفتن این نوشته ها"
7484
+
7485
+ #: includes/elementor/widgets/products-grid.php:285
7486
+ #: includes/elementor/widgets/recent-products.php:430
7487
+ #: includes/elements/recent-products.php:193
7488
+ msgid ""
7489
+ "If you intend to exclude specific products from result, you should specify "
7490
+ "the products here. You have to insert the Products IDs that are separated by "
7491
+ "comma (eg. 53,34,87,25)"
7492
+ msgstr ""
7493
+
7494
+ #: includes/elementor/widgets/products-grid.php:294
7495
+ #: includes/elements/recent-products.php:207
7496
+ #, fuzzy
7497
+ msgid "Number of products to displace or pass over."
7498
+ msgstr "تعداد نوشته هایی که باید از آن ها عبور کرد یا آن ها را نادیده گرفت."
7499
+
7500
+ #: includes/elementor/widgets/products-grid.php:312
7501
+ #: includes/elementor/widgets/staff.php:831
7502
+ #, fuzzy
7503
+ msgid "Wrappers"
7504
+ msgstr "ظاهر Wrapper"
7505
+
7506
+ #: includes/elementor/widgets/products-grid.php:320
7507
+ msgid "Product Bottom space"
7508
+ msgstr ""
7509
+
7510
+ #: includes/elementor/widgets/products-grid.php:336
7511
+ msgid "Info Wrapper Padding"
7512
+ msgstr ""
7513
+
7514
+ #: includes/elementor/widgets/products-grid.php:348
7515
+ msgid "Meta Wrapper Padding"
7516
+ msgstr ""
7517
+
7518
+ #: includes/elementor/widgets/products-grid.php:360
7519
+ msgid "Description Wrapper Padding"
7520
+ msgstr ""
7521
+
7522
+ #: includes/elementor/widgets/products-grid.php:372
7523
+ msgid "Buttons Wrapper Padding"
7524
+ msgstr ""
7525
+
7526
+ #: includes/elementor/widgets/products-grid.php:457
7527
+ msgid "Price"
7528
+ msgstr ""
7529
+
7530
+ #: includes/elementor/widgets/products-grid.php:526
7531
+ msgid "Product Info"
7532
+ msgstr ""
7533
+
7534
+ #: includes/elementor/widgets/products-grid.php:660
7535
+ msgid "Meta Fields"
7536
+ msgstr ""
7537
+
7538
+ #: includes/elementor/widgets/products-grid.php:739
7539
+ #: includes/elementor/widgets/testimonial.php:722
7540
+ msgid "Rating"
7541
+ msgstr ""
7542
+
7543
+ #: includes/elementor/widgets/products-grid.php:748
7544
+ #: includes/elementor/widgets/testimonial.php:734
7545
+ msgid "Empty Color"
7546
+ msgstr ""
7547
+
7548
+ #: includes/elementor/widgets/products-grid.php:759
7549
+ #: includes/elementor/widgets/testimonial.php:745
7550
+ #, fuzzy
7551
+ msgid "Fill Color"
7552
+ msgstr "رنگ شکلک"
7553
+
7554
+ #: includes/elementor/widgets/products-grid.php:796
7555
+ msgid "Sales Badge"
7556
+ msgstr ""
7557
+
7558
+ #: includes/elementor/widgets/products-grid.php:887
7559
+ #, fuzzy
7560
+ msgid "Featured Badge"
7561
+ msgstr "تصویر شاخص"
7562
+
7563
+ #: includes/elementor/widgets/products-grid.php:1102
7564
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:1934
7565
+ #: includes/elementor/widgets/recent-posts-masonry.php:1332
7566
+ #, fuzzy
7567
+ msgid "Button Padding"
7568
+ msgstr "اندازه دکمه"
7569
+
7570
+ #: includes/elementor/widgets/quote.php:50
7571
+ #, fuzzy
7572
+ msgid "Blockquote"
7573
+ msgstr "نقل قول"
7574
+
7575
+ #: includes/elementor/widgets/quote.php:106
7576
+ #, fuzzy
7577
+ msgid "Enter a text as a quote content."
7578
+ msgstr "متنی را به عنوان محتوا وارد کنید."
7579
+
7580
+ #: includes/elementor/widgets/quote.php:108
7581
+ #, fuzzy
7582
+ msgid "Type your description here"
7583
+ msgstr "توضیحات المان"
7584
+
7585
+ #: includes/elementor/widgets/quote.php:156 includes/elements/quote.php:103
7586
+ #, fuzzy
7587
+ msgid "Text alignment"
7588
+ msgstr "تراز متن"
7589
+
7590
+ #: includes/elementor/widgets/quote.php:211
7591
+ #, fuzzy
7592
+ msgid "Quote Symbol"
7593
+ msgstr "نقل قول معمولی"
7594
+
7595
+ #: includes/elementor/widgets/quote.php:219 includes/elements/quote.php:142
7596
+ msgid "Insert quote symbol"
7597
+ msgstr "افزودن نماد نقل قول"
7598
+
7599
+ #: includes/elementor/widgets/quote.php:230
7600
+ #, fuzzy
7601
+ msgid "Quote symbol color"
7602
+ msgstr "رنگ سفارشی"
7603
+
7604
+ #: includes/elementor/widgets/quote.php:256
7605
+ #, fuzzy
7606
+ msgid "Text indent"
7607
+ msgstr "تراز متن"
7608
+
7609
+ #: includes/elementor/widgets/quote.php:305
7610
+ msgid "Block"
7611
+ msgstr ""
7612
+
7613
+ #: includes/elementor/widgets/quote.php:322
7614
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:200
7615
+ #: includes/elements/instagram-feed.php:224
7616
+ #: includes/elements/recent-posts-grid-carousel.php:579
7617
+ msgid "Background color"
7618
+ msgstr "رنگ پس زمینه"
7619
+
7620
+ #: includes/elementor/widgets/recent-comments.php:49
7621
+ msgid "Recent Commented Posts"
7622
+ msgstr ""
7623
+
7624
+ #: includes/elementor/widgets/recent-comments.php:78
7625
+ msgid "All Post Types"
7626
+ msgstr ""
7627
+
7628
+ #: includes/elementor/widgets/recent-comments.php:130
7629
+ #: includes/elementor/widgets/theme-elements/modern-search.php:143
7630
+ #, fuzzy
7631
+ msgid "Post Types"
7632
+ msgstr "نوشته ها"
7633
+
7634
+ #: includes/elementor/widgets/recent-comments.php:141
7635
+ #, fuzzy
7636
+ msgid "Number of comments to show"
7637
+ msgstr "تعداد نوشته ها برای نمایش"
7638
+
7639
+ #: includes/elementor/widgets/recent-comments.php:153
7640
+ #, fuzzy
7641
+ msgid "Display info"
7642
+ msgstr "نمایش تصویر"
7643
+
7644
+ #: includes/elementor/widgets/recent-comments.php:232
7645
+ #: includes/elementor/widgets/recent-comments.php:315
7646
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:1107
7647
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:1211
7648
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:1293
7649
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:1415
7650
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:1510
7651
+ #: includes/elementor/widgets/recent-posts-land-style.php:664
7652
+ #: includes/elementor/widgets/recent-posts-land-style.php:768
7653
+ #: includes/elementor/widgets/recent-posts-land-style.php:850
7654
+ #: includes/elementor/widgets/recent-posts-land-style.php:936
7655
+ #: includes/elementor/widgets/recent-posts-masonry.php:780
7656
+ #: includes/elementor/widgets/recent-posts-masonry.php:884
7657
+ #: includes/elementor/widgets/recent-posts-masonry.php:966
7658
+ #: includes/elementor/widgets/recent-posts-masonry.php:1052
7659
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:554
7660
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:658
7661
+ #: includes/elementor/widgets/recent-posts-tiles.php:495
7662
+ #: includes/elementor/widgets/recent-posts-tiles.php:599
7663
+ #: includes/elementor/widgets/recent-posts-timeline.php:677
7664
+ #: includes/elementor/widgets/recent-posts-timeline.php:781
7665
+ #: includes/elementor/widgets/recent-posts-timeline.php:863
7666
+ #: includes/elementor/widgets/recent-posts-timeline.php:949
7667
+ #: includes/elementor/widgets/recent-products.php:684
7668
+ #: includes/elementor/widgets/staff.php:550
7669
+ #: includes/elementor/widgets/staff.php:612
7670
+ #: includes/elementor/widgets/staff.php:674
7671
+ #: includes/elementor/widgets/testimonial.php:553
7672
+ #: includes/elementor/widgets/testimonial.php:774
7673
+ #: includes/elementor/widgets/text.php:770
7674
+ #: includes/elementor/widgets/text.php:883
7675
+ #: includes/elementor/widgets/text.php:1006
7676
+ #, fuzzy
7677
+ msgid "Bottom space"
7678
+ msgstr "فضای بین ستون ها"
7679
+
7680
+ #: includes/elementor/widgets/recent-comments.php:254
7681
+ #, fuzzy
7682
+ msgid "Meta Info"
7683
+ msgstr "اطلاعات"
7684
+
7685
+ #: includes/elementor/widgets/recent-comments.php:331
7686
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:1230
7687
+ #: includes/elementor/widgets/recent-posts-land-style.php:787
7688
+ #: includes/elementor/widgets/recent-posts-masonry.php:903
7689
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:677
7690
+ #: includes/elementor/widgets/recent-posts-tiles.php:618
7691
+ #: includes/elementor/widgets/recent-posts-timeline.php:800
7692
+ #, fuzzy
7693
+ msgid "Space between metas"
7694
+ msgstr "فاصله بین اسلایدها"
7695
 
7696
  #: includes/elementor/widgets/recent-comments.php:408
7697
  msgid "No comments found!"
8117
  #: includes/elementor/widgets/recent-posts-masonry.php:385
8118
  #: includes/elementor/widgets/recent-posts-masonry.php:1208
8119
  #: includes/elementor/widgets/recent-posts-timeline.php:314
8120
+ #: includes/elementor/widgets/text.php:301
8121
  #: includes/elements/recent-posts-grid-carousel.php:447
8122
  #: includes/elements/recent-posts-land-style.php:371
8123
  #: includes/elements/recent-posts-masonry.php:347
8133
  msgid "Display Author in Footer"
8134
  msgstr "نمایش نویسنده یا ادامه نوشته"
8135
 
8136
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:623
8137
+ #: includes/elementor/widgets/recent-posts-land-style.php:317
8138
+ #: includes/elementor/widgets/recent-posts-masonry.php:413
8139
+ #: includes/elementor/widgets/recent-posts-timeline.php:342
8140
+ #, fuzzy
8141
+ msgid "Enable it to display author name in footer"
8142
+ msgstr "برای نمایش مطالب اخیر این گزینه را فعال کنید."
8143
+
8144
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:638
8145
+ #, fuzzy
8146
+ msgid "Meta info position"
8147
+ msgstr "موقعیت تصویر یا شکلک"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8148
 
8149
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:667
8150
  msgid "Use wp query"
8151
  msgstr ""
8152
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8153
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:680
8154
  #: includes/elementor/widgets/recent-posts-land-style.php:346
8155
  #: includes/elementor/widgets/recent-posts-masonry.php:442
8168
  msgid "Specifies a category that you want to show posts from it."
8169
  msgstr "دسته ای که می خواهید نوشته ها از آن نشان داده شوند را مشخص کنید."
8170
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8171
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:706
8172
  #: includes/elementor/widgets/recent-posts-land-style.php:369
8173
  #: includes/elementor/widgets/recent-posts-masonry.php:465
8235
  msgid "Exclude quote and link post formats"
8236
  msgstr "نادیده گرفتن نوشته های سبک نقل قول و لینک"
8237
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8238
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:814
8239
  #: includes/elementor/widgets/recent-posts-land-style.php:441
8240
  #: includes/elementor/widgets/recent-posts-masonry.php:537
8504
  msgstr ""
8505
 
8506
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:1629
8507
+ #: includes/elementor/widgets/text.php:623
8508
+ #: includes/elementor/widgets/text.php:1553
8509
  msgid "Transition duration"
8510
  msgstr ""
8511
 
8513
  msgid "Flip Wrapper"
8514
  msgstr ""
8515
 
 
 
 
 
 
 
8516
  #: includes/elementor/widgets/recent-posts-land-style.php:49
8517
  #, fuzzy
8518
  msgid "Land Style Posts"
8609
  msgid "Display post meta"
8610
  msgstr "نمایش متای پست"
8611
 
 
 
 
 
 
 
8612
  #: includes/elementor/widgets/recent-products.php:185
8613
  #: includes/elements/recent-products.php:220
8614
  #, fuzzy
8632
  msgid "Display Add To Cart"
8633
  msgstr "نمایش تاریخ نوشته"
8634
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8635
  #: includes/elementor/widgets/recent-products.php:580
8636
  msgid "Spacing"
8637
  msgstr "فاصله"
8706
  msgstr ""
8707
 
8708
  #: includes/elementor/widgets/staff.php:108
8709
+ #: includes/elementor/widgets/text.php:234 includes/elements/text.php:44
8710
  msgid "Text title, leave it empty if you don`t need title."
8711
  msgstr "عناون متن، اگر به عنوان نیاز ندارید این بخش را خالی بگذارید."
8712
 
8719
  msgstr ""
8720
 
8721
  #: includes/elementor/widgets/staff.php:141
8722
+ #: includes/elementor/widgets/text.php:265 includes/elements/staff.php:515
8723
  #: includes/elements/testimonial.php:167 includes/elements/text.php:882
8724
  msgid "Enter a text as a text content."
8725
  msgstr "متنی را به عنوان محتوا وارد کنید."
8733
  msgstr ""
8734
 
8735
  #: includes/elementor/widgets/staff.php:196
8736
+ #: includes/elementor/widgets/text.php:648 includes/elements/staff.php:161
8737
  #: includes/elements/text.php:571
8738
  #, fuzzy
8739
  msgid "Image shape"
8740
  msgstr "اندازه تصویر"
8741
 
8742
  #: includes/elementor/widgets/staff.php:204
8743
+ #: includes/elementor/widgets/text.php:465
8744
+ #: includes/elementor/widgets/text.php:660 includes/elements/staff.php:172
8745
  #: includes/elements/text.php:543 includes/elements/text.php:585
8746
  msgid "Semi-circle"
8747
  msgstr "نیم دایره"
8748
 
8749
  #: includes/elementor/widgets/staff.php:208
8750
+ #: includes/elementor/widgets/text.php:469
8751
+ #: includes/elementor/widgets/text.php:664 includes/elements/staff.php:176
8752
  #: includes/elements/text.php:547 includes/elements/text.php:589
8753
  msgid "Round Rectangle"
8754
  msgstr "مستطیل دورگرد"
8755
 
8756
  #: includes/elementor/widgets/staff.php:212
8757
+ #: includes/elementor/widgets/text.php:477
8758
+ #: includes/elementor/widgets/text.php:668 includes/elements/staff.php:180
8759
  #: includes/elements/text.php:555 includes/elements/text.php:593
8760
  msgid "Rectangle"
8761
  msgstr "مستطیل"
8825
  msgstr "آدرس"
8826
 
8827
  #: includes/elementor/widgets/staff.php:531
8828
+ #: includes/elementor/widgets/text.php:866
8829
+ #: includes/elementor/widgets/text.php:989
8830
  #, fuzzy
8831
  msgid "Top space"
8832
  msgstr "فضای خالی"
8833
 
8834
  #: includes/elementor/widgets/staff.php:575
8835
+ #: includes/elementor/widgets/text.php:243
8836
+ #: includes/elementor/widgets/text.php:792
8837
  #: includes/elements/recent-posts-grid-carousel.php:70
8838
  #: includes/elements/recent-products.php:56 includes/elements/text.php:59
8839
  msgid "Subtitle"
8875
  msgid "X-Large"
8876
  msgstr "خیلی بزرگ"
8877
 
 
 
 
 
 
8878
  #: includes/elementor/widgets/staff.php:870
8879
+ #: includes/elementor/widgets/text.php:1445
8880
  #: includes/elementor/widgets/theme-elements/menu.php:324
8881
  #: includes/elementor/widgets/theme-elements/menu.php:1341
8882
  #: includes/elements/text.php:118
8904
  msgstr "انتخاب .."
8905
 
8906
  #: includes/elementor/widgets/svg.php:137
8907
+ #: includes/elementor/widgets/text.php:210
8908
  #: includes/elementor/widgets/theme-elements/menu.php:1116
8909
  msgid "Enter inline SVG content here"
8910
  msgstr ""
9033
  msgid "Occupation"
9034
  msgstr "عملیات هنگام کلیک"
9035
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9036
  #: includes/elementor/widgets/testimonial.php:796
9037
  #, fuzzy
9038
  msgid "Content Box"
9043
  msgid "Content Alignment"
9044
  msgstr "تراز شکلک"
9045
 
9046
+ #: includes/elementor/widgets/text.php:54 includes/elements/text.php:15
9047
  #, fuzzy
9048
  msgid "Info Box"
9049
  msgstr "اطلاعات"
9050
 
9051
+ #: includes/elementor/widgets/text.php:119
9052
  msgid "Inline SVG"
9053
  msgstr ""
9054
 
9055
+ #: includes/elementor/widgets/text.php:129
9056
  #: includes/elementor/widgets/theme-elements/search.php:132
9057
  #: includes/elements/text.php:387
9058
  #, fuzzy
9059
  msgid "Please choose an icon from the list."
9060
  msgstr "لطفا یکی از شکلک های موجود را انتخاب کنید."
9061
 
9062
+ #: includes/elementor/widgets/text.php:251 includes/elements/text.php:75
9063
  #, fuzzy
9064
  msgid "Title Link"
9065
  msgstr "لینک عنوان"
9066
 
9067
+ #: includes/elementor/widgets/text.php:286 includes/elements/text.php:637
9068
  #, fuzzy
9069
  msgid "Display button"
9070
  msgstr "نمایش دکمه لایک"
9071
 
9072
+ #: includes/elementor/widgets/text.php:287 includes/elements/text.php:638
9073
  #, fuzzy
9074
  msgid "Display a button in text widget"
9075
  msgstr "نمایش دکمه لایک"
9076
 
9077
+ #: includes/elementor/widgets/text.php:359
9078
  #, fuzzy
9079
  msgid "Header Position"
9080
  msgstr "موقعیت"
9081
 
9082
+ #: includes/elementor/widgets/text.php:410
9083
  #, fuzzy
9084
  msgid "Icon/Image"
9085
  msgstr "تصویر"
9086
 
9087
+ #: includes/elementor/widgets/text.php:422
9088
  #, fuzzy
9089
  msgid "Border"
9090
  msgstr "کادربندی شده"
9091
 
9092
+ #: includes/elementor/widgets/text.php:456 includes/elements/text.php:533
9093
  msgid "Icon background shape"
9094
  msgstr "شکل پس زمینه شکلک"
9095
 
9096
+ #: includes/elementor/widgets/text.php:473 includes/elements/text.php:551
9097
  #, fuzzy
9098
  msgid "Cross Rectangle"
9099
  msgstr "مستطیل"
9100
 
9101
+ #: includes/elementor/widgets/text.php:524
9102
+ #: includes/elementor/widgets/text.php:583
9103
  #: includes/elementor/widgets/theme-elements/search.php:233
9104
  #: includes/elements/text.php:445
9105
  msgid "Icon color"
9106
  msgstr "رنگ شکلک"
9107
 
9108
+ #: includes/elementor/widgets/text.php:539
9109
+ #: includes/elementor/widgets/text.php:598 includes/elements/text.php:486
9110
  msgid "Icon background color"
9111
  msgstr "رنگ پس زمینه شکلک"
9112
 
9113
+ #: includes/elementor/widgets/text.php:652 includes/elements/text.php:577
9114
  #, fuzzy
9115
  msgid "Default Aspect"
9116
  msgstr "پیش فرض"
9117
 
9118
+ #: includes/elementor/widgets/text.php:1055
9119
  #, fuzzy
9120
  msgid "Button Skin"
9121
  msgstr "اندازه دکمه"
9122
 
9123
+ #: includes/elementor/widgets/text.php:1132
9124
  #, fuzzy
9125
  msgid "Button Icon"
9126
  msgstr "اندازه دکمه"
9127
 
9128
+ #: includes/elementor/widgets/text.php:1245
9129
  #, fuzzy
9130
  msgid "Button Text"
9131
  msgstr "متن دکمه"
9132
 
9133
+ #: includes/elementor/widgets/text.php:1338
9134
  #, fuzzy
9135
  msgid "Button Wrapper"
9136
  msgstr "نوع دکمه"
9137
 
9138
+ #: includes/elementor/widgets/text.php:1363
9139
  #, fuzzy
9140
  msgid "Shape Style"
9141
  msgstr "ظاهر نقشه"
9142
 
9143
+ #: includes/elementor/widgets/text.php:1387 includes/general-hooks.php:759
9144
  #: includes/general-hooks.php:1171
9145
  #, fuzzy
9146
  msgid "Button Style"
9147
  msgstr "ظاهر دکمه"
9148
 
9149
+ #: includes/elementor/widgets/text.php:1437
9150
  #, fuzzy
9151
  msgid "Overlay"
9152
  msgstr "رو"
9153
 
9154
+ #: includes/elementor/widgets/text.php:1588 includes/elements/text.php:896
9155
  msgid "Footer Shape"
9156
  msgstr ""
9157
 
9158
+ #: includes/elementor/widgets/text.php:1597 includes/elements/text.php:907
9159
  msgid "Wave"
9160
  msgstr ""
9161
 
9162
+ #: includes/elementor/widgets/text.php:1601 includes/elements/text.php:911
9163
  msgid "Tail"
9164
  msgstr ""
9165
 
9166
+ #: includes/elementor/widgets/text.php:1612 includes/elements/button.php:212
9167
  #: includes/elements/text.php:825
9168
  msgid "Color of button"
9169
  msgstr "رنگ دکمه"
11523
  msgid "Vertical 10:15"
11524
  msgstr "عمودی 3:4"
11525
 
 
 
 
 
 
11526
  #: includes/elements/sample-element.php:19
11527
  msgid "Auxin Callout "
11528
  msgstr "اکسین فراخوان"
12136
  msgid "Page Not Found"
12137
  msgstr ""
12138
 
12139
+ #: includes/general-functions.php:2508
12140
  #, fuzzy
12141
  msgid "Select Page"
12142
  msgstr "تراز شکلک را انتخاب کنید."
languages/auxin-elements.pot CHANGED
@@ -1,9 +1,9 @@
1
  # Averta Copyright (c) {2021}
2
  msgid ""
3
  msgstr ""
4
- "Project-Id-Version: Phlox Core Elements 2.9.0\n"
5
  "Report-Msgid-Bugs-To: http://averta.net/phlox/wordpress-theme/\n"
6
- "POT-Creation-Date: 2021-11-22 11:53:55+00:00\n"
7
  "MIME-Version: 1.0\n"
8
  "Content-Type: text/plain; charset=utf-8\n"
9
  "Content-Transfer-Encoding: 8bit\n"
@@ -337,6 +337,10 @@ msgstr ""
337
  msgid "Connection error..."
338
  msgstr ""
339
 
 
 
 
 
340
  #: admin/includes/classes/class-auxin-notices.php:30
341
  msgid "You need to enter a unique id for notice."
342
  msgstr ""
@@ -666,7 +670,7 @@ msgstr ""
666
  #: admin/includes/metaboxes/metabox-fields-general-footer.php:21
667
  #: includes/elementor/modules/documents/footer.php:35
668
  #: includes/elementor/modules/documents/footer.php:46
669
- #: includes/elementor/widgets/text.php:1570
670
  msgid "Footer"
671
  msgstr ""
672
 
@@ -797,8 +801,8 @@ msgstr ""
797
 
798
  #: admin/includes/metaboxes/metabox-fields-general-header.php:21
799
  #: includes/elementor/modules/documents/header.php:35
800
- #: includes/elementor/widgets/text.php:104
801
- #: includes/elementor/widgets/text.php:347
802
  msgid "Header"
803
  msgstr ""
804
 
@@ -1081,7 +1085,7 @@ msgstr ""
1081
  #: includes/elementor/widgets/custom-list.php:509
1082
  #: includes/elementor/widgets/divider.php:202
1083
  #: includes/elementor/widgets/divider.php:241
1084
- #: includes/elementor/widgets/heading-modern.php:163
1085
  #: includes/elementor/widgets/icon.php:174
1086
  #: includes/elementor/widgets/image.php:323
1087
  #: includes/elementor/widgets/modern-button.php:143
@@ -1097,7 +1101,7 @@ msgstr ""
1097
  #: includes/elementor/widgets/staff.php:878
1098
  #: includes/elementor/widgets/svg.php:288
1099
  #: includes/elementor/widgets/testimonial.php:813
1100
- #: includes/elementor/widgets/text.php:1443
1101
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:435
1102
  #: includes/elementor/widgets/theme-elements/copyright.php:146
1103
  #: includes/elementor/widgets/theme-elements/current-time.php:139
@@ -1122,7 +1126,7 @@ msgstr ""
1122
  #: includes/elementor/widgets/custom-list.php:505
1123
  #: includes/elementor/widgets/divider.php:198
1124
  #: includes/elementor/widgets/divider.php:237
1125
- #: includes/elementor/widgets/heading-modern.php:159
1126
  #: includes/elementor/widgets/icon.php:170
1127
  #: includes/elementor/widgets/image.php:319
1128
  #: includes/elementor/widgets/modern-button.php:184
@@ -1138,9 +1142,9 @@ msgstr ""
1138
  #: includes/elementor/widgets/staff.php:874
1139
  #: includes/elementor/widgets/svg.php:284
1140
  #: includes/elementor/widgets/testimonial.php:809
1141
- #: includes/elementor/widgets/text.php:367
1142
- #: includes/elementor/widgets/text.php:1140
1143
- #: includes/elementor/widgets/text.php:1439
1144
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:431
1145
  #: includes/elementor/widgets/theme-elements/copyright.php:142
1146
  #: includes/elementor/widgets/theme-elements/current-time.php:135
@@ -1198,7 +1202,7 @@ msgstr ""
1198
  #: includes/elementor/widgets/divider.php:146
1199
  #: includes/elementor/widgets/modern-button.php:311
1200
  #: includes/elementor/widgets/staff.php:787
1201
- #: includes/elementor/widgets/text.php:1036 includes/elements/button.php:66
1202
  #: includes/elements/divider.php:90 includes/elements/socials-list.php:63
1203
  #: includes/elements/socials-list.php:201 includes/elements/staff.php:463
1204
  #: includes/elements/text.php:469 includes/elements/text.php:677
@@ -1212,7 +1216,7 @@ msgstr ""
1212
  #: includes/elementor/widgets/divider.php:145
1213
  #: includes/elementor/widgets/modern-button.php:310
1214
  #: includes/elementor/widgets/staff.php:788
1215
- #: includes/elementor/widgets/text.php:1035
1216
  #: includes/elements/before-after.php:104 includes/elements/button.php:65
1217
  #: includes/elements/divider.php:89 includes/elements/instagram-feed.php:98
1218
  #: includes/elements/socials-list.php:64 includes/elements/socials-list.php:202
@@ -1228,7 +1232,7 @@ msgstr ""
1228
  #: includes/elementor/widgets/button.php:161
1229
  #: includes/elementor/widgets/modern-button.php:309
1230
  #: includes/elementor/widgets/staff.php:789
1231
- #: includes/elementor/widgets/text.php:1034
1232
  #: includes/elements/before-after.php:105 includes/elements/button.php:64
1233
  #: includes/elements/divider.php:88 includes/elements/socials-list.php:65
1234
  #: includes/elements/socials-list.php:203 includes/elements/staff.php:110
@@ -1294,7 +1298,7 @@ msgstr ""
1294
  #: includes/elementor/widgets/recent-posts-tiles-carousel.php:130
1295
  #: includes/elementor/widgets/recent-posts-tiles.php:130
1296
  #: includes/elementor/widgets/tabs.php:195
1297
- #: includes/elementor/widgets/text.php:1139
1298
  #: includes/elementor/widgets/theme-elements/menu.php:999
1299
  #: includes/elementor/widgets/theme-elements/modern-search.php:577
1300
  #: includes/elements/button.php:179 includes/elements/code.php:99
@@ -1322,9 +1326,9 @@ msgstr ""
1322
  #: includes/elementor/widgets/contact-form.php:1703
1323
  #: includes/elementor/widgets/custom-list.php:918
1324
  #: includes/elementor/widgets/custom-list.php:1075
1325
- #: includes/elementor/widgets/heading-modern.php:397
1326
- #: includes/elementor/widgets/heading-modern.php:582
1327
- #: includes/elementor/widgets/heading-modern.php:753
1328
  #: includes/elementor/widgets/icon.php:246
1329
  #: includes/elementor/widgets/image.php:536
1330
  #: includes/elementor/widgets/mailchimp.php:352
@@ -1334,6 +1338,14 @@ msgstr ""
1334
  #: includes/elementor/widgets/modern-button.php:618
1335
  #: includes/elementor/widgets/modern-button.php:730
1336
  #: includes/elementor/widgets/modern-button.php:916
 
 
 
 
 
 
 
 
1337
  #: includes/elementor/widgets/recent-comments.php:201
1338
  #: includes/elementor/widgets/recent-comments.php:284
1339
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:997
@@ -1370,14 +1382,14 @@ msgstr ""
1370
  #: includes/elementor/widgets/testimonial.php:511
1371
  #: includes/elementor/widgets/testimonial.php:629
1372
  #: includes/elementor/widgets/testimonial.php:923
1373
- #: includes/elementor/widgets/text.php:566
1374
- #: includes/elementor/widgets/text.php:719
1375
- #: includes/elementor/widgets/text.php:815
1376
- #: includes/elementor/widgets/text.php:926
1377
- #: includes/elementor/widgets/text.php:1093
1378
- #: includes/elementor/widgets/text.php:1213
1379
- #: includes/elementor/widgets/text.php:1288
1380
- #: includes/elementor/widgets/text.php:1518
1381
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:516
1382
  #: includes/elementor/widgets/theme-elements/copyright.php:212
1383
  #: includes/elementor/widgets/theme-elements/logo.php:327
@@ -2085,9 +2097,10 @@ msgstr ""
2085
  #: includes/classes/class-auxin-welcome.php:431
2086
  #: includes/elementor/modules/dynamic-tags/contact-url.php:181
2087
  #: includes/elementor/modules/dynamic-tags/featured-image-data.php:90
2088
- #: includes/elementor/widgets/heading-modern.php:309
2089
- #: includes/elementor/widgets/heading-modern.php:316
2090
- #: includes/elementor/widgets/heading-modern.php:962
 
2091
  #: includes/elementor/widgets/theme-elements/logo.php:546
2092
  #: includes/elements/custom-list.php:138
2093
  msgid "Description"
@@ -2727,50 +2740,50 @@ msgstr ""
2727
  msgid "Select Audio"
2728
  msgstr ""
2729
 
2730
- #: includes/elementor/class-auxin-elementor-core-elements.php:404
2731
  msgid "Element class \"%s\" not found."
2732
  msgstr ""
2733
 
2734
- #: includes/elementor/class-auxin-elementor-core-elements.php:500
2735
  msgid "Module class \"%s\" not found."
2736
  msgstr ""
2737
 
2738
- #: includes/elementor/class-auxin-elementor-core-elements.php:573
2739
  msgid "%s - General"
2740
  msgstr ""
2741
 
2742
- #: includes/elementor/class-auxin-elementor-core-elements.php:581
2743
  msgid "%s - Featured"
2744
  msgstr ""
2745
 
2746
- #: includes/elementor/class-auxin-elementor-core-elements.php:589
2747
  msgid "%s - Posts"
2748
  msgstr ""
2749
 
2750
- #: includes/elementor/class-auxin-elementor-core-elements.php:597
2751
  msgid "%s - Portfolio"
2752
  msgstr ""
2753
 
2754
- #: includes/elementor/class-auxin-elementor-core-elements.php:671
2755
- #: includes/elementor/class-auxin-elementor-core-elements.php:695
2756
  #. translators: 1: Plugin name 2: PHP 3: Required PHP version
2757
  msgid "\"%1$s\" requires \"%2$s\" version %3$s or greater."
2758
  msgstr ""
2759
 
2760
- #: includes/elementor/class-auxin-elementor-core-elements.php:673
2761
  msgid "Elementor"
2762
  msgstr ""
2763
 
2764
- #: includes/elementor/class-auxin-elementor-core-elements.php:697
2765
  #: includes/elements/code.php:82
2766
  msgid "PHP"
2767
  msgstr ""
2768
 
2769
- #: includes/elementor/class-auxin-elementor-core-elements.php:754
2770
  msgid "Phlox Icons - Set 1"
2771
  msgstr ""
2772
 
2773
- #: includes/elementor/class-auxin-elementor-core-elements.php:776
2774
  msgid "Phlox Icons - Set 2"
2775
  msgstr ""
2776
 
@@ -2924,7 +2937,7 @@ msgstr ""
2924
  #: includes/elementor/modules/common.php:658
2925
  #: includes/elementor/widgets/modern-button.php:139
2926
  #: includes/elementor/widgets/staff.php:847
2927
- #: includes/elementor/widgets/text.php:363 includes/elements/staff.php:226
2928
  #: includes/elements/text.php:616
2929
  msgid "Top"
2930
  msgstr ""
@@ -2936,7 +2949,7 @@ msgstr ""
2936
  #: includes/elementor/widgets/custom-list.php:513
2937
  #: includes/elementor/widgets/divider.php:206
2938
  #: includes/elementor/widgets/divider.php:245
2939
- #: includes/elementor/widgets/heading-modern.php:167
2940
  #: includes/elementor/widgets/icon.php:178
2941
  #: includes/elementor/widgets/image.php:327
2942
  #: includes/elementor/widgets/modern-button.php:192
@@ -2952,9 +2965,9 @@ msgstr ""
2952
  #: includes/elementor/widgets/staff.php:882
2953
  #: includes/elementor/widgets/svg.php:292
2954
  #: includes/elementor/widgets/testimonial.php:817
2955
- #: includes/elementor/widgets/text.php:371
2956
- #: includes/elementor/widgets/text.php:1141
2957
- #: includes/elementor/widgets/text.php:1447
2958
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:439
2959
  #: includes/elementor/widgets/theme-elements/copyright.php:150
2960
  #: includes/elementor/widgets/theme-elements/current-time.php:143
@@ -3000,10 +3013,10 @@ msgstr ""
3000
  #: includes/elementor/widgets/contact-form.php:976
3001
  #: includes/elementor/widgets/contact-form.php:1219
3002
  #: includes/elementor/widgets/contact-form.php:1572
3003
- #: includes/elementor/widgets/heading-modern.php:475
3004
- #: includes/elementor/widgets/heading-modern.php:660
3005
- #: includes/elementor/widgets/heading-modern.php:831
3006
- #: includes/elementor/widgets/heading-modern.php:1004
3007
  #: includes/elementor/widgets/image.php:426
3008
  #: includes/elementor/widgets/mailchimp.php:234
3009
  #: includes/elementor/widgets/mailchimp.php:481
@@ -3041,7 +3054,7 @@ msgstr ""
3041
  #: includes/elementor/widgets/contact-form.php:1599
3042
  #: includes/elementor/widgets/custom-list.php:396
3043
  #: includes/elementor/widgets/gmap.php:168
3044
- #: includes/elementor/widgets/heading-modern.php:1075
3045
  #: includes/elementor/widgets/mailchimp.php:261
3046
  #: includes/elementor/widgets/mailchimp.php:508
3047
  #: includes/elementor/widgets/mailchimp.php:736
@@ -3195,12 +3208,12 @@ msgstr ""
3195
  #: includes/elementor/modules/dynamic-tags/comments-number.php:58
3196
  #: includes/elementor/widgets/button.php:116
3197
  #: includes/elementor/widgets/custom-list.php:138
3198
- #: includes/elementor/widgets/heading-modern.php:120
3199
- #: includes/elementor/widgets/heading-modern.php:270
3200
  #: includes/elementor/widgets/icon.php:154
3201
  #: includes/elementor/widgets/modern-button.php:210
3202
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:743
3203
- #: includes/elementor/widgets/text.php:321
3204
  #: includes/elementor/widgets/theme-elements/logo.php:182
3205
  #: includes/elementor/widgets/theme-elements/logo.php:196
3206
  #: includes/elementor/widgets/theme-elements/site-title.php:212
@@ -3227,8 +3240,8 @@ msgstr ""
3227
  #: includes/elementor/widgets/recent-posts-timeline.php:316
3228
  #: includes/elementor/widgets/recent-posts-timeline.php:519
3229
  #: includes/elementor/widgets/testimonial.php:238
3230
- #: includes/elementor/widgets/text.php:115
3231
- #: includes/elementor/widgets/text.php:1583
3232
  #: includes/elementor/widgets/theme-elements/menu.php:658
3233
  #: includes/elementor/widgets/theme-elements/search.php:118
3234
  #: includes/elements/flickr.php:156 includes/elements/flickr.php:205
@@ -3268,7 +3281,7 @@ msgstr ""
3268
  #: includes/elementor/widgets/accordion.php:145
3269
  #: includes/elementor/widgets/modern-button.php:277
3270
  #: includes/elementor/widgets/svg.php:107
3271
- #: includes/elementor/widgets/text.php:111
3272
  #: includes/elementor/widgets/theme-elements/logo.php:135
3273
  #: includes/elementor/widgets/theme-elements/menu.php:156
3274
  #: includes/elementor/widgets/theme-elements/menu.php:995
@@ -3382,7 +3395,9 @@ msgstr ""
3382
  #: includes/elementor/modules/dynamic-tags/featured-image-data.php:87
3383
  #: includes/elementor/modules/query-control/controls/group-control-query.php:346
3384
  #: includes/elementor/widgets/accordion.php:534
3385
- #: includes/elementor/widgets/heading-modern.php:107
 
 
3386
  #: includes/elementor/widgets/recent-comments.php:171
3387
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:781
3388
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:1028
@@ -3400,8 +3415,8 @@ msgstr ""
3400
  #: includes/elementor/widgets/recent-products.php:543
3401
  #: includes/elementor/widgets/staff.php:452
3402
  #: includes/elementor/widgets/tabs.php:373
3403
- #: includes/elementor/widgets/text.php:232
3404
- #: includes/elementor/widgets/text.php:686
3405
  #: includes/elementor/widgets/theme-elements/logo.php:454
3406
  #: includes/elementor/widgets/theme-elements/site-title.php:94
3407
  #: includes/elementor/widgets/touch-slider.php:332
@@ -3762,6 +3777,7 @@ msgstr ""
3762
 
3763
  #: includes/elementor/modules/dynamic-tags/user-info.php:76
3764
  #: includes/elementor/widgets/gallery.php:304
 
3765
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:782
3766
  #: includes/elementor/widgets/recent-posts-land-style.php:415
3767
  #: includes/elementor/widgets/recent-posts-masonry.php:511
@@ -3819,6 +3835,7 @@ msgstr ""
3819
  #: includes/elementor/modules/query-control/controls/group-control-query.php:130
3820
  #: includes/elementor/modules/query-control/controls/group-control-query.php:169
3821
  #: includes/elementor/modules/query-control/controls/group-control-query.php:225
 
3822
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:786
3823
  #: includes/elementor/widgets/recent-posts-land-style.php:419
3824
  #: includes/elementor/widgets/recent-posts-masonry.php:515
@@ -3906,6 +3923,7 @@ msgstr ""
3906
 
3907
  #: includes/elementor/modules/query-control/controls/group-control-query.php:276
3908
  #: includes/elementor/modules/query-control/controls/group-control-query.php:345
 
3909
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:779
3910
  #: includes/elementor/widgets/recent-posts-land-style.php:412
3911
  #: includes/elementor/widgets/recent-posts-masonry.php:508
@@ -3980,6 +3998,7 @@ msgstr ""
3980
 
3981
  #: includes/elementor/modules/query-control/controls/group-control-query.php:347
3982
  #: includes/elementor/widgets/gallery.php:302
 
3983
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:780
3984
  #: includes/elementor/widgets/recent-posts-land-style.php:413
3985
  #: includes/elementor/widgets/recent-posts-masonry.php:509
@@ -4004,6 +4023,7 @@ msgid "Menu Order"
4004
  msgstr ""
4005
 
4006
  #: includes/elementor/modules/query-control/controls/group-control-query.php:348
 
4007
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:783
4008
  #: includes/elementor/widgets/recent-posts-land-style.php:416
4009
  #: includes/elementor/widgets/recent-posts-masonry.php:512
@@ -4028,6 +4048,7 @@ msgstr ""
4028
 
4029
  #: includes/elementor/modules/query-control/controls/group-control-query.php:356
4030
  #: includes/elementor/widgets/gallery.php:282
 
4031
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:798
4032
  #: includes/elementor/widgets/recent-posts-land-style.php:428
4033
  #: includes/elementor/widgets/recent-posts-masonry.php:524
@@ -4169,9 +4190,9 @@ msgstr ""
4169
  #: includes/elementor/widgets/tabs.php:136
4170
  #: includes/elementor/widgets/tabs.php:439
4171
  #: includes/elementor/widgets/testimonial.php:193
4172
- #: includes/elementor/widgets/text.php:225
4173
- #: includes/elementor/widgets/text.php:263
4174
- #: includes/elementor/widgets/text.php:895
4175
  #: includes/elements/accordion-widget.php:76 includes/elements/accordion.php:93
4176
  #: includes/elements/dropcap.php:82 includes/elements/highlight.php:78
4177
  #: includes/elements/staff.php:514 includes/elements/tabs.php:92
@@ -4245,12 +4266,12 @@ msgstr ""
4245
  #: includes/elementor/widgets/custom-list.php:258
4246
  #: includes/elementor/widgets/custom-list.php:970
4247
  #: includes/elementor/widgets/custom-list.php:1022
4248
- #: includes/elementor/widgets/heading-modern.php:437
4249
- #: includes/elementor/widgets/heading-modern.php:622
4250
- #: includes/elementor/widgets/heading-modern.php:793
4251
- #: includes/elementor/widgets/heading-modern.php:915
4252
- #: includes/elementor/widgets/heading-modern.php:991
4253
- #: includes/elementor/widgets/heading-modern.php:1105
4254
  #: includes/elementor/widgets/modern-button.php:658
4255
  #: includes/elementor/widgets/modern-button.php:770
4256
  #: includes/elementor/widgets/modern-button.php:876
@@ -4299,7 +4320,7 @@ msgstr ""
4299
  #: includes/elementor/widgets/recent-products.php:522
4300
  #: includes/elementor/widgets/tabs.php:235
4301
  #: includes/elementor/widgets/tabs.php:493
4302
- #: includes/elementor/widgets/text.php:1474
4303
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:463
4304
  #: includes/elementor/widgets/theme-elements/logo.php:390
4305
  #: includes/elementor/widgets/theme-elements/menu.php:421
@@ -4332,9 +4353,9 @@ msgstr ""
4332
  #: includes/elementor/widgets/contact-form.php:1677
4333
  #: includes/elementor/widgets/custom-list.php:889
4334
  #: includes/elementor/widgets/custom-list.php:1038
4335
- #: includes/elementor/widgets/heading-modern.php:359
4336
- #: includes/elementor/widgets/heading-modern.php:544
4337
- #: includes/elementor/widgets/heading-modern.php:715
4338
  #: includes/elementor/widgets/icon.php:204
4339
  #: includes/elementor/widgets/image.php:499
4340
  #: includes/elementor/widgets/mailchimp.php:326
@@ -4345,6 +4366,14 @@ msgstr ""
4345
  #: includes/elementor/widgets/modern-button.php:579
4346
  #: includes/elementor/widgets/modern-button.php:691
4347
  #: includes/elementor/widgets/modern-button.php:817
 
 
 
 
 
 
 
 
4348
  #: includes/elementor/widgets/recent-comments.php:181
4349
  #: includes/elementor/widgets/recent-comments.php:264
4350
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:974
@@ -4381,15 +4410,15 @@ msgstr ""
4381
  #: includes/elementor/widgets/testimonial.php:473
4382
  #: includes/elementor/widgets/testimonial.php:591
4383
  #: includes/elementor/widgets/testimonial.php:887
4384
- #: includes/elementor/widgets/text.php:507
4385
- #: includes/elementor/widgets/text.php:699
4386
- #: includes/elementor/widgets/text.php:795
4387
- #: includes/elementor/widgets/text.php:906
4388
- #: includes/elementor/widgets/text.php:1066
4389
- #: includes/elementor/widgets/text.php:1193
4390
- #: includes/elementor/widgets/text.php:1250
4391
- #: includes/elementor/widgets/text.php:1382
4392
- #: includes/elementor/widgets/text.php:1490
4393
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:490
4394
  #: includes/elementor/widgets/theme-elements/copyright.php:175
4395
  #: includes/elementor/widgets/theme-elements/logo.php:293
@@ -4471,10 +4500,10 @@ msgstr ""
4471
  #: includes/elementor/widgets/contact-form.php:1648
4472
  #: includes/elementor/widgets/custom-list.php:983
4473
  #: includes/elementor/widgets/custom-list.php:1009
4474
- #: includes/elementor/widgets/heading-modern.php:450
4475
- #: includes/elementor/widgets/heading-modern.php:635
4476
- #: includes/elementor/widgets/heading-modern.php:806
4477
- #: includes/elementor/widgets/heading-modern.php:1118
4478
  #: includes/elementor/widgets/icon.php:311
4479
  #: includes/elementor/widgets/mailchimp.php:310
4480
  #: includes/elementor/widgets/mailchimp.php:556
@@ -4482,6 +4511,9 @@ msgstr ""
4482
  #: includes/elementor/widgets/modern-button.php:432
4483
  #: includes/elementor/widgets/modern-button.php:888
4484
  #: includes/elementor/widgets/modern-button.php:987
 
 
 
4485
  #: includes/elementor/widgets/quote.php:333
4486
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:1403
4487
  #: includes/elementor/widgets/staff.php:810
@@ -4489,11 +4521,11 @@ msgstr ""
4489
  #: includes/elementor/widgets/tabs.php:467
4490
  #: includes/elementor/widgets/testimonial.php:695
4491
  #: includes/elementor/widgets/testimonial.php:843
4492
- #: includes/elementor/widgets/text.php:392
4493
- #: includes/elementor/widgets/text.php:490
4494
- #: includes/elementor/widgets/text.php:967
4495
- #: includes/elementor/widgets/text.php:1401
4496
- #: includes/elementor/widgets/text.php:1462
4497
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:475
4498
  #: includes/elementor/widgets/theme-elements/menu.php:517
4499
  #: includes/elementor/widgets/theme-elements/menu.php:956
@@ -4540,14 +4572,14 @@ msgstr ""
4540
  #: includes/elementor/widgets/custom-list.php:896
4541
  #: includes/elementor/widgets/custom-list.php:925
4542
  #: includes/elementor/widgets/divider.php:376
4543
- #: includes/elementor/widgets/heading-modern.php:366
4544
- #: includes/elementor/widgets/heading-modern.php:404
4545
- #: includes/elementor/widgets/heading-modern.php:551
4546
- #: includes/elementor/widgets/heading-modern.php:589
4547
- #: includes/elementor/widgets/heading-modern.php:722
4548
- #: includes/elementor/widgets/heading-modern.php:760
4549
- #: includes/elementor/widgets/heading-modern.php:928
4550
- #: includes/elementor/widgets/heading-modern.php:971
4551
  #: includes/elementor/widgets/mailchimp.php:196
4552
  #: includes/elementor/widgets/mailchimp.php:423
4553
  #: includes/elementor/widgets/mailchimp.php:578
@@ -4560,6 +4592,22 @@ msgstr ""
4560
  #: includes/elementor/widgets/modern-button.php:746
4561
  #: includes/elementor/widgets/modern-button.php:847
4562
  #: includes/elementor/widgets/modern-button.php:946
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4563
  #: includes/elementor/widgets/recent-comments.php:188
4564
  #: includes/elementor/widgets/recent-comments.php:208
4565
  #: includes/elementor/widgets/recent-comments.php:271
@@ -4626,16 +4674,16 @@ msgstr ""
4626
  #: includes/elementor/widgets/testimonial.php:521
4627
  #: includes/elementor/widgets/testimonial.php:601
4628
  #: includes/elementor/widgets/testimonial.php:639
4629
- #: includes/elementor/widgets/text.php:706
4630
- #: includes/elementor/widgets/text.php:726
4631
- #: includes/elementor/widgets/text.php:802
4632
- #: includes/elementor/widgets/text.php:822
4633
- #: includes/elementor/widgets/text.php:913
4634
- #: includes/elementor/widgets/text.php:933
4635
- #: includes/elementor/widgets/text.php:1200
4636
- #: includes/elementor/widgets/text.php:1220
4637
- #: includes/elementor/widgets/text.php:1257
4638
- #: includes/elementor/widgets/text.php:1295
4639
  #: includes/elementor/widgets/theme-elements/copyright.php:182
4640
  #: includes/elementor/widgets/theme-elements/copyright.php:219
4641
  #: includes/elementor/widgets/theme-elements/current-time.php:172
@@ -4701,7 +4749,7 @@ msgstr ""
4701
  #: includes/elementor/widgets/gallery.php:273
4702
  #: includes/elementor/widgets/gmap.php:193
4703
  #: includes/elementor/widgets/gmap.php:214
4704
- #: includes/elementor/widgets/heading-modern.php:190
4705
  #: includes/elementor/widgets/image.php:155
4706
  #: includes/elementor/widgets/image.php:188
4707
  #: includes/elementor/widgets/image.php:288
@@ -4710,6 +4758,7 @@ msgstr ""
4710
  #: includes/elementor/widgets/image.php:399
4711
  #: includes/elementor/widgets/modern-button.php:226
4712
  #: includes/elementor/widgets/modern-button.php:238
 
4713
  #: includes/elementor/widgets/quote.php:221
4714
  #: includes/elementor/widgets/recent-comments.php:155
4715
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:282
@@ -4805,8 +4854,8 @@ msgstr ""
4805
  #: includes/elementor/widgets/staff.php:225
4806
  #: includes/elementor/widgets/staff.php:277
4807
  #: includes/elementor/widgets/testimonial.php:154
4808
- #: includes/elementor/widgets/text.php:164
4809
- #: includes/elementor/widgets/text.php:288
4810
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:128
4811
  #: includes/elementor/widgets/theme-elements/copyright.php:115
4812
  #: includes/elementor/widgets/theme-elements/copyright.php:128
@@ -4847,7 +4896,7 @@ msgstr ""
4847
  #: includes/elementor/widgets/gallery.php:274
4848
  #: includes/elementor/widgets/gmap.php:194
4849
  #: includes/elementor/widgets/gmap.php:215
4850
- #: includes/elementor/widgets/heading-modern.php:191
4851
  #: includes/elementor/widgets/image.php:156
4852
  #: includes/elementor/widgets/image.php:189
4853
  #: includes/elementor/widgets/image.php:289
@@ -4856,6 +4905,7 @@ msgstr ""
4856
  #: includes/elementor/widgets/image.php:400
4857
  #: includes/elementor/widgets/modern-button.php:227
4858
  #: includes/elementor/widgets/modern-button.php:239
 
4859
  #: includes/elementor/widgets/quote.php:222
4860
  #: includes/elementor/widgets/recent-comments.php:156
4861
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:283
@@ -4951,8 +5001,8 @@ msgstr ""
4951
  #: includes/elementor/widgets/staff.php:226
4952
  #: includes/elementor/widgets/staff.php:278
4953
  #: includes/elementor/widgets/testimonial.php:155
4954
- #: includes/elementor/widgets/text.php:165
4955
- #: includes/elementor/widgets/text.php:289
4956
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:129
4957
  #: includes/elementor/widgets/theme-elements/copyright.php:116
4958
  #: includes/elementor/widgets/theme-elements/copyright.php:129
@@ -4987,7 +5037,7 @@ msgstr ""
4987
  #: includes/elementor/widgets/button.php:283
4988
  #: includes/elementor/widgets/modern-button.php:320
4989
  #: includes/elementor/widgets/tabs.php:149
4990
- #: includes/elementor/widgets/text.php:1054
4991
  #: includes/elementor/widgets/theme-elements/menu.php:616
4992
  #: includes/elements/audio.php:97
4993
  msgid "Skin"
@@ -5044,6 +5094,7 @@ msgid "Style"
5044
  msgstr ""
5045
 
5046
  #: includes/elementor/widgets/before-after.php:155
 
5047
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:850
5048
  #: includes/elementor/widgets/recent-posts-land-style.php:468
5049
  #: includes/elementor/widgets/recent-posts-masonry.php:564
@@ -5078,8 +5129,8 @@ msgstr ""
5078
  #: includes/elementor/widgets/custom-list.php:419
5079
  #: includes/elementor/widgets/custom-list.php:707
5080
  #: includes/elementor/widgets/divider.php:138
5081
- #: includes/elementor/widgets/heading-modern.php:893
5082
- #: includes/elementor/widgets/heading-modern.php:1046
5083
  #: includes/elementor/widgets/mailchimp.php:207
5084
  #: includes/elementor/widgets/mailchimp.php:454
5085
  #: includes/elementor/widgets/mailchimp.php:682
@@ -5098,8 +5149,9 @@ msgstr ""
5098
  #: includes/elementor/widgets/button.php:100
5099
  #: includes/elementor/widgets/modern-button.php:101
5100
  #: includes/elementor/widgets/modern-button.php:269
5101
- #: includes/elementor/widgets/text.php:278
5102
- #: includes/elementor/widgets/text.php:1018
 
5103
  #: includes/elementor/widgets/theme-elements/modern-search.php:99
5104
  #: includes/elementor/widgets/theme-elements/modern-search.php:434
5105
  #: includes/elementor/widgets/theme-elements/search.php:120
@@ -5117,13 +5169,13 @@ msgid "Button"
5117
  msgstr ""
5118
 
5119
  #: includes/elementor/widgets/button.php:107
5120
- #: includes/elementor/widgets/text.php:298 includes/elements/button.php:43
5121
  #: includes/elements/text.php:651
5122
  msgid "Button label"
5123
  msgstr ""
5124
 
5125
  #: includes/elementor/widgets/button.php:117
5126
- #: includes/elementor/widgets/text.php:322 includes/elements/text.php:844
5127
  msgid "If you want to link your button."
5128
  msgstr ""
5129
 
@@ -5133,10 +5185,10 @@ msgid "Open Video in Lightbox"
5133
  msgstr ""
5134
 
5135
  #: includes/elementor/widgets/button.php:148
5136
- #: includes/elementor/widgets/heading-modern.php:1038
5137
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:1532
5138
  #: includes/elementor/widgets/recent-posts-masonry.php:1073
5139
- #: includes/elementor/widgets/text.php:1419
5140
  msgid "Wrapper"
5141
  msgstr ""
5142
 
@@ -5147,7 +5199,7 @@ msgstr ""
5147
 
5148
  #: includes/elementor/widgets/button.php:160
5149
  #: includes/elementor/widgets/modern-button.php:308
5150
- #: includes/elementor/widgets/text.php:1033 includes/elements/button.php:63
5151
  #: includes/elements/text.php:674 includes/general-hooks.php:698
5152
  #: includes/general-hooks.php:1110
5153
  msgid "Exlarge"
@@ -5156,7 +5208,7 @@ msgstr ""
5156
  #: includes/elementor/widgets/button.php:164
5157
  #: includes/elementor/widgets/divider.php:147
5158
  #: includes/elementor/widgets/modern-button.php:312
5159
- #: includes/elementor/widgets/text.php:1037 includes/elements/button.php:67
5160
  #: includes/elements/divider.php:91 includes/elements/text.php:678
5161
  #: includes/general-hooks.php:702 includes/general-hooks.php:1114
5162
  msgid "Tiny"
@@ -5172,14 +5224,14 @@ msgid "Button shape"
5172
  msgstr ""
5173
 
5174
  #: includes/elementor/widgets/button.php:188
5175
- #: includes/elementor/widgets/text.php:1358 includes/elements/button.php:91
5176
  #: includes/elements/text.php:708
5177
  msgid "Box"
5178
  msgstr ""
5179
 
5180
  #: includes/elementor/widgets/button.php:192
5181
  #: includes/elementor/widgets/modern-button.php:295
5182
- #: includes/elementor/widgets/text.php:1362 includes/elements/button.php:95
5183
  #: includes/elements/text.php:712 includes/general-hooks.php:733
5184
  #: includes/general-hooks.php:1145
5185
  msgid "Round"
@@ -5187,7 +5239,7 @@ msgstr ""
5187
 
5188
  #: includes/elementor/widgets/button.php:196
5189
  #: includes/elementor/widgets/modern-button.php:296
5190
- #: includes/elementor/widgets/text.php:1366 includes/elements/button.php:99
5191
  #: includes/elements/text.php:716 includes/general-hooks.php:737
5192
  #: includes/general-hooks.php:1149
5193
  msgid "Curve"
@@ -5199,7 +5251,7 @@ msgid "Button style"
5199
  msgstr ""
5200
 
5201
  #: includes/elementor/widgets/button.php:215
5202
- #: includes/elementor/widgets/text.php:1386 includes/elements/button.php:122
5203
  #: includes/elements/text.php:742 includes/general-hooks.php:770
5204
  #: includes/general-hooks.php:1182
5205
  msgid "3D"
@@ -5207,7 +5259,7 @@ msgstr ""
5207
 
5208
  #: includes/elementor/widgets/button.php:219
5209
  #: includes/elementor/widgets/modern-button.php:282
5210
- #: includes/elementor/widgets/text.php:1390 includes/elements/button.php:126
5211
  #: includes/elements/text.php:746 includes/general-hooks.php:774
5212
  #: includes/general-hooks.php:1186
5213
  msgid "Outline"
@@ -5226,11 +5278,15 @@ msgstr ""
5226
  #: includes/elementor/widgets/button.php:330
5227
  #: includes/elementor/widgets/carousel-navigation.php:292
5228
  #: includes/elementor/widgets/carousel-navigation.php:399
5229
- #: includes/elementor/widgets/heading-modern.php:949
5230
  #: includes/elementor/widgets/modern-button.php:362
5231
  #: includes/elementor/widgets/modern-button.php:415
5232
  #: includes/elementor/widgets/modern-button.php:859
5233
  #: includes/elementor/widgets/modern-button.php:958
 
 
 
 
5234
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:1340
5235
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:1370
5236
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:1574
@@ -5245,11 +5301,11 @@ msgstr ""
5245
  #: includes/elementor/widgets/recent-posts-masonry.php:1282
5246
  #: includes/elementor/widgets/testimonial.php:895
5247
  #: includes/elementor/widgets/testimonial.php:931
5248
- #: includes/elementor/widgets/text.php:383
5249
- #: includes/elementor/widgets/text.php:554
5250
- #: includes/elementor/widgets/text.php:613
5251
- #: includes/elementor/widgets/text.php:1074
5252
- #: includes/elementor/widgets/text.php:1101
5253
  #: includes/elementor/widgets/theme-elements/menu.php:403
5254
  #: includes/elementor/widgets/theme-elements/menu.php:480
5255
  #: includes/elementor/widgets/theme-elements/menu.php:593
@@ -5273,8 +5329,8 @@ msgstr ""
5273
  #: includes/elementor/widgets/icon.php:114
5274
  #: includes/elementor/widgets/icon.php:194
5275
  #: includes/elementor/widgets/modern-button.php:789
5276
- #: includes/elementor/widgets/text.php:116
5277
- #: includes/elementor/widgets/text.php:126
5278
  #: includes/elementor/widgets/theme-elements/modern-search.php:106
5279
  #: includes/elementor/widgets/theme-elements/modern-search.php:236
5280
  #: includes/elementor/widgets/theme-elements/search.php:106
@@ -5291,45 +5347,45 @@ msgid "Icon"
5291
  msgstr ""
5292
 
5293
  #: includes/elementor/widgets/button.php:365
5294
- #: includes/elementor/widgets/text.php:310 includes/elements/button.php:158
5295
  #: includes/elements/text.php:784
5296
  msgid "Icon for button"
5297
  msgstr ""
5298
 
5299
  #: includes/elementor/widgets/button.php:373
5300
- #: includes/elementor/widgets/text.php:1135 includes/elements/button.php:171
5301
  #: includes/elements/text.php:800 includes/general-hooks.php:377
5302
  msgid "Icon alignment"
5303
  msgstr ""
5304
 
5305
  #: includes/elementor/widgets/button.php:380
5306
  #: includes/elementor/widgets/modern-button.php:804
5307
- #: includes/elementor/widgets/text.php:1142 includes/elements/button.php:191
5308
  #: includes/elements/text.php:809 includes/general-hooks.php:859
5309
  #: includes/general-hooks.php:1271
5310
  msgid "Over"
5311
  msgstr ""
5312
 
5313
  #: includes/elementor/widgets/button.php:381
5314
- #: includes/elementor/widgets/text.php:1143 includes/elements/button.php:195
5315
  #: includes/elements/text.php:810 includes/general-hooks.php:863
5316
  #: includes/general-hooks.php:1275
5317
  msgid "Animate from Left"
5318
  msgstr ""
5319
 
5320
  #: includes/elementor/widgets/button.php:382
5321
- #: includes/elementor/widgets/text.php:1144 includes/elements/text.php:811
5322
  msgid "Animate from Right"
5323
  msgstr ""
5324
 
5325
  #: includes/elementor/widgets/button.php:390
5326
- #: includes/elementor/widgets/text.php:429
5327
- #: includes/elementor/widgets/text.php:1156
5328
  msgid "Icon Size"
5329
  msgstr ""
5330
 
5331
  #: includes/elementor/widgets/button.php:413
5332
- #: includes/elementor/widgets/text.php:1341
5333
  #: includes/elementor/widgets/theme-elements/search.php:245
5334
  msgid "Icon Margin"
5335
  msgstr ""
@@ -5355,12 +5411,12 @@ msgstr ""
5355
 
5356
  #: includes/elementor/widgets/button.php:516
5357
  #: includes/elementor/widgets/button.php:554
5358
- #: includes/elementor/widgets/heading-modern.php:378
5359
- #: includes/elementor/widgets/heading-modern.php:416
5360
- #: includes/elementor/widgets/heading-modern.php:563
5361
- #: includes/elementor/widgets/heading-modern.php:601
5362
- #: includes/elementor/widgets/heading-modern.php:734
5363
- #: includes/elementor/widgets/heading-modern.php:772
5364
  #: includes/elementor/widgets/image.php:680
5365
  #: includes/elementor/widgets/modern-button.php:508
5366
  #: includes/elementor/widgets/modern-button.php:546
@@ -5368,15 +5424,17 @@ msgstr ""
5368
  #: includes/elementor/widgets/modern-button.php:646
5369
  #: includes/elementor/widgets/modern-button.php:720
5370
  #: includes/elementor/widgets/modern-button.php:758
 
 
5371
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:1857
5372
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:1913
5373
  #: includes/elementor/widgets/recent-posts-masonry.php:1255
5374
  #: includes/elementor/widgets/recent-posts-masonry.php:1311
5375
- #: includes/elementor/widgets/text.php:752
5376
- #: includes/elementor/widgets/text.php:848
5377
- #: includes/elementor/widgets/text.php:959
5378
- #: includes/elementor/widgets/text.php:1269
5379
- #: includes/elementor/widgets/text.php:1307
5380
  #: includes/elementor/widgets/theme-elements/current-time.php:184
5381
  #: includes/elementor/widgets/theme-elements/logo.php:507
5382
  #: includes/elementor/widgets/theme-elements/logo.php:599
@@ -5458,8 +5516,9 @@ msgstr ""
5458
  #: includes/elementor/widgets/modern-button.php:304
5459
  #: includes/elementor/widgets/modern-button.php:824
5460
  #: includes/elementor/widgets/modern-button.php:923
 
5461
  #: includes/elementor/widgets/testimonial.php:756
5462
- #: includes/elementor/widgets/text.php:1029
5463
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:268
5464
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:400
5465
  #: includes/elementor/widgets/theme-elements/modern-search.php:264
@@ -5809,6 +5868,7 @@ msgid "List Items"
5809
  msgstr ""
5810
 
5811
  #: includes/elementor/widgets/custom-list.php:374
 
5812
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:120
5813
  #: includes/elementor/widgets/recent-posts-masonry.php:120
5814
  #: includes/elementor/widgets/recent-posts-tiles-carousel.php:117
@@ -5902,7 +5962,7 @@ msgstr ""
5902
 
5903
  #: includes/elementor/widgets/custom-list.php:599
5904
  #: includes/elementor/widgets/custom-list.php:686
5905
- #: includes/elementor/widgets/heading-modern.php:876
5906
  msgid "Weight"
5907
  msgstr ""
5908
 
@@ -5911,7 +5971,7 @@ msgid "Left Space"
5911
  msgstr ""
5912
 
5913
  #: includes/elementor/widgets/custom-list.php:651
5914
- #: includes/elementor/widgets/heading-modern.php:188
5915
  #: includes/elements/custom-list.php:172
5916
  msgid "Display Divider"
5917
  msgstr ""
@@ -5941,7 +6001,7 @@ msgstr ""
5941
 
5942
  #: includes/elementor/widgets/divider.php:47
5943
  #: includes/elementor/widgets/divider.php:95
5944
- #: includes/elementor/widgets/heading-modern.php:865
5945
  #: includes/elements/divider.php:16
5946
  msgid "Divider"
5947
  msgstr ""
@@ -5953,8 +6013,8 @@ msgstr ""
5953
  #: includes/elementor/widgets/divider.php:119
5954
  #: includes/elementor/widgets/icon.php:140
5955
  #: includes/elementor/widgets/staff.php:200
5956
- #: includes/elementor/widgets/text.php:460
5957
- #: includes/elementor/widgets/text.php:655
5958
  #: includes/elements/about-widget.php:121 includes/elements/divider.php:69
5959
  #: includes/elements/dropcap.php:72 includes/elements/staff.php:168
5960
  #: includes/elements/text.php:539 includes/elements/text.php:581
@@ -5985,7 +6045,7 @@ msgid "Custom width"
5985
  msgstr ""
5986
 
5987
  #: includes/elementor/widgets/divider.php:193
5988
- #: includes/elementor/widgets/heading-modern.php:154
5989
  #: includes/elementor/widgets/icon.php:166
5990
  #: includes/elementor/widgets/image.php:314
5991
  #: includes/elementor/widgets/modern-button.php:180
@@ -6132,6 +6192,7 @@ msgid "Pattern 7"
6132
  msgstr ""
6133
 
6134
  #: includes/elementor/widgets/gallery.php:152
 
6135
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:128
6136
  #: includes/elementor/widgets/recent-posts-masonry.php:128
6137
  #: includes/elementor/widgets/recent-products.php:137
@@ -6266,65 +6327,65 @@ msgid ""
6266
  "and insert it in customizer \"Google Maps API Key\" field."
6267
  msgstr ""
6268
 
6269
- #: includes/elementor/widgets/heading-modern.php:52
6270
  msgid "Modern Heading"
6271
  msgstr ""
6272
 
6273
- #: includes/elementor/widgets/heading-modern.php:100
6274
- #: includes/elementor/widgets/heading-modern.php:339
6275
  msgid "Heading"
6276
  msgstr ""
6277
 
6278
- #: includes/elementor/widgets/heading-modern.php:112
6279
  msgid "Add your heading text here .."
6280
  msgstr ""
6281
 
6282
- #: includes/elementor/widgets/heading-modern.php:134
6283
- #: includes/elementor/widgets/heading-modern.php:284
6284
  msgid "HTML Tag"
6285
  msgstr ""
6286
 
6287
- #: includes/elementor/widgets/heading-modern.php:201
6288
  msgid "Divider Position"
6289
  msgstr ""
6290
 
6291
- #: includes/elementor/widgets/heading-modern.php:204
6292
  msgid "Before Heading"
6293
  msgstr ""
6294
 
6295
- #: includes/elementor/widgets/heading-modern.php:205
6296
  msgid "Between Headings"
6297
  msgstr ""
6298
 
6299
- #: includes/elementor/widgets/heading-modern.php:206
6300
  msgid "After Headings"
6301
  msgstr ""
6302
 
6303
- #: includes/elementor/widgets/heading-modern.php:224
6304
- #: includes/elementor/widgets/heading-modern.php:509
6305
  msgid "Secondary Heading"
6306
  msgstr ""
6307
 
6308
- #: includes/elementor/widgets/heading-modern.php:231
6309
  msgid "Before Text"
6310
  msgstr ""
6311
 
6312
- #: includes/elementor/widgets/heading-modern.php:244
6313
  #: includes/elementor/widgets/modern-button.php:117
6314
  #: includes/elementor/widgets/modern-button.php:565
6315
  #: includes/elements/highlight.php:18
6316
  msgid "Highlighted Text"
6317
  msgstr ""
6318
 
6319
- #: includes/elementor/widgets/heading-modern.php:257
6320
  #: includes/elementor/widgets/modern-button.php:126
6321
  #: includes/elementor/widgets/modern-button.php:677
6322
  msgid "After Text"
6323
  msgstr ""
6324
 
6325
- #: includes/elementor/widgets/heading-modern.php:462
6326
- #: includes/elementor/widgets/heading-modern.php:647
6327
- #: includes/elementor/widgets/heading-modern.php:818
6328
  #: includes/elementor/widgets/image.php:484
6329
  #: includes/elementor/widgets/svg.php:305
6330
  #: includes/elementor/widgets/testimonial.php:306
@@ -6333,7 +6394,7 @@ msgstr ""
6333
  msgid "Border radius"
6334
  msgstr ""
6335
 
6336
- #: includes/elementor/widgets/heading-modern.php:695
6337
  msgid "Secondary Heading - Highlighted"
6338
  msgstr ""
6339
 
@@ -6410,8 +6471,8 @@ msgstr ""
6410
  #: includes/elementor/widgets/svg.php:110
6411
  #: includes/elementor/widgets/testimonial.php:102
6412
  #: includes/elementor/widgets/testimonial.php:267
6413
- #: includes/elementor/widgets/text.php:117
6414
- #: includes/elementor/widgets/text.php:139
6415
  #: includes/elementor/widgets/theme-elements/logo.php:214
6416
  #: includes/elements/about-widget.php:100 includes/elements/image.php:15
6417
  #: includes/elements/image.php:57 includes/elements/text.php:375
@@ -6510,7 +6571,7 @@ msgstr ""
6510
  #: includes/elementor/widgets/recent-posts-timeline.php:192
6511
  #: includes/elementor/widgets/recent-products.php:224
6512
  #: includes/elementor/widgets/staff.php:223
6513
- #: includes/elementor/widgets/text.php:162
6514
  msgid "Preload image"
6515
  msgstr ""
6516
 
@@ -6521,7 +6582,7 @@ msgstr ""
6521
  #: includes/elementor/widgets/recent-posts-timeline.php:207
6522
  #: includes/elementor/widgets/recent-products.php:239
6523
  #: includes/elementor/widgets/staff.php:235
6524
- #: includes/elementor/widgets/text.php:177
6525
  msgid "While loading image display"
6526
  msgstr ""
6527
 
@@ -6532,7 +6593,7 @@ msgstr ""
6532
  #: includes/elementor/widgets/recent-posts-timeline.php:222
6533
  #: includes/elementor/widgets/recent-products.php:254
6534
  #: includes/elementor/widgets/staff.php:250
6535
- #: includes/elementor/widgets/text.php:193
6536
  msgid "Placeholder color while loading image"
6537
  msgstr ""
6538
 
@@ -6669,113 +6730,534 @@ msgstr ""
6669
  msgid "Below"
6670
  msgstr ""
6671
 
6672
- #: includes/elementor/widgets/quote.php:50
6673
- msgid "Blockquote"
6674
- msgstr ""
6675
-
6676
- #: includes/elementor/widgets/quote.php:106
6677
- msgid "Enter a text as a quote content."
6678
- msgstr ""
6679
-
6680
- #: includes/elementor/widgets/quote.php:108
6681
- msgid "Type your description here"
6682
  msgstr ""
6683
 
6684
- #: includes/elementor/widgets/quote.php:156 includes/elements/quote.php:103
6685
- msgid "Text alignment"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6686
  msgstr ""
6687
 
6688
- #: includes/elementor/widgets/quote.php:211
6689
- msgid "Quote Symbol"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6690
  msgstr ""
6691
 
6692
- #: includes/elementor/widgets/quote.php:219 includes/elements/quote.php:142
6693
- msgid "Insert quote symbol"
6694
  msgstr ""
6695
 
6696
- #: includes/elementor/widgets/quote.php:230
6697
- msgid "Quote symbol color"
 
 
6698
  msgstr ""
6699
 
6700
- #: includes/elementor/widgets/quote.php:256
6701
- msgid "Text indent"
6702
  msgstr ""
6703
 
6704
- #: includes/elementor/widgets/quote.php:305
6705
- msgid "Block"
6706
  msgstr ""
6707
 
6708
- #: includes/elementor/widgets/quote.php:322
6709
- #: includes/elementor/widgets/recent-posts-grid-carousel.php:200
6710
- #: includes/elements/instagram-feed.php:224
6711
- #: includes/elements/recent-posts-grid-carousel.php:579
6712
- msgid "Background color"
6713
  msgstr ""
6714
 
6715
- #: includes/elementor/widgets/recent-comments.php:49
6716
- msgid "Recent Commented Posts"
6717
  msgstr ""
6718
 
6719
- #: includes/elementor/widgets/recent-comments.php:78
6720
- msgid "All Post Types"
6721
  msgstr ""
6722
 
6723
- #: includes/elementor/widgets/recent-comments.php:130
6724
- #: includes/elementor/widgets/theme-elements/modern-search.php:143
6725
- msgid "Post Types"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6726
  msgstr ""
6727
 
6728
- #: includes/elementor/widgets/recent-comments.php:141
6729
- msgid "Number of comments to show"
 
 
6730
  msgstr ""
6731
 
6732
- #: includes/elementor/widgets/recent-comments.php:153
6733
- msgid "Display info"
6734
  msgstr ""
6735
 
6736
- #: includes/elementor/widgets/recent-comments.php:232
6737
- #: includes/elementor/widgets/recent-comments.php:315
6738
- #: includes/elementor/widgets/recent-posts-grid-carousel.php:1107
6739
- #: includes/elementor/widgets/recent-posts-grid-carousel.php:1211
6740
- #: includes/elementor/widgets/recent-posts-grid-carousel.php:1293
6741
- #: includes/elementor/widgets/recent-posts-grid-carousel.php:1415
6742
- #: includes/elementor/widgets/recent-posts-grid-carousel.php:1510
6743
- #: includes/elementor/widgets/recent-posts-land-style.php:664
6744
- #: includes/elementor/widgets/recent-posts-land-style.php:768
6745
- #: includes/elementor/widgets/recent-posts-land-style.php:850
6746
- #: includes/elementor/widgets/recent-posts-land-style.php:936
6747
- #: includes/elementor/widgets/recent-posts-masonry.php:780
6748
- #: includes/elementor/widgets/recent-posts-masonry.php:884
6749
- #: includes/elementor/widgets/recent-posts-masonry.php:966
6750
- #: includes/elementor/widgets/recent-posts-masonry.php:1052
6751
- #: includes/elementor/widgets/recent-posts-tiles-carousel.php:554
6752
- #: includes/elementor/widgets/recent-posts-tiles-carousel.php:658
6753
- #: includes/elementor/widgets/recent-posts-tiles.php:495
6754
- #: includes/elementor/widgets/recent-posts-tiles.php:599
6755
- #: includes/elementor/widgets/recent-posts-timeline.php:677
6756
- #: includes/elementor/widgets/recent-posts-timeline.php:781
6757
- #: includes/elementor/widgets/recent-posts-timeline.php:863
6758
- #: includes/elementor/widgets/recent-posts-timeline.php:949
6759
- #: includes/elementor/widgets/recent-products.php:684
6760
- #: includes/elementor/widgets/staff.php:550
6761
- #: includes/elementor/widgets/staff.php:612
6762
- #: includes/elementor/widgets/staff.php:674
6763
- #: includes/elementor/widgets/testimonial.php:553
6764
- #: includes/elementor/widgets/testimonial.php:774
6765
- #: includes/elementor/widgets/text.php:760
6766
- #: includes/elementor/widgets/text.php:873
6767
- #: includes/elementor/widgets/text.php:996
6768
- msgid "Bottom space"
6769
  msgstr ""
6770
 
6771
- #: includes/elementor/widgets/recent-comments.php:254
6772
- msgid "Meta Info"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6773
  msgstr ""
6774
 
6775
- #: includes/elementor/widgets/recent-comments.php:331
6776
- #: includes/elementor/widgets/recent-posts-grid-carousel.php:1230
6777
- #: includes/elementor/widgets/recent-posts-land-style.php:787
6778
- #: includes/elementor/widgets/recent-posts-masonry.php:903
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6779
  #: includes/elementor/widgets/recent-posts-tiles-carousel.php:677
6780
  #: includes/elementor/widgets/recent-posts-tiles.php:618
6781
  #: includes/elementor/widgets/recent-posts-timeline.php:800
@@ -7183,140 +7665,34 @@ msgstr ""
7183
  #: includes/elementor/widgets/recent-posts-masonry.php:385
7184
  #: includes/elementor/widgets/recent-posts-masonry.php:1208
7185
  #: includes/elementor/widgets/recent-posts-timeline.php:314
7186
- #: includes/elementor/widgets/text.php:300
7187
  #: includes/elements/recent-posts-grid-carousel.php:447
7188
  #: includes/elements/recent-posts-land-style.php:371
7189
  #: includes/elements/recent-posts-masonry.php:347
7190
- #: includes/elements/recent-posts-timeline.php:392
7191
- msgid "Read More"
7192
- msgstr ""
7193
-
7194
- #: includes/elementor/widgets/recent-posts-grid-carousel.php:622
7195
- #: includes/elementor/widgets/recent-posts-land-style.php:316
7196
- #: includes/elementor/widgets/recent-posts-masonry.php:412
7197
- #: includes/elementor/widgets/recent-posts-timeline.php:341
7198
- msgid "Display Author in Footer"
7199
- msgstr ""
7200
-
7201
- #: includes/elementor/widgets/recent-posts-grid-carousel.php:623
7202
- #: includes/elementor/widgets/recent-posts-land-style.php:317
7203
- #: includes/elementor/widgets/recent-posts-masonry.php:413
7204
- #: includes/elementor/widgets/recent-posts-timeline.php:342
7205
- msgid "Enable it to display author name in footer"
7206
- msgstr ""
7207
-
7208
- #: includes/elementor/widgets/recent-posts-grid-carousel.php:638
7209
- msgid "Meta info position"
7210
- msgstr ""
7211
-
7212
- #: includes/elementor/widgets/recent-posts-grid-carousel.php:660
7213
- #: includes/elementor/widgets/recent-posts-land-style.php:338
7214
- #: includes/elementor/widgets/recent-posts-masonry.php:434
7215
- #: includes/elementor/widgets/recent-posts-tiles-carousel.php:329
7216
- #: includes/elementor/widgets/recent-posts-tiles.php:231
7217
- #: includes/elementor/widgets/recent-posts-timeline.php:363
7218
- #: includes/elementor/widgets/recent-products.php:308
7219
- #: includes/elements/latest-posts-slider.php:70
7220
- #: includes/elements/latest-posts-slider.php:84
7221
- #: includes/elements/latest-posts-slider.php:98
7222
- #: includes/elements/latest-posts-slider.php:112
7223
- #: includes/elements/latest-posts-slider.php:126
7224
- #: includes/elements/latest-posts-slider.php:150
7225
- #: includes/elements/latest-posts-slider.php:168
7226
- #: includes/elements/latest-posts-slider.php:238
7227
- #: includes/elements/recent-posts-grid-carousel.php:95
7228
- #: includes/elements/recent-posts-grid-carousel.php:109
7229
- #: includes/elements/recent-posts-grid-carousel.php:142
7230
- #: includes/elements/recent-posts-grid-carousel.php:155
7231
- #: includes/elements/recent-posts-grid-carousel.php:196
7232
- #: includes/elements/recent-posts-grid-carousel.php:214
7233
- #: includes/elements/recent-posts-grid-carousel.php:228
7234
- #: includes/elements/recent-posts-grid-carousel.php:242
7235
- #: includes/elements/recent-posts-grid-carousel.php:256
7236
- #: includes/elements/recent-posts-grid-carousel.php:270
7237
- #: includes/elements/recent-posts-land-style.php:82
7238
- #: includes/elements/recent-posts-land-style.php:96
7239
- #: includes/elements/recent-posts-land-style.php:129
7240
- #: includes/elements/recent-posts-land-style.php:142
7241
- #: includes/elements/recent-posts-land-style.php:158
7242
- #: includes/elements/recent-posts-land-style.php:183
7243
- #: includes/elements/recent-posts-land-style.php:201
7244
- #: includes/elements/recent-posts-land-style.php:215
7245
- #: includes/elements/recent-posts-land-style.php:229
7246
- #: includes/elements/recent-posts-land-style.php:243
7247
- #: includes/elements/recent-posts-land-style.php:257
7248
- #: includes/elements/recent-posts-masonry.php:82
7249
- #: includes/elements/recent-posts-masonry.php:96
7250
- #: includes/elements/recent-posts-masonry.php:109
7251
- #: includes/elements/recent-posts-masonry.php:122
7252
- #: includes/elements/recent-posts-masonry.php:163
7253
- #: includes/elements/recent-posts-masonry.php:181
7254
- #: includes/elements/recent-posts-masonry.php:195
7255
- #: includes/elements/recent-posts-masonry.php:209
7256
- #: includes/elements/recent-posts-masonry.php:223
7257
- #: includes/elements/recent-posts-masonry.php:237
7258
- #: includes/elements/recent-posts-tiles-carousel.php:68
7259
- #: includes/elements/recent-posts-tiles-carousel.php:82
7260
- #: includes/elements/recent-posts-tiles-carousel.php:96
7261
- #: includes/elements/recent-posts-tiles-carousel.php:109
7262
- #: includes/elements/recent-posts-tiles-carousel.php:122
7263
- #: includes/elements/recent-posts-tiles-carousel.php:138
7264
- #: includes/elements/recent-posts-tiles-carousel.php:163
7265
- #: includes/elements/recent-posts-tiles-carousel.php:181
7266
- #: includes/elements/recent-posts-tiles-carousel.php:195
7267
- #: includes/elements/recent-posts-tiles-carousel.php:209
7268
- #: includes/elements/recent-posts-tiles-carousel.php:223
7269
- #: includes/elements/recent-posts-tiles-carousel.php:248
7270
- #: includes/elements/recent-posts-tiles-carousel.php:266
7271
- #: includes/elements/recent-posts-tiles-carousel.php:280
7272
- #: includes/elements/recent-posts-tiles.php:81
7273
- #: includes/elements/recent-posts-tiles.php:95
7274
- #: includes/elements/recent-posts-tiles.php:108
7275
- #: includes/elements/recent-posts-tiles.php:121
7276
- #: includes/elements/recent-posts-tiles.php:137
7277
- #: includes/elements/recent-posts-tiles.php:193
7278
- #: includes/elements/recent-posts-tiles.php:211
7279
- #: includes/elements/recent-posts-tiles.php:225
7280
- #: includes/elements/recent-posts-tiles.php:239
7281
- #: includes/elements/recent-posts-tiles.php:253
7282
- #: includes/elements/recent-posts-tiles.php:278
7283
- #: includes/elements/recent-posts-tiles.php:296
7284
- #: includes/elements/recent-posts-tiles.php:310
7285
- #: includes/elements/recent-posts-timeline.php:76
7286
- #: includes/elements/recent-posts-timeline.php:90
7287
- #: includes/elements/recent-posts-timeline.php:103
7288
- #: includes/elements/recent-posts-timeline.php:116
7289
- #: includes/elements/recent-posts-timeline.php:132
7290
- #: includes/elements/recent-posts-timeline.php:188
7291
- #: includes/elements/recent-posts-timeline.php:206
7292
- #: includes/elements/recent-posts-timeline.php:220
7293
- #: includes/elements/recent-posts-timeline.php:234
7294
- #: includes/elements/recent-posts-timeline.php:248
7295
- #: includes/elements/recent-posts-timeline.php:262
7296
- msgid "Query"
7297
  msgstr ""
7298
 
7299
- #: includes/elementor/widgets/recent-posts-grid-carousel.php:667
7300
- msgid "Use wp query"
 
 
 
7301
  msgstr ""
7302
 
7303
- #: includes/elementor/widgets/recent-posts-grid-carousel.php:679
7304
- #: includes/elementor/widgets/recent-posts-land-style.php:345
7305
- #: includes/elementor/widgets/recent-posts-masonry.php:441
7306
- #: includes/elementor/widgets/recent-posts-tiles-carousel.php:336
7307
- #: includes/elementor/widgets/recent-posts-tiles.php:238
7308
- #: includes/elementor/widgets/recent-posts-timeline.php:370
7309
- #: includes/elementor/widgets/recent-products.php:315
7310
- #: includes/elements/popular-posts-widget.php:236
7311
- #: includes/elements/recent-posts-grid-carousel.php:84
7312
- #: includes/elements/recent-posts-land-style.php:71
7313
- #: includes/elements/recent-posts-masonry.php:71
7314
- #: includes/elements/recent-posts-tiles-carousel.php:57
7315
- #: includes/elements/recent-posts-tiles.php:70
7316
- #: includes/elements/recent-posts-timeline.php:65
7317
- #: includes/elements/recent-posts-widget.php:191
7318
- #: includes/elements/recent-products.php:70
7319
- msgid "Categories"
7320
  msgstr ""
7321
 
7322
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:680
@@ -7337,23 +7713,6 @@ msgstr ""
7337
  msgid "Specifies a category that you want to show posts from it."
7338
  msgstr ""
7339
 
7340
- #: includes/elementor/widgets/recent-posts-grid-carousel.php:694
7341
- #: includes/elementor/widgets/recent-posts-land-style.php:357
7342
- #: includes/elementor/widgets/recent-posts-masonry.php:453
7343
- #: includes/elementor/widgets/recent-posts-tiles-carousel.php:348
7344
- #: includes/elementor/widgets/recent-posts-tiles.php:250
7345
- #: includes/elementor/widgets/recent-posts-timeline.php:382
7346
- #: includes/elementor/widgets/recent-products.php:327
7347
- #: includes/elements/popular-posts-widget.php:65
7348
- #: includes/elements/recent-posts-grid-carousel.php:99
7349
- #: includes/elements/recent-posts-land-style.php:86
7350
- #: includes/elements/recent-posts-masonry.php:86
7351
- #: includes/elements/recent-posts-tiles.php:85
7352
- #: includes/elements/recent-posts-timeline.php:80
7353
- #: includes/elements/recent-posts-widget.php:71
7354
- msgid "Number of posts to show"
7355
- msgstr ""
7356
-
7357
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:706
7358
  #: includes/elementor/widgets/recent-posts-land-style.php:369
7359
  #: includes/elementor/widgets/recent-posts-masonry.php:465
@@ -7415,135 +7774,6 @@ msgstr ""
7415
  msgid "Exclude quote and link post formats"
7416
  msgstr ""
7417
 
7418
- #: includes/elementor/widgets/recent-posts-grid-carousel.php:775
7419
- #: includes/elementor/widgets/recent-posts-land-style.php:408
7420
- #: includes/elementor/widgets/recent-posts-masonry.php:504
7421
- #: includes/elementor/widgets/recent-posts-tiles-carousel.php:399
7422
- #: includes/elementor/widgets/recent-posts-tiles.php:301
7423
- #: includes/elementor/widgets/recent-posts-timeline.php:433
7424
- #: includes/elementor/widgets/recent-products.php:378
7425
- #: includes/elements/latest-posts-slider.php:130
7426
- #: includes/elements/popular-posts-widget.php:189
7427
- #: includes/elements/recent-posts-grid-carousel.php:175
7428
- #: includes/elements/recent-posts-land-style.php:162
7429
- #: includes/elements/recent-posts-masonry.php:142
7430
- #: includes/elements/recent-posts-tiles-carousel.php:142
7431
- #: includes/elements/recent-posts-tiles-carousel.php:227
7432
- #: includes/elements/recent-posts-tiles.php:172
7433
- #: includes/elements/recent-posts-tiles.php:257
7434
- #: includes/elements/recent-posts-timeline.php:167
7435
- #: includes/elements/recent-posts-widget.php:149
7436
- #: includes/elements/recent-products.php:121
7437
- msgid "Order by"
7438
- msgstr ""
7439
-
7440
- #: includes/elementor/widgets/recent-posts-grid-carousel.php:784
7441
- #: includes/elementor/widgets/recent-posts-land-style.php:417
7442
- #: includes/elementor/widgets/recent-posts-masonry.php:513
7443
- #: includes/elementor/widgets/recent-posts-tiles-carousel.php:408
7444
- #: includes/elementor/widgets/recent-posts-tiles.php:310
7445
- #: includes/elementor/widgets/recent-posts-timeline.php:442
7446
- #: includes/elementor/widgets/recent-products.php:387
7447
- #: includes/elements/latest-posts-slider.php:141
7448
- #: includes/elements/popular-posts-widget.php:202
7449
- #: includes/elements/recent-posts-grid-carousel.php:188
7450
- #: includes/elements/recent-posts-land-style.php:175
7451
- #: includes/elements/recent-posts-masonry.php:155
7452
- #: includes/elements/recent-posts-tiles-carousel.php:155
7453
- #: includes/elements/recent-posts-tiles-carousel.php:240
7454
- #: includes/elements/recent-posts-tiles.php:185
7455
- #: includes/elements/recent-posts-tiles.php:270
7456
- #: includes/elements/recent-posts-timeline.php:180
7457
- #: includes/elements/recent-posts-widget.php:162
7458
- #: includes/elements/recent-products.php:134
7459
- msgid "Comments"
7460
- msgstr ""
7461
-
7462
- #: includes/elementor/widgets/recent-posts-grid-carousel.php:785
7463
- #: includes/elementor/widgets/recent-posts-land-style.php:418
7464
- #: includes/elementor/widgets/recent-posts-masonry.php:514
7465
- #: includes/elementor/widgets/recent-posts-tiles-carousel.php:409
7466
- #: includes/elementor/widgets/recent-posts-tiles.php:311
7467
- #: includes/elementor/widgets/recent-posts-timeline.php:443
7468
- #: includes/elementor/widgets/recent-products.php:388
7469
- #: includes/elements/latest-posts-slider.php:142
7470
- #: includes/elements/popular-posts-widget.php:203
7471
- #: includes/elements/recent-posts-grid-carousel.php:189
7472
- #: includes/elements/recent-posts-land-style.php:176
7473
- #: includes/elements/recent-posts-masonry.php:156
7474
- #: includes/elements/recent-posts-tiles-carousel.php:156
7475
- #: includes/elements/recent-posts-tiles-carousel.php:241
7476
- #: includes/elements/recent-posts-tiles.php:186
7477
- #: includes/elements/recent-posts-tiles.php:271
7478
- #: includes/elements/recent-posts-timeline.php:181
7479
- #: includes/elements/recent-posts-widget.php:163
7480
- #: includes/elements/recent-products.php:135
7481
- msgid "Date Modified"
7482
- msgstr ""
7483
-
7484
- #: includes/elementor/widgets/recent-posts-grid-carousel.php:787
7485
- #: includes/elementor/widgets/recent-posts-land-style.php:420
7486
- #: includes/elementor/widgets/recent-posts-masonry.php:516
7487
- #: includes/elementor/widgets/recent-posts-tiles-carousel.php:411
7488
- #: includes/elementor/widgets/recent-posts-tiles.php:313
7489
- #: includes/elementor/widgets/recent-posts-timeline.php:445
7490
- #: includes/elementor/widgets/recent-products.php:390
7491
- #: includes/elements/recent-posts-grid-carousel.php:191
7492
- #: includes/elements/recent-posts-land-style.php:178
7493
- #: includes/elements/recent-posts-masonry.php:158
7494
- #: includes/elements/recent-posts-tiles-carousel.php:158
7495
- #: includes/elements/recent-posts-tiles-carousel.php:243
7496
- #: includes/elements/recent-posts-tiles.php:188
7497
- #: includes/elements/recent-posts-tiles.php:273
7498
- #: includes/elements/recent-posts-timeline.php:183
7499
- #: includes/elements/recent-products.php:137
7500
- msgid "Inserted Post IDs"
7501
- msgstr ""
7502
-
7503
- #: includes/elementor/widgets/recent-posts-grid-carousel.php:802
7504
- #: includes/elementor/widgets/recent-posts-land-style.php:432
7505
- #: includes/elementor/widgets/recent-posts-masonry.php:528
7506
- #: includes/elementor/widgets/recent-posts-tiles-carousel.php:423
7507
- #: includes/elementor/widgets/recent-posts-tiles.php:325
7508
- #: includes/elementor/widgets/recent-posts-timeline.php:457
7509
- #: includes/elementor/widgets/recent-products.php:402
7510
- #: includes/elements/latest-posts-slider.php:160
7511
- #: includes/elements/popular-posts-widget.php:221
7512
- #: includes/elements/recent-posts-grid-carousel.php:208
7513
- #: includes/elements/recent-posts-land-style.php:195
7514
- #: includes/elements/recent-posts-masonry.php:175
7515
- #: includes/elements/recent-posts-tiles-carousel.php:175
7516
- #: includes/elements/recent-posts-tiles-carousel.php:260
7517
- #: includes/elements/recent-posts-tiles.php:205
7518
- #: includes/elements/recent-posts-tiles.php:290
7519
- #: includes/elements/recent-posts-timeline.php:200
7520
- #: includes/elements/recent-posts-widget.php:181
7521
- #: includes/elements/recent-products.php:154
7522
- msgid "Descending"
7523
- msgstr ""
7524
-
7525
- #: includes/elementor/widgets/recent-posts-grid-carousel.php:803
7526
- #: includes/elementor/widgets/recent-posts-land-style.php:433
7527
- #: includes/elementor/widgets/recent-posts-masonry.php:529
7528
- #: includes/elementor/widgets/recent-posts-tiles-carousel.php:424
7529
- #: includes/elementor/widgets/recent-posts-tiles.php:326
7530
- #: includes/elementor/widgets/recent-posts-timeline.php:458
7531
- #: includes/elementor/widgets/recent-products.php:403
7532
- #: includes/elements/latest-posts-slider.php:161
7533
- #: includes/elements/popular-posts-widget.php:222
7534
- #: includes/elements/recent-posts-grid-carousel.php:209
7535
- #: includes/elements/recent-posts-land-style.php:196
7536
- #: includes/elements/recent-posts-masonry.php:176
7537
- #: includes/elements/recent-posts-tiles-carousel.php:176
7538
- #: includes/elements/recent-posts-tiles-carousel.php:261
7539
- #: includes/elements/recent-posts-tiles.php:206
7540
- #: includes/elements/recent-posts-tiles.php:291
7541
- #: includes/elements/recent-posts-timeline.php:201
7542
- #: includes/elements/recent-posts-widget.php:182
7543
- #: includes/elements/recent-products.php:155
7544
- msgid "Ascending"
7545
- msgstr ""
7546
-
7547
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:814
7548
  #: includes/elementor/widgets/recent-posts-land-style.php:441
7549
  #: includes/elementor/widgets/recent-posts-masonry.php:537
@@ -7807,8 +8037,8 @@ msgid "Padding for content wrapper"
7807
  msgstr ""
7808
 
7809
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:1629
7810
- #: includes/elementor/widgets/text.php:622
7811
- #: includes/elementor/widgets/text.php:1543
7812
  msgid "Transition duration"
7813
  msgstr ""
7814
 
@@ -7816,11 +8046,6 @@ msgstr ""
7816
  msgid "Flip Wrapper"
7817
  msgstr ""
7818
 
7819
- #: includes/elementor/widgets/recent-posts-grid-carousel.php:1934
7820
- #: includes/elementor/widgets/recent-posts-masonry.php:1332
7821
- msgid "Button Padding"
7822
- msgstr ""
7823
-
7824
  #: includes/elementor/widgets/recent-posts-land-style.php:49
7825
  msgid "Land Style Posts"
7826
  msgstr ""
@@ -7908,11 +8133,6 @@ msgstr ""
7908
  msgid "Display post meta"
7909
  msgstr ""
7910
 
7911
- #: includes/elementor/widgets/recent-products.php:49
7912
- #: includes/elements/recent-products.php:15
7913
- msgid "Recent Products"
7914
- msgstr ""
7915
-
7916
  #: includes/elementor/widgets/recent-products.php:185
7917
  #: includes/elements/recent-products.php:220
7918
  msgid "Display products price"
@@ -7932,45 +8152,6 @@ msgstr ""
7932
  msgid "Display Add To Cart"
7933
  msgstr ""
7934
 
7935
- #: includes/elementor/widgets/recent-products.php:411
7936
- #: includes/elements/recent-products.php:164
7937
- msgid "Only products"
7938
- msgstr ""
7939
-
7940
- #: includes/elementor/widgets/recent-products.php:412
7941
- #: includes/elements/recent-products.php:165
7942
- msgid ""
7943
- "If you intend to display ONLY specific products, you should specify the "
7944
- "products here. You have to insert the Products IDs that are separated by "
7945
- "comma (eg. 53,34,87,25)."
7946
- msgstr ""
7947
-
7948
- #: includes/elementor/widgets/recent-products.php:420
7949
- #: includes/elements/recent-products.php:178
7950
- msgid "Include products"
7951
- msgstr ""
7952
-
7953
- #: includes/elementor/widgets/recent-products.php:421
7954
- #: includes/elements/recent-products.php:179
7955
- msgid ""
7956
- "If you intend to include additional products, you should specify the "
7957
- "products here. You have to insert the Products IDs that are separated by "
7958
- "comma (eg. 53,34,87,25)"
7959
- msgstr ""
7960
-
7961
- #: includes/elementor/widgets/recent-products.php:429
7962
- #: includes/elements/recent-products.php:192
7963
- msgid "Exclude products"
7964
- msgstr ""
7965
-
7966
- #: includes/elementor/widgets/recent-products.php:430
7967
- #: includes/elements/recent-products.php:193
7968
- msgid ""
7969
- "If you intend to exclude specific products from result, you should specify "
7970
- "the products here. You have to insert the Products IDs that are separated "
7971
- "by comma (eg. 53,34,87,25)"
7972
- msgstr ""
7973
-
7974
  #: includes/elementor/widgets/recent-products.php:580
7975
  msgid "Spacing"
7976
  msgstr ""
@@ -8039,7 +8220,7 @@ msgid "Staff Name"
8039
  msgstr ""
8040
 
8041
  #: includes/elementor/widgets/staff.php:108
8042
- #: includes/elementor/widgets/text.php:233 includes/elements/text.php:44
8043
  msgid "Text title, leave it empty if you don`t need title."
8044
  msgstr ""
8045
 
@@ -8052,7 +8233,7 @@ msgid "Staff Page Link"
8052
  msgstr ""
8053
 
8054
  #: includes/elementor/widgets/staff.php:141
8055
- #: includes/elementor/widgets/text.php:264 includes/elements/staff.php:515
8056
  #: includes/elements/testimonial.php:167 includes/elements/text.php:882
8057
  msgid "Enter a text as a text content."
8058
  msgstr ""
@@ -8066,28 +8247,28 @@ msgid "Limit the number of words in the Content"
8066
  msgstr ""
8067
 
8068
  #: includes/elementor/widgets/staff.php:196
8069
- #: includes/elementor/widgets/text.php:647 includes/elements/staff.php:161
8070
  #: includes/elements/text.php:571
8071
  msgid "Image shape"
8072
  msgstr ""
8073
 
8074
  #: includes/elementor/widgets/staff.php:204
8075
- #: includes/elementor/widgets/text.php:464
8076
- #: includes/elementor/widgets/text.php:659 includes/elements/staff.php:172
8077
  #: includes/elements/text.php:543 includes/elements/text.php:585
8078
  msgid "Semi-circle"
8079
  msgstr ""
8080
 
8081
  #: includes/elementor/widgets/staff.php:208
8082
- #: includes/elementor/widgets/text.php:468
8083
- #: includes/elementor/widgets/text.php:663 includes/elements/staff.php:176
8084
  #: includes/elements/text.php:547 includes/elements/text.php:589
8085
  msgid "Round Rectangle"
8086
  msgstr ""
8087
 
8088
  #: includes/elementor/widgets/staff.php:212
8089
- #: includes/elementor/widgets/text.php:476
8090
- #: includes/elementor/widgets/text.php:667 includes/elements/staff.php:180
8091
  #: includes/elements/text.php:555 includes/elements/text.php:593
8092
  msgid "Rectangle"
8093
  msgstr ""
@@ -8147,14 +8328,14 @@ msgid "LinkedIn Address"
8147
  msgstr ""
8148
 
8149
  #: includes/elementor/widgets/staff.php:531
8150
- #: includes/elementor/widgets/text.php:856
8151
- #: includes/elementor/widgets/text.php:979
8152
  msgid "Top space"
8153
  msgstr ""
8154
 
8155
  #: includes/elementor/widgets/staff.php:575
8156
- #: includes/elementor/widgets/text.php:242
8157
- #: includes/elementor/widgets/text.php:782
8158
  #: includes/elements/recent-posts-grid-carousel.php:70
8159
  #: includes/elements/recent-products.php:56 includes/elements/text.php:59
8160
  msgid "Subtitle"
@@ -8193,12 +8374,8 @@ msgstr ""
8193
  msgid "X-Large"
8194
  msgstr ""
8195
 
8196
- #: includes/elementor/widgets/staff.php:831
8197
- msgid "Wrappers"
8198
- msgstr ""
8199
-
8200
  #: includes/elementor/widgets/staff.php:870
8201
- #: includes/elementor/widgets/text.php:1435
8202
  #: includes/elementor/widgets/theme-elements/menu.php:324
8203
  #: includes/elementor/widgets/theme-elements/menu.php:1341
8204
  #: includes/elements/text.php:118
@@ -8222,7 +8399,7 @@ msgid "Choose Image"
8222
  msgstr ""
8223
 
8224
  #: includes/elementor/widgets/svg.php:137
8225
- #: includes/elementor/widgets/text.php:209
8226
  #: includes/elementor/widgets/theme-elements/menu.php:1116
8227
  msgid "Enter inline SVG content here"
8228
  msgstr ""
@@ -8342,18 +8519,6 @@ msgstr ""
8342
  msgid "Occupation"
8343
  msgstr ""
8344
 
8345
- #: includes/elementor/widgets/testimonial.php:722
8346
- msgid "Rating"
8347
- msgstr ""
8348
-
8349
- #: includes/elementor/widgets/testimonial.php:734
8350
- msgid "Empty Color"
8351
- msgstr ""
8352
-
8353
- #: includes/elementor/widgets/testimonial.php:745
8354
- msgid "Fill Color"
8355
- msgstr ""
8356
-
8357
  #: includes/elementor/widgets/testimonial.php:796
8358
  msgid "Content Box"
8359
  msgstr ""
@@ -8362,110 +8527,110 @@ msgstr ""
8362
  msgid "Content Alignment"
8363
  msgstr ""
8364
 
8365
- #: includes/elementor/widgets/text.php:53 includes/elements/text.php:15
8366
  msgid "Info Box"
8367
  msgstr ""
8368
 
8369
- #: includes/elementor/widgets/text.php:118
8370
  msgid "Inline SVG"
8371
  msgstr ""
8372
 
8373
- #: includes/elementor/widgets/text.php:128
8374
  #: includes/elementor/widgets/theme-elements/search.php:132
8375
  #: includes/elements/text.php:387
8376
  msgid "Please choose an icon from the list."
8377
  msgstr ""
8378
 
8379
- #: includes/elementor/widgets/text.php:250 includes/elements/text.php:75
8380
  msgid "Title Link"
8381
  msgstr ""
8382
 
8383
- #: includes/elementor/widgets/text.php:285 includes/elements/text.php:637
8384
  msgid "Display button"
8385
  msgstr ""
8386
 
8387
- #: includes/elementor/widgets/text.php:286 includes/elements/text.php:638
8388
  msgid "Display a button in text widget"
8389
  msgstr ""
8390
 
8391
- #: includes/elementor/widgets/text.php:358
8392
  msgid "Header Position"
8393
  msgstr ""
8394
 
8395
- #: includes/elementor/widgets/text.php:409
8396
  msgid "Icon/Image"
8397
  msgstr ""
8398
 
8399
- #: includes/elementor/widgets/text.php:421
8400
  msgid "Border"
8401
  msgstr ""
8402
 
8403
- #: includes/elementor/widgets/text.php:455 includes/elements/text.php:533
8404
  msgid "Icon background shape"
8405
  msgstr ""
8406
 
8407
- #: includes/elementor/widgets/text.php:472 includes/elements/text.php:551
8408
  msgid "Cross Rectangle"
8409
  msgstr ""
8410
 
8411
- #: includes/elementor/widgets/text.php:523
8412
- #: includes/elementor/widgets/text.php:582
8413
  #: includes/elementor/widgets/theme-elements/search.php:233
8414
  #: includes/elements/text.php:445
8415
  msgid "Icon color"
8416
  msgstr ""
8417
 
8418
- #: includes/elementor/widgets/text.php:538
8419
- #: includes/elementor/widgets/text.php:597 includes/elements/text.php:486
8420
  msgid "Icon background color"
8421
  msgstr ""
8422
 
8423
- #: includes/elementor/widgets/text.php:651 includes/elements/text.php:577
8424
  msgid "Default Aspect"
8425
  msgstr ""
8426
 
8427
- #: includes/elementor/widgets/text.php:1045
8428
  msgid "Button Skin"
8429
  msgstr ""
8430
 
8431
- #: includes/elementor/widgets/text.php:1122
8432
  msgid "Button Icon"
8433
  msgstr ""
8434
 
8435
- #: includes/elementor/widgets/text.php:1235
8436
  msgid "Button Text"
8437
  msgstr ""
8438
 
8439
- #: includes/elementor/widgets/text.php:1328
8440
  msgid "Button Wrapper"
8441
  msgstr ""
8442
 
8443
- #: includes/elementor/widgets/text.php:1353
8444
  msgid "Shape Style"
8445
  msgstr ""
8446
 
8447
- #: includes/elementor/widgets/text.php:1377 includes/general-hooks.php:759
8448
  #: includes/general-hooks.php:1171
8449
  msgid "Button Style"
8450
  msgstr ""
8451
 
8452
- #: includes/elementor/widgets/text.php:1427
8453
  msgid "Overlay"
8454
  msgstr ""
8455
 
8456
- #: includes/elementor/widgets/text.php:1578 includes/elements/text.php:896
8457
  msgid "Footer Shape"
8458
  msgstr ""
8459
 
8460
- #: includes/elementor/widgets/text.php:1587 includes/elements/text.php:907
8461
  msgid "Wave"
8462
  msgstr ""
8463
 
8464
- #: includes/elementor/widgets/text.php:1591 includes/elements/text.php:911
8465
  msgid "Tail"
8466
  msgstr ""
8467
 
8468
- #: includes/elementor/widgets/text.php:1602 includes/elements/button.php:212
8469
  #: includes/elements/text.php:825
8470
  msgid "Color of button"
8471
  msgstr ""
@@ -10671,10 +10836,6 @@ msgstr ""
10671
  msgid "Vertical 10:15"
10672
  msgstr ""
10673
 
10674
- #: includes/elements/recent-products.php:207
10675
- msgid "Number of products to displace or pass over."
10676
- msgstr ""
10677
-
10678
  #: includes/elements/sample-element.php:19
10679
  msgid "Auxin Callout "
10680
  msgstr ""
@@ -11228,7 +11389,7 @@ msgstr ""
11228
  msgid "Page Not Found"
11229
  msgstr ""
11230
 
11231
- #: includes/general-functions.php:2500
11232
  msgid "Select Page"
11233
  msgstr ""
11234
 
1
  # Averta Copyright (c) {2021}
2
  msgid ""
3
  msgstr ""
4
+ "Project-Id-Version: Phlox Core Elements 2.9.2\n"
5
  "Report-Msgid-Bugs-To: http://averta.net/phlox/wordpress-theme/\n"
6
+ "POT-Creation-Date: 2021-12-27 09:18:44+00:00\n"
7
  "MIME-Version: 1.0\n"
8
  "Content-Type: text/plain; charset=utf-8\n"
9
  "Content-Transfer-Encoding: 8bit\n"
337
  msgid "Connection error..."
338
  msgstr ""
339
 
340
+ #: admin/includes/classes/class-auxin-license-activation.php:168
341
+ msgid "Learn more"
342
+ msgstr ""
343
+
344
  #: admin/includes/classes/class-auxin-notices.php:30
345
  msgid "You need to enter a unique id for notice."
346
  msgstr ""
670
  #: admin/includes/metaboxes/metabox-fields-general-footer.php:21
671
  #: includes/elementor/modules/documents/footer.php:35
672
  #: includes/elementor/modules/documents/footer.php:46
673
+ #: includes/elementor/widgets/text.php:1580
674
  msgid "Footer"
675
  msgstr ""
676
 
801
 
802
  #: admin/includes/metaboxes/metabox-fields-general-header.php:21
803
  #: includes/elementor/modules/documents/header.php:35
804
+ #: includes/elementor/widgets/text.php:105
805
+ #: includes/elementor/widgets/text.php:348
806
  msgid "Header"
807
  msgstr ""
808
 
1085
  #: includes/elementor/widgets/custom-list.php:509
1086
  #: includes/elementor/widgets/divider.php:202
1087
  #: includes/elementor/widgets/divider.php:241
1088
+ #: includes/elementor/widgets/heading-modern.php:164
1089
  #: includes/elementor/widgets/icon.php:174
1090
  #: includes/elementor/widgets/image.php:323
1091
  #: includes/elementor/widgets/modern-button.php:143
1101
  #: includes/elementor/widgets/staff.php:878
1102
  #: includes/elementor/widgets/svg.php:288
1103
  #: includes/elementor/widgets/testimonial.php:813
1104
+ #: includes/elementor/widgets/text.php:1453
1105
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:435
1106
  #: includes/elementor/widgets/theme-elements/copyright.php:146
1107
  #: includes/elementor/widgets/theme-elements/current-time.php:139
1126
  #: includes/elementor/widgets/custom-list.php:505
1127
  #: includes/elementor/widgets/divider.php:198
1128
  #: includes/elementor/widgets/divider.php:237
1129
+ #: includes/elementor/widgets/heading-modern.php:160
1130
  #: includes/elementor/widgets/icon.php:170
1131
  #: includes/elementor/widgets/image.php:319
1132
  #: includes/elementor/widgets/modern-button.php:184
1142
  #: includes/elementor/widgets/staff.php:874
1143
  #: includes/elementor/widgets/svg.php:284
1144
  #: includes/elementor/widgets/testimonial.php:809
1145
+ #: includes/elementor/widgets/text.php:368
1146
+ #: includes/elementor/widgets/text.php:1150
1147
+ #: includes/elementor/widgets/text.php:1449
1148
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:431
1149
  #: includes/elementor/widgets/theme-elements/copyright.php:142
1150
  #: includes/elementor/widgets/theme-elements/current-time.php:135
1202
  #: includes/elementor/widgets/divider.php:146
1203
  #: includes/elementor/widgets/modern-button.php:311
1204
  #: includes/elementor/widgets/staff.php:787
1205
+ #: includes/elementor/widgets/text.php:1046 includes/elements/button.php:66
1206
  #: includes/elements/divider.php:90 includes/elements/socials-list.php:63
1207
  #: includes/elements/socials-list.php:201 includes/elements/staff.php:463
1208
  #: includes/elements/text.php:469 includes/elements/text.php:677
1216
  #: includes/elementor/widgets/divider.php:145
1217
  #: includes/elementor/widgets/modern-button.php:310
1218
  #: includes/elementor/widgets/staff.php:788
1219
+ #: includes/elementor/widgets/text.php:1045
1220
  #: includes/elements/before-after.php:104 includes/elements/button.php:65
1221
  #: includes/elements/divider.php:89 includes/elements/instagram-feed.php:98
1222
  #: includes/elements/socials-list.php:64 includes/elements/socials-list.php:202
1232
  #: includes/elementor/widgets/button.php:161
1233
  #: includes/elementor/widgets/modern-button.php:309
1234
  #: includes/elementor/widgets/staff.php:789
1235
+ #: includes/elementor/widgets/text.php:1044
1236
  #: includes/elements/before-after.php:105 includes/elements/button.php:64
1237
  #: includes/elements/divider.php:88 includes/elements/socials-list.php:65
1238
  #: includes/elements/socials-list.php:203 includes/elements/staff.php:110
1298
  #: includes/elementor/widgets/recent-posts-tiles-carousel.php:130
1299
  #: includes/elementor/widgets/recent-posts-tiles.php:130
1300
  #: includes/elementor/widgets/tabs.php:195
1301
+ #: includes/elementor/widgets/text.php:1149
1302
  #: includes/elementor/widgets/theme-elements/menu.php:999
1303
  #: includes/elementor/widgets/theme-elements/modern-search.php:577
1304
  #: includes/elements/button.php:179 includes/elements/code.php:99
1326
  #: includes/elementor/widgets/contact-form.php:1703
1327
  #: includes/elementor/widgets/custom-list.php:918
1328
  #: includes/elementor/widgets/custom-list.php:1075
1329
+ #: includes/elementor/widgets/heading-modern.php:408
1330
+ #: includes/elementor/widgets/heading-modern.php:593
1331
+ #: includes/elementor/widgets/heading-modern.php:764
1332
  #: includes/elementor/widgets/icon.php:246
1333
  #: includes/elementor/widgets/image.php:536
1334
  #: includes/elementor/widgets/mailchimp.php:352
1338
  #: includes/elementor/widgets/modern-button.php:618
1339
  #: includes/elementor/widgets/modern-button.php:730
1340
  #: includes/elementor/widgets/modern-button.php:916
1341
+ #: includes/elementor/widgets/products-grid.php:420
1342
+ #: includes/elementor/widgets/products-grid.php:487
1343
+ #: includes/elementor/widgets/products-grid.php:556
1344
+ #: includes/elementor/widgets/products-grid.php:623
1345
+ #: includes/elementor/widgets/products-grid.php:690
1346
+ #: includes/elementor/widgets/products-grid.php:827
1347
+ #: includes/elementor/widgets/products-grid.php:918
1348
+ #: includes/elementor/widgets/products-grid.php:1044
1349
  #: includes/elementor/widgets/recent-comments.php:201
1350
  #: includes/elementor/widgets/recent-comments.php:284
1351
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:997
1382
  #: includes/elementor/widgets/testimonial.php:511
1383
  #: includes/elementor/widgets/testimonial.php:629
1384
  #: includes/elementor/widgets/testimonial.php:923
1385
+ #: includes/elementor/widgets/text.php:567
1386
+ #: includes/elementor/widgets/text.php:720
1387
+ #: includes/elementor/widgets/text.php:825
1388
+ #: includes/elementor/widgets/text.php:936
1389
+ #: includes/elementor/widgets/text.php:1103
1390
+ #: includes/elementor/widgets/text.php:1223
1391
+ #: includes/elementor/widgets/text.php:1298
1392
+ #: includes/elementor/widgets/text.php:1528
1393
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:516
1394
  #: includes/elementor/widgets/theme-elements/copyright.php:212
1395
  #: includes/elementor/widgets/theme-elements/logo.php:327
2097
  #: includes/classes/class-auxin-welcome.php:431
2098
  #: includes/elementor/modules/dynamic-tags/contact-url.php:181
2099
  #: includes/elementor/modules/dynamic-tags/featured-image-data.php:90
2100
+ #: includes/elementor/widgets/heading-modern.php:310
2101
+ #: includes/elementor/widgets/heading-modern.php:317
2102
+ #: includes/elementor/widgets/heading-modern.php:973
2103
+ #: includes/elementor/widgets/products-grid.php:593
2104
  #: includes/elementor/widgets/theme-elements/logo.php:546
2105
  #: includes/elements/custom-list.php:138
2106
  msgid "Description"
2740
  msgid "Select Audio"
2741
  msgstr ""
2742
 
2743
+ #: includes/elementor/class-auxin-elementor-core-elements.php:419
2744
  msgid "Element class \"%s\" not found."
2745
  msgstr ""
2746
 
2747
+ #: includes/elementor/class-auxin-elementor-core-elements.php:515
2748
  msgid "Module class \"%s\" not found."
2749
  msgstr ""
2750
 
2751
+ #: includes/elementor/class-auxin-elementor-core-elements.php:588
2752
  msgid "%s - General"
2753
  msgstr ""
2754
 
2755
+ #: includes/elementor/class-auxin-elementor-core-elements.php:596
2756
  msgid "%s - Featured"
2757
  msgstr ""
2758
 
2759
+ #: includes/elementor/class-auxin-elementor-core-elements.php:604
2760
  msgid "%s - Posts"
2761
  msgstr ""
2762
 
2763
+ #: includes/elementor/class-auxin-elementor-core-elements.php:612
2764
  msgid "%s - Portfolio"
2765
  msgstr ""
2766
 
2767
+ #: includes/elementor/class-auxin-elementor-core-elements.php:686
2768
+ #: includes/elementor/class-auxin-elementor-core-elements.php:710
2769
  #. translators: 1: Plugin name 2: PHP 3: Required PHP version
2770
  msgid "\"%1$s\" requires \"%2$s\" version %3$s or greater."
2771
  msgstr ""
2772
 
2773
+ #: includes/elementor/class-auxin-elementor-core-elements.php:688
2774
  msgid "Elementor"
2775
  msgstr ""
2776
 
2777
+ #: includes/elementor/class-auxin-elementor-core-elements.php:712
2778
  #: includes/elements/code.php:82
2779
  msgid "PHP"
2780
  msgstr ""
2781
 
2782
+ #: includes/elementor/class-auxin-elementor-core-elements.php:769
2783
  msgid "Phlox Icons - Set 1"
2784
  msgstr ""
2785
 
2786
+ #: includes/elementor/class-auxin-elementor-core-elements.php:791
2787
  msgid "Phlox Icons - Set 2"
2788
  msgstr ""
2789
 
2937
  #: includes/elementor/modules/common.php:658
2938
  #: includes/elementor/widgets/modern-button.php:139
2939
  #: includes/elementor/widgets/staff.php:847
2940
+ #: includes/elementor/widgets/text.php:364 includes/elements/staff.php:226
2941
  #: includes/elements/text.php:616
2942
  msgid "Top"
2943
  msgstr ""
2949
  #: includes/elementor/widgets/custom-list.php:513
2950
  #: includes/elementor/widgets/divider.php:206
2951
  #: includes/elementor/widgets/divider.php:245
2952
+ #: includes/elementor/widgets/heading-modern.php:168
2953
  #: includes/elementor/widgets/icon.php:178
2954
  #: includes/elementor/widgets/image.php:327
2955
  #: includes/elementor/widgets/modern-button.php:192
2965
  #: includes/elementor/widgets/staff.php:882
2966
  #: includes/elementor/widgets/svg.php:292
2967
  #: includes/elementor/widgets/testimonial.php:817
2968
+ #: includes/elementor/widgets/text.php:372
2969
+ #: includes/elementor/widgets/text.php:1151
2970
+ #: includes/elementor/widgets/text.php:1457
2971
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:439
2972
  #: includes/elementor/widgets/theme-elements/copyright.php:150
2973
  #: includes/elementor/widgets/theme-elements/current-time.php:143
3013
  #: includes/elementor/widgets/contact-form.php:976
3014
  #: includes/elementor/widgets/contact-form.php:1219
3015
  #: includes/elementor/widgets/contact-form.php:1572
3016
+ #: includes/elementor/widgets/heading-modern.php:486
3017
+ #: includes/elementor/widgets/heading-modern.php:671
3018
+ #: includes/elementor/widgets/heading-modern.php:842
3019
+ #: includes/elementor/widgets/heading-modern.php:1015
3020
  #: includes/elementor/widgets/image.php:426
3021
  #: includes/elementor/widgets/mailchimp.php:234
3022
  #: includes/elementor/widgets/mailchimp.php:481
3054
  #: includes/elementor/widgets/contact-form.php:1599
3055
  #: includes/elementor/widgets/custom-list.php:396
3056
  #: includes/elementor/widgets/gmap.php:168
3057
+ #: includes/elementor/widgets/heading-modern.php:1086
3058
  #: includes/elementor/widgets/mailchimp.php:261
3059
  #: includes/elementor/widgets/mailchimp.php:508
3060
  #: includes/elementor/widgets/mailchimp.php:736
3208
  #: includes/elementor/modules/dynamic-tags/comments-number.php:58
3209
  #: includes/elementor/widgets/button.php:116
3210
  #: includes/elementor/widgets/custom-list.php:138
3211
+ #: includes/elementor/widgets/heading-modern.php:121
3212
+ #: includes/elementor/widgets/heading-modern.php:271
3213
  #: includes/elementor/widgets/icon.php:154
3214
  #: includes/elementor/widgets/modern-button.php:210
3215
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:743
3216
+ #: includes/elementor/widgets/text.php:322
3217
  #: includes/elementor/widgets/theme-elements/logo.php:182
3218
  #: includes/elementor/widgets/theme-elements/logo.php:196
3219
  #: includes/elementor/widgets/theme-elements/site-title.php:212
3240
  #: includes/elementor/widgets/recent-posts-timeline.php:316
3241
  #: includes/elementor/widgets/recent-posts-timeline.php:519
3242
  #: includes/elementor/widgets/testimonial.php:238
3243
+ #: includes/elementor/widgets/text.php:116
3244
+ #: includes/elementor/widgets/text.php:1593
3245
  #: includes/elementor/widgets/theme-elements/menu.php:658
3246
  #: includes/elementor/widgets/theme-elements/search.php:118
3247
  #: includes/elements/flickr.php:156 includes/elements/flickr.php:205
3281
  #: includes/elementor/widgets/accordion.php:145
3282
  #: includes/elementor/widgets/modern-button.php:277
3283
  #: includes/elementor/widgets/svg.php:107
3284
+ #: includes/elementor/widgets/text.php:112
3285
  #: includes/elementor/widgets/theme-elements/logo.php:135
3286
  #: includes/elementor/widgets/theme-elements/menu.php:156
3287
  #: includes/elementor/widgets/theme-elements/menu.php:995
3395
  #: includes/elementor/modules/dynamic-tags/featured-image-data.php:87
3396
  #: includes/elementor/modules/query-control/controls/group-control-query.php:346
3397
  #: includes/elementor/widgets/accordion.php:534
3398
+ #: includes/elementor/widgets/heading-modern.php:108
3399
+ #: includes/elementor/widgets/products-grid.php:239
3400
+ #: includes/elementor/widgets/products-grid.php:390
3401
  #: includes/elementor/widgets/recent-comments.php:171
3402
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:781
3403
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:1028
3415
  #: includes/elementor/widgets/recent-products.php:543
3416
  #: includes/elementor/widgets/staff.php:452
3417
  #: includes/elementor/widgets/tabs.php:373
3418
+ #: includes/elementor/widgets/text.php:233
3419
+ #: includes/elementor/widgets/text.php:687
3420
  #: includes/elementor/widgets/theme-elements/logo.php:454
3421
  #: includes/elementor/widgets/theme-elements/site-title.php:94
3422
  #: includes/elementor/widgets/touch-slider.php:332
3777
 
3778
  #: includes/elementor/modules/dynamic-tags/user-info.php:76
3779
  #: includes/elementor/widgets/gallery.php:304
3780
+ #: includes/elementor/widgets/products-grid.php:240
3781
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:782
3782
  #: includes/elementor/widgets/recent-posts-land-style.php:415
3783
  #: includes/elementor/widgets/recent-posts-masonry.php:511
3835
  #: includes/elementor/modules/query-control/controls/group-control-query.php:130
3836
  #: includes/elementor/modules/query-control/controls/group-control-query.php:169
3837
  #: includes/elementor/modules/query-control/controls/group-control-query.php:225
3838
+ #: includes/elementor/widgets/products-grid.php:244
3839
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:786
3840
  #: includes/elementor/widgets/recent-posts-land-style.php:419
3841
  #: includes/elementor/widgets/recent-posts-masonry.php:515
3923
 
3924
  #: includes/elementor/modules/query-control/controls/group-control-query.php:276
3925
  #: includes/elementor/modules/query-control/controls/group-control-query.php:345
3926
+ #: includes/elementor/widgets/products-grid.php:237
3927
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:779
3928
  #: includes/elementor/widgets/recent-posts-land-style.php:412
3929
  #: includes/elementor/widgets/recent-posts-masonry.php:508
3998
 
3999
  #: includes/elementor/modules/query-control/controls/group-control-query.php:347
4000
  #: includes/elementor/widgets/gallery.php:302
4001
+ #: includes/elementor/widgets/products-grid.php:238
4002
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:780
4003
  #: includes/elementor/widgets/recent-posts-land-style.php:413
4004
  #: includes/elementor/widgets/recent-posts-masonry.php:509
4023
  msgstr ""
4024
 
4025
  #: includes/elementor/modules/query-control/controls/group-control-query.php:348
4026
+ #: includes/elementor/widgets/products-grid.php:241
4027
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:783
4028
  #: includes/elementor/widgets/recent-posts-land-style.php:416
4029
  #: includes/elementor/widgets/recent-posts-masonry.php:512
4048
 
4049
  #: includes/elementor/modules/query-control/controls/group-control-query.php:356
4050
  #: includes/elementor/widgets/gallery.php:282
4051
+ #: includes/elementor/widgets/products-grid.php:253
4052
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:798
4053
  #: includes/elementor/widgets/recent-posts-land-style.php:428
4054
  #: includes/elementor/widgets/recent-posts-masonry.php:524
4190
  #: includes/elementor/widgets/tabs.php:136
4191
  #: includes/elementor/widgets/tabs.php:439
4192
  #: includes/elementor/widgets/testimonial.php:193
4193
+ #: includes/elementor/widgets/text.php:226
4194
+ #: includes/elementor/widgets/text.php:264
4195
+ #: includes/elementor/widgets/text.php:905
4196
  #: includes/elements/accordion-widget.php:76 includes/elements/accordion.php:93
4197
  #: includes/elements/dropcap.php:82 includes/elements/highlight.php:78
4198
  #: includes/elements/staff.php:514 includes/elements/tabs.php:92
4266
  #: includes/elementor/widgets/custom-list.php:258
4267
  #: includes/elementor/widgets/custom-list.php:970
4268
  #: includes/elementor/widgets/custom-list.php:1022
4269
+ #: includes/elementor/widgets/heading-modern.php:448
4270
+ #: includes/elementor/widgets/heading-modern.php:633
4271
+ #: includes/elementor/widgets/heading-modern.php:804
4272
+ #: includes/elementor/widgets/heading-modern.php:926
4273
+ #: includes/elementor/widgets/heading-modern.php:1002
4274
+ #: includes/elementor/widgets/heading-modern.php:1116
4275
  #: includes/elementor/widgets/modern-button.php:658
4276
  #: includes/elementor/widgets/modern-button.php:770
4277
  #: includes/elementor/widgets/modern-button.php:876
4320
  #: includes/elementor/widgets/recent-products.php:522
4321
  #: includes/elementor/widgets/tabs.php:235
4322
  #: includes/elementor/widgets/tabs.php:493
4323
+ #: includes/elementor/widgets/text.php:1484
4324
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:463
4325
  #: includes/elementor/widgets/theme-elements/logo.php:390
4326
  #: includes/elementor/widgets/theme-elements/menu.php:421
4353
  #: includes/elementor/widgets/contact-form.php:1677
4354
  #: includes/elementor/widgets/custom-list.php:889
4355
  #: includes/elementor/widgets/custom-list.php:1038
4356
+ #: includes/elementor/widgets/heading-modern.php:370
4357
+ #: includes/elementor/widgets/heading-modern.php:555
4358
+ #: includes/elementor/widgets/heading-modern.php:726
4359
  #: includes/elementor/widgets/icon.php:204
4360
  #: includes/elementor/widgets/image.php:499
4361
  #: includes/elementor/widgets/mailchimp.php:326
4366
  #: includes/elementor/widgets/modern-button.php:579
4367
  #: includes/elementor/widgets/modern-button.php:691
4368
  #: includes/elementor/widgets/modern-button.php:817
4369
+ #: includes/elementor/widgets/products-grid.php:400
4370
+ #: includes/elementor/widgets/products-grid.php:467
4371
+ #: includes/elementor/widgets/products-grid.php:536
4372
+ #: includes/elementor/widgets/products-grid.php:603
4373
+ #: includes/elementor/widgets/products-grid.php:670
4374
+ #: includes/elementor/widgets/products-grid.php:807
4375
+ #: includes/elementor/widgets/products-grid.php:898
4376
+ #: includes/elementor/widgets/products-grid.php:988
4377
  #: includes/elementor/widgets/recent-comments.php:181
4378
  #: includes/elementor/widgets/recent-comments.php:264
4379
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:974
4410
  #: includes/elementor/widgets/testimonial.php:473
4411
  #: includes/elementor/widgets/testimonial.php:591
4412
  #: includes/elementor/widgets/testimonial.php:887
4413
+ #: includes/elementor/widgets/text.php:508
4414
+ #: includes/elementor/widgets/text.php:700
4415
+ #: includes/elementor/widgets/text.php:805
4416
+ #: includes/elementor/widgets/text.php:916
4417
+ #: includes/elementor/widgets/text.php:1076
4418
+ #: includes/elementor/widgets/text.php:1203
4419
+ #: includes/elementor/widgets/text.php:1260
4420
+ #: includes/elementor/widgets/text.php:1392
4421
+ #: includes/elementor/widgets/text.php:1500
4422
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:490
4423
  #: includes/elementor/widgets/theme-elements/copyright.php:175
4424
  #: includes/elementor/widgets/theme-elements/logo.php:293
4500
  #: includes/elementor/widgets/contact-form.php:1648
4501
  #: includes/elementor/widgets/custom-list.php:983
4502
  #: includes/elementor/widgets/custom-list.php:1009
4503
+ #: includes/elementor/widgets/heading-modern.php:461
4504
+ #: includes/elementor/widgets/heading-modern.php:646
4505
+ #: includes/elementor/widgets/heading-modern.php:817
4506
+ #: includes/elementor/widgets/heading-modern.php:1129
4507
  #: includes/elementor/widgets/icon.php:311
4508
  #: includes/elementor/widgets/mailchimp.php:310
4509
  #: includes/elementor/widgets/mailchimp.php:556
4511
  #: includes/elementor/widgets/modern-button.php:432
4512
  #: includes/elementor/widgets/modern-button.php:888
4513
  #: includes/elementor/widgets/modern-button.php:987
4514
+ #: includes/elementor/widgets/products-grid.php:721
4515
+ #: includes/elementor/widgets/products-grid.php:858
4516
+ #: includes/elementor/widgets/products-grid.php:949
4517
  #: includes/elementor/widgets/quote.php:333
4518
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:1403
4519
  #: includes/elementor/widgets/staff.php:810
4521
  #: includes/elementor/widgets/tabs.php:467
4522
  #: includes/elementor/widgets/testimonial.php:695
4523
  #: includes/elementor/widgets/testimonial.php:843
4524
+ #: includes/elementor/widgets/text.php:393
4525
+ #: includes/elementor/widgets/text.php:491
4526
+ #: includes/elementor/widgets/text.php:977
4527
+ #: includes/elementor/widgets/text.php:1411
4528
+ #: includes/elementor/widgets/text.php:1472
4529
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:475
4530
  #: includes/elementor/widgets/theme-elements/menu.php:517
4531
  #: includes/elementor/widgets/theme-elements/menu.php:956
4572
  #: includes/elementor/widgets/custom-list.php:896
4573
  #: includes/elementor/widgets/custom-list.php:925
4574
  #: includes/elementor/widgets/divider.php:376
4575
+ #: includes/elementor/widgets/heading-modern.php:377
4576
+ #: includes/elementor/widgets/heading-modern.php:415
4577
+ #: includes/elementor/widgets/heading-modern.php:562
4578
+ #: includes/elementor/widgets/heading-modern.php:600
4579
+ #: includes/elementor/widgets/heading-modern.php:733
4580
+ #: includes/elementor/widgets/heading-modern.php:771
4581
+ #: includes/elementor/widgets/heading-modern.php:939
4582
+ #: includes/elementor/widgets/heading-modern.php:982
4583
  #: includes/elementor/widgets/mailchimp.php:196
4584
  #: includes/elementor/widgets/mailchimp.php:423
4585
  #: includes/elementor/widgets/mailchimp.php:578
4592
  #: includes/elementor/widgets/modern-button.php:746
4593
  #: includes/elementor/widgets/modern-button.php:847
4594
  #: includes/elementor/widgets/modern-button.php:946
4595
+ #: includes/elementor/widgets/products-grid.php:407
4596
+ #: includes/elementor/widgets/products-grid.php:427
4597
+ #: includes/elementor/widgets/products-grid.php:474
4598
+ #: includes/elementor/widgets/products-grid.php:494
4599
+ #: includes/elementor/widgets/products-grid.php:543
4600
+ #: includes/elementor/widgets/products-grid.php:563
4601
+ #: includes/elementor/widgets/products-grid.php:610
4602
+ #: includes/elementor/widgets/products-grid.php:630
4603
+ #: includes/elementor/widgets/products-grid.php:677
4604
+ #: includes/elementor/widgets/products-grid.php:697
4605
+ #: includes/elementor/widgets/products-grid.php:814
4606
+ #: includes/elementor/widgets/products-grid.php:834
4607
+ #: includes/elementor/widgets/products-grid.php:905
4608
+ #: includes/elementor/widgets/products-grid.php:925
4609
+ #: includes/elementor/widgets/products-grid.php:1013
4610
+ #: includes/elementor/widgets/products-grid.php:1069
4611
  #: includes/elementor/widgets/recent-comments.php:188
4612
  #: includes/elementor/widgets/recent-comments.php:208
4613
  #: includes/elementor/widgets/recent-comments.php:271
4674
  #: includes/elementor/widgets/testimonial.php:521
4675
  #: includes/elementor/widgets/testimonial.php:601
4676
  #: includes/elementor/widgets/testimonial.php:639
4677
+ #: includes/elementor/widgets/text.php:707
4678
+ #: includes/elementor/widgets/text.php:727
4679
+ #: includes/elementor/widgets/text.php:812
4680
+ #: includes/elementor/widgets/text.php:832
4681
+ #: includes/elementor/widgets/text.php:923
4682
+ #: includes/elementor/widgets/text.php:943
4683
+ #: includes/elementor/widgets/text.php:1210
4684
+ #: includes/elementor/widgets/text.php:1230
4685
+ #: includes/elementor/widgets/text.php:1267
4686
+ #: includes/elementor/widgets/text.php:1305
4687
  #: includes/elementor/widgets/theme-elements/copyright.php:182
4688
  #: includes/elementor/widgets/theme-elements/copyright.php:219
4689
  #: includes/elementor/widgets/theme-elements/current-time.php:172
4749
  #: includes/elementor/widgets/gallery.php:273
4750
  #: includes/elementor/widgets/gmap.php:193
4751
  #: includes/elementor/widgets/gmap.php:214
4752
+ #: includes/elementor/widgets/heading-modern.php:191
4753
  #: includes/elementor/widgets/image.php:155
4754
  #: includes/elementor/widgets/image.php:188
4755
  #: includes/elementor/widgets/image.php:288
4758
  #: includes/elementor/widgets/image.php:399
4759
  #: includes/elementor/widgets/modern-button.php:226
4760
  #: includes/elementor/widgets/modern-button.php:238
4761
+ #: includes/elementor/widgets/products-grid.php:223
4762
  #: includes/elementor/widgets/quote.php:221
4763
  #: includes/elementor/widgets/recent-comments.php:155
4764
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:282
4854
  #: includes/elementor/widgets/staff.php:225
4855
  #: includes/elementor/widgets/staff.php:277
4856
  #: includes/elementor/widgets/testimonial.php:154
4857
+ #: includes/elementor/widgets/text.php:165
4858
+ #: includes/elementor/widgets/text.php:289
4859
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:128
4860
  #: includes/elementor/widgets/theme-elements/copyright.php:115
4861
  #: includes/elementor/widgets/theme-elements/copyright.php:128
4896
  #: includes/elementor/widgets/gallery.php:274
4897
  #: includes/elementor/widgets/gmap.php:194
4898
  #: includes/elementor/widgets/gmap.php:215
4899
+ #: includes/elementor/widgets/heading-modern.php:192
4900
  #: includes/elementor/widgets/image.php:156
4901
  #: includes/elementor/widgets/image.php:189
4902
  #: includes/elementor/widgets/image.php:289
4905
  #: includes/elementor/widgets/image.php:400
4906
  #: includes/elementor/widgets/modern-button.php:227
4907
  #: includes/elementor/widgets/modern-button.php:239
4908
+ #: includes/elementor/widgets/products-grid.php:224
4909
  #: includes/elementor/widgets/quote.php:222
4910
  #: includes/elementor/widgets/recent-comments.php:156
4911
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:283
5001
  #: includes/elementor/widgets/staff.php:226
5002
  #: includes/elementor/widgets/staff.php:278
5003
  #: includes/elementor/widgets/testimonial.php:155
5004
+ #: includes/elementor/widgets/text.php:166
5005
+ #: includes/elementor/widgets/text.php:290
5006
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:129
5007
  #: includes/elementor/widgets/theme-elements/copyright.php:116
5008
  #: includes/elementor/widgets/theme-elements/copyright.php:129
5037
  #: includes/elementor/widgets/button.php:283
5038
  #: includes/elementor/widgets/modern-button.php:320
5039
  #: includes/elementor/widgets/tabs.php:149
5040
+ #: includes/elementor/widgets/text.php:1064
5041
  #: includes/elementor/widgets/theme-elements/menu.php:616
5042
  #: includes/elements/audio.php:97
5043
  msgid "Skin"
5094
  msgstr ""
5095
 
5096
  #: includes/elementor/widgets/before-after.php:155
5097
+ #: includes/elementor/widgets/products-grid.php:293
5098
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:850
5099
  #: includes/elementor/widgets/recent-posts-land-style.php:468
5100
  #: includes/elementor/widgets/recent-posts-masonry.php:564
5129
  #: includes/elementor/widgets/custom-list.php:419
5130
  #: includes/elementor/widgets/custom-list.php:707
5131
  #: includes/elementor/widgets/divider.php:138
5132
+ #: includes/elementor/widgets/heading-modern.php:904
5133
+ #: includes/elementor/widgets/heading-modern.php:1057
5134
  #: includes/elementor/widgets/mailchimp.php:207
5135
  #: includes/elementor/widgets/mailchimp.php:454
5136
  #: includes/elementor/widgets/mailchimp.php:682
5149
  #: includes/elementor/widgets/button.php:100
5150
  #: includes/elementor/widgets/modern-button.php:101
5151
  #: includes/elementor/widgets/modern-button.php:269
5152
+ #: includes/elementor/widgets/products-grid.php:978
5153
+ #: includes/elementor/widgets/text.php:279
5154
+ #: includes/elementor/widgets/text.php:1028
5155
  #: includes/elementor/widgets/theme-elements/modern-search.php:99
5156
  #: includes/elementor/widgets/theme-elements/modern-search.php:434
5157
  #: includes/elementor/widgets/theme-elements/search.php:120
5169
  msgstr ""
5170
 
5171
  #: includes/elementor/widgets/button.php:107
5172
+ #: includes/elementor/widgets/text.php:299 includes/elements/button.php:43
5173
  #: includes/elements/text.php:651
5174
  msgid "Button label"
5175
  msgstr ""
5176
 
5177
  #: includes/elementor/widgets/button.php:117
5178
+ #: includes/elementor/widgets/text.php:323 includes/elements/text.php:844
5179
  msgid "If you want to link your button."
5180
  msgstr ""
5181
 
5185
  msgstr ""
5186
 
5187
  #: includes/elementor/widgets/button.php:148
5188
+ #: includes/elementor/widgets/heading-modern.php:1049
5189
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:1532
5190
  #: includes/elementor/widgets/recent-posts-masonry.php:1073
5191
+ #: includes/elementor/widgets/text.php:1429
5192
  msgid "Wrapper"
5193
  msgstr ""
5194
 
5199
 
5200
  #: includes/elementor/widgets/button.php:160
5201
  #: includes/elementor/widgets/modern-button.php:308
5202
+ #: includes/elementor/widgets/text.php:1043 includes/elements/button.php:63
5203
  #: includes/elements/text.php:674 includes/general-hooks.php:698
5204
  #: includes/general-hooks.php:1110
5205
  msgid "Exlarge"
5208
  #: includes/elementor/widgets/button.php:164
5209
  #: includes/elementor/widgets/divider.php:147
5210
  #: includes/elementor/widgets/modern-button.php:312
5211
+ #: includes/elementor/widgets/text.php:1047 includes/elements/button.php:67
5212
  #: includes/elements/divider.php:91 includes/elements/text.php:678
5213
  #: includes/general-hooks.php:702 includes/general-hooks.php:1114
5214
  msgid "Tiny"
5224
  msgstr ""
5225
 
5226
  #: includes/elementor/widgets/button.php:188
5227
+ #: includes/elementor/widgets/text.php:1368 includes/elements/button.php:91
5228
  #: includes/elements/text.php:708
5229
  msgid "Box"
5230
  msgstr ""
5231
 
5232
  #: includes/elementor/widgets/button.php:192
5233
  #: includes/elementor/widgets/modern-button.php:295
5234
+ #: includes/elementor/widgets/text.php:1372 includes/elements/button.php:95
5235
  #: includes/elements/text.php:712 includes/general-hooks.php:733
5236
  #: includes/general-hooks.php:1145
5237
  msgid "Round"
5239
 
5240
  #: includes/elementor/widgets/button.php:196
5241
  #: includes/elementor/widgets/modern-button.php:296
5242
+ #: includes/elementor/widgets/text.php:1376 includes/elements/button.php:99
5243
  #: includes/elements/text.php:716 includes/general-hooks.php:737
5244
  #: includes/general-hooks.php:1149
5245
  msgid "Curve"
5251
  msgstr ""
5252
 
5253
  #: includes/elementor/widgets/button.php:215
5254
+ #: includes/elementor/widgets/text.php:1396 includes/elements/button.php:122
5255
  #: includes/elements/text.php:742 includes/general-hooks.php:770
5256
  #: includes/general-hooks.php:1182
5257
  msgid "3D"
5259
 
5260
  #: includes/elementor/widgets/button.php:219
5261
  #: includes/elementor/widgets/modern-button.php:282
5262
+ #: includes/elementor/widgets/text.php:1400 includes/elements/button.php:126
5263
  #: includes/elements/text.php:746 includes/general-hooks.php:774
5264
  #: includes/general-hooks.php:1186
5265
  msgid "Outline"
5278
  #: includes/elementor/widgets/button.php:330
5279
  #: includes/elementor/widgets/carousel-navigation.php:292
5280
  #: includes/elementor/widgets/carousel-navigation.php:399
5281
+ #: includes/elementor/widgets/heading-modern.php:960
5282
  #: includes/elementor/widgets/modern-button.php:362
5283
  #: includes/elementor/widgets/modern-button.php:415
5284
  #: includes/elementor/widgets/modern-button.php:859
5285
  #: includes/elementor/widgets/modern-button.php:958
5286
+ #: includes/elementor/widgets/products-grid.php:871
5287
+ #: includes/elementor/widgets/products-grid.php:962
5288
+ #: includes/elementor/widgets/products-grid.php:996
5289
+ #: includes/elementor/widgets/products-grid.php:1052
5290
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:1340
5291
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:1370
5292
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:1574
5301
  #: includes/elementor/widgets/recent-posts-masonry.php:1282
5302
  #: includes/elementor/widgets/testimonial.php:895
5303
  #: includes/elementor/widgets/testimonial.php:931
5304
+ #: includes/elementor/widgets/text.php:384
5305
+ #: includes/elementor/widgets/text.php:555
5306
+ #: includes/elementor/widgets/text.php:614
5307
+ #: includes/elementor/widgets/text.php:1084
5308
+ #: includes/elementor/widgets/text.php:1111
5309
  #: includes/elementor/widgets/theme-elements/menu.php:403
5310
  #: includes/elementor/widgets/theme-elements/menu.php:480
5311
  #: includes/elementor/widgets/theme-elements/menu.php:593
5329
  #: includes/elementor/widgets/icon.php:114
5330
  #: includes/elementor/widgets/icon.php:194
5331
  #: includes/elementor/widgets/modern-button.php:789
5332
+ #: includes/elementor/widgets/text.php:117
5333
+ #: includes/elementor/widgets/text.php:127
5334
  #: includes/elementor/widgets/theme-elements/modern-search.php:106
5335
  #: includes/elementor/widgets/theme-elements/modern-search.php:236
5336
  #: includes/elementor/widgets/theme-elements/search.php:106
5347
  msgstr ""
5348
 
5349
  #: includes/elementor/widgets/button.php:365
5350
+ #: includes/elementor/widgets/text.php:311 includes/elements/button.php:158
5351
  #: includes/elements/text.php:784
5352
  msgid "Icon for button"
5353
  msgstr ""
5354
 
5355
  #: includes/elementor/widgets/button.php:373
5356
+ #: includes/elementor/widgets/text.php:1145 includes/elements/button.php:171
5357
  #: includes/elements/text.php:800 includes/general-hooks.php:377
5358
  msgid "Icon alignment"
5359
  msgstr ""
5360
 
5361
  #: includes/elementor/widgets/button.php:380
5362
  #: includes/elementor/widgets/modern-button.php:804
5363
+ #: includes/elementor/widgets/text.php:1152 includes/elements/button.php:191
5364
  #: includes/elements/text.php:809 includes/general-hooks.php:859
5365
  #: includes/general-hooks.php:1271
5366
  msgid "Over"
5367
  msgstr ""
5368
 
5369
  #: includes/elementor/widgets/button.php:381
5370
+ #: includes/elementor/widgets/text.php:1153 includes/elements/button.php:195
5371
  #: includes/elements/text.php:810 includes/general-hooks.php:863
5372
  #: includes/general-hooks.php:1275
5373
  msgid "Animate from Left"
5374
  msgstr ""
5375
 
5376
  #: includes/elementor/widgets/button.php:382
5377
+ #: includes/elementor/widgets/text.php:1154 includes/elements/text.php:811
5378
  msgid "Animate from Right"
5379
  msgstr ""
5380
 
5381
  #: includes/elementor/widgets/button.php:390
5382
+ #: includes/elementor/widgets/text.php:430
5383
+ #: includes/elementor/widgets/text.php:1166
5384
  msgid "Icon Size"
5385
  msgstr ""
5386
 
5387
  #: includes/elementor/widgets/button.php:413
5388
+ #: includes/elementor/widgets/text.php:1351
5389
  #: includes/elementor/widgets/theme-elements/search.php:245
5390
  msgid "Icon Margin"
5391
  msgstr ""
5411
 
5412
  #: includes/elementor/widgets/button.php:516
5413
  #: includes/elementor/widgets/button.php:554
5414
+ #: includes/elementor/widgets/heading-modern.php:389
5415
+ #: includes/elementor/widgets/heading-modern.php:427
5416
+ #: includes/elementor/widgets/heading-modern.php:574
5417
+ #: includes/elementor/widgets/heading-modern.php:612
5418
+ #: includes/elementor/widgets/heading-modern.php:745
5419
+ #: includes/elementor/widgets/heading-modern.php:783
5420
  #: includes/elementor/widgets/image.php:680
5421
  #: includes/elementor/widgets/modern-button.php:508
5422
  #: includes/elementor/widgets/modern-button.php:546
5424
  #: includes/elementor/widgets/modern-button.php:646
5425
  #: includes/elementor/widgets/modern-button.php:720
5426
  #: includes/elementor/widgets/modern-button.php:758
5427
+ #: includes/elementor/widgets/products-grid.php:1025
5428
+ #: includes/elementor/widgets/products-grid.php:1081
5429
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:1857
5430
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:1913
5431
  #: includes/elementor/widgets/recent-posts-masonry.php:1255
5432
  #: includes/elementor/widgets/recent-posts-masonry.php:1311
5433
+ #: includes/elementor/widgets/text.php:762
5434
+ #: includes/elementor/widgets/text.php:858
5435
+ #: includes/elementor/widgets/text.php:969
5436
+ #: includes/elementor/widgets/text.php:1279
5437
+ #: includes/elementor/widgets/text.php:1317
5438
  #: includes/elementor/widgets/theme-elements/current-time.php:184
5439
  #: includes/elementor/widgets/theme-elements/logo.php:507
5440
  #: includes/elementor/widgets/theme-elements/logo.php:599
5516
  #: includes/elementor/widgets/modern-button.php:304
5517
  #: includes/elementor/widgets/modern-button.php:824
5518
  #: includes/elementor/widgets/modern-button.php:923
5519
+ #: includes/elementor/widgets/products-grid.php:770
5520
  #: includes/elementor/widgets/testimonial.php:756
5521
+ #: includes/elementor/widgets/text.php:1039
5522
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:268
5523
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:400
5524
  #: includes/elementor/widgets/theme-elements/modern-search.php:264
5868
  msgstr ""
5869
 
5870
  #: includes/elementor/widgets/custom-list.php:374
5871
+ #: includes/elementor/widgets/products-grid.php:139
5872
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:120
5873
  #: includes/elementor/widgets/recent-posts-masonry.php:120
5874
  #: includes/elementor/widgets/recent-posts-tiles-carousel.php:117
5962
 
5963
  #: includes/elementor/widgets/custom-list.php:599
5964
  #: includes/elementor/widgets/custom-list.php:686
5965
+ #: includes/elementor/widgets/heading-modern.php:887
5966
  msgid "Weight"
5967
  msgstr ""
5968
 
5971
  msgstr ""
5972
 
5973
  #: includes/elementor/widgets/custom-list.php:651
5974
+ #: includes/elementor/widgets/heading-modern.php:189
5975
  #: includes/elements/custom-list.php:172
5976
  msgid "Display Divider"
5977
  msgstr ""
6001
 
6002
  #: includes/elementor/widgets/divider.php:47
6003
  #: includes/elementor/widgets/divider.php:95
6004
+ #: includes/elementor/widgets/heading-modern.php:876
6005
  #: includes/elements/divider.php:16
6006
  msgid "Divider"
6007
  msgstr ""
6013
  #: includes/elementor/widgets/divider.php:119
6014
  #: includes/elementor/widgets/icon.php:140
6015
  #: includes/elementor/widgets/staff.php:200
6016
+ #: includes/elementor/widgets/text.php:461
6017
+ #: includes/elementor/widgets/text.php:656
6018
  #: includes/elements/about-widget.php:121 includes/elements/divider.php:69
6019
  #: includes/elements/dropcap.php:72 includes/elements/staff.php:168
6020
  #: includes/elements/text.php:539 includes/elements/text.php:581
6045
  msgstr ""
6046
 
6047
  #: includes/elementor/widgets/divider.php:193
6048
+ #: includes/elementor/widgets/heading-modern.php:155
6049
  #: includes/elementor/widgets/icon.php:166
6050
  #: includes/elementor/widgets/image.php:314
6051
  #: includes/elementor/widgets/modern-button.php:180
6192
  msgstr ""
6193
 
6194
  #: includes/elementor/widgets/gallery.php:152
6195
+ #: includes/elementor/widgets/products-grid.php:147
6196
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:128
6197
  #: includes/elementor/widgets/recent-posts-masonry.php:128
6198
  #: includes/elementor/widgets/recent-products.php:137
6327
  "and insert it in customizer \"Google Maps API Key\" field."
6328
  msgstr ""
6329
 
6330
+ #: includes/elementor/widgets/heading-modern.php:53
6331
  msgid "Modern Heading"
6332
  msgstr ""
6333
 
6334
+ #: includes/elementor/widgets/heading-modern.php:101
6335
+ #: includes/elementor/widgets/heading-modern.php:340
6336
  msgid "Heading"
6337
  msgstr ""
6338
 
6339
+ #: includes/elementor/widgets/heading-modern.php:113
6340
  msgid "Add your heading text here .."
6341
  msgstr ""
6342
 
6343
+ #: includes/elementor/widgets/heading-modern.php:135
6344
+ #: includes/elementor/widgets/heading-modern.php:285
6345
  msgid "HTML Tag"
6346
  msgstr ""
6347
 
6348
+ #: includes/elementor/widgets/heading-modern.php:202
6349
  msgid "Divider Position"
6350
  msgstr ""
6351
 
6352
+ #: includes/elementor/widgets/heading-modern.php:205
6353
  msgid "Before Heading"
6354
  msgstr ""
6355
 
6356
+ #: includes/elementor/widgets/heading-modern.php:206
6357
  msgid "Between Headings"
6358
  msgstr ""
6359
 
6360
+ #: includes/elementor/widgets/heading-modern.php:207
6361
  msgid "After Headings"
6362
  msgstr ""
6363
 
6364
+ #: includes/elementor/widgets/heading-modern.php:225
6365
+ #: includes/elementor/widgets/heading-modern.php:520
6366
  msgid "Secondary Heading"
6367
  msgstr ""
6368
 
6369
+ #: includes/elementor/widgets/heading-modern.php:232
6370
  msgid "Before Text"
6371
  msgstr ""
6372
 
6373
+ #: includes/elementor/widgets/heading-modern.php:245
6374
  #: includes/elementor/widgets/modern-button.php:117
6375
  #: includes/elementor/widgets/modern-button.php:565
6376
  #: includes/elements/highlight.php:18
6377
  msgid "Highlighted Text"
6378
  msgstr ""
6379
 
6380
+ #: includes/elementor/widgets/heading-modern.php:258
6381
  #: includes/elementor/widgets/modern-button.php:126
6382
  #: includes/elementor/widgets/modern-button.php:677
6383
  msgid "After Text"
6384
  msgstr ""
6385
 
6386
+ #: includes/elementor/widgets/heading-modern.php:473
6387
+ #: includes/elementor/widgets/heading-modern.php:658
6388
+ #: includes/elementor/widgets/heading-modern.php:829
6389
  #: includes/elementor/widgets/image.php:484
6390
  #: includes/elementor/widgets/svg.php:305
6391
  #: includes/elementor/widgets/testimonial.php:306
6394
  msgid "Border radius"
6395
  msgstr ""
6396
 
6397
+ #: includes/elementor/widgets/heading-modern.php:706
6398
  msgid "Secondary Heading - Highlighted"
6399
  msgstr ""
6400
 
6471
  #: includes/elementor/widgets/svg.php:110
6472
  #: includes/elementor/widgets/testimonial.php:102
6473
  #: includes/elementor/widgets/testimonial.php:267
6474
+ #: includes/elementor/widgets/text.php:118
6475
+ #: includes/elementor/widgets/text.php:140
6476
  #: includes/elementor/widgets/theme-elements/logo.php:214
6477
  #: includes/elements/about-widget.php:100 includes/elements/image.php:15
6478
  #: includes/elements/image.php:57 includes/elements/text.php:375
6571
  #: includes/elementor/widgets/recent-posts-timeline.php:192
6572
  #: includes/elementor/widgets/recent-products.php:224
6573
  #: includes/elementor/widgets/staff.php:223
6574
+ #: includes/elementor/widgets/text.php:163
6575
  msgid "Preload image"
6576
  msgstr ""
6577
 
6582
  #: includes/elementor/widgets/recent-posts-timeline.php:207
6583
  #: includes/elementor/widgets/recent-products.php:239
6584
  #: includes/elementor/widgets/staff.php:235
6585
+ #: includes/elementor/widgets/text.php:178
6586
  msgid "While loading image display"
6587
  msgstr ""
6588
 
6593
  #: includes/elementor/widgets/recent-posts-timeline.php:222
6594
  #: includes/elementor/widgets/recent-products.php:254
6595
  #: includes/elementor/widgets/staff.php:250
6596
+ #: includes/elementor/widgets/text.php:194
6597
  msgid "Placeholder color while loading image"
6598
  msgstr ""
6599
 
6730
  msgid "Below"
6731
  msgstr ""
6732
 
6733
+ #: includes/elementor/widgets/products-grid.php:57
6734
+ msgid "Products Grid"
 
 
 
 
 
 
 
 
6735
  msgstr ""
6736
 
6737
+ #: includes/elementor/widgets/products-grid.php:164
6738
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:694
6739
+ #: includes/elementor/widgets/recent-posts-land-style.php:357
6740
+ #: includes/elementor/widgets/recent-posts-masonry.php:453
6741
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:348
6742
+ #: includes/elementor/widgets/recent-posts-tiles.php:250
6743
+ #: includes/elementor/widgets/recent-posts-timeline.php:382
6744
+ #: includes/elementor/widgets/recent-products.php:327
6745
+ #: includes/elements/popular-posts-widget.php:65
6746
+ #: includes/elements/recent-posts-grid-carousel.php:99
6747
+ #: includes/elements/recent-posts-land-style.php:86
6748
+ #: includes/elements/recent-posts-masonry.php:86
6749
+ #: includes/elements/recent-posts-tiles.php:85
6750
+ #: includes/elements/recent-posts-timeline.php:80
6751
+ #: includes/elements/recent-posts-widget.php:71
6752
+ msgid "Number of posts to show"
6753
  msgstr ""
6754
 
6755
+ #: includes/elementor/widgets/products-grid.php:184
6756
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:660
6757
+ #: includes/elementor/widgets/recent-posts-land-style.php:338
6758
+ #: includes/elementor/widgets/recent-posts-masonry.php:434
6759
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:329
6760
+ #: includes/elementor/widgets/recent-posts-tiles.php:231
6761
+ #: includes/elementor/widgets/recent-posts-timeline.php:363
6762
+ #: includes/elementor/widgets/recent-products.php:308
6763
+ #: includes/elements/latest-posts-slider.php:70
6764
+ #: includes/elements/latest-posts-slider.php:84
6765
+ #: includes/elements/latest-posts-slider.php:98
6766
+ #: includes/elements/latest-posts-slider.php:112
6767
+ #: includes/elements/latest-posts-slider.php:126
6768
+ #: includes/elements/latest-posts-slider.php:150
6769
+ #: includes/elements/latest-posts-slider.php:168
6770
+ #: includes/elements/latest-posts-slider.php:238
6771
+ #: includes/elements/recent-posts-grid-carousel.php:95
6772
+ #: includes/elements/recent-posts-grid-carousel.php:109
6773
+ #: includes/elements/recent-posts-grid-carousel.php:142
6774
+ #: includes/elements/recent-posts-grid-carousel.php:155
6775
+ #: includes/elements/recent-posts-grid-carousel.php:196
6776
+ #: includes/elements/recent-posts-grid-carousel.php:214
6777
+ #: includes/elements/recent-posts-grid-carousel.php:228
6778
+ #: includes/elements/recent-posts-grid-carousel.php:242
6779
+ #: includes/elements/recent-posts-grid-carousel.php:256
6780
+ #: includes/elements/recent-posts-grid-carousel.php:270
6781
+ #: includes/elements/recent-posts-land-style.php:82
6782
+ #: includes/elements/recent-posts-land-style.php:96
6783
+ #: includes/elements/recent-posts-land-style.php:129
6784
+ #: includes/elements/recent-posts-land-style.php:142
6785
+ #: includes/elements/recent-posts-land-style.php:158
6786
+ #: includes/elements/recent-posts-land-style.php:183
6787
+ #: includes/elements/recent-posts-land-style.php:201
6788
+ #: includes/elements/recent-posts-land-style.php:215
6789
+ #: includes/elements/recent-posts-land-style.php:229
6790
+ #: includes/elements/recent-posts-land-style.php:243
6791
+ #: includes/elements/recent-posts-land-style.php:257
6792
+ #: includes/elements/recent-posts-masonry.php:82
6793
+ #: includes/elements/recent-posts-masonry.php:96
6794
+ #: includes/elements/recent-posts-masonry.php:109
6795
+ #: includes/elements/recent-posts-masonry.php:122
6796
+ #: includes/elements/recent-posts-masonry.php:163
6797
+ #: includes/elements/recent-posts-masonry.php:181
6798
+ #: includes/elements/recent-posts-masonry.php:195
6799
+ #: includes/elements/recent-posts-masonry.php:209
6800
+ #: includes/elements/recent-posts-masonry.php:223
6801
+ #: includes/elements/recent-posts-masonry.php:237
6802
+ #: includes/elements/recent-posts-tiles-carousel.php:68
6803
+ #: includes/elements/recent-posts-tiles-carousel.php:82
6804
+ #: includes/elements/recent-posts-tiles-carousel.php:96
6805
+ #: includes/elements/recent-posts-tiles-carousel.php:109
6806
+ #: includes/elements/recent-posts-tiles-carousel.php:122
6807
+ #: includes/elements/recent-posts-tiles-carousel.php:138
6808
+ #: includes/elements/recent-posts-tiles-carousel.php:163
6809
+ #: includes/elements/recent-posts-tiles-carousel.php:181
6810
+ #: includes/elements/recent-posts-tiles-carousel.php:195
6811
+ #: includes/elements/recent-posts-tiles-carousel.php:209
6812
+ #: includes/elements/recent-posts-tiles-carousel.php:223
6813
+ #: includes/elements/recent-posts-tiles-carousel.php:248
6814
+ #: includes/elements/recent-posts-tiles-carousel.php:266
6815
+ #: includes/elements/recent-posts-tiles-carousel.php:280
6816
+ #: includes/elements/recent-posts-tiles.php:81
6817
+ #: includes/elements/recent-posts-tiles.php:95
6818
+ #: includes/elements/recent-posts-tiles.php:108
6819
+ #: includes/elements/recent-posts-tiles.php:121
6820
+ #: includes/elements/recent-posts-tiles.php:137
6821
+ #: includes/elements/recent-posts-tiles.php:193
6822
+ #: includes/elements/recent-posts-tiles.php:211
6823
+ #: includes/elements/recent-posts-tiles.php:225
6824
+ #: includes/elements/recent-posts-tiles.php:239
6825
+ #: includes/elements/recent-posts-tiles.php:253
6826
+ #: includes/elements/recent-posts-tiles.php:278
6827
+ #: includes/elements/recent-posts-tiles.php:296
6828
+ #: includes/elements/recent-posts-tiles.php:310
6829
+ #: includes/elements/recent-posts-timeline.php:76
6830
+ #: includes/elements/recent-posts-timeline.php:90
6831
+ #: includes/elements/recent-posts-timeline.php:103
6832
+ #: includes/elements/recent-posts-timeline.php:116
6833
+ #: includes/elements/recent-posts-timeline.php:132
6834
+ #: includes/elements/recent-posts-timeline.php:188
6835
+ #: includes/elements/recent-posts-timeline.php:206
6836
+ #: includes/elements/recent-posts-timeline.php:220
6837
+ #: includes/elements/recent-posts-timeline.php:234
6838
+ #: includes/elements/recent-posts-timeline.php:248
6839
+ #: includes/elements/recent-posts-timeline.php:262
6840
+ msgid "Query"
6841
  msgstr ""
6842
 
6843
+ #: includes/elementor/widgets/products-grid.php:191
6844
+ msgid "Products Type"
6845
  msgstr ""
6846
 
6847
+ #: includes/elementor/widgets/products-grid.php:195
6848
+ #: includes/elementor/widgets/recent-products.php:49
6849
+ #: includes/elements/recent-products.php:15
6850
+ msgid "Recent Products"
6851
  msgstr ""
6852
 
6853
+ #: includes/elementor/widgets/products-grid.php:196
6854
+ msgid "Featured Products"
6855
  msgstr ""
6856
 
6857
+ #: includes/elementor/widgets/products-grid.php:197
6858
+ msgid "Top Rated Products"
6859
  msgstr ""
6860
 
6861
+ #: includes/elementor/widgets/products-grid.php:198
6862
+ msgid "Best Selling Products"
 
 
 
6863
  msgstr ""
6864
 
6865
+ #: includes/elementor/widgets/products-grid.php:199
6866
+ msgid "On Sale Products"
6867
  msgstr ""
6868
 
6869
+ #: includes/elementor/widgets/products-grid.php:200
6870
+ msgid "Deal Products"
6871
  msgstr ""
6872
 
6873
+ #: includes/elementor/widgets/products-grid.php:209
6874
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:679
6875
+ #: includes/elementor/widgets/recent-posts-land-style.php:345
6876
+ #: includes/elementor/widgets/recent-posts-masonry.php:441
6877
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:336
6878
+ #: includes/elementor/widgets/recent-posts-tiles.php:238
6879
+ #: includes/elementor/widgets/recent-posts-timeline.php:370
6880
+ #: includes/elementor/widgets/recent-products.php:315
6881
+ #: includes/elements/popular-posts-widget.php:236
6882
+ #: includes/elements/recent-posts-grid-carousel.php:84
6883
+ #: includes/elements/recent-posts-land-style.php:71
6884
+ #: includes/elements/recent-posts-masonry.php:71
6885
+ #: includes/elements/recent-posts-tiles-carousel.php:57
6886
+ #: includes/elements/recent-posts-tiles.php:70
6887
+ #: includes/elements/recent-posts-timeline.php:65
6888
+ #: includes/elements/recent-posts-widget.php:191
6889
+ #: includes/elements/recent-products.php:70
6890
+ msgid "Categories"
6891
  msgstr ""
6892
 
6893
+ #: includes/elementor/widgets/products-grid.php:210
6894
+ msgid ""
6895
+ "Specifies a category that you want to show posts from it. In order to "
6896
+ "choose the all categories leave the field empty"
6897
  msgstr ""
6898
 
6899
+ #: includes/elementor/widgets/products-grid.php:221
6900
+ msgid "Exclude products without media"
6901
  msgstr ""
6902
 
6903
+ #: includes/elementor/widgets/products-grid.php:233
6904
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:775
6905
+ #: includes/elementor/widgets/recent-posts-land-style.php:408
6906
+ #: includes/elementor/widgets/recent-posts-masonry.php:504
6907
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:399
6908
+ #: includes/elementor/widgets/recent-posts-tiles.php:301
6909
+ #: includes/elementor/widgets/recent-posts-timeline.php:433
6910
+ #: includes/elementor/widgets/recent-products.php:378
6911
+ #: includes/elements/latest-posts-slider.php:130
6912
+ #: includes/elements/popular-posts-widget.php:189
6913
+ #: includes/elements/recent-posts-grid-carousel.php:175
6914
+ #: includes/elements/recent-posts-land-style.php:162
6915
+ #: includes/elements/recent-posts-masonry.php:142
6916
+ #: includes/elements/recent-posts-tiles-carousel.php:142
6917
+ #: includes/elements/recent-posts-tiles-carousel.php:227
6918
+ #: includes/elements/recent-posts-tiles.php:172
6919
+ #: includes/elements/recent-posts-tiles.php:257
6920
+ #: includes/elements/recent-posts-timeline.php:167
6921
+ #: includes/elements/recent-posts-widget.php:149
6922
+ #: includes/elements/recent-products.php:121
6923
+ msgid "Order by"
 
 
 
 
 
 
 
 
 
 
 
 
6924
  msgstr ""
6925
 
6926
+ #: includes/elementor/widgets/products-grid.php:242
6927
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:784
6928
+ #: includes/elementor/widgets/recent-posts-land-style.php:417
6929
+ #: includes/elementor/widgets/recent-posts-masonry.php:513
6930
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:408
6931
+ #: includes/elementor/widgets/recent-posts-tiles.php:310
6932
+ #: includes/elementor/widgets/recent-posts-timeline.php:442
6933
+ #: includes/elementor/widgets/recent-products.php:387
6934
+ #: includes/elements/latest-posts-slider.php:141
6935
+ #: includes/elements/popular-posts-widget.php:202
6936
+ #: includes/elements/recent-posts-grid-carousel.php:188
6937
+ #: includes/elements/recent-posts-land-style.php:175
6938
+ #: includes/elements/recent-posts-masonry.php:155
6939
+ #: includes/elements/recent-posts-tiles-carousel.php:155
6940
+ #: includes/elements/recent-posts-tiles-carousel.php:240
6941
+ #: includes/elements/recent-posts-tiles.php:185
6942
+ #: includes/elements/recent-posts-tiles.php:270
6943
+ #: includes/elements/recent-posts-timeline.php:180
6944
+ #: includes/elements/recent-posts-widget.php:162
6945
+ #: includes/elements/recent-products.php:134
6946
+ msgid "Comments"
6947
  msgstr ""
6948
 
6949
+ #: includes/elementor/widgets/products-grid.php:243
6950
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:785
6951
+ #: includes/elementor/widgets/recent-posts-land-style.php:418
6952
+ #: includes/elementor/widgets/recent-posts-masonry.php:514
6953
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:409
6954
+ #: includes/elementor/widgets/recent-posts-tiles.php:311
6955
+ #: includes/elementor/widgets/recent-posts-timeline.php:443
6956
+ #: includes/elementor/widgets/recent-products.php:388
6957
+ #: includes/elements/latest-posts-slider.php:142
6958
+ #: includes/elements/popular-posts-widget.php:203
6959
+ #: includes/elements/recent-posts-grid-carousel.php:189
6960
+ #: includes/elements/recent-posts-land-style.php:176
6961
+ #: includes/elements/recent-posts-masonry.php:156
6962
+ #: includes/elements/recent-posts-tiles-carousel.php:156
6963
+ #: includes/elements/recent-posts-tiles-carousel.php:241
6964
+ #: includes/elements/recent-posts-tiles.php:186
6965
+ #: includes/elements/recent-posts-tiles.php:271
6966
+ #: includes/elements/recent-posts-timeline.php:181
6967
+ #: includes/elements/recent-posts-widget.php:163
6968
+ #: includes/elements/recent-products.php:135
6969
+ msgid "Date Modified"
6970
+ msgstr ""
6971
+
6972
+ #: includes/elementor/widgets/products-grid.php:245
6973
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:787
6974
+ #: includes/elementor/widgets/recent-posts-land-style.php:420
6975
+ #: includes/elementor/widgets/recent-posts-masonry.php:516
6976
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:411
6977
+ #: includes/elementor/widgets/recent-posts-tiles.php:313
6978
+ #: includes/elementor/widgets/recent-posts-timeline.php:445
6979
+ #: includes/elementor/widgets/recent-products.php:390
6980
+ #: includes/elements/recent-posts-grid-carousel.php:191
6981
+ #: includes/elements/recent-posts-land-style.php:178
6982
+ #: includes/elements/recent-posts-masonry.php:158
6983
+ #: includes/elements/recent-posts-tiles-carousel.php:158
6984
+ #: includes/elements/recent-posts-tiles-carousel.php:243
6985
+ #: includes/elements/recent-posts-tiles.php:188
6986
+ #: includes/elements/recent-posts-tiles.php:273
6987
+ #: includes/elements/recent-posts-timeline.php:183
6988
+ #: includes/elements/recent-products.php:137
6989
+ msgid "Inserted Post IDs"
6990
+ msgstr ""
6991
+
6992
+ #: includes/elementor/widgets/products-grid.php:257
6993
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:802
6994
+ #: includes/elementor/widgets/recent-posts-land-style.php:432
6995
+ #: includes/elementor/widgets/recent-posts-masonry.php:528
6996
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:423
6997
+ #: includes/elementor/widgets/recent-posts-tiles.php:325
6998
+ #: includes/elementor/widgets/recent-posts-timeline.php:457
6999
+ #: includes/elementor/widgets/recent-products.php:402
7000
+ #: includes/elements/latest-posts-slider.php:160
7001
+ #: includes/elements/popular-posts-widget.php:221
7002
+ #: includes/elements/recent-posts-grid-carousel.php:208
7003
+ #: includes/elements/recent-posts-land-style.php:195
7004
+ #: includes/elements/recent-posts-masonry.php:175
7005
+ #: includes/elements/recent-posts-tiles-carousel.php:175
7006
+ #: includes/elements/recent-posts-tiles-carousel.php:260
7007
+ #: includes/elements/recent-posts-tiles.php:205
7008
+ #: includes/elements/recent-posts-tiles.php:290
7009
+ #: includes/elements/recent-posts-timeline.php:200
7010
+ #: includes/elements/recent-posts-widget.php:181
7011
+ #: includes/elements/recent-products.php:154
7012
+ msgid "Descending"
7013
+ msgstr ""
7014
+
7015
+ #: includes/elementor/widgets/products-grid.php:258
7016
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:803
7017
+ #: includes/elementor/widgets/recent-posts-land-style.php:433
7018
+ #: includes/elementor/widgets/recent-posts-masonry.php:529
7019
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:424
7020
+ #: includes/elementor/widgets/recent-posts-tiles.php:326
7021
+ #: includes/elementor/widgets/recent-posts-timeline.php:458
7022
+ #: includes/elementor/widgets/recent-products.php:403
7023
+ #: includes/elements/latest-posts-slider.php:161
7024
+ #: includes/elements/popular-posts-widget.php:222
7025
+ #: includes/elements/recent-posts-grid-carousel.php:209
7026
+ #: includes/elements/recent-posts-land-style.php:196
7027
+ #: includes/elements/recent-posts-masonry.php:176
7028
+ #: includes/elements/recent-posts-tiles-carousel.php:176
7029
+ #: includes/elements/recent-posts-tiles-carousel.php:261
7030
+ #: includes/elements/recent-posts-tiles.php:206
7031
+ #: includes/elements/recent-posts-tiles.php:291
7032
+ #: includes/elements/recent-posts-timeline.php:201
7033
+ #: includes/elements/recent-posts-widget.php:182
7034
+ #: includes/elements/recent-products.php:155
7035
+ msgid "Ascending"
7036
+ msgstr ""
7037
+
7038
+ #: includes/elementor/widgets/products-grid.php:266
7039
+ #: includes/elementor/widgets/recent-products.php:411
7040
+ #: includes/elements/recent-products.php:164
7041
+ msgid "Only products"
7042
+ msgstr ""
7043
+
7044
+ #: includes/elementor/widgets/products-grid.php:267
7045
+ #: includes/elementor/widgets/recent-products.php:412
7046
+ #: includes/elements/recent-products.php:165
7047
+ msgid ""
7048
+ "If you intend to display ONLY specific products, you should specify the "
7049
+ "products here. You have to insert the Products IDs that are separated by "
7050
+ "comma (eg. 53,34,87,25)."
7051
+ msgstr ""
7052
+
7053
+ #: includes/elementor/widgets/products-grid.php:275
7054
+ #: includes/elementor/widgets/recent-products.php:420
7055
+ #: includes/elements/recent-products.php:178
7056
+ msgid "Include products"
7057
+ msgstr ""
7058
+
7059
+ #: includes/elementor/widgets/products-grid.php:276
7060
+ #: includes/elementor/widgets/recent-products.php:421
7061
+ #: includes/elements/recent-products.php:179
7062
+ msgid ""
7063
+ "If you intend to include additional products, you should specify the "
7064
+ "products here. You have to insert the Products IDs that are separated by "
7065
+ "comma (eg. 53,34,87,25)"
7066
+ msgstr ""
7067
+
7068
+ #: includes/elementor/widgets/products-grid.php:284
7069
+ #: includes/elementor/widgets/recent-products.php:429
7070
+ #: includes/elements/recent-products.php:192
7071
+ msgid "Exclude products"
7072
+ msgstr ""
7073
+
7074
+ #: includes/elementor/widgets/products-grid.php:285
7075
+ #: includes/elementor/widgets/recent-products.php:430
7076
+ #: includes/elements/recent-products.php:193
7077
+ msgid ""
7078
+ "If you intend to exclude specific products from result, you should specify "
7079
+ "the products here. You have to insert the Products IDs that are separated "
7080
+ "by comma (eg. 53,34,87,25)"
7081
+ msgstr ""
7082
+
7083
+ #: includes/elementor/widgets/products-grid.php:294
7084
+ #: includes/elements/recent-products.php:207
7085
+ msgid "Number of products to displace or pass over."
7086
+ msgstr ""
7087
+
7088
+ #: includes/elementor/widgets/products-grid.php:312
7089
+ #: includes/elementor/widgets/staff.php:831
7090
+ msgid "Wrappers"
7091
+ msgstr ""
7092
+
7093
+ #: includes/elementor/widgets/products-grid.php:320
7094
+ msgid "Product Bottom space"
7095
+ msgstr ""
7096
+
7097
+ #: includes/elementor/widgets/products-grid.php:336
7098
+ msgid "Info Wrapper Padding"
7099
+ msgstr ""
7100
+
7101
+ #: includes/elementor/widgets/products-grid.php:348
7102
+ msgid "Meta Wrapper Padding"
7103
+ msgstr ""
7104
+
7105
+ #: includes/elementor/widgets/products-grid.php:360
7106
+ msgid "Description Wrapper Padding"
7107
+ msgstr ""
7108
+
7109
+ #: includes/elementor/widgets/products-grid.php:372
7110
+ msgid "Buttons Wrapper Padding"
7111
+ msgstr ""
7112
+
7113
+ #: includes/elementor/widgets/products-grid.php:457
7114
+ msgid "Price"
7115
+ msgstr ""
7116
+
7117
+ #: includes/elementor/widgets/products-grid.php:526
7118
+ msgid "Product Info"
7119
+ msgstr ""
7120
+
7121
+ #: includes/elementor/widgets/products-grid.php:660
7122
+ msgid "Meta Fields"
7123
+ msgstr ""
7124
+
7125
+ #: includes/elementor/widgets/products-grid.php:739
7126
+ #: includes/elementor/widgets/testimonial.php:722
7127
+ msgid "Rating"
7128
+ msgstr ""
7129
+
7130
+ #: includes/elementor/widgets/products-grid.php:748
7131
+ #: includes/elementor/widgets/testimonial.php:734
7132
+ msgid "Empty Color"
7133
+ msgstr ""
7134
+
7135
+ #: includes/elementor/widgets/products-grid.php:759
7136
+ #: includes/elementor/widgets/testimonial.php:745
7137
+ msgid "Fill Color"
7138
+ msgstr ""
7139
+
7140
+ #: includes/elementor/widgets/products-grid.php:796
7141
+ msgid "Sales Badge"
7142
+ msgstr ""
7143
+
7144
+ #: includes/elementor/widgets/products-grid.php:887
7145
+ msgid "Featured Badge"
7146
+ msgstr ""
7147
+
7148
+ #: includes/elementor/widgets/products-grid.php:1102
7149
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:1934
7150
+ #: includes/elementor/widgets/recent-posts-masonry.php:1332
7151
+ msgid "Button Padding"
7152
+ msgstr ""
7153
+
7154
+ #: includes/elementor/widgets/quote.php:50
7155
+ msgid "Blockquote"
7156
+ msgstr ""
7157
+
7158
+ #: includes/elementor/widgets/quote.php:106
7159
+ msgid "Enter a text as a quote content."
7160
+ msgstr ""
7161
+
7162
+ #: includes/elementor/widgets/quote.php:108
7163
+ msgid "Type your description here"
7164
+ msgstr ""
7165
+
7166
+ #: includes/elementor/widgets/quote.php:156 includes/elements/quote.php:103
7167
+ msgid "Text alignment"
7168
+ msgstr ""
7169
+
7170
+ #: includes/elementor/widgets/quote.php:211
7171
+ msgid "Quote Symbol"
7172
+ msgstr ""
7173
+
7174
+ #: includes/elementor/widgets/quote.php:219 includes/elements/quote.php:142
7175
+ msgid "Insert quote symbol"
7176
+ msgstr ""
7177
+
7178
+ #: includes/elementor/widgets/quote.php:230
7179
+ msgid "Quote symbol color"
7180
+ msgstr ""
7181
+
7182
+ #: includes/elementor/widgets/quote.php:256
7183
+ msgid "Text indent"
7184
+ msgstr ""
7185
+
7186
+ #: includes/elementor/widgets/quote.php:305
7187
+ msgid "Block"
7188
+ msgstr ""
7189
+
7190
+ #: includes/elementor/widgets/quote.php:322
7191
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:200
7192
+ #: includes/elements/instagram-feed.php:224
7193
+ #: includes/elements/recent-posts-grid-carousel.php:579
7194
+ msgid "Background color"
7195
+ msgstr ""
7196
+
7197
+ #: includes/elementor/widgets/recent-comments.php:49
7198
+ msgid "Recent Commented Posts"
7199
+ msgstr ""
7200
+
7201
+ #: includes/elementor/widgets/recent-comments.php:78
7202
+ msgid "All Post Types"
7203
+ msgstr ""
7204
+
7205
+ #: includes/elementor/widgets/recent-comments.php:130
7206
+ #: includes/elementor/widgets/theme-elements/modern-search.php:143
7207
+ msgid "Post Types"
7208
+ msgstr ""
7209
+
7210
+ #: includes/elementor/widgets/recent-comments.php:141
7211
+ msgid "Number of comments to show"
7212
+ msgstr ""
7213
+
7214
+ #: includes/elementor/widgets/recent-comments.php:153
7215
+ msgid "Display info"
7216
+ msgstr ""
7217
+
7218
+ #: includes/elementor/widgets/recent-comments.php:232
7219
+ #: includes/elementor/widgets/recent-comments.php:315
7220
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:1107
7221
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:1211
7222
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:1293
7223
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:1415
7224
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:1510
7225
+ #: includes/elementor/widgets/recent-posts-land-style.php:664
7226
+ #: includes/elementor/widgets/recent-posts-land-style.php:768
7227
+ #: includes/elementor/widgets/recent-posts-land-style.php:850
7228
+ #: includes/elementor/widgets/recent-posts-land-style.php:936
7229
+ #: includes/elementor/widgets/recent-posts-masonry.php:780
7230
+ #: includes/elementor/widgets/recent-posts-masonry.php:884
7231
+ #: includes/elementor/widgets/recent-posts-masonry.php:966
7232
+ #: includes/elementor/widgets/recent-posts-masonry.php:1052
7233
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:554
7234
+ #: includes/elementor/widgets/recent-posts-tiles-carousel.php:658
7235
+ #: includes/elementor/widgets/recent-posts-tiles.php:495
7236
+ #: includes/elementor/widgets/recent-posts-tiles.php:599
7237
+ #: includes/elementor/widgets/recent-posts-timeline.php:677
7238
+ #: includes/elementor/widgets/recent-posts-timeline.php:781
7239
+ #: includes/elementor/widgets/recent-posts-timeline.php:863
7240
+ #: includes/elementor/widgets/recent-posts-timeline.php:949
7241
+ #: includes/elementor/widgets/recent-products.php:684
7242
+ #: includes/elementor/widgets/staff.php:550
7243
+ #: includes/elementor/widgets/staff.php:612
7244
+ #: includes/elementor/widgets/staff.php:674
7245
+ #: includes/elementor/widgets/testimonial.php:553
7246
+ #: includes/elementor/widgets/testimonial.php:774
7247
+ #: includes/elementor/widgets/text.php:770
7248
+ #: includes/elementor/widgets/text.php:883
7249
+ #: includes/elementor/widgets/text.php:1006
7250
+ msgid "Bottom space"
7251
+ msgstr ""
7252
+
7253
+ #: includes/elementor/widgets/recent-comments.php:254
7254
+ msgid "Meta Info"
7255
+ msgstr ""
7256
+
7257
+ #: includes/elementor/widgets/recent-comments.php:331
7258
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:1230
7259
+ #: includes/elementor/widgets/recent-posts-land-style.php:787
7260
+ #: includes/elementor/widgets/recent-posts-masonry.php:903
7261
  #: includes/elementor/widgets/recent-posts-tiles-carousel.php:677
7262
  #: includes/elementor/widgets/recent-posts-tiles.php:618
7263
  #: includes/elementor/widgets/recent-posts-timeline.php:800
7665
  #: includes/elementor/widgets/recent-posts-masonry.php:385
7666
  #: includes/elementor/widgets/recent-posts-masonry.php:1208
7667
  #: includes/elementor/widgets/recent-posts-timeline.php:314
7668
+ #: includes/elementor/widgets/text.php:301
7669
  #: includes/elements/recent-posts-grid-carousel.php:447
7670
  #: includes/elements/recent-posts-land-style.php:371
7671
  #: includes/elements/recent-posts-masonry.php:347
7672
+ #: includes/elements/recent-posts-timeline.php:392
7673
+ msgid "Read More"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7674
  msgstr ""
7675
 
7676
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:622
7677
+ #: includes/elementor/widgets/recent-posts-land-style.php:316
7678
+ #: includes/elementor/widgets/recent-posts-masonry.php:412
7679
+ #: includes/elementor/widgets/recent-posts-timeline.php:341
7680
+ msgid "Display Author in Footer"
7681
  msgstr ""
7682
 
7683
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:623
7684
+ #: includes/elementor/widgets/recent-posts-land-style.php:317
7685
+ #: includes/elementor/widgets/recent-posts-masonry.php:413
7686
+ #: includes/elementor/widgets/recent-posts-timeline.php:342
7687
+ msgid "Enable it to display author name in footer"
7688
+ msgstr ""
7689
+
7690
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:638
7691
+ msgid "Meta info position"
7692
+ msgstr ""
7693
+
7694
+ #: includes/elementor/widgets/recent-posts-grid-carousel.php:667
7695
+ msgid "Use wp query"
 
 
 
 
7696
  msgstr ""
7697
 
7698
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:680
7713
  msgid "Specifies a category that you want to show posts from it."
7714
  msgstr ""
7715
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7716
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:706
7717
  #: includes/elementor/widgets/recent-posts-land-style.php:369
7718
  #: includes/elementor/widgets/recent-posts-masonry.php:465
7774
  msgid "Exclude quote and link post formats"
7775
  msgstr ""
7776
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7777
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:814
7778
  #: includes/elementor/widgets/recent-posts-land-style.php:441
7779
  #: includes/elementor/widgets/recent-posts-masonry.php:537
8037
  msgstr ""
8038
 
8039
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:1629
8040
+ #: includes/elementor/widgets/text.php:623
8041
+ #: includes/elementor/widgets/text.php:1553
8042
  msgid "Transition duration"
8043
  msgstr ""
8044
 
8046
  msgid "Flip Wrapper"
8047
  msgstr ""
8048
 
 
 
 
 
 
8049
  #: includes/elementor/widgets/recent-posts-land-style.php:49
8050
  msgid "Land Style Posts"
8051
  msgstr ""
8133
  msgid "Display post meta"
8134
  msgstr ""
8135
 
 
 
 
 
 
8136
  #: includes/elementor/widgets/recent-products.php:185
8137
  #: includes/elements/recent-products.php:220
8138
  msgid "Display products price"
8152
  msgid "Display Add To Cart"
8153
  msgstr ""
8154
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8155
  #: includes/elementor/widgets/recent-products.php:580
8156
  msgid "Spacing"
8157
  msgstr ""
8220
  msgstr ""
8221
 
8222
  #: includes/elementor/widgets/staff.php:108
8223
+ #: includes/elementor/widgets/text.php:234 includes/elements/text.php:44
8224
  msgid "Text title, leave it empty if you don`t need title."
8225
  msgstr ""
8226
 
8233
  msgstr ""
8234
 
8235
  #: includes/elementor/widgets/staff.php:141
8236
+ #: includes/elementor/widgets/text.php:265 includes/elements/staff.php:515
8237
  #: includes/elements/testimonial.php:167 includes/elements/text.php:882
8238
  msgid "Enter a text as a text content."
8239
  msgstr ""
8247
  msgstr ""
8248
 
8249
  #: includes/elementor/widgets/staff.php:196
8250
+ #: includes/elementor/widgets/text.php:648 includes/elements/staff.php:161
8251
  #: includes/elements/text.php:571
8252
  msgid "Image shape"
8253
  msgstr ""
8254
 
8255
  #: includes/elementor/widgets/staff.php:204
8256
+ #: includes/elementor/widgets/text.php:465
8257
+ #: includes/elementor/widgets/text.php:660 includes/elements/staff.php:172
8258
  #: includes/elements/text.php:543 includes/elements/text.php:585
8259
  msgid "Semi-circle"
8260
  msgstr ""
8261
 
8262
  #: includes/elementor/widgets/staff.php:208
8263
+ #: includes/elementor/widgets/text.php:469
8264
+ #: includes/elementor/widgets/text.php:664 includes/elements/staff.php:176
8265
  #: includes/elements/text.php:547 includes/elements/text.php:589
8266
  msgid "Round Rectangle"
8267
  msgstr ""
8268
 
8269
  #: includes/elementor/widgets/staff.php:212
8270
+ #: includes/elementor/widgets/text.php:477
8271
+ #: includes/elementor/widgets/text.php:668 includes/elements/staff.php:180
8272
  #: includes/elements/text.php:555 includes/elements/text.php:593
8273
  msgid "Rectangle"
8274
  msgstr ""
8328
  msgstr ""
8329
 
8330
  #: includes/elementor/widgets/staff.php:531
8331
+ #: includes/elementor/widgets/text.php:866
8332
+ #: includes/elementor/widgets/text.php:989
8333
  msgid "Top space"
8334
  msgstr ""
8335
 
8336
  #: includes/elementor/widgets/staff.php:575
8337
+ #: includes/elementor/widgets/text.php:243
8338
+ #: includes/elementor/widgets/text.php:792
8339
  #: includes/elements/recent-posts-grid-carousel.php:70
8340
  #: includes/elements/recent-products.php:56 includes/elements/text.php:59
8341
  msgid "Subtitle"
8374
  msgid "X-Large"
8375
  msgstr ""
8376
 
 
 
 
 
8377
  #: includes/elementor/widgets/staff.php:870
8378
+ #: includes/elementor/widgets/text.php:1445
8379
  #: includes/elementor/widgets/theme-elements/menu.php:324
8380
  #: includes/elementor/widgets/theme-elements/menu.php:1341
8381
  #: includes/elements/text.php:118
8399
  msgstr ""
8400
 
8401
  #: includes/elementor/widgets/svg.php:137
8402
+ #: includes/elementor/widgets/text.php:210
8403
  #: includes/elementor/widgets/theme-elements/menu.php:1116
8404
  msgid "Enter inline SVG content here"
8405
  msgstr ""
8519
  msgid "Occupation"
8520
  msgstr ""
8521
 
 
 
 
 
 
 
 
 
 
 
 
 
8522
  #: includes/elementor/widgets/testimonial.php:796
8523
  msgid "Content Box"
8524
  msgstr ""
8527
  msgid "Content Alignment"
8528
  msgstr ""
8529
 
8530
+ #: includes/elementor/widgets/text.php:54 includes/elements/text.php:15
8531
  msgid "Info Box"
8532
  msgstr ""
8533
 
8534
+ #: includes/elementor/widgets/text.php:119
8535
  msgid "Inline SVG"
8536
  msgstr ""
8537
 
8538
+ #: includes/elementor/widgets/text.php:129
8539
  #: includes/elementor/widgets/theme-elements/search.php:132
8540
  #: includes/elements/text.php:387
8541
  msgid "Please choose an icon from the list."
8542
  msgstr ""
8543
 
8544
+ #: includes/elementor/widgets/text.php:251 includes/elements/text.php:75
8545
  msgid "Title Link"
8546
  msgstr ""
8547
 
8548
+ #: includes/elementor/widgets/text.php:286 includes/elements/text.php:637
8549
  msgid "Display button"
8550
  msgstr ""
8551
 
8552
+ #: includes/elementor/widgets/text.php:287 includes/elements/text.php:638
8553
  msgid "Display a button in text widget"
8554
  msgstr ""
8555
 
8556
+ #: includes/elementor/widgets/text.php:359
8557
  msgid "Header Position"
8558
  msgstr ""
8559
 
8560
+ #: includes/elementor/widgets/text.php:410
8561
  msgid "Icon/Image"
8562
  msgstr ""
8563
 
8564
+ #: includes/elementor/widgets/text.php:422
8565
  msgid "Border"
8566
  msgstr ""
8567
 
8568
+ #: includes/elementor/widgets/text.php:456 includes/elements/text.php:533
8569
  msgid "Icon background shape"
8570
  msgstr ""
8571
 
8572
+ #: includes/elementor/widgets/text.php:473 includes/elements/text.php:551
8573
  msgid "Cross Rectangle"
8574
  msgstr ""
8575
 
8576
+ #: includes/elementor/widgets/text.php:524
8577
+ #: includes/elementor/widgets/text.php:583
8578
  #: includes/elementor/widgets/theme-elements/search.php:233
8579
  #: includes/elements/text.php:445
8580
  msgid "Icon color"
8581
  msgstr ""
8582
 
8583
+ #: includes/elementor/widgets/text.php:539
8584
+ #: includes/elementor/widgets/text.php:598 includes/elements/text.php:486
8585
  msgid "Icon background color"
8586
  msgstr ""
8587
 
8588
+ #: includes/elementor/widgets/text.php:652 includes/elements/text.php:577
8589
  msgid "Default Aspect"
8590
  msgstr ""
8591
 
8592
+ #: includes/elementor/widgets/text.php:1055
8593
  msgid "Button Skin"
8594
  msgstr ""
8595
 
8596
+ #: includes/elementor/widgets/text.php:1132
8597
  msgid "Button Icon"
8598
  msgstr ""
8599
 
8600
+ #: includes/elementor/widgets/text.php:1245
8601
  msgid "Button Text"
8602
  msgstr ""
8603
 
8604
+ #: includes/elementor/widgets/text.php:1338
8605
  msgid "Button Wrapper"
8606
  msgstr ""
8607
 
8608
+ #: includes/elementor/widgets/text.php:1363
8609
  msgid "Shape Style"
8610
  msgstr ""
8611
 
8612
+ #: includes/elementor/widgets/text.php:1387 includes/general-hooks.php:759
8613
  #: includes/general-hooks.php:1171
8614
  msgid "Button Style"
8615
  msgstr ""
8616
 
8617
+ #: includes/elementor/widgets/text.php:1437
8618
  msgid "Overlay"
8619
  msgstr ""
8620
 
8621
+ #: includes/elementor/widgets/text.php:1588 includes/elements/text.php:896
8622
  msgid "Footer Shape"
8623
  msgstr ""
8624
 
8625
+ #: includes/elementor/widgets/text.php:1597 includes/elements/text.php:907
8626
  msgid "Wave"
8627
  msgstr ""
8628
 
8629
+ #: includes/elementor/widgets/text.php:1601 includes/elements/text.php:911
8630
  msgid "Tail"
8631
  msgstr ""
8632
 
8633
+ #: includes/elementor/widgets/text.php:1612 includes/elements/button.php:212
8634
  #: includes/elements/text.php:825
8635
  msgid "Color of button"
8636
  msgstr ""
10836
  msgid "Vertical 10:15"
10837
  msgstr ""
10838
 
 
 
 
 
10839
  #: includes/elements/sample-element.php:19
10840
  msgid "Auxin Callout "
10841
  msgstr ""
11389
  msgid "Page Not Found"
11390
  msgstr ""
11391
 
11392
+ #: includes/general-functions.php:2508
11393
  msgid "Select Page"
11394
  msgstr ""
11395
 
public/assets/js/plugins.js CHANGED
@@ -1,4 +1,4 @@
1
- /*! Phlox Core Plugin - v2.9.0 (2021-11)
2
  * All required plugins
3
  * http://phlox.pro/
4
  */
1
+ /*! Phlox Core Plugin - v2.9.2 (2021-12)
2
  * All required plugins
3
  * http://phlox.pro/
4
  */
public/templates/woocommerce/products-grid.php ADDED
@@ -0,0 +1,171 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ function auxin_products_grid( $args= array() ) {
3
+
4
+ global $post;
5
+
6
+ $defaults = array (
7
+ 'product_type' => '', // available values : recent, featured, top_rated, sale, deal, best_selling
8
+ 'title' => '', // header title (required)
9
+ 'subtitle' => '', // header subtitle
10
+ 'cat' => '',
11
+ 'num' => '8', // max generated entry
12
+ 'order_by' => 'date',
13
+ 'order' => 'DESC',
14
+ 'only_products__in' => '', // display only these post IDs. array or string comma separated
15
+ 'include' => '', // include these post IDs in result too. array or string comma separated
16
+ 'exclude' => '', // exclude these post IDs from result. array or string comma separated
17
+ 'offset' => '',
18
+ 'desktop_cnum' => 4,
19
+ 'post_type' => 'product',
20
+ 'taxonomy' => 'product_cat', // the taxonomy that we intent to display in post info
21
+ 'tax_args' => '',
22
+ 'content_width' => '',
23
+ 'extra_classes' => '',
24
+ 'terms' => ' ',
25
+ 'universal_id' => '',
26
+ 'use_wp_query' => false, // true to use the global wp_query, false to use internal custom query
27
+ 'reset_query' => true,
28
+ 'wp_query_args' => array(), // additional wp_query args
29
+ 'query_args' => array(),
30
+ 'custom_wp_query' => '',
31
+ 'base' => 'aux_products_grid',
32
+ 'base_class' => 'aux-widget-products-grid'
33
+ );
34
+
35
+ $args = wp_parse_args( $args, $defaults );
36
+
37
+ if( ( empty( $args['terms'] ) || $args['terms'] === "all" ) && !empty( $args['cat'] ) ) {
38
+ $tax_args = array(
39
+ array(
40
+ 'taxonomy' => 'product_cat',
41
+ 'field' => 'term_id',
42
+ 'terms' => $args['cat']
43
+ )
44
+ );
45
+ } else if ( ! empty( $args['terms'] ) ) {
46
+ $tax_args = array(
47
+ array(
48
+ 'taxonomy' => $args['taxonomy'],
49
+ 'field' => 'term_id',
50
+ 'terms' => $args['terms']
51
+ )
52
+ );
53
+ } else if ( empty( $args['cat'] ) ) {
54
+ $tax_args = array();
55
+ }
56
+
57
+ if ( empty( $args['cat'] ) && $args['taxonomy'] == 'product_tag' && $args['terms'] === "all" ) {
58
+ $tax_args = [];
59
+ }
60
+
61
+ $query_args = array(
62
+ 'post_type' => 'product',
63
+ 'posts_per_page' => $args['num'],
64
+ 'orderby' => $args['order_by'],
65
+ 'order' => $args['order'],
66
+ 'tax_query' => $tax_args,
67
+ 'post_status' => 'publish',
68
+ 'include_posts__in' => $args['include'], // include posts in this list
69
+ 'posts__not_in' => $args['exclude'], // exclude posts in this list
70
+ 'posts__in' => $args['only_products__in'], // only posts in this list
71
+ 'exclude_without_media' => $args['exclude_without_media']
72
+ );
73
+
74
+ if ( isset( $args['meta_key'] ) ) {
75
+ $query_args['meta_key'] = $args['meta_key'];
76
+ }
77
+
78
+
79
+ // add the additional query args if available
80
+ if( $args['query_args'] ){
81
+ $query_args = wp_parse_args( $query_args, $args['query_args'] );
82
+ }
83
+
84
+ if ( $args['product_type'] ) {
85
+ switch ( $args['product_type'] ) {
86
+ case 'featured':
87
+ $query_args['tax_query'][] = array(
88
+ 'taxonomy' => 'product_visibility',
89
+ 'field' => 'name',
90
+ 'terms' => 'featured',
91
+ );
92
+ break;
93
+
94
+ case 'best_selling':
95
+ $query_args['orderby'] = 'meta_value_num';
96
+ break;
97
+
98
+ case 'sale':
99
+ $query_args['meta_query'] = WC()->query->get_meta_query();
100
+ $query_args['post__in'] = wc_get_product_ids_on_sale();
101
+ break;
102
+
103
+ case 'deal':
104
+ $today = time();
105
+ $query_args['meta_query'] = array (
106
+ 'relation' => 'AND',
107
+ array (
108
+ 'key' => '_sale_price_dates_from',
109
+ 'value' => '',
110
+ 'compare' => '!='
111
+ ),
112
+ array (
113
+ 'key' => '_sale_price_dates_from',
114
+ 'value' => $today,
115
+ 'compare' => '<='
116
+ ),
117
+ array (
118
+ 'key' => '_sale_price_dates_to',
119
+ 'value' => '',
120
+ 'compare' => '!='
121
+ ),
122
+ array (
123
+ 'key' => '_sale_price_dates_to',
124
+ 'value' => $today,
125
+ 'compare' => '>='
126
+ ),
127
+ );
128
+ break;
129
+
130
+ case 'top_rated':
131
+ $query_args['meta_query'] = WC()->query->get_meta_query();
132
+ add_filter( 'posts_clauses', array( 'WC_Shortcodes', 'order_by_rating_post_clauses' ) );
133
+ break;
134
+ default: // i.e. recent product
135
+ $query_args['meta_query'] = WC()->query->get_meta_query();
136
+ break;
137
+ }
138
+ }
139
+
140
+ ob_start();
141
+
142
+ // pass the args through the auxin query parser
143
+ $wp_query = new WP_Query( auxin_parse_query_args( $query_args ) );
144
+
145
+ $have_posts = $wp_query->have_posts();
146
+
147
+ if( $have_posts ){
148
+
149
+ while ( $wp_query->have_posts() ) {
150
+
151
+ $wp_query->the_post();
152
+
153
+ wc_get_template( 'content-product.php' );
154
+
155
+ }
156
+
157
+ }
158
+
159
+
160
+ if( $args['reset_query'] ){
161
+ wp_reset_postdata();
162
+ }
163
+
164
+ // return false if no result found
165
+ if( ! $have_posts ){
166
+ ob_get_clean();
167
+ return false;
168
+ }
169
+
170
+ return ob_get_clean();
171
+ };