Shortcodes and extra features for Phlox theme - Version 2.7.4

Version Description

Download this release

Release Info

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

Code changes from version 2.7.3 to 2.7.4

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.5.0
10
- Stable tag: 2.7.3
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.5.0
10
+ Stable tag: 2.7.4
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.7.3 (2020-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!
1
+ /*! Phlox Core Plugin - v2.7.4 (2020-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/compatibility/woocommerce/wc.php ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ //
4
+ // ─── DISABLE AUTOMATIC REQUIRED PAGE CREATION ───────────────────────────────────
5
+ //
6
+
7
+ add_filter( 'woocommerce_create_pages', 'auxin_disable_automatic_page_creation', 1, 1 );
8
+ function auxin_disable_automatic_page_creation( $pages ) {
9
+ return[];
10
+ }
11
+
12
+ ?>
admin/includes/index.php CHANGED
@@ -14,6 +14,7 @@ include_once( 'compatibility/sliders/layerslider.php' );
14
  include_once( 'compatibility/element-pack/element-pack.php' );
15
  include_once( 'compatibility/yoast-seo/yoast-seo.php' );
16
  include_once( 'compatibility/smush/smush.php' );
 
17
 
18
 
19
  if ( function_exists('icl_object_id') ) {
14
  include_once( 'compatibility/element-pack/element-pack.php' );
15
  include_once( 'compatibility/yoast-seo/yoast-seo.php' );
16
  include_once( 'compatibility/smush/smush.php' );
17
+ include_once( 'compatibility/woocommerce/wc.php' );
18
 
19
 
20
  if ( function_exists('icl_object_id') ) {
auxin-elements.php CHANGED
@@ -12,7 +12,7 @@
12
  * Plugin Name: Phlox Core Elements
13
  * Plugin URI: https://wordpress.org/plugins/auxin-elements/
14
  * Description: Exclusive and comprehensive plugin that extends the functionality of Phlox theme by adding new Elements, widgets and options.
15
- * Version: 2.7.3
16
  * Author: averta
17
  * Author URI: http://averta.net
18
  * Text Domain: auxin-elements
12
  * Plugin Name: Phlox Core Elements
13
  * Plugin URI: https://wordpress.org/plugins/auxin-elements/
14
  * Description: Exclusive and comprehensive plugin that extends the functionality of Phlox theme by adding new Elements, widgets and options.
15
+ * Version: 2.7.4
16
  * Author: averta
17
  * Author URI: http://averta.net
18
  * Text Domain: auxin-elements
includes/define.php CHANGED
@@ -12,7 +12,7 @@ if( ! defined( 'THEME_NAME' ) ){
12
  }
13
 
14
 
15
- define( 'AUXELS_VERSION' , '2.7.3' );
16
 
17
  define( 'AUXELS_SLUG' , 'auxin-elements' );
18
 
12
  }
13
 
14
 
15
+ define( 'AUXELS_VERSION' , '2.7.4' );
16
 
17
  define( 'AUXELS_SLUG' , 'auxin-elements' );
18
 
includes/elementor/class-auxin-elementor-core-elements.php CHANGED
@@ -791,7 +791,7 @@ final class Elements {
791
  *
792
  */
793
  public function clear_cache(){
794
- //\Elementor\Plugin::instance()->files_manager->clear_cache();
795
  }
796
 
797
  }
791
  *
792
  */
793
  public function clear_cache(){
794
+ // \Elementor\Plugin::instance()->files_manager->clear_cache();
795
  }
796
 
797
  }
includes/elementor/widgets/tabs.php CHANGED
@@ -541,6 +541,8 @@ class Tabs extends Widget_Base {
541
  */
542
  protected function render() {
543
 
 
 
544
  $settings = $this->get_settings_for_display();
545
 
546
  $args = array(
@@ -552,6 +554,8 @@ class Tabs extends Widget_Base {
552
 
553
  // pass the args through the corresponding shortcode callback
554
  echo auxin_widget_tabs_callback( $args );
 
 
555
  }
556
 
557
 
541
  */
542
  protected function render() {
543
 
544
+ add_filter( 'auxin/core_elements/dynamic_tags/shortcode/should_escape', '__return_false' );
545
+
546
  $settings = $this->get_settings_for_display();
547
 
548
  $args = array(
554
 
555
  // pass the args through the corresponding shortcode callback
556
  echo auxin_widget_tabs_callback( $args );
557
+
558
+ add_filter( 'auxin/core_elements/dynamic_tags/shortcode/should_escape', '__return_true' );
559
  }
560
 
561
 
includes/elementor/widgets/text.php CHANGED
@@ -523,6 +523,9 @@ class Text extends Widget_Base {
523
  'label' => __('Icon color', 'auxin-elements'),
524
  'type' => Controls_Manager::COLOR,
525
  'default' => '#ffffff',
 
 
 
526
  'condition' => array(
527
  'icon_or_image' => array('icon')
528
  )
@@ -534,7 +537,10 @@ class Text extends Widget_Base {
534
  array(
535
  'label' => __('Icon background color','auxin-elements' ),
536
  'type' => Controls_Manager::COLOR,
537
- 'default' => '#1bb0ce',
 
 
 
538
  'condition' => array(
539
  'icon_or_image' => array('icon')
540
  )
@@ -1655,7 +1661,6 @@ class Text extends Widget_Base {
1655
  'preload_bgcolor' => $settings['preload_bgcolor'],
1656
  'image_size' => $settings['image_size'],
1657
  'img_shape' => $settings['img_shape'],
1658
- 'icon_border_width' => '',
1659
  'image_position' => $settings['image_position'],
1660
  'icon_svg_inline' => $settings['svg_inline'],
1661
 
523
  'label' => __('Icon color', 'auxin-elements'),
524
  'type' => Controls_Manager::COLOR,
525
  'default' => '#ffffff',
526
+ 'selectors' => array(
527
+ '{{WRAPPER}} .aux-ico-box' => 'color:{{VALUE}};',
528
+ ),
529
  'condition' => array(
530
  'icon_or_image' => array('icon')
531
  )
537
  array(
538
  'label' => __('Icon background color','auxin-elements' ),
539
  'type' => Controls_Manager::COLOR,
540
+ 'default' => '',
541
+ 'selectors' => array(
542
+ '{{WRAPPER}} .aux-ico-box' => 'background-color:{{VALUE}};',
543
+ ),
544
  'condition' => array(
545
  'icon_or_image' => array('icon')
546
  )
1661
  'preload_bgcolor' => $settings['preload_bgcolor'],
1662
  'image_size' => $settings['image_size'],
1663
  'img_shape' => $settings['img_shape'],
 
1664
  'image_position' => $settings['image_position'],
1665
  'icon_svg_inline' => $settings['svg_inline'],
1666
 
includes/elements/tabs.php CHANGED
@@ -197,10 +197,17 @@ function auxin_widget_tabs_callback( $atts, $shortcode_content = null ){
197
  'role' => 'tabpanel',
198
  'aria-labelledby'=> 'aux-tab-' . $id_number,
199
  );
200
- preg_match('/<p>(.*?)<\/p>/', $value['content'] , $matches);
 
 
 
 
 
 
 
201
  $tabs_content .= sprintf( '<li><div %s><p>%s</p></div></li>',
202
  auxin_make_html_attributes( $content_attrs ),
203
- $matches[0]
204
  );
205
 
206
  }
197
  'role' => 'tabpanel',
198
  'aria-labelledby'=> 'aux-tab-' . $id_number,
199
  );
200
+
201
+ if ( ! empty( $value['__dynamic__' ] ) ) {
202
+ $content = $value['content'];
203
+ } else {
204
+ preg_match('/<p>(.*?)<\/p>/', $value['content'] , $matches);
205
+ $content = ! empty( $matches[0] ) ? $matches[0] : $value['content'];
206
+ }
207
+
208
  $tabs_content .= sprintf( '<li><div %s><p>%s</p></div></li>',
209
  auxin_make_html_attributes( $content_attrs ),
210
+ $content
211
  );
212
 
213
  }
includes/elements/text.php CHANGED
@@ -989,11 +989,7 @@ function auxin_widget_column_callback( $atts, $shortcode_content = null ){
989
  'preloadable' => '0',
990
  'preload_preview' => '0',
991
  'preload_bgcolor' => '',
992
- 'icon_color' => '#888', // color for icon
993
  'icon_size' => 'large', // small, medium, large, x-large
994
- 'icon_bg_color' => '', // empty mean inherit,
995
- 'icon_border_color' => '', // border color for icon
996
- 'icon_border_width' => '1', // border width for icon
997
  'icon_shape' => '', // circle, semi-circle, round-rect, rect, fill, ...
998
  'img_shape' => '', // circle, semi-circle, round-rect, rect, fill, ...
999
  'image_position' => 'top', // top,left,right
@@ -1107,19 +1103,6 @@ function auxin_widget_column_callback( $atts, $shortcode_content = null ){
1107
  $header_classess = '';
1108
  $header_classess .= empty( $header_bg_img ) ? '' : 'aux-text-widget-bg-' . esc_attr( $header_img_display ) . ' ';
1109
 
1110
- //---------------------------------------------
1111
- // Icon Inline Styles
1112
-
1113
- $icon_styles = '';
1114
- if( 'icon' == $icon_or_image ){
1115
- $icon_styles .= empty( $icon_color ) ? '' : 'color: ' . esc_attr( $icon_color ) . '; ';
1116
- $icon_styles .= empty( $icon_bg_color ) ? '' : 'background-color:' . esc_attr( $icon_bg_color ) . '; ';
1117
- }
1118
- $icon_styles .= empty( $icon_border_color ) && empty( $icon_border_width ) ? '' : 'border: '. esc_attr( $icon_border_width ) . 'px solid ' . esc_attr( $icon_border_color ) . '; ';
1119
-
1120
- $icon_styles = ! empty( $icon_styles ) ? 'style="' . $icon_styles . '"' : '';
1121
-
1122
-
1123
  //---------------------------------------------
1124
  // Icon Classnames
1125
 
@@ -1174,7 +1157,7 @@ function auxin_widget_column_callback( $atts, $shortcode_content = null ){
1174
 
1175
  <?php if( ! empty( $icon ) || ! empty( $image ) || ! empty( $header_bg_img ) || ! empty( $icon_svg_inline ) ) { ?>
1176
  <div class="aux-text-widget-header <?php echo $header_classess ;?>" <?php echo $header_styles ;?> >
1177
- <div class="aux-ico-box <?php echo $icon_box_classnames ;?> " <?php echo $icon_styles ;?>>
1178
  <?php if ( ! empty( $icon ) ){ ;?>
1179
  <span class="aux-ico <?php echo esc_attr( $icon_classname ) ;?>" > </span>
1180
  <?php } elseif ( ! empty( $image ) ) { ?>
989
  'preloadable' => '0',
990
  'preload_preview' => '0',
991
  'preload_bgcolor' => '',
 
992
  'icon_size' => 'large', // small, medium, large, x-large
 
 
 
993
  'icon_shape' => '', // circle, semi-circle, round-rect, rect, fill, ...
994
  'img_shape' => '', // circle, semi-circle, round-rect, rect, fill, ...
995
  'image_position' => 'top', // top,left,right
1103
  $header_classess = '';
1104
  $header_classess .= empty( $header_bg_img ) ? '' : 'aux-text-widget-bg-' . esc_attr( $header_img_display ) . ' ';
1105
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1106
  //---------------------------------------------
1107
  // Icon Classnames
1108
 
1157
 
1158
  <?php if( ! empty( $icon ) || ! empty( $image ) || ! empty( $header_bg_img ) || ! empty( $icon_svg_inline ) ) { ?>
1159
  <div class="aux-text-widget-header <?php echo $header_classess ;?>" <?php echo $header_styles ;?> >
1160
+ <div class="aux-ico-box <?php echo $icon_box_classnames ;?> ">
1161
  <?php if ( ! empty( $icon ) ){ ;?>
1162
  <span class="aux-ico <?php echo esc_attr( $icon_classname ) ;?>" > </span>
1163
  <?php } elseif ( ! empty( $image ) ) { ?>
includes/general-hooks.php CHANGED
@@ -3356,10 +3356,10 @@ add_filter( 'woocommerce_loop_add_to_cart_args', 'auxels_enable_woocommerce_ajax
3356
  /* Change Products Title Dom
3357
  /*-----------------------------------------------------------------------------------*/
3358
  add_action( 'init', 'auxin_remove_default_woocommerce_product_title' );
3359
-
3360
  function auxin_remove_default_woocommerce_product_title() {
3361
  remove_action( 'woocommerce_shop_loop_item_title', 'woocommerce_template_loop_product_title', 10 );
3362
- add_action( 'woocommerce_shop_loop_item_title', 'auxin_woocommerce_template_loop_product_title', 10 );
3363
  }
3364
 
3365
  function auxin_woocommerce_template_loop_product_title() {
@@ -3563,10 +3563,10 @@ add_action( 'admin_bar_menu', 'auxin_add_admin_bar_header_footer_edit_link', 100
3563
 
3564
  function auxin_add_admin_bar_header_footer_edit_link() {
3565
  global $wp_admin_bar, $post;
3566
-
3567
  if ( !is_super_admin() || !is_admin_bar_showing() || is_admin() )
3568
  return;
3569
-
3570
  if ( 'default' === $use_legacy_header = auxin_get_post_meta( $post, 'page_header_use_legacy', 'default' ) ) {
3571
  $use_legacy_header = auxin_get_option('site_header_use_legacy');
3572
  }
@@ -3579,14 +3579,14 @@ function auxin_add_admin_bar_header_footer_edit_link() {
3579
 
3580
  if ( get_post_type( $post ) == 'page' ) {
3581
  if ( ! auxin_is_true( $use_legacy_header) && ( $current_header = auxin_get_post_meta( $post, 'page_elementor_header_template' ) ) && is_numeric( $current_header ) ) {
3582
- $template['current']['header'] = $current_header;
3583
  }
3584
 
3585
  if ( ! auxin_is_true( $use_legacy_footer) && ( $current_footer = auxin_get_post_meta( $post, 'page_elementor_footer_template' ) ) && is_numeric( $current_footer ) ) {
3586
- $template['current']['footer'] = $current_footer;
3587
  }
3588
  }
3589
-
3590
  if ( ! auxin_is_true( auxin_get_option('site_header_use_legacy') ) && $global_header = auxin_get_option('site_elementor_header_template', '' ) ) {
3591
  $template['global']['header'] = $global_header;
3592
  }
@@ -3606,9 +3606,9 @@ function auxin_add_admin_bar_header_footer_edit_link() {
3606
  'href' => get_edit_post_link( $value ),
3607
  'meta' => [
3608
  'target' => '_blank'
3609
- ]
3610
  ];
3611
- }
3612
  }
3613
 
3614
  if ( ! empty( $template['global'] ) ) {
@@ -3622,9 +3622,9 @@ function auxin_add_admin_bar_header_footer_edit_link() {
3622
  'href' => get_edit_post_link( $value ),
3623
  'meta' => [
3624
  'target' => '_blank'
3625
- ]
3626
  ];
3627
- }
3628
  }
3629
 
3630
  if ( ! empty( $args ) ) {
@@ -3647,3 +3647,4 @@ function auxels_add_svg_upload_permission( $mimes ){
3647
  return $mimes;
3648
  }
3649
  add_filter( 'upload_mimes', 'auxels_add_svg_upload_permission' );
 
3356
  /* Change Products Title Dom
3357
  /*-----------------------------------------------------------------------------------*/
3358
  add_action( 'init', 'auxin_remove_default_woocommerce_product_title' );
3359
+
3360
  function auxin_remove_default_woocommerce_product_title() {
3361
  remove_action( 'woocommerce_shop_loop_item_title', 'woocommerce_template_loop_product_title', 10 );
3362
+ add_action( 'woocommerce_shop_loop_item_title', 'auxin_woocommerce_template_loop_product_title', 10 );
3363
  }
3364
 
3365
  function auxin_woocommerce_template_loop_product_title() {
3563
 
3564
  function auxin_add_admin_bar_header_footer_edit_link() {
3565
  global $wp_admin_bar, $post;
3566
+
3567
  if ( !is_super_admin() || !is_admin_bar_showing() || is_admin() )
3568
  return;
3569
+
3570
  if ( 'default' === $use_legacy_header = auxin_get_post_meta( $post, 'page_header_use_legacy', 'default' ) ) {
3571
  $use_legacy_header = auxin_get_option('site_header_use_legacy');
3572
  }
3579
 
3580
  if ( get_post_type( $post ) == 'page' ) {
3581
  if ( ! auxin_is_true( $use_legacy_header) && ( $current_header = auxin_get_post_meta( $post, 'page_elementor_header_template' ) ) && is_numeric( $current_header ) ) {
3582
+ $template['current']['header'] = $current_header;
3583
  }
3584
 
3585
  if ( ! auxin_is_true( $use_legacy_footer) && ( $current_footer = auxin_get_post_meta( $post, 'page_elementor_footer_template' ) ) && is_numeric( $current_footer ) ) {
3586
+ $template['current']['footer'] = $current_footer;
3587
  }
3588
  }
3589
+
3590
  if ( ! auxin_is_true( auxin_get_option('site_header_use_legacy') ) && $global_header = auxin_get_option('site_elementor_header_template', '' ) ) {
3591
  $template['global']['header'] = $global_header;
3592
  }
3606
  'href' => get_edit_post_link( $value ),
3607
  'meta' => [
3608
  'target' => '_blank'
3609
+ ]
3610
  ];
3611
+ }
3612
  }
3613
 
3614
  if ( ! empty( $template['global'] ) ) {
3622
  'href' => get_edit_post_link( $value ),
3623
  'meta' => [
3624
  'target' => '_blank'
3625
+ ]
3626
  ];
3627
+ }
3628
  }
3629
 
3630
  if ( ! empty( $args ) ) {
3647
  return $mimes;
3648
  }
3649
  add_filter( 'upload_mimes', 'auxels_add_svg_upload_permission' );
3650
+
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: 2020-12-01 10:52:05+00:00\n"
6
  "PO-Revision-Date: 2016-11-09 12:50+0330\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -829,7 +829,7 @@ msgstr ""
829
  #: admin/includes/metaboxes/metabox-fields-general-footer.php:21
830
  #: includes/elementor/modules/documents/footer.php:35
831
  #: includes/elementor/modules/documents/footer.php:46
832
- #: includes/elementor/widgets/text.php:1564
833
  msgid "Footer"
834
  msgstr ""
835
 
@@ -1298,7 +1298,7 @@ msgstr ""
1298
  #: includes/elementor/widgets/staff.php:878
1299
  #: includes/elementor/widgets/svg.php:288
1300
  #: includes/elementor/widgets/testimonial.php:813
1301
- #: includes/elementor/widgets/text.php:1437
1302
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:435
1303
  #: includes/elementor/widgets/theme-elements/copyright.php:146
1304
  #: includes/elementor/widgets/theme-elements/current-time.php:139
@@ -1340,8 +1340,8 @@ msgstr "وسط"
1340
  #: includes/elementor/widgets/svg.php:284
1341
  #: includes/elementor/widgets/testimonial.php:809
1342
  #: includes/elementor/widgets/text.php:367
1343
- #: includes/elementor/widgets/text.php:1134
1344
- #: includes/elementor/widgets/text.php:1433
1345
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:431
1346
  #: includes/elementor/widgets/theme-elements/copyright.php:142
1347
  #: includes/elementor/widgets/theme-elements/current-time.php:135
@@ -1405,7 +1405,7 @@ msgstr "تراز المان خط زمانی را مشخص می کند."
1405
  #: includes/elementor/widgets/divider.php:146
1406
  #: includes/elementor/widgets/modern-button.php:311
1407
  #: includes/elementor/widgets/staff.php:787
1408
- #: includes/elementor/widgets/text.php:1030 includes/elements/button.php:66
1409
  #: includes/elements/divider.php:90 includes/elements/socials-list.php:63
1410
  #: includes/elements/staff.php:463 includes/elements/text.php:469
1411
  #: includes/elements/text.php:677 includes/general-hooks.php:689
@@ -1419,7 +1419,7 @@ msgstr "کوچک"
1419
  #: includes/elementor/widgets/divider.php:145
1420
  #: includes/elementor/widgets/modern-button.php:310
1421
  #: includes/elementor/widgets/staff.php:788
1422
- #: includes/elementor/widgets/text.php:1029
1423
  #: includes/elements/before-after.php:104 includes/elements/button.php:65
1424
  #: includes/elements/divider.php:89 includes/elements/instagram-feed.php:98
1425
  #: includes/elements/socials-list.php:64 includes/elements/staff.php:111
@@ -1434,7 +1434,7 @@ msgstr "متوسط"
1434
  #: includes/elementor/widgets/button.php:161
1435
  #: includes/elementor/widgets/modern-button.php:309
1436
  #: includes/elementor/widgets/staff.php:789
1437
- #: includes/elementor/widgets/text.php:1028
1438
  #: includes/elements/before-after.php:105 includes/elements/button.php:64
1439
  #: includes/elements/divider.php:88 includes/elements/socials-list.php:65
1440
  #: includes/elements/staff.php:110 includes/elements/staff.php:465
@@ -1505,7 +1505,7 @@ msgstr ""
1505
  #: includes/elementor/widgets/recent-posts-tiles-carousel.php:130
1506
  #: includes/elementor/widgets/recent-posts-tiles.php:130
1507
  #: includes/elementor/widgets/tabs.php:195
1508
- #: includes/elementor/widgets/text.php:1133
1509
  #: includes/elementor/widgets/theme-elements/menu.php:999
1510
  #: includes/elementor/widgets/theme-elements/modern-search.php:577
1511
  #: includes/elements/button.php:179 includes/elements/code.php:99
@@ -1581,14 +1581,14 @@ msgstr "پیش فرض"
1581
  #: includes/elementor/widgets/testimonial.php:511
1582
  #: includes/elementor/widgets/testimonial.php:629
1583
  #: includes/elementor/widgets/testimonial.php:923
1584
- #: includes/elementor/widgets/text.php:560
1585
- #: includes/elementor/widgets/text.php:713
1586
- #: includes/elementor/widgets/text.php:809
1587
- #: includes/elementor/widgets/text.php:920
1588
- #: includes/elementor/widgets/text.php:1087
1589
- #: includes/elementor/widgets/text.php:1207
1590
- #: includes/elementor/widgets/text.php:1282
1591
- #: includes/elementor/widgets/text.php:1512
1592
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:516
1593
  #: includes/elementor/widgets/theme-elements/copyright.php:212
1594
  #: includes/elementor/widgets/theme-elements/logo.php:327
@@ -3228,8 +3228,8 @@ msgstr "بالا"
3228
  #: includes/elementor/widgets/svg.php:292
3229
  #: includes/elementor/widgets/testimonial.php:817
3230
  #: includes/elementor/widgets/text.php:371
3231
- #: includes/elementor/widgets/text.php:1135
3232
- #: includes/elementor/widgets/text.php:1441
3233
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:439
3234
  #: includes/elementor/widgets/theme-elements/copyright.php:150
3235
  #: includes/elementor/widgets/theme-elements/current-time.php:143
@@ -3524,7 +3524,7 @@ msgstr "پیوند"
3524
  #: includes/elementor/widgets/recent-posts-timeline.php:519
3525
  #: includes/elementor/widgets/testimonial.php:238
3526
  #: includes/elementor/widgets/text.php:115
3527
- #: includes/elementor/widgets/text.php:1577
3528
  #: includes/elementor/widgets/theme-elements/menu.php:658
3529
  #: includes/elementor/widgets/theme-elements/search.php:118
3530
  #: includes/elements/flickr.php:156 includes/elements/flickr.php:205
@@ -3707,7 +3707,7 @@ msgstr "بخش"
3707
  #: includes/elementor/widgets/staff.php:452
3708
  #: includes/elementor/widgets/tabs.php:373
3709
  #: includes/elementor/widgets/text.php:232
3710
- #: includes/elementor/widgets/text.php:680
3711
  #: includes/elementor/widgets/theme-elements/logo.php:454
3712
  #: includes/elementor/widgets/theme-elements/site-title.php:94
3713
  #: includes/elementor/widgets/touch-slider.php:332
@@ -4443,7 +4443,7 @@ msgstr "آکاردئون"
4443
  #: includes/elementor/widgets/testimonial.php:193
4444
  #: includes/elementor/widgets/text.php:225
4445
  #: includes/elementor/widgets/text.php:263
4446
- #: includes/elementor/widgets/text.php:889
4447
  #: includes/elements/accordion-widget.php:76 includes/elements/accordion.php:93
4448
  #: includes/elements/dropcap.php:82 includes/elements/highlight.php:78
4449
  #: includes/elements/staff.php:514 includes/elements/tabs.php:92
@@ -4577,7 +4577,7 @@ msgstr ""
4577
  #: includes/elementor/widgets/recent-products.php:522
4578
  #: includes/elementor/widgets/tabs.php:235
4579
  #: includes/elementor/widgets/tabs.php:493
4580
- #: includes/elementor/widgets/text.php:1468
4581
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:463
4582
  #: includes/elementor/widgets/theme-elements/logo.php:390
4583
  #: includes/elementor/widgets/theme-elements/menu.php:421
@@ -4661,14 +4661,14 @@ msgstr "کادربندی شده"
4661
  #: includes/elementor/widgets/testimonial.php:591
4662
  #: includes/elementor/widgets/testimonial.php:887
4663
  #: includes/elementor/widgets/text.php:507
4664
- #: includes/elementor/widgets/text.php:693
4665
- #: includes/elementor/widgets/text.php:789
4666
- #: includes/elementor/widgets/text.php:900
4667
- #: includes/elementor/widgets/text.php:1060
4668
- #: includes/elementor/widgets/text.php:1187
4669
- #: includes/elementor/widgets/text.php:1244
4670
- #: includes/elementor/widgets/text.php:1376
4671
- #: includes/elementor/widgets/text.php:1484
4672
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:490
4673
  #: includes/elementor/widgets/theme-elements/copyright.php:175
4674
  #: includes/elementor/widgets/theme-elements/logo.php:293
@@ -4772,9 +4772,9 @@ msgstr ""
4772
  #: includes/elementor/widgets/testimonial.php:843
4773
  #: includes/elementor/widgets/text.php:392
4774
  #: includes/elementor/widgets/text.php:490
4775
- #: includes/elementor/widgets/text.php:961
4776
- #: includes/elementor/widgets/text.php:1395
4777
- #: includes/elementor/widgets/text.php:1456
4778
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:475
4779
  #: includes/elementor/widgets/theme-elements/menu.php:517
4780
  #: includes/elementor/widgets/theme-elements/menu.php:956
@@ -4908,16 +4908,16 @@ msgstr "تیتر گذاری"
4908
  #: includes/elementor/widgets/testimonial.php:521
4909
  #: includes/elementor/widgets/testimonial.php:601
4910
  #: includes/elementor/widgets/testimonial.php:639
4911
- #: includes/elementor/widgets/text.php:700
4912
- #: includes/elementor/widgets/text.php:720
4913
- #: includes/elementor/widgets/text.php:796
4914
- #: includes/elementor/widgets/text.php:816
4915
- #: includes/elementor/widgets/text.php:907
4916
- #: includes/elementor/widgets/text.php:927
4917
- #: includes/elementor/widgets/text.php:1194
4918
- #: includes/elementor/widgets/text.php:1214
4919
- #: includes/elementor/widgets/text.php:1251
4920
- #: includes/elementor/widgets/text.php:1289
4921
  #: includes/elementor/widgets/theme-elements/copyright.php:182
4922
  #: includes/elementor/widgets/theme-elements/copyright.php:219
4923
  #: includes/elementor/widgets/theme-elements/current-time.php:172
@@ -5271,7 +5271,7 @@ msgstr "تکرار صدا"
5271
  #: includes/elementor/widgets/button.php:283
5272
  #: includes/elementor/widgets/modern-button.php:320
5273
  #: includes/elementor/widgets/tabs.php:149
5274
- #: includes/elementor/widgets/text.php:1048
5275
  #: includes/elementor/widgets/theme-elements/menu.php:616
5276
  #: includes/elements/audio.php:97
5277
  msgid "Skin"
@@ -5385,7 +5385,7 @@ msgstr "عرض"
5385
  #: includes/elementor/widgets/modern-button.php:101
5386
  #: includes/elementor/widgets/modern-button.php:269
5387
  #: includes/elementor/widgets/text.php:278
5388
- #: includes/elementor/widgets/text.php:1012
5389
  #: includes/elementor/widgets/theme-elements/modern-search.php:99
5390
  #: includes/elementor/widgets/theme-elements/modern-search.php:434
5391
  #: includes/elementor/widgets/theme-elements/search.php:120
@@ -5424,7 +5424,7 @@ msgstr "بازشدن لایت باکس"
5424
  #: includes/elementor/widgets/heading-modern.php:1038
5425
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:1532
5426
  #: includes/elementor/widgets/recent-posts-masonry.php:1073
5427
- #: includes/elementor/widgets/text.php:1413
5428
  #, fuzzy
5429
  msgid "Wrapper"
5430
  msgstr "ظاهر Wrapper"
@@ -5436,7 +5436,7 @@ msgstr "اندازه دکمه"
5436
 
5437
  #: includes/elementor/widgets/button.php:160
5438
  #: includes/elementor/widgets/modern-button.php:308
5439
- #: includes/elementor/widgets/text.php:1027 includes/elements/button.php:63
5440
  #: includes/elements/text.php:674 includes/general-hooks.php:686
5441
  #: includes/general-hooks.php:1091
5442
  msgid "Exlarge"
@@ -5445,7 +5445,7 @@ msgstr "خیلی بزرگ"
5445
  #: includes/elementor/widgets/button.php:164
5446
  #: includes/elementor/widgets/divider.php:147
5447
  #: includes/elementor/widgets/modern-button.php:312
5448
- #: includes/elementor/widgets/text.php:1031 includes/elements/button.php:67
5449
  #: includes/elements/divider.php:91 includes/elements/text.php:678
5450
  #: includes/general-hooks.php:690 includes/general-hooks.php:1095
5451
  msgid "Tiny"
@@ -5462,14 +5462,14 @@ msgid "Button shape"
5462
  msgstr "ظاهر شکل دکمه"
5463
 
5464
  #: includes/elementor/widgets/button.php:188
5465
- #: includes/elementor/widgets/text.php:1352 includes/elements/button.php:91
5466
  #: includes/elements/text.php:708
5467
  msgid "Box"
5468
  msgstr "جعبه"
5469
 
5470
  #: includes/elementor/widgets/button.php:192
5471
  #: includes/elementor/widgets/modern-button.php:295
5472
- #: includes/elementor/widgets/text.php:1356 includes/elements/button.php:95
5473
  #: includes/elements/text.php:712 includes/general-hooks.php:721
5474
  #: includes/general-hooks.php:1126
5475
  msgid "Round"
@@ -5477,7 +5477,7 @@ msgstr "گرد"
5477
 
5478
  #: includes/elementor/widgets/button.php:196
5479
  #: includes/elementor/widgets/modern-button.php:296
5480
- #: includes/elementor/widgets/text.php:1360 includes/elements/button.php:99
5481
  #: includes/elements/text.php:716 includes/general-hooks.php:725
5482
  #: includes/general-hooks.php:1130
5483
  msgid "Curve"
@@ -5489,7 +5489,7 @@ msgid "Button style"
5489
  msgstr "ظاهر دکمه"
5490
 
5491
  #: includes/elementor/widgets/button.php:215
5492
- #: includes/elementor/widgets/text.php:1380 includes/elements/button.php:122
5493
  #: includes/elements/text.php:742 includes/general-hooks.php:758
5494
  #: includes/general-hooks.php:1163
5495
  msgid "3D"
@@ -5497,7 +5497,7 @@ msgstr "سه بعدی"
5497
 
5498
  #: includes/elementor/widgets/button.php:219
5499
  #: includes/elementor/widgets/modern-button.php:282
5500
- #: includes/elementor/widgets/text.php:1384 includes/elements/button.php:126
5501
  #: includes/elements/text.php:746 includes/general-hooks.php:762
5502
  #: includes/general-hooks.php:1167
5503
  msgid "Outline"
@@ -5537,10 +5537,10 @@ msgstr "تراز"
5537
  #: includes/elementor/widgets/testimonial.php:895
5538
  #: includes/elementor/widgets/testimonial.php:931
5539
  #: includes/elementor/widgets/text.php:383
5540
- #: includes/elementor/widgets/text.php:548
5541
- #: includes/elementor/widgets/text.php:607
5542
- #: includes/elementor/widgets/text.php:1068
5543
- #: includes/elementor/widgets/text.php:1095
5544
  #: includes/elementor/widgets/theme-elements/menu.php:403
5545
  #: includes/elementor/widgets/theme-elements/menu.php:480
5546
  #: includes/elementor/widgets/theme-elements/menu.php:593
@@ -5589,40 +5589,40 @@ msgid "Icon for button"
5589
  msgstr "شکلک برای دکمه"
5590
 
5591
  #: includes/elementor/widgets/button.php:373
5592
- #: includes/elementor/widgets/text.php:1129 includes/elements/button.php:171
5593
  #: includes/elements/text.php:800 includes/general-hooks.php:372
5594
  msgid "Icon alignment"
5595
  msgstr "تراز شکلک"
5596
 
5597
  #: includes/elementor/widgets/button.php:380
5598
  #: includes/elementor/widgets/modern-button.php:804
5599
- #: includes/elementor/widgets/text.php:1136 includes/elements/button.php:191
5600
  #: includes/elements/text.php:809 includes/general-hooks.php:847
5601
  #: includes/general-hooks.php:1252
5602
  msgid "Over"
5603
  msgstr "رو"
5604
 
5605
  #: includes/elementor/widgets/button.php:381
5606
- #: includes/elementor/widgets/text.php:1137 includes/elements/button.php:195
5607
  #: includes/elements/text.php:810 includes/general-hooks.php:851
5608
  #: includes/general-hooks.php:1256
5609
  msgid "Animate from Left"
5610
  msgstr "متحرک سازی از چپ"
5611
 
5612
  #: includes/elementor/widgets/button.php:382
5613
- #: includes/elementor/widgets/text.php:1138 includes/elements/text.php:811
5614
  msgid "Animate from Right"
5615
  msgstr "متحرک سازی از راست"
5616
 
5617
  #: includes/elementor/widgets/button.php:390
5618
  #: includes/elementor/widgets/text.php:429
5619
- #: includes/elementor/widgets/text.php:1150
5620
  #, fuzzy
5621
  msgid "Icon Size"
5622
  msgstr "اندازه شکلک"
5623
 
5624
  #: includes/elementor/widgets/button.php:413
5625
- #: includes/elementor/widgets/text.php:1335
5626
  #: includes/elementor/widgets/theme-elements/search.php:245
5627
  #, fuzzy
5628
  msgid "Icon Margin"
@@ -5666,11 +5666,11 @@ msgstr ""
5666
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:1913
5667
  #: includes/elementor/widgets/recent-posts-masonry.php:1255
5668
  #: includes/elementor/widgets/recent-posts-masonry.php:1311
5669
- #: includes/elementor/widgets/text.php:746
5670
- #: includes/elementor/widgets/text.php:842
5671
- #: includes/elementor/widgets/text.php:953
5672
- #: includes/elementor/widgets/text.php:1263
5673
- #: includes/elementor/widgets/text.php:1301
5674
  #: includes/elementor/widgets/theme-elements/current-time.php:184
5675
  #: includes/elementor/widgets/theme-elements/logo.php:507
5676
  #: includes/elementor/widgets/theme-elements/logo.php:599
@@ -5763,7 +5763,7 @@ msgstr "فاصله بین اسلایدها"
5763
  #: includes/elementor/widgets/modern-button.php:824
5764
  #: includes/elementor/widgets/modern-button.php:923
5765
  #: includes/elementor/widgets/testimonial.php:756
5766
- #: includes/elementor/widgets/text.php:1023
5767
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:268
5768
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:400
5769
  #: includes/elementor/widgets/theme-elements/modern-search.php:264
@@ -6285,7 +6285,7 @@ msgstr "فاصله خالی"
6285
  #: includes/elementor/widgets/icon.php:140
6286
  #: includes/elementor/widgets/staff.php:200
6287
  #: includes/elementor/widgets/text.php:460
6288
- #: includes/elementor/widgets/text.php:649
6289
  #: includes/elements/about-widget.php:121 includes/elements/divider.php:69
6290
  #: includes/elements/dropcap.php:72 includes/elements/staff.php:168
6291
  #: includes/elements/text.php:539 includes/elements/text.php:581
@@ -7161,9 +7161,9 @@ msgstr "نمایش تصویر"
7161
  #: includes/elementor/widgets/staff.php:674
7162
  #: includes/elementor/widgets/testimonial.php:553
7163
  #: includes/elementor/widgets/testimonial.php:774
7164
- #: includes/elementor/widgets/text.php:754
7165
- #: includes/elementor/widgets/text.php:867
7166
- #: includes/elementor/widgets/text.php:990
7167
  #, fuzzy
7168
  msgid "Bottom space"
7169
  msgstr "فضای بین ستون ها"
@@ -8248,8 +8248,8 @@ msgid "Padding for content wrapper"
8248
  msgstr ""
8249
 
8250
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:1629
8251
- #: includes/elementor/widgets/text.php:616
8252
- #: includes/elementor/widgets/text.php:1537
8253
  msgid "Transition duration"
8254
  msgstr ""
8255
 
@@ -8530,7 +8530,7 @@ msgid "Limit the number of words in the Content"
8530
  msgstr ""
8531
 
8532
  #: includes/elementor/widgets/staff.php:196
8533
- #: includes/elementor/widgets/text.php:641 includes/elements/staff.php:161
8534
  #: includes/elements/text.php:571
8535
  #, fuzzy
8536
  msgid "Image shape"
@@ -8538,21 +8538,21 @@ msgstr "اندازه تصویر"
8538
 
8539
  #: includes/elementor/widgets/staff.php:204
8540
  #: includes/elementor/widgets/text.php:464
8541
- #: includes/elementor/widgets/text.php:653 includes/elements/staff.php:172
8542
  #: includes/elements/text.php:543 includes/elements/text.php:585
8543
  msgid "Semi-circle"
8544
  msgstr "نیم دایره"
8545
 
8546
  #: includes/elementor/widgets/staff.php:208
8547
  #: includes/elementor/widgets/text.php:468
8548
- #: includes/elementor/widgets/text.php:657 includes/elements/staff.php:176
8549
  #: includes/elements/text.php:547 includes/elements/text.php:589
8550
  msgid "Round Rectangle"
8551
  msgstr "مستطیل دورگرد"
8552
 
8553
  #: includes/elementor/widgets/staff.php:212
8554
  #: includes/elementor/widgets/text.php:476
8555
- #: includes/elementor/widgets/text.php:661 includes/elements/staff.php:180
8556
  #: includes/elements/text.php:555 includes/elements/text.php:593
8557
  msgid "Rectangle"
8558
  msgstr "مستطیل"
@@ -8616,15 +8616,15 @@ msgid "LinkedIn Address"
8616
  msgstr "آدرس"
8617
 
8618
  #: includes/elementor/widgets/staff.php:531
8619
- #: includes/elementor/widgets/text.php:850
8620
- #: includes/elementor/widgets/text.php:973
8621
  #, fuzzy
8622
  msgid "Top space"
8623
  msgstr "فضای خالی"
8624
 
8625
  #: includes/elementor/widgets/staff.php:575
8626
  #: includes/elementor/widgets/text.php:242
8627
- #: includes/elementor/widgets/text.php:776
8628
  #: includes/elements/recent-posts-grid-carousel.php:70
8629
  #: includes/elements/recent-products.php:56 includes/elements/text.php:59
8630
  msgid "Subtitle"
@@ -8662,7 +8662,7 @@ msgid "Wrappers"
8662
  msgstr "ظاهر Wrapper"
8663
 
8664
  #: includes/elementor/widgets/staff.php:870
8665
- #: includes/elementor/widgets/text.php:1429
8666
  #: includes/elementor/widgets/theme-elements/menu.php:324
8667
  #: includes/elementor/widgets/theme-elements/menu.php:1341
8668
  #: includes/elements/text.php:118
@@ -8898,71 +8898,71 @@ msgid "Cross Rectangle"
8898
  msgstr "مستطیل"
8899
 
8900
  #: includes/elementor/widgets/text.php:523
8901
- #: includes/elementor/widgets/text.php:576
8902
  #: includes/elementor/widgets/theme-elements/search.php:233
8903
  #: includes/elements/text.php:445
8904
  msgid "Icon color"
8905
  msgstr "رنگ شکلک"
8906
 
8907
- #: includes/elementor/widgets/text.php:535
8908
- #: includes/elementor/widgets/text.php:591 includes/elements/text.php:486
8909
  msgid "Icon background color"
8910
  msgstr "رنگ پس زمینه شکلک"
8911
 
8912
- #: includes/elementor/widgets/text.php:645 includes/elements/text.php:577
8913
  #, fuzzy
8914
  msgid "Default Aspect"
8915
  msgstr "پیش فرض"
8916
 
8917
- #: includes/elementor/widgets/text.php:1039
8918
  #, fuzzy
8919
  msgid "Button Skin"
8920
  msgstr "اندازه دکمه"
8921
 
8922
- #: includes/elementor/widgets/text.php:1116
8923
  #, fuzzy
8924
  msgid "Button Icon"
8925
  msgstr "اندازه دکمه"
8926
 
8927
- #: includes/elementor/widgets/text.php:1229
8928
  #, fuzzy
8929
  msgid "Button Text"
8930
  msgstr "متن دکمه"
8931
 
8932
- #: includes/elementor/widgets/text.php:1322
8933
  #, fuzzy
8934
  msgid "Button Wrapper"
8935
  msgstr "نوع دکمه"
8936
 
8937
- #: includes/elementor/widgets/text.php:1347
8938
  #, fuzzy
8939
  msgid "Shape Style"
8940
  msgstr "ظاهر نقشه"
8941
 
8942
- #: includes/elementor/widgets/text.php:1371 includes/general-hooks.php:747
8943
  #: includes/general-hooks.php:1152
8944
  #, fuzzy
8945
  msgid "Button Style"
8946
  msgstr "ظاهر دکمه"
8947
 
8948
- #: includes/elementor/widgets/text.php:1421
8949
  #, fuzzy
8950
  msgid "Overlay"
8951
  msgstr "رو"
8952
 
8953
- #: includes/elementor/widgets/text.php:1572 includes/elements/text.php:896
8954
  msgid "Footer Shape"
8955
  msgstr ""
8956
 
8957
- #: includes/elementor/widgets/text.php:1581 includes/elements/text.php:907
8958
  msgid "Wave"
8959
  msgstr ""
8960
 
8961
- #: includes/elementor/widgets/text.php:1585 includes/elements/text.php:911
8962
  msgid "Tail"
8963
  msgstr ""
8964
 
8965
- #: includes/elementor/widgets/text.php:1596 includes/elements/button.php:212
8966
  #: includes/elements/text.php:825
8967
  msgid "Color of button"
8968
  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: 2020-12-06 12:31:42+00:00\n"
6
  "PO-Revision-Date: 2016-11-09 12:50+0330\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
829
  #: admin/includes/metaboxes/metabox-fields-general-footer.php:21
830
  #: includes/elementor/modules/documents/footer.php:35
831
  #: includes/elementor/modules/documents/footer.php:46
832
+ #: includes/elementor/widgets/text.php:1570
833
  msgid "Footer"
834
  msgstr ""
835
 
1298
  #: includes/elementor/widgets/staff.php:878
1299
  #: includes/elementor/widgets/svg.php:288
1300
  #: includes/elementor/widgets/testimonial.php:813
1301
+ #: includes/elementor/widgets/text.php:1443
1302
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:435
1303
  #: includes/elementor/widgets/theme-elements/copyright.php:146
1304
  #: includes/elementor/widgets/theme-elements/current-time.php:139
1340
  #: includes/elementor/widgets/svg.php:284
1341
  #: includes/elementor/widgets/testimonial.php:809
1342
  #: includes/elementor/widgets/text.php:367
1343
+ #: includes/elementor/widgets/text.php:1140
1344
+ #: includes/elementor/widgets/text.php:1439
1345
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:431
1346
  #: includes/elementor/widgets/theme-elements/copyright.php:142
1347
  #: includes/elementor/widgets/theme-elements/current-time.php:135
1405
  #: includes/elementor/widgets/divider.php:146
1406
  #: includes/elementor/widgets/modern-button.php:311
1407
  #: includes/elementor/widgets/staff.php:787
1408
+ #: includes/elementor/widgets/text.php:1036 includes/elements/button.php:66
1409
  #: includes/elements/divider.php:90 includes/elements/socials-list.php:63
1410
  #: includes/elements/staff.php:463 includes/elements/text.php:469
1411
  #: includes/elements/text.php:677 includes/general-hooks.php:689
1419
  #: includes/elementor/widgets/divider.php:145
1420
  #: includes/elementor/widgets/modern-button.php:310
1421
  #: includes/elementor/widgets/staff.php:788
1422
+ #: includes/elementor/widgets/text.php:1035
1423
  #: includes/elements/before-after.php:104 includes/elements/button.php:65
1424
  #: includes/elements/divider.php:89 includes/elements/instagram-feed.php:98
1425
  #: includes/elements/socials-list.php:64 includes/elements/staff.php:111
1434
  #: includes/elementor/widgets/button.php:161
1435
  #: includes/elementor/widgets/modern-button.php:309
1436
  #: includes/elementor/widgets/staff.php:789
1437
+ #: includes/elementor/widgets/text.php:1034
1438
  #: includes/elements/before-after.php:105 includes/elements/button.php:64
1439
  #: includes/elements/divider.php:88 includes/elements/socials-list.php:65
1440
  #: includes/elements/staff.php:110 includes/elements/staff.php:465
1505
  #: includes/elementor/widgets/recent-posts-tiles-carousel.php:130
1506
  #: includes/elementor/widgets/recent-posts-tiles.php:130
1507
  #: includes/elementor/widgets/tabs.php:195
1508
+ #: includes/elementor/widgets/text.php:1139
1509
  #: includes/elementor/widgets/theme-elements/menu.php:999
1510
  #: includes/elementor/widgets/theme-elements/modern-search.php:577
1511
  #: includes/elements/button.php:179 includes/elements/code.php:99
1581
  #: includes/elementor/widgets/testimonial.php:511
1582
  #: includes/elementor/widgets/testimonial.php:629
1583
  #: includes/elementor/widgets/testimonial.php:923
1584
+ #: includes/elementor/widgets/text.php:566
1585
+ #: includes/elementor/widgets/text.php:719
1586
+ #: includes/elementor/widgets/text.php:815
1587
+ #: includes/elementor/widgets/text.php:926
1588
+ #: includes/elementor/widgets/text.php:1093
1589
+ #: includes/elementor/widgets/text.php:1213
1590
+ #: includes/elementor/widgets/text.php:1288
1591
+ #: includes/elementor/widgets/text.php:1518
1592
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:516
1593
  #: includes/elementor/widgets/theme-elements/copyright.php:212
1594
  #: includes/elementor/widgets/theme-elements/logo.php:327
3228
  #: includes/elementor/widgets/svg.php:292
3229
  #: includes/elementor/widgets/testimonial.php:817
3230
  #: includes/elementor/widgets/text.php:371
3231
+ #: includes/elementor/widgets/text.php:1141
3232
+ #: includes/elementor/widgets/text.php:1447
3233
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:439
3234
  #: includes/elementor/widgets/theme-elements/copyright.php:150
3235
  #: includes/elementor/widgets/theme-elements/current-time.php:143
3524
  #: includes/elementor/widgets/recent-posts-timeline.php:519
3525
  #: includes/elementor/widgets/testimonial.php:238
3526
  #: includes/elementor/widgets/text.php:115
3527
+ #: includes/elementor/widgets/text.php:1583
3528
  #: includes/elementor/widgets/theme-elements/menu.php:658
3529
  #: includes/elementor/widgets/theme-elements/search.php:118
3530
  #: includes/elements/flickr.php:156 includes/elements/flickr.php:205
3707
  #: includes/elementor/widgets/staff.php:452
3708
  #: includes/elementor/widgets/tabs.php:373
3709
  #: includes/elementor/widgets/text.php:232
3710
+ #: includes/elementor/widgets/text.php:686
3711
  #: includes/elementor/widgets/theme-elements/logo.php:454
3712
  #: includes/elementor/widgets/theme-elements/site-title.php:94
3713
  #: includes/elementor/widgets/touch-slider.php:332
4443
  #: includes/elementor/widgets/testimonial.php:193
4444
  #: includes/elementor/widgets/text.php:225
4445
  #: includes/elementor/widgets/text.php:263
4446
+ #: includes/elementor/widgets/text.php:895
4447
  #: includes/elements/accordion-widget.php:76 includes/elements/accordion.php:93
4448
  #: includes/elements/dropcap.php:82 includes/elements/highlight.php:78
4449
  #: includes/elements/staff.php:514 includes/elements/tabs.php:92
4577
  #: includes/elementor/widgets/recent-products.php:522
4578
  #: includes/elementor/widgets/tabs.php:235
4579
  #: includes/elementor/widgets/tabs.php:493
4580
+ #: includes/elementor/widgets/text.php:1474
4581
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:463
4582
  #: includes/elementor/widgets/theme-elements/logo.php:390
4583
  #: includes/elementor/widgets/theme-elements/menu.php:421
4661
  #: includes/elementor/widgets/testimonial.php:591
4662
  #: includes/elementor/widgets/testimonial.php:887
4663
  #: includes/elementor/widgets/text.php:507
4664
+ #: includes/elementor/widgets/text.php:699
4665
+ #: includes/elementor/widgets/text.php:795
4666
+ #: includes/elementor/widgets/text.php:906
4667
+ #: includes/elementor/widgets/text.php:1066
4668
+ #: includes/elementor/widgets/text.php:1193
4669
+ #: includes/elementor/widgets/text.php:1250
4670
+ #: includes/elementor/widgets/text.php:1382
4671
+ #: includes/elementor/widgets/text.php:1490
4672
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:490
4673
  #: includes/elementor/widgets/theme-elements/copyright.php:175
4674
  #: includes/elementor/widgets/theme-elements/logo.php:293
4772
  #: includes/elementor/widgets/testimonial.php:843
4773
  #: includes/elementor/widgets/text.php:392
4774
  #: includes/elementor/widgets/text.php:490
4775
+ #: includes/elementor/widgets/text.php:967
4776
+ #: includes/elementor/widgets/text.php:1401
4777
+ #: includes/elementor/widgets/text.php:1462
4778
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:475
4779
  #: includes/elementor/widgets/theme-elements/menu.php:517
4780
  #: includes/elementor/widgets/theme-elements/menu.php:956
4908
  #: includes/elementor/widgets/testimonial.php:521
4909
  #: includes/elementor/widgets/testimonial.php:601
4910
  #: includes/elementor/widgets/testimonial.php:639
4911
+ #: includes/elementor/widgets/text.php:706
4912
+ #: includes/elementor/widgets/text.php:726
4913
+ #: includes/elementor/widgets/text.php:802
4914
+ #: includes/elementor/widgets/text.php:822
4915
+ #: includes/elementor/widgets/text.php:913
4916
+ #: includes/elementor/widgets/text.php:933
4917
+ #: includes/elementor/widgets/text.php:1200
4918
+ #: includes/elementor/widgets/text.php:1220
4919
+ #: includes/elementor/widgets/text.php:1257
4920
+ #: includes/elementor/widgets/text.php:1295
4921
  #: includes/elementor/widgets/theme-elements/copyright.php:182
4922
  #: includes/elementor/widgets/theme-elements/copyright.php:219
4923
  #: includes/elementor/widgets/theme-elements/current-time.php:172
5271
  #: includes/elementor/widgets/button.php:283
5272
  #: includes/elementor/widgets/modern-button.php:320
5273
  #: includes/elementor/widgets/tabs.php:149
5274
+ #: includes/elementor/widgets/text.php:1054
5275
  #: includes/elementor/widgets/theme-elements/menu.php:616
5276
  #: includes/elements/audio.php:97
5277
  msgid "Skin"
5385
  #: includes/elementor/widgets/modern-button.php:101
5386
  #: includes/elementor/widgets/modern-button.php:269
5387
  #: includes/elementor/widgets/text.php:278
5388
+ #: includes/elementor/widgets/text.php:1018
5389
  #: includes/elementor/widgets/theme-elements/modern-search.php:99
5390
  #: includes/elementor/widgets/theme-elements/modern-search.php:434
5391
  #: includes/elementor/widgets/theme-elements/search.php:120
5424
  #: includes/elementor/widgets/heading-modern.php:1038
5425
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:1532
5426
  #: includes/elementor/widgets/recent-posts-masonry.php:1073
5427
+ #: includes/elementor/widgets/text.php:1419
5428
  #, fuzzy
5429
  msgid "Wrapper"
5430
  msgstr "ظاهر Wrapper"
5436
 
5437
  #: includes/elementor/widgets/button.php:160
5438
  #: includes/elementor/widgets/modern-button.php:308
5439
+ #: includes/elementor/widgets/text.php:1033 includes/elements/button.php:63
5440
  #: includes/elements/text.php:674 includes/general-hooks.php:686
5441
  #: includes/general-hooks.php:1091
5442
  msgid "Exlarge"
5445
  #: includes/elementor/widgets/button.php:164
5446
  #: includes/elementor/widgets/divider.php:147
5447
  #: includes/elementor/widgets/modern-button.php:312
5448
+ #: includes/elementor/widgets/text.php:1037 includes/elements/button.php:67
5449
  #: includes/elements/divider.php:91 includes/elements/text.php:678
5450
  #: includes/general-hooks.php:690 includes/general-hooks.php:1095
5451
  msgid "Tiny"
5462
  msgstr "ظاهر شکل دکمه"
5463
 
5464
  #: includes/elementor/widgets/button.php:188
5465
+ #: includes/elementor/widgets/text.php:1358 includes/elements/button.php:91
5466
  #: includes/elements/text.php:708
5467
  msgid "Box"
5468
  msgstr "جعبه"
5469
 
5470
  #: includes/elementor/widgets/button.php:192
5471
  #: includes/elementor/widgets/modern-button.php:295
5472
+ #: includes/elementor/widgets/text.php:1362 includes/elements/button.php:95
5473
  #: includes/elements/text.php:712 includes/general-hooks.php:721
5474
  #: includes/general-hooks.php:1126
5475
  msgid "Round"
5477
 
5478
  #: includes/elementor/widgets/button.php:196
5479
  #: includes/elementor/widgets/modern-button.php:296
5480
+ #: includes/elementor/widgets/text.php:1366 includes/elements/button.php:99
5481
  #: includes/elements/text.php:716 includes/general-hooks.php:725
5482
  #: includes/general-hooks.php:1130
5483
  msgid "Curve"
5489
  msgstr "ظاهر دکمه"
5490
 
5491
  #: includes/elementor/widgets/button.php:215
5492
+ #: includes/elementor/widgets/text.php:1386 includes/elements/button.php:122
5493
  #: includes/elements/text.php:742 includes/general-hooks.php:758
5494
  #: includes/general-hooks.php:1163
5495
  msgid "3D"
5497
 
5498
  #: includes/elementor/widgets/button.php:219
5499
  #: includes/elementor/widgets/modern-button.php:282
5500
+ #: includes/elementor/widgets/text.php:1390 includes/elements/button.php:126
5501
  #: includes/elements/text.php:746 includes/general-hooks.php:762
5502
  #: includes/general-hooks.php:1167
5503
  msgid "Outline"
5537
  #: includes/elementor/widgets/testimonial.php:895
5538
  #: includes/elementor/widgets/testimonial.php:931
5539
  #: includes/elementor/widgets/text.php:383
5540
+ #: includes/elementor/widgets/text.php:554
5541
+ #: includes/elementor/widgets/text.php:613
5542
+ #: includes/elementor/widgets/text.php:1074
5543
+ #: includes/elementor/widgets/text.php:1101
5544
  #: includes/elementor/widgets/theme-elements/menu.php:403
5545
  #: includes/elementor/widgets/theme-elements/menu.php:480
5546
  #: includes/elementor/widgets/theme-elements/menu.php:593
5589
  msgstr "شکلک برای دکمه"
5590
 
5591
  #: includes/elementor/widgets/button.php:373
5592
+ #: includes/elementor/widgets/text.php:1135 includes/elements/button.php:171
5593
  #: includes/elements/text.php:800 includes/general-hooks.php:372
5594
  msgid "Icon alignment"
5595
  msgstr "تراز شکلک"
5596
 
5597
  #: includes/elementor/widgets/button.php:380
5598
  #: includes/elementor/widgets/modern-button.php:804
5599
+ #: includes/elementor/widgets/text.php:1142 includes/elements/button.php:191
5600
  #: includes/elements/text.php:809 includes/general-hooks.php:847
5601
  #: includes/general-hooks.php:1252
5602
  msgid "Over"
5603
  msgstr "رو"
5604
 
5605
  #: includes/elementor/widgets/button.php:381
5606
+ #: includes/elementor/widgets/text.php:1143 includes/elements/button.php:195
5607
  #: includes/elements/text.php:810 includes/general-hooks.php:851
5608
  #: includes/general-hooks.php:1256
5609
  msgid "Animate from Left"
5610
  msgstr "متحرک سازی از چپ"
5611
 
5612
  #: includes/elementor/widgets/button.php:382
5613
+ #: includes/elementor/widgets/text.php:1144 includes/elements/text.php:811
5614
  msgid "Animate from Right"
5615
  msgstr "متحرک سازی از راست"
5616
 
5617
  #: includes/elementor/widgets/button.php:390
5618
  #: includes/elementor/widgets/text.php:429
5619
+ #: includes/elementor/widgets/text.php:1156
5620
  #, fuzzy
5621
  msgid "Icon Size"
5622
  msgstr "اندازه شکلک"
5623
 
5624
  #: includes/elementor/widgets/button.php:413
5625
+ #: includes/elementor/widgets/text.php:1341
5626
  #: includes/elementor/widgets/theme-elements/search.php:245
5627
  #, fuzzy
5628
  msgid "Icon Margin"
5666
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:1913
5667
  #: includes/elementor/widgets/recent-posts-masonry.php:1255
5668
  #: includes/elementor/widgets/recent-posts-masonry.php:1311
5669
+ #: includes/elementor/widgets/text.php:752
5670
+ #: includes/elementor/widgets/text.php:848
5671
+ #: includes/elementor/widgets/text.php:959
5672
+ #: includes/elementor/widgets/text.php:1269
5673
+ #: includes/elementor/widgets/text.php:1307
5674
  #: includes/elementor/widgets/theme-elements/current-time.php:184
5675
  #: includes/elementor/widgets/theme-elements/logo.php:507
5676
  #: includes/elementor/widgets/theme-elements/logo.php:599
5763
  #: includes/elementor/widgets/modern-button.php:824
5764
  #: includes/elementor/widgets/modern-button.php:923
5765
  #: includes/elementor/widgets/testimonial.php:756
5766
+ #: includes/elementor/widgets/text.php:1029
5767
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:268
5768
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:400
5769
  #: includes/elementor/widgets/theme-elements/modern-search.php:264
6285
  #: includes/elementor/widgets/icon.php:140
6286
  #: includes/elementor/widgets/staff.php:200
6287
  #: includes/elementor/widgets/text.php:460
6288
+ #: includes/elementor/widgets/text.php:655
6289
  #: includes/elements/about-widget.php:121 includes/elements/divider.php:69
6290
  #: includes/elements/dropcap.php:72 includes/elements/staff.php:168
6291
  #: includes/elements/text.php:539 includes/elements/text.php:581
7161
  #: includes/elementor/widgets/staff.php:674
7162
  #: includes/elementor/widgets/testimonial.php:553
7163
  #: includes/elementor/widgets/testimonial.php:774
7164
+ #: includes/elementor/widgets/text.php:760
7165
+ #: includes/elementor/widgets/text.php:873
7166
+ #: includes/elementor/widgets/text.php:996
7167
  #, fuzzy
7168
  msgid "Bottom space"
7169
  msgstr "فضای بین ستون ها"
8248
  msgstr ""
8249
 
8250
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:1629
8251
+ #: includes/elementor/widgets/text.php:622
8252
+ #: includes/elementor/widgets/text.php:1543
8253
  msgid "Transition duration"
8254
  msgstr ""
8255
 
8530
  msgstr ""
8531
 
8532
  #: includes/elementor/widgets/staff.php:196
8533
+ #: includes/elementor/widgets/text.php:647 includes/elements/staff.php:161
8534
  #: includes/elements/text.php:571
8535
  #, fuzzy
8536
  msgid "Image shape"
8538
 
8539
  #: includes/elementor/widgets/staff.php:204
8540
  #: includes/elementor/widgets/text.php:464
8541
+ #: includes/elementor/widgets/text.php:659 includes/elements/staff.php:172
8542
  #: includes/elements/text.php:543 includes/elements/text.php:585
8543
  msgid "Semi-circle"
8544
  msgstr "نیم دایره"
8545
 
8546
  #: includes/elementor/widgets/staff.php:208
8547
  #: includes/elementor/widgets/text.php:468
8548
+ #: includes/elementor/widgets/text.php:663 includes/elements/staff.php:176
8549
  #: includes/elements/text.php:547 includes/elements/text.php:589
8550
  msgid "Round Rectangle"
8551
  msgstr "مستطیل دورگرد"
8552
 
8553
  #: includes/elementor/widgets/staff.php:212
8554
  #: includes/elementor/widgets/text.php:476
8555
+ #: includes/elementor/widgets/text.php:667 includes/elements/staff.php:180
8556
  #: includes/elements/text.php:555 includes/elements/text.php:593
8557
  msgid "Rectangle"
8558
  msgstr "مستطیل"
8616
  msgstr "آدرس"
8617
 
8618
  #: includes/elementor/widgets/staff.php:531
8619
+ #: includes/elementor/widgets/text.php:856
8620
+ #: includes/elementor/widgets/text.php:979
8621
  #, fuzzy
8622
  msgid "Top space"
8623
  msgstr "فضای خالی"
8624
 
8625
  #: includes/elementor/widgets/staff.php:575
8626
  #: includes/elementor/widgets/text.php:242
8627
+ #: includes/elementor/widgets/text.php:782
8628
  #: includes/elements/recent-posts-grid-carousel.php:70
8629
  #: includes/elements/recent-products.php:56 includes/elements/text.php:59
8630
  msgid "Subtitle"
8662
  msgstr "ظاهر Wrapper"
8663
 
8664
  #: includes/elementor/widgets/staff.php:870
8665
+ #: includes/elementor/widgets/text.php:1435
8666
  #: includes/elementor/widgets/theme-elements/menu.php:324
8667
  #: includes/elementor/widgets/theme-elements/menu.php:1341
8668
  #: includes/elements/text.php:118
8898
  msgstr "مستطیل"
8899
 
8900
  #: includes/elementor/widgets/text.php:523
8901
+ #: includes/elementor/widgets/text.php:582
8902
  #: includes/elementor/widgets/theme-elements/search.php:233
8903
  #: includes/elements/text.php:445
8904
  msgid "Icon color"
8905
  msgstr "رنگ شکلک"
8906
 
8907
+ #: includes/elementor/widgets/text.php:538
8908
+ #: includes/elementor/widgets/text.php:597 includes/elements/text.php:486
8909
  msgid "Icon background color"
8910
  msgstr "رنگ پس زمینه شکلک"
8911
 
8912
+ #: includes/elementor/widgets/text.php:651 includes/elements/text.php:577
8913
  #, fuzzy
8914
  msgid "Default Aspect"
8915
  msgstr "پیش فرض"
8916
 
8917
+ #: includes/elementor/widgets/text.php:1045
8918
  #, fuzzy
8919
  msgid "Button Skin"
8920
  msgstr "اندازه دکمه"
8921
 
8922
+ #: includes/elementor/widgets/text.php:1122
8923
  #, fuzzy
8924
  msgid "Button Icon"
8925
  msgstr "اندازه دکمه"
8926
 
8927
+ #: includes/elementor/widgets/text.php:1235
8928
  #, fuzzy
8929
  msgid "Button Text"
8930
  msgstr "متن دکمه"
8931
 
8932
+ #: includes/elementor/widgets/text.php:1328
8933
  #, fuzzy
8934
  msgid "Button Wrapper"
8935
  msgstr "نوع دکمه"
8936
 
8937
+ #: includes/elementor/widgets/text.php:1353
8938
  #, fuzzy
8939
  msgid "Shape Style"
8940
  msgstr "ظاهر نقشه"
8941
 
8942
+ #: includes/elementor/widgets/text.php:1377 includes/general-hooks.php:747
8943
  #: includes/general-hooks.php:1152
8944
  #, fuzzy
8945
  msgid "Button Style"
8946
  msgstr "ظاهر دکمه"
8947
 
8948
+ #: includes/elementor/widgets/text.php:1427
8949
  #, fuzzy
8950
  msgid "Overlay"
8951
  msgstr "رو"
8952
 
8953
+ #: includes/elementor/widgets/text.php:1578 includes/elements/text.php:896
8954
  msgid "Footer Shape"
8955
  msgstr ""
8956
 
8957
+ #: includes/elementor/widgets/text.php:1587 includes/elements/text.php:907
8958
  msgid "Wave"
8959
  msgstr ""
8960
 
8961
+ #: includes/elementor/widgets/text.php:1591 includes/elements/text.php:911
8962
  msgid "Tail"
8963
  msgstr ""
8964
 
8965
+ #: includes/elementor/widgets/text.php:1602 includes/elements/button.php:212
8966
  #: includes/elements/text.php:825
8967
  msgid "Color of button"
8968
  msgstr "رنگ دکمه"
languages/auxin-elements.pot CHANGED
@@ -1,9 +1,9 @@
1
  # Averta Copyright (c) {2020}
2
  msgid ""
3
  msgstr ""
4
- "Project-Id-Version: Phlox Core Elements 2.7.3\n"
5
  "Report-Msgid-Bugs-To: http://averta.net/phlox/wordpress-theme/\n"
6
- "POT-Creation-Date: 2020-12-01 10:52:05+00:00\n"
7
  "MIME-Version: 1.0\n"
8
  "Content-Type: text/plain; charset=utf-8\n"
9
  "Content-Transfer-Encoding: 8bit\n"
@@ -774,7 +774,7 @@ msgstr ""
774
  #: admin/includes/metaboxes/metabox-fields-general-footer.php:21
775
  #: includes/elementor/modules/documents/footer.php:35
776
  #: includes/elementor/modules/documents/footer.php:46
777
- #: includes/elementor/widgets/text.php:1564
778
  msgid "Footer"
779
  msgstr ""
780
 
@@ -1205,7 +1205,7 @@ msgstr ""
1205
  #: includes/elementor/widgets/staff.php:878
1206
  #: includes/elementor/widgets/svg.php:288
1207
  #: includes/elementor/widgets/testimonial.php:813
1208
- #: includes/elementor/widgets/text.php:1437
1209
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:435
1210
  #: includes/elementor/widgets/theme-elements/copyright.php:146
1211
  #: includes/elementor/widgets/theme-elements/current-time.php:139
@@ -1247,8 +1247,8 @@ msgstr ""
1247
  #: includes/elementor/widgets/svg.php:284
1248
  #: includes/elementor/widgets/testimonial.php:809
1249
  #: includes/elementor/widgets/text.php:367
1250
- #: includes/elementor/widgets/text.php:1134
1251
- #: includes/elementor/widgets/text.php:1433
1252
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:431
1253
  #: includes/elementor/widgets/theme-elements/copyright.php:142
1254
  #: includes/elementor/widgets/theme-elements/current-time.php:135
@@ -1306,7 +1306,7 @@ msgstr ""
1306
  #: includes/elementor/widgets/divider.php:146
1307
  #: includes/elementor/widgets/modern-button.php:311
1308
  #: includes/elementor/widgets/staff.php:787
1309
- #: includes/elementor/widgets/text.php:1030 includes/elements/button.php:66
1310
  #: includes/elements/divider.php:90 includes/elements/socials-list.php:63
1311
  #: includes/elements/staff.php:463 includes/elements/text.php:469
1312
  #: includes/elements/text.php:677 includes/general-hooks.php:689
@@ -1320,7 +1320,7 @@ msgstr ""
1320
  #: includes/elementor/widgets/divider.php:145
1321
  #: includes/elementor/widgets/modern-button.php:310
1322
  #: includes/elementor/widgets/staff.php:788
1323
- #: includes/elementor/widgets/text.php:1029
1324
  #: includes/elements/before-after.php:104 includes/elements/button.php:65
1325
  #: includes/elements/divider.php:89 includes/elements/instagram-feed.php:98
1326
  #: includes/elements/socials-list.php:64 includes/elements/staff.php:111
@@ -1335,7 +1335,7 @@ msgstr ""
1335
  #: includes/elementor/widgets/button.php:161
1336
  #: includes/elementor/widgets/modern-button.php:309
1337
  #: includes/elementor/widgets/staff.php:789
1338
- #: includes/elementor/widgets/text.php:1028
1339
  #: includes/elements/before-after.php:105 includes/elements/button.php:64
1340
  #: includes/elements/divider.php:88 includes/elements/socials-list.php:65
1341
  #: includes/elements/staff.php:110 includes/elements/staff.php:465
@@ -1401,7 +1401,7 @@ msgstr ""
1401
  #: includes/elementor/widgets/recent-posts-tiles-carousel.php:130
1402
  #: includes/elementor/widgets/recent-posts-tiles.php:130
1403
  #: includes/elementor/widgets/tabs.php:195
1404
- #: includes/elementor/widgets/text.php:1133
1405
  #: includes/elementor/widgets/theme-elements/menu.php:999
1406
  #: includes/elementor/widgets/theme-elements/modern-search.php:577
1407
  #: includes/elements/button.php:179 includes/elements/code.php:99
@@ -1477,14 +1477,14 @@ msgstr ""
1477
  #: includes/elementor/widgets/testimonial.php:511
1478
  #: includes/elementor/widgets/testimonial.php:629
1479
  #: includes/elementor/widgets/testimonial.php:923
1480
- #: includes/elementor/widgets/text.php:560
1481
- #: includes/elementor/widgets/text.php:713
1482
- #: includes/elementor/widgets/text.php:809
1483
- #: includes/elementor/widgets/text.php:920
1484
- #: includes/elementor/widgets/text.php:1087
1485
- #: includes/elementor/widgets/text.php:1207
1486
- #: includes/elementor/widgets/text.php:1282
1487
- #: includes/elementor/widgets/text.php:1512
1488
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:516
1489
  #: includes/elementor/widgets/theme-elements/copyright.php:212
1490
  #: includes/elementor/widgets/theme-elements/logo.php:327
@@ -3026,8 +3026,8 @@ msgstr ""
3026
  #: includes/elementor/widgets/svg.php:292
3027
  #: includes/elementor/widgets/testimonial.php:817
3028
  #: includes/elementor/widgets/text.php:371
3029
- #: includes/elementor/widgets/text.php:1135
3030
- #: includes/elementor/widgets/text.php:1441
3031
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:439
3032
  #: includes/elementor/widgets/theme-elements/copyright.php:150
3033
  #: includes/elementor/widgets/theme-elements/current-time.php:143
@@ -3299,7 +3299,7 @@ msgstr ""
3299
  #: includes/elementor/widgets/recent-posts-timeline.php:519
3300
  #: includes/elementor/widgets/testimonial.php:238
3301
  #: includes/elementor/widgets/text.php:115
3302
- #: includes/elementor/widgets/text.php:1577
3303
  #: includes/elementor/widgets/theme-elements/menu.php:658
3304
  #: includes/elementor/widgets/theme-elements/search.php:118
3305
  #: includes/elements/flickr.php:156 includes/elements/flickr.php:205
@@ -3472,7 +3472,7 @@ msgstr ""
3472
  #: includes/elementor/widgets/staff.php:452
3473
  #: includes/elementor/widgets/tabs.php:373
3474
  #: includes/elementor/widgets/text.php:232
3475
- #: includes/elementor/widgets/text.php:680
3476
  #: includes/elementor/widgets/theme-elements/logo.php:454
3477
  #: includes/elementor/widgets/theme-elements/site-title.php:94
3478
  #: includes/elementor/widgets/touch-slider.php:332
@@ -4154,7 +4154,7 @@ msgstr ""
4154
  #: includes/elementor/widgets/testimonial.php:193
4155
  #: includes/elementor/widgets/text.php:225
4156
  #: includes/elementor/widgets/text.php:263
4157
- #: includes/elementor/widgets/text.php:889
4158
  #: includes/elements/accordion-widget.php:76 includes/elements/accordion.php:93
4159
  #: includes/elements/dropcap.php:82 includes/elements/highlight.php:78
4160
  #: includes/elements/staff.php:514 includes/elements/tabs.php:92
@@ -4282,7 +4282,7 @@ msgstr ""
4282
  #: includes/elementor/widgets/recent-products.php:522
4283
  #: includes/elementor/widgets/tabs.php:235
4284
  #: includes/elementor/widgets/tabs.php:493
4285
- #: includes/elementor/widgets/text.php:1468
4286
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:463
4287
  #: includes/elementor/widgets/theme-elements/logo.php:390
4288
  #: includes/elementor/widgets/theme-elements/menu.php:421
@@ -4365,14 +4365,14 @@ msgstr ""
4365
  #: includes/elementor/widgets/testimonial.php:591
4366
  #: includes/elementor/widgets/testimonial.php:887
4367
  #: includes/elementor/widgets/text.php:507
4368
- #: includes/elementor/widgets/text.php:693
4369
- #: includes/elementor/widgets/text.php:789
4370
- #: includes/elementor/widgets/text.php:900
4371
- #: includes/elementor/widgets/text.php:1060
4372
- #: includes/elementor/widgets/text.php:1187
4373
- #: includes/elementor/widgets/text.php:1244
4374
- #: includes/elementor/widgets/text.php:1376
4375
- #: includes/elementor/widgets/text.php:1484
4376
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:490
4377
  #: includes/elementor/widgets/theme-elements/copyright.php:175
4378
  #: includes/elementor/widgets/theme-elements/logo.php:293
@@ -4474,9 +4474,9 @@ msgstr ""
4474
  #: includes/elementor/widgets/testimonial.php:843
4475
  #: includes/elementor/widgets/text.php:392
4476
  #: includes/elementor/widgets/text.php:490
4477
- #: includes/elementor/widgets/text.php:961
4478
- #: includes/elementor/widgets/text.php:1395
4479
- #: includes/elementor/widgets/text.php:1456
4480
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:475
4481
  #: includes/elementor/widgets/theme-elements/menu.php:517
4482
  #: includes/elementor/widgets/theme-elements/menu.php:956
@@ -4609,16 +4609,16 @@ msgstr ""
4609
  #: includes/elementor/widgets/testimonial.php:521
4610
  #: includes/elementor/widgets/testimonial.php:601
4611
  #: includes/elementor/widgets/testimonial.php:639
4612
- #: includes/elementor/widgets/text.php:700
4613
- #: includes/elementor/widgets/text.php:720
4614
- #: includes/elementor/widgets/text.php:796
4615
- #: includes/elementor/widgets/text.php:816
4616
- #: includes/elementor/widgets/text.php:907
4617
- #: includes/elementor/widgets/text.php:927
4618
- #: includes/elementor/widgets/text.php:1194
4619
- #: includes/elementor/widgets/text.php:1214
4620
- #: includes/elementor/widgets/text.php:1251
4621
- #: includes/elementor/widgets/text.php:1289
4622
  #: includes/elementor/widgets/theme-elements/copyright.php:182
4623
  #: includes/elementor/widgets/theme-elements/copyright.php:219
4624
  #: includes/elementor/widgets/theme-elements/current-time.php:172
@@ -4970,7 +4970,7 @@ msgstr ""
4970
  #: includes/elementor/widgets/button.php:283
4971
  #: includes/elementor/widgets/modern-button.php:320
4972
  #: includes/elementor/widgets/tabs.php:149
4973
- #: includes/elementor/widgets/text.php:1048
4974
  #: includes/elementor/widgets/theme-elements/menu.php:616
4975
  #: includes/elements/audio.php:97
4976
  msgid "Skin"
@@ -5082,7 +5082,7 @@ msgstr ""
5082
  #: includes/elementor/widgets/modern-button.php:101
5083
  #: includes/elementor/widgets/modern-button.php:269
5084
  #: includes/elementor/widgets/text.php:278
5085
- #: includes/elementor/widgets/text.php:1012
5086
  #: includes/elementor/widgets/theme-elements/modern-search.php:99
5087
  #: includes/elementor/widgets/theme-elements/modern-search.php:434
5088
  #: includes/elementor/widgets/theme-elements/search.php:120
@@ -5119,7 +5119,7 @@ msgstr ""
5119
  #: includes/elementor/widgets/heading-modern.php:1038
5120
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:1532
5121
  #: includes/elementor/widgets/recent-posts-masonry.php:1073
5122
- #: includes/elementor/widgets/text.php:1413
5123
  msgid "Wrapper"
5124
  msgstr ""
5125
 
@@ -5130,7 +5130,7 @@ msgstr ""
5130
 
5131
  #: includes/elementor/widgets/button.php:160
5132
  #: includes/elementor/widgets/modern-button.php:308
5133
- #: includes/elementor/widgets/text.php:1027 includes/elements/button.php:63
5134
  #: includes/elements/text.php:674 includes/general-hooks.php:686
5135
  #: includes/general-hooks.php:1091
5136
  msgid "Exlarge"
@@ -5139,7 +5139,7 @@ msgstr ""
5139
  #: includes/elementor/widgets/button.php:164
5140
  #: includes/elementor/widgets/divider.php:147
5141
  #: includes/elementor/widgets/modern-button.php:312
5142
- #: includes/elementor/widgets/text.php:1031 includes/elements/button.php:67
5143
  #: includes/elements/divider.php:91 includes/elements/text.php:678
5144
  #: includes/general-hooks.php:690 includes/general-hooks.php:1095
5145
  msgid "Tiny"
@@ -5155,14 +5155,14 @@ msgid "Button shape"
5155
  msgstr ""
5156
 
5157
  #: includes/elementor/widgets/button.php:188
5158
- #: includes/elementor/widgets/text.php:1352 includes/elements/button.php:91
5159
  #: includes/elements/text.php:708
5160
  msgid "Box"
5161
  msgstr ""
5162
 
5163
  #: includes/elementor/widgets/button.php:192
5164
  #: includes/elementor/widgets/modern-button.php:295
5165
- #: includes/elementor/widgets/text.php:1356 includes/elements/button.php:95
5166
  #: includes/elements/text.php:712 includes/general-hooks.php:721
5167
  #: includes/general-hooks.php:1126
5168
  msgid "Round"
@@ -5170,7 +5170,7 @@ msgstr ""
5170
 
5171
  #: includes/elementor/widgets/button.php:196
5172
  #: includes/elementor/widgets/modern-button.php:296
5173
- #: includes/elementor/widgets/text.php:1360 includes/elements/button.php:99
5174
  #: includes/elements/text.php:716 includes/general-hooks.php:725
5175
  #: includes/general-hooks.php:1130
5176
  msgid "Curve"
@@ -5182,7 +5182,7 @@ msgid "Button style"
5182
  msgstr ""
5183
 
5184
  #: includes/elementor/widgets/button.php:215
5185
- #: includes/elementor/widgets/text.php:1380 includes/elements/button.php:122
5186
  #: includes/elements/text.php:742 includes/general-hooks.php:758
5187
  #: includes/general-hooks.php:1163
5188
  msgid "3D"
@@ -5190,7 +5190,7 @@ msgstr ""
5190
 
5191
  #: includes/elementor/widgets/button.php:219
5192
  #: includes/elementor/widgets/modern-button.php:282
5193
- #: includes/elementor/widgets/text.php:1384 includes/elements/button.php:126
5194
  #: includes/elements/text.php:746 includes/general-hooks.php:762
5195
  #: includes/general-hooks.php:1167
5196
  msgid "Outline"
@@ -5229,10 +5229,10 @@ msgstr ""
5229
  #: includes/elementor/widgets/testimonial.php:895
5230
  #: includes/elementor/widgets/testimonial.php:931
5231
  #: includes/elementor/widgets/text.php:383
5232
- #: includes/elementor/widgets/text.php:548
5233
- #: includes/elementor/widgets/text.php:607
5234
- #: includes/elementor/widgets/text.php:1068
5235
- #: includes/elementor/widgets/text.php:1095
5236
  #: includes/elementor/widgets/theme-elements/menu.php:403
5237
  #: includes/elementor/widgets/theme-elements/menu.php:480
5238
  #: includes/elementor/widgets/theme-elements/menu.php:593
@@ -5280,39 +5280,39 @@ msgid "Icon for button"
5280
  msgstr ""
5281
 
5282
  #: includes/elementor/widgets/button.php:373
5283
- #: includes/elementor/widgets/text.php:1129 includes/elements/button.php:171
5284
  #: includes/elements/text.php:800 includes/general-hooks.php:372
5285
  msgid "Icon alignment"
5286
  msgstr ""
5287
 
5288
  #: includes/elementor/widgets/button.php:380
5289
  #: includes/elementor/widgets/modern-button.php:804
5290
- #: includes/elementor/widgets/text.php:1136 includes/elements/button.php:191
5291
  #: includes/elements/text.php:809 includes/general-hooks.php:847
5292
  #: includes/general-hooks.php:1252
5293
  msgid "Over"
5294
  msgstr ""
5295
 
5296
  #: includes/elementor/widgets/button.php:381
5297
- #: includes/elementor/widgets/text.php:1137 includes/elements/button.php:195
5298
  #: includes/elements/text.php:810 includes/general-hooks.php:851
5299
  #: includes/general-hooks.php:1256
5300
  msgid "Animate from Left"
5301
  msgstr ""
5302
 
5303
  #: includes/elementor/widgets/button.php:382
5304
- #: includes/elementor/widgets/text.php:1138 includes/elements/text.php:811
5305
  msgid "Animate from Right"
5306
  msgstr ""
5307
 
5308
  #: includes/elementor/widgets/button.php:390
5309
  #: includes/elementor/widgets/text.php:429
5310
- #: includes/elementor/widgets/text.php:1150
5311
  msgid "Icon Size"
5312
  msgstr ""
5313
 
5314
  #: includes/elementor/widgets/button.php:413
5315
- #: includes/elementor/widgets/text.php:1335
5316
  #: includes/elementor/widgets/theme-elements/search.php:245
5317
  msgid "Icon Margin"
5318
  msgstr ""
@@ -5355,11 +5355,11 @@ msgstr ""
5355
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:1913
5356
  #: includes/elementor/widgets/recent-posts-masonry.php:1255
5357
  #: includes/elementor/widgets/recent-posts-masonry.php:1311
5358
- #: includes/elementor/widgets/text.php:746
5359
- #: includes/elementor/widgets/text.php:842
5360
- #: includes/elementor/widgets/text.php:953
5361
- #: includes/elementor/widgets/text.php:1263
5362
- #: includes/elementor/widgets/text.php:1301
5363
  #: includes/elementor/widgets/theme-elements/current-time.php:184
5364
  #: includes/elementor/widgets/theme-elements/logo.php:507
5365
  #: includes/elementor/widgets/theme-elements/logo.php:599
@@ -5442,7 +5442,7 @@ msgstr ""
5442
  #: includes/elementor/widgets/modern-button.php:824
5443
  #: includes/elementor/widgets/modern-button.php:923
5444
  #: includes/elementor/widgets/testimonial.php:756
5445
- #: includes/elementor/widgets/text.php:1023
5446
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:268
5447
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:400
5448
  #: includes/elementor/widgets/theme-elements/modern-search.php:264
@@ -5935,7 +5935,7 @@ msgstr ""
5935
  #: includes/elementor/widgets/icon.php:140
5936
  #: includes/elementor/widgets/staff.php:200
5937
  #: includes/elementor/widgets/text.php:460
5938
- #: includes/elementor/widgets/text.php:649
5939
  #: includes/elements/about-widget.php:121 includes/elements/divider.php:69
5940
  #: includes/elements/dropcap.php:72 includes/elements/staff.php:168
5941
  #: includes/elements/text.php:539 includes/elements/text.php:581
@@ -6743,9 +6743,9 @@ msgstr ""
6743
  #: includes/elementor/widgets/staff.php:674
6744
  #: includes/elementor/widgets/testimonial.php:553
6745
  #: includes/elementor/widgets/testimonial.php:774
6746
- #: includes/elementor/widgets/text.php:754
6747
- #: includes/elementor/widgets/text.php:867
6748
- #: includes/elementor/widgets/text.php:990
6749
  msgid "Bottom space"
6750
  msgstr ""
6751
 
@@ -7788,8 +7788,8 @@ msgid "Padding for content wrapper"
7788
  msgstr ""
7789
 
7790
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:1629
7791
- #: includes/elementor/widgets/text.php:616
7792
- #: includes/elementor/widgets/text.php:1537
7793
  msgid "Transition duration"
7794
  msgstr ""
7795
 
@@ -8047,28 +8047,28 @@ msgid "Limit the number of words in the Content"
8047
  msgstr ""
8048
 
8049
  #: includes/elementor/widgets/staff.php:196
8050
- #: includes/elementor/widgets/text.php:641 includes/elements/staff.php:161
8051
  #: includes/elements/text.php:571
8052
  msgid "Image shape"
8053
  msgstr ""
8054
 
8055
  #: includes/elementor/widgets/staff.php:204
8056
  #: includes/elementor/widgets/text.php:464
8057
- #: includes/elementor/widgets/text.php:653 includes/elements/staff.php:172
8058
  #: includes/elements/text.php:543 includes/elements/text.php:585
8059
  msgid "Semi-circle"
8060
  msgstr ""
8061
 
8062
  #: includes/elementor/widgets/staff.php:208
8063
  #: includes/elementor/widgets/text.php:468
8064
- #: includes/elementor/widgets/text.php:657 includes/elements/staff.php:176
8065
  #: includes/elements/text.php:547 includes/elements/text.php:589
8066
  msgid "Round Rectangle"
8067
  msgstr ""
8068
 
8069
  #: includes/elementor/widgets/staff.php:212
8070
  #: includes/elementor/widgets/text.php:476
8071
- #: includes/elementor/widgets/text.php:661 includes/elements/staff.php:180
8072
  #: includes/elements/text.php:555 includes/elements/text.php:593
8073
  msgid "Rectangle"
8074
  msgstr ""
@@ -8122,14 +8122,14 @@ msgid "LinkedIn Address"
8122
  msgstr ""
8123
 
8124
  #: includes/elementor/widgets/staff.php:531
8125
- #: includes/elementor/widgets/text.php:850
8126
- #: includes/elementor/widgets/text.php:973
8127
  msgid "Top space"
8128
  msgstr ""
8129
 
8130
  #: includes/elementor/widgets/staff.php:575
8131
  #: includes/elementor/widgets/text.php:242
8132
- #: includes/elementor/widgets/text.php:776
8133
  #: includes/elements/recent-posts-grid-carousel.php:70
8134
  #: includes/elements/recent-products.php:56 includes/elements/text.php:59
8135
  msgid "Subtitle"
@@ -8163,7 +8163,7 @@ msgid "Wrappers"
8163
  msgstr ""
8164
 
8165
  #: includes/elementor/widgets/staff.php:870
8166
- #: includes/elementor/widgets/text.php:1429
8167
  #: includes/elementor/widgets/theme-elements/menu.php:324
8168
  #: includes/elementor/widgets/theme-elements/menu.php:1341
8169
  #: includes/elements/text.php:118
@@ -8374,63 +8374,63 @@ msgid "Cross Rectangle"
8374
  msgstr ""
8375
 
8376
  #: includes/elementor/widgets/text.php:523
8377
- #: includes/elementor/widgets/text.php:576
8378
  #: includes/elementor/widgets/theme-elements/search.php:233
8379
  #: includes/elements/text.php:445
8380
  msgid "Icon color"
8381
  msgstr ""
8382
 
8383
- #: includes/elementor/widgets/text.php:535
8384
- #: includes/elementor/widgets/text.php:591 includes/elements/text.php:486
8385
  msgid "Icon background color"
8386
  msgstr ""
8387
 
8388
- #: includes/elementor/widgets/text.php:645 includes/elements/text.php:577
8389
  msgid "Default Aspect"
8390
  msgstr ""
8391
 
8392
- #: includes/elementor/widgets/text.php:1039
8393
  msgid "Button Skin"
8394
  msgstr ""
8395
 
8396
- #: includes/elementor/widgets/text.php:1116
8397
  msgid "Button Icon"
8398
  msgstr ""
8399
 
8400
- #: includes/elementor/widgets/text.php:1229
8401
  msgid "Button Text"
8402
  msgstr ""
8403
 
8404
- #: includes/elementor/widgets/text.php:1322
8405
  msgid "Button Wrapper"
8406
  msgstr ""
8407
 
8408
- #: includes/elementor/widgets/text.php:1347
8409
  msgid "Shape Style"
8410
  msgstr ""
8411
 
8412
- #: includes/elementor/widgets/text.php:1371 includes/general-hooks.php:747
8413
  #: includes/general-hooks.php:1152
8414
  msgid "Button Style"
8415
  msgstr ""
8416
 
8417
- #: includes/elementor/widgets/text.php:1421
8418
  msgid "Overlay"
8419
  msgstr ""
8420
 
8421
- #: includes/elementor/widgets/text.php:1572 includes/elements/text.php:896
8422
  msgid "Footer Shape"
8423
  msgstr ""
8424
 
8425
- #: includes/elementor/widgets/text.php:1581 includes/elements/text.php:907
8426
  msgid "Wave"
8427
  msgstr ""
8428
 
8429
- #: includes/elementor/widgets/text.php:1585 includes/elements/text.php:911
8430
  msgid "Tail"
8431
  msgstr ""
8432
 
8433
- #: includes/elementor/widgets/text.php:1596 includes/elements/button.php:212
8434
  #: includes/elements/text.php:825
8435
  msgid "Color of button"
8436
  msgstr ""
1
  # Averta Copyright (c) {2020}
2
  msgid ""
3
  msgstr ""
4
+ "Project-Id-Version: Phlox Core Elements 2.7.4\n"
5
  "Report-Msgid-Bugs-To: http://averta.net/phlox/wordpress-theme/\n"
6
+ "POT-Creation-Date: 2020-12-06 12:31:42+00:00\n"
7
  "MIME-Version: 1.0\n"
8
  "Content-Type: text/plain; charset=utf-8\n"
9
  "Content-Transfer-Encoding: 8bit\n"
774
  #: admin/includes/metaboxes/metabox-fields-general-footer.php:21
775
  #: includes/elementor/modules/documents/footer.php:35
776
  #: includes/elementor/modules/documents/footer.php:46
777
+ #: includes/elementor/widgets/text.php:1570
778
  msgid "Footer"
779
  msgstr ""
780
 
1205
  #: includes/elementor/widgets/staff.php:878
1206
  #: includes/elementor/widgets/svg.php:288
1207
  #: includes/elementor/widgets/testimonial.php:813
1208
+ #: includes/elementor/widgets/text.php:1443
1209
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:435
1210
  #: includes/elementor/widgets/theme-elements/copyright.php:146
1211
  #: includes/elementor/widgets/theme-elements/current-time.php:139
1247
  #: includes/elementor/widgets/svg.php:284
1248
  #: includes/elementor/widgets/testimonial.php:809
1249
  #: includes/elementor/widgets/text.php:367
1250
+ #: includes/elementor/widgets/text.php:1140
1251
+ #: includes/elementor/widgets/text.php:1439
1252
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:431
1253
  #: includes/elementor/widgets/theme-elements/copyright.php:142
1254
  #: includes/elementor/widgets/theme-elements/current-time.php:135
1306
  #: includes/elementor/widgets/divider.php:146
1307
  #: includes/elementor/widgets/modern-button.php:311
1308
  #: includes/elementor/widgets/staff.php:787
1309
+ #: includes/elementor/widgets/text.php:1036 includes/elements/button.php:66
1310
  #: includes/elements/divider.php:90 includes/elements/socials-list.php:63
1311
  #: includes/elements/staff.php:463 includes/elements/text.php:469
1312
  #: includes/elements/text.php:677 includes/general-hooks.php:689
1320
  #: includes/elementor/widgets/divider.php:145
1321
  #: includes/elementor/widgets/modern-button.php:310
1322
  #: includes/elementor/widgets/staff.php:788
1323
+ #: includes/elementor/widgets/text.php:1035
1324
  #: includes/elements/before-after.php:104 includes/elements/button.php:65
1325
  #: includes/elements/divider.php:89 includes/elements/instagram-feed.php:98
1326
  #: includes/elements/socials-list.php:64 includes/elements/staff.php:111
1335
  #: includes/elementor/widgets/button.php:161
1336
  #: includes/elementor/widgets/modern-button.php:309
1337
  #: includes/elementor/widgets/staff.php:789
1338
+ #: includes/elementor/widgets/text.php:1034
1339
  #: includes/elements/before-after.php:105 includes/elements/button.php:64
1340
  #: includes/elements/divider.php:88 includes/elements/socials-list.php:65
1341
  #: includes/elements/staff.php:110 includes/elements/staff.php:465
1401
  #: includes/elementor/widgets/recent-posts-tiles-carousel.php:130
1402
  #: includes/elementor/widgets/recent-posts-tiles.php:130
1403
  #: includes/elementor/widgets/tabs.php:195
1404
+ #: includes/elementor/widgets/text.php:1139
1405
  #: includes/elementor/widgets/theme-elements/menu.php:999
1406
  #: includes/elementor/widgets/theme-elements/modern-search.php:577
1407
  #: includes/elements/button.php:179 includes/elements/code.php:99
1477
  #: includes/elementor/widgets/testimonial.php:511
1478
  #: includes/elementor/widgets/testimonial.php:629
1479
  #: includes/elementor/widgets/testimonial.php:923
1480
+ #: includes/elementor/widgets/text.php:566
1481
+ #: includes/elementor/widgets/text.php:719
1482
+ #: includes/elementor/widgets/text.php:815
1483
+ #: includes/elementor/widgets/text.php:926
1484
+ #: includes/elementor/widgets/text.php:1093
1485
+ #: includes/elementor/widgets/text.php:1213
1486
+ #: includes/elementor/widgets/text.php:1288
1487
+ #: includes/elementor/widgets/text.php:1518
1488
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:516
1489
  #: includes/elementor/widgets/theme-elements/copyright.php:212
1490
  #: includes/elementor/widgets/theme-elements/logo.php:327
3026
  #: includes/elementor/widgets/svg.php:292
3027
  #: includes/elementor/widgets/testimonial.php:817
3028
  #: includes/elementor/widgets/text.php:371
3029
+ #: includes/elementor/widgets/text.php:1141
3030
+ #: includes/elementor/widgets/text.php:1447
3031
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:439
3032
  #: includes/elementor/widgets/theme-elements/copyright.php:150
3033
  #: includes/elementor/widgets/theme-elements/current-time.php:143
3299
  #: includes/elementor/widgets/recent-posts-timeline.php:519
3300
  #: includes/elementor/widgets/testimonial.php:238
3301
  #: includes/elementor/widgets/text.php:115
3302
+ #: includes/elementor/widgets/text.php:1583
3303
  #: includes/elementor/widgets/theme-elements/menu.php:658
3304
  #: includes/elementor/widgets/theme-elements/search.php:118
3305
  #: includes/elements/flickr.php:156 includes/elements/flickr.php:205
3472
  #: includes/elementor/widgets/staff.php:452
3473
  #: includes/elementor/widgets/tabs.php:373
3474
  #: includes/elementor/widgets/text.php:232
3475
+ #: includes/elementor/widgets/text.php:686
3476
  #: includes/elementor/widgets/theme-elements/logo.php:454
3477
  #: includes/elementor/widgets/theme-elements/site-title.php:94
3478
  #: includes/elementor/widgets/touch-slider.php:332
4154
  #: includes/elementor/widgets/testimonial.php:193
4155
  #: includes/elementor/widgets/text.php:225
4156
  #: includes/elementor/widgets/text.php:263
4157
+ #: includes/elementor/widgets/text.php:895
4158
  #: includes/elements/accordion-widget.php:76 includes/elements/accordion.php:93
4159
  #: includes/elements/dropcap.php:82 includes/elements/highlight.php:78
4160
  #: includes/elements/staff.php:514 includes/elements/tabs.php:92
4282
  #: includes/elementor/widgets/recent-products.php:522
4283
  #: includes/elementor/widgets/tabs.php:235
4284
  #: includes/elementor/widgets/tabs.php:493
4285
+ #: includes/elementor/widgets/text.php:1474
4286
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:463
4287
  #: includes/elementor/widgets/theme-elements/logo.php:390
4288
  #: includes/elementor/widgets/theme-elements/menu.php:421
4365
  #: includes/elementor/widgets/testimonial.php:591
4366
  #: includes/elementor/widgets/testimonial.php:887
4367
  #: includes/elementor/widgets/text.php:507
4368
+ #: includes/elementor/widgets/text.php:699
4369
+ #: includes/elementor/widgets/text.php:795
4370
+ #: includes/elementor/widgets/text.php:906
4371
+ #: includes/elementor/widgets/text.php:1066
4372
+ #: includes/elementor/widgets/text.php:1193
4373
+ #: includes/elementor/widgets/text.php:1250
4374
+ #: includes/elementor/widgets/text.php:1382
4375
+ #: includes/elementor/widgets/text.php:1490
4376
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:490
4377
  #: includes/elementor/widgets/theme-elements/copyright.php:175
4378
  #: includes/elementor/widgets/theme-elements/logo.php:293
4474
  #: includes/elementor/widgets/testimonial.php:843
4475
  #: includes/elementor/widgets/text.php:392
4476
  #: includes/elementor/widgets/text.php:490
4477
+ #: includes/elementor/widgets/text.php:967
4478
+ #: includes/elementor/widgets/text.php:1401
4479
+ #: includes/elementor/widgets/text.php:1462
4480
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:475
4481
  #: includes/elementor/widgets/theme-elements/menu.php:517
4482
  #: includes/elementor/widgets/theme-elements/menu.php:956
4609
  #: includes/elementor/widgets/testimonial.php:521
4610
  #: includes/elementor/widgets/testimonial.php:601
4611
  #: includes/elementor/widgets/testimonial.php:639
4612
+ #: includes/elementor/widgets/text.php:706
4613
+ #: includes/elementor/widgets/text.php:726
4614
+ #: includes/elementor/widgets/text.php:802
4615
+ #: includes/elementor/widgets/text.php:822
4616
+ #: includes/elementor/widgets/text.php:913
4617
+ #: includes/elementor/widgets/text.php:933
4618
+ #: includes/elementor/widgets/text.php:1200
4619
+ #: includes/elementor/widgets/text.php:1220
4620
+ #: includes/elementor/widgets/text.php:1257
4621
+ #: includes/elementor/widgets/text.php:1295
4622
  #: includes/elementor/widgets/theme-elements/copyright.php:182
4623
  #: includes/elementor/widgets/theme-elements/copyright.php:219
4624
  #: includes/elementor/widgets/theme-elements/current-time.php:172
4970
  #: includes/elementor/widgets/button.php:283
4971
  #: includes/elementor/widgets/modern-button.php:320
4972
  #: includes/elementor/widgets/tabs.php:149
4973
+ #: includes/elementor/widgets/text.php:1054
4974
  #: includes/elementor/widgets/theme-elements/menu.php:616
4975
  #: includes/elements/audio.php:97
4976
  msgid "Skin"
5082
  #: includes/elementor/widgets/modern-button.php:101
5083
  #: includes/elementor/widgets/modern-button.php:269
5084
  #: includes/elementor/widgets/text.php:278
5085
+ #: includes/elementor/widgets/text.php:1018
5086
  #: includes/elementor/widgets/theme-elements/modern-search.php:99
5087
  #: includes/elementor/widgets/theme-elements/modern-search.php:434
5088
  #: includes/elementor/widgets/theme-elements/search.php:120
5119
  #: includes/elementor/widgets/heading-modern.php:1038
5120
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:1532
5121
  #: includes/elementor/widgets/recent-posts-masonry.php:1073
5122
+ #: includes/elementor/widgets/text.php:1419
5123
  msgid "Wrapper"
5124
  msgstr ""
5125
 
5130
 
5131
  #: includes/elementor/widgets/button.php:160
5132
  #: includes/elementor/widgets/modern-button.php:308
5133
+ #: includes/elementor/widgets/text.php:1033 includes/elements/button.php:63
5134
  #: includes/elements/text.php:674 includes/general-hooks.php:686
5135
  #: includes/general-hooks.php:1091
5136
  msgid "Exlarge"
5139
  #: includes/elementor/widgets/button.php:164
5140
  #: includes/elementor/widgets/divider.php:147
5141
  #: includes/elementor/widgets/modern-button.php:312
5142
+ #: includes/elementor/widgets/text.php:1037 includes/elements/button.php:67
5143
  #: includes/elements/divider.php:91 includes/elements/text.php:678
5144
  #: includes/general-hooks.php:690 includes/general-hooks.php:1095
5145
  msgid "Tiny"
5155
  msgstr ""
5156
 
5157
  #: includes/elementor/widgets/button.php:188
5158
+ #: includes/elementor/widgets/text.php:1358 includes/elements/button.php:91
5159
  #: includes/elements/text.php:708
5160
  msgid "Box"
5161
  msgstr ""
5162
 
5163
  #: includes/elementor/widgets/button.php:192
5164
  #: includes/elementor/widgets/modern-button.php:295
5165
+ #: includes/elementor/widgets/text.php:1362 includes/elements/button.php:95
5166
  #: includes/elements/text.php:712 includes/general-hooks.php:721
5167
  #: includes/general-hooks.php:1126
5168
  msgid "Round"
5170
 
5171
  #: includes/elementor/widgets/button.php:196
5172
  #: includes/elementor/widgets/modern-button.php:296
5173
+ #: includes/elementor/widgets/text.php:1366 includes/elements/button.php:99
5174
  #: includes/elements/text.php:716 includes/general-hooks.php:725
5175
  #: includes/general-hooks.php:1130
5176
  msgid "Curve"
5182
  msgstr ""
5183
 
5184
  #: includes/elementor/widgets/button.php:215
5185
+ #: includes/elementor/widgets/text.php:1386 includes/elements/button.php:122
5186
  #: includes/elements/text.php:742 includes/general-hooks.php:758
5187
  #: includes/general-hooks.php:1163
5188
  msgid "3D"
5190
 
5191
  #: includes/elementor/widgets/button.php:219
5192
  #: includes/elementor/widgets/modern-button.php:282
5193
+ #: includes/elementor/widgets/text.php:1390 includes/elements/button.php:126
5194
  #: includes/elements/text.php:746 includes/general-hooks.php:762
5195
  #: includes/general-hooks.php:1167
5196
  msgid "Outline"
5229
  #: includes/elementor/widgets/testimonial.php:895
5230
  #: includes/elementor/widgets/testimonial.php:931
5231
  #: includes/elementor/widgets/text.php:383
5232
+ #: includes/elementor/widgets/text.php:554
5233
+ #: includes/elementor/widgets/text.php:613
5234
+ #: includes/elementor/widgets/text.php:1074
5235
+ #: includes/elementor/widgets/text.php:1101
5236
  #: includes/elementor/widgets/theme-elements/menu.php:403
5237
  #: includes/elementor/widgets/theme-elements/menu.php:480
5238
  #: includes/elementor/widgets/theme-elements/menu.php:593
5280
  msgstr ""
5281
 
5282
  #: includes/elementor/widgets/button.php:373
5283
+ #: includes/elementor/widgets/text.php:1135 includes/elements/button.php:171
5284
  #: includes/elements/text.php:800 includes/general-hooks.php:372
5285
  msgid "Icon alignment"
5286
  msgstr ""
5287
 
5288
  #: includes/elementor/widgets/button.php:380
5289
  #: includes/elementor/widgets/modern-button.php:804
5290
+ #: includes/elementor/widgets/text.php:1142 includes/elements/button.php:191
5291
  #: includes/elements/text.php:809 includes/general-hooks.php:847
5292
  #: includes/general-hooks.php:1252
5293
  msgid "Over"
5294
  msgstr ""
5295
 
5296
  #: includes/elementor/widgets/button.php:381
5297
+ #: includes/elementor/widgets/text.php:1143 includes/elements/button.php:195
5298
  #: includes/elements/text.php:810 includes/general-hooks.php:851
5299
  #: includes/general-hooks.php:1256
5300
  msgid "Animate from Left"
5301
  msgstr ""
5302
 
5303
  #: includes/elementor/widgets/button.php:382
5304
+ #: includes/elementor/widgets/text.php:1144 includes/elements/text.php:811
5305
  msgid "Animate from Right"
5306
  msgstr ""
5307
 
5308
  #: includes/elementor/widgets/button.php:390
5309
  #: includes/elementor/widgets/text.php:429
5310
+ #: includes/elementor/widgets/text.php:1156
5311
  msgid "Icon Size"
5312
  msgstr ""
5313
 
5314
  #: includes/elementor/widgets/button.php:413
5315
+ #: includes/elementor/widgets/text.php:1341
5316
  #: includes/elementor/widgets/theme-elements/search.php:245
5317
  msgid "Icon Margin"
5318
  msgstr ""
5355
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:1913
5356
  #: includes/elementor/widgets/recent-posts-masonry.php:1255
5357
  #: includes/elementor/widgets/recent-posts-masonry.php:1311
5358
+ #: includes/elementor/widgets/text.php:752
5359
+ #: includes/elementor/widgets/text.php:848
5360
+ #: includes/elementor/widgets/text.php:959
5361
+ #: includes/elementor/widgets/text.php:1269
5362
+ #: includes/elementor/widgets/text.php:1307
5363
  #: includes/elementor/widgets/theme-elements/current-time.php:184
5364
  #: includes/elementor/widgets/theme-elements/logo.php:507
5365
  #: includes/elementor/widgets/theme-elements/logo.php:599
5442
  #: includes/elementor/widgets/modern-button.php:824
5443
  #: includes/elementor/widgets/modern-button.php:923
5444
  #: includes/elementor/widgets/testimonial.php:756
5445
+ #: includes/elementor/widgets/text.php:1029
5446
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:268
5447
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:400
5448
  #: includes/elementor/widgets/theme-elements/modern-search.php:264
5935
  #: includes/elementor/widgets/icon.php:140
5936
  #: includes/elementor/widgets/staff.php:200
5937
  #: includes/elementor/widgets/text.php:460
5938
+ #: includes/elementor/widgets/text.php:655
5939
  #: includes/elements/about-widget.php:121 includes/elements/divider.php:69
5940
  #: includes/elements/dropcap.php:72 includes/elements/staff.php:168
5941
  #: includes/elements/text.php:539 includes/elements/text.php:581
6743
  #: includes/elementor/widgets/staff.php:674
6744
  #: includes/elementor/widgets/testimonial.php:553
6745
  #: includes/elementor/widgets/testimonial.php:774
6746
+ #: includes/elementor/widgets/text.php:760
6747
+ #: includes/elementor/widgets/text.php:873
6748
+ #: includes/elementor/widgets/text.php:996
6749
  msgid "Bottom space"
6750
  msgstr ""
6751
 
7788
  msgstr ""
7789
 
7790
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:1629
7791
+ #: includes/elementor/widgets/text.php:622
7792
+ #: includes/elementor/widgets/text.php:1543
7793
  msgid "Transition duration"
7794
  msgstr ""
7795
 
8047
  msgstr ""
8048
 
8049
  #: includes/elementor/widgets/staff.php:196
8050
+ #: includes/elementor/widgets/text.php:647 includes/elements/staff.php:161
8051
  #: includes/elements/text.php:571
8052
  msgid "Image shape"
8053
  msgstr ""
8054
 
8055
  #: includes/elementor/widgets/staff.php:204
8056
  #: includes/elementor/widgets/text.php:464
8057
+ #: includes/elementor/widgets/text.php:659 includes/elements/staff.php:172
8058
  #: includes/elements/text.php:543 includes/elements/text.php:585
8059
  msgid "Semi-circle"
8060
  msgstr ""
8061
 
8062
  #: includes/elementor/widgets/staff.php:208
8063
  #: includes/elementor/widgets/text.php:468
8064
+ #: includes/elementor/widgets/text.php:663 includes/elements/staff.php:176
8065
  #: includes/elements/text.php:547 includes/elements/text.php:589
8066
  msgid "Round Rectangle"
8067
  msgstr ""
8068
 
8069
  #: includes/elementor/widgets/staff.php:212
8070
  #: includes/elementor/widgets/text.php:476
8071
+ #: includes/elementor/widgets/text.php:667 includes/elements/staff.php:180
8072
  #: includes/elements/text.php:555 includes/elements/text.php:593
8073
  msgid "Rectangle"
8074
  msgstr ""
8122
  msgstr ""
8123
 
8124
  #: includes/elementor/widgets/staff.php:531
8125
+ #: includes/elementor/widgets/text.php:856
8126
+ #: includes/elementor/widgets/text.php:979
8127
  msgid "Top space"
8128
  msgstr ""
8129
 
8130
  #: includes/elementor/widgets/staff.php:575
8131
  #: includes/elementor/widgets/text.php:242
8132
+ #: includes/elementor/widgets/text.php:782
8133
  #: includes/elements/recent-posts-grid-carousel.php:70
8134
  #: includes/elements/recent-products.php:56 includes/elements/text.php:59
8135
  msgid "Subtitle"
8163
  msgstr ""
8164
 
8165
  #: includes/elementor/widgets/staff.php:870
8166
+ #: includes/elementor/widgets/text.php:1435
8167
  #: includes/elementor/widgets/theme-elements/menu.php:324
8168
  #: includes/elementor/widgets/theme-elements/menu.php:1341
8169
  #: includes/elements/text.php:118
8374
  msgstr ""
8375
 
8376
  #: includes/elementor/widgets/text.php:523
8377
+ #: includes/elementor/widgets/text.php:582
8378
  #: includes/elementor/widgets/theme-elements/search.php:233
8379
  #: includes/elements/text.php:445
8380
  msgid "Icon color"
8381
  msgstr ""
8382
 
8383
+ #: includes/elementor/widgets/text.php:538
8384
+ #: includes/elementor/widgets/text.php:597 includes/elements/text.php:486
8385
  msgid "Icon background color"
8386
  msgstr ""
8387
 
8388
+ #: includes/elementor/widgets/text.php:651 includes/elements/text.php:577
8389
  msgid "Default Aspect"
8390
  msgstr ""
8391
 
8392
+ #: includes/elementor/widgets/text.php:1045
8393
  msgid "Button Skin"
8394
  msgstr ""
8395
 
8396
+ #: includes/elementor/widgets/text.php:1122
8397
  msgid "Button Icon"
8398
  msgstr ""
8399
 
8400
+ #: includes/elementor/widgets/text.php:1235
8401
  msgid "Button Text"
8402
  msgstr ""
8403
 
8404
+ #: includes/elementor/widgets/text.php:1328
8405
  msgid "Button Wrapper"
8406
  msgstr ""
8407
 
8408
+ #: includes/elementor/widgets/text.php:1353
8409
  msgid "Shape Style"
8410
  msgstr ""
8411
 
8412
+ #: includes/elementor/widgets/text.php:1377 includes/general-hooks.php:747
8413
  #: includes/general-hooks.php:1152
8414
  msgid "Button Style"
8415
  msgstr ""
8416
 
8417
+ #: includes/elementor/widgets/text.php:1427
8418
  msgid "Overlay"
8419
  msgstr ""
8420
 
8421
+ #: includes/elementor/widgets/text.php:1578 includes/elements/text.php:896
8422
  msgid "Footer Shape"
8423
  msgstr ""
8424
 
8425
+ #: includes/elementor/widgets/text.php:1587 includes/elements/text.php:907
8426
  msgid "Wave"
8427
  msgstr ""
8428
 
8429
+ #: includes/elementor/widgets/text.php:1591 includes/elements/text.php:911
8430
  msgid "Tail"
8431
  msgstr ""
8432
 
8433
+ #: includes/elementor/widgets/text.php:1602 includes/elements/button.php:212
8434
  #: includes/elements/text.php:825
8435
  msgid "Color of button"
8436
  msgstr ""
public/assets/js/plugins.js CHANGED
@@ -1,4 +1,4 @@
1
- /*! Phlox Core Plugin - v2.7.3 (2020-12)
2
  * All required plugins
3
  * http://phlox.pro/
4
  */
1
+ /*! Phlox Core Plugin - v2.7.4 (2020-12)
2
  * All required plugins
3
  * http://phlox.pro/
4
  */
public/assets/js/scripts.js CHANGED
@@ -36,9 +36,7 @@
36
  $('.aux-cart-contents').find('span').text(response.data.count);
37
  }
38
  $(".aux-cart-subtotal").each(function() {
39
- $(this).find('.woocommerce-Price-amount').contents().filter(function(){
40
- return this.nodeType == 3;
41
- })[0].nodeValue = response.data.total;
42
  });
43
  $cartBoxEl.removeClass('aux-cart-remove-in-progress');
44
  } else {
36
  $('.aux-cart-contents').find('span').text(response.data.count);
37
  }
38
  $(".aux-cart-subtotal").each(function() {
39
+ $(this).find('.woocommerce-Price-amount').html(response.data.total);
 
 
40
  });
41
  $cartBoxEl.removeClass('aux-cart-remove-in-progress');
42
  } else {
public/includes/frontend-ajax.php CHANGED
@@ -140,9 +140,9 @@ function auxels_remove_product_from_cart() {
140
  $cart->remove_cart_item( $cart_item_key );
141
 
142
  $cart->calculate_totals();
143
-
144
  $response = array(
145
- 'total' => wc_format_decimal( $cart->cart_contents_total, 2 ),
146
  'count' => $cart->cart_contents_count,
147
  'empty' => sprintf( '<div class="aux-card-box">%s</div>', __( 'Your cart is currently empty.', 'auxin-elements' ) ),
148
  'notif' => sprintf( '<div class="aux-woocommerce-ajax-notification woocommerce-message">%s</div>', __('Item has been removed from your shopping cart.', 'auxin-elements') )
140
  $cart->remove_cart_item( $cart_item_key );
141
 
142
  $cart->calculate_totals();
143
+
144
  $response = array(
145
+ 'total' => $woocommerce->cart->get_cart_subtotal(),
146
  'count' => $cart->cart_contents_count,
147
  'empty' => sprintf( '<div class="aux-card-box">%s</div>', __( 'Your cart is currently empty.', 'auxin-elements' ) ),
148
  'notif' => sprintf( '<div class="aux-woocommerce-ajax-notification woocommerce-message">%s</div>', __('Item has been removed from your shopping cart.', 'auxin-elements') )