Shortcodes and extra features for Phlox theme - Version 2.7.7

Version Description

Download this release

Release Info

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

Code changes from version 2.7.6 to 2.7.7

README.txt CHANGED
@@ -6,8 +6,8 @@ License URI: http://www.gnu.org/licenses/gpl.html
6
  Tags: phlox, gallery, elementor, siteorigin, auxin, averta, auxin-elements, framework, widget, fullwidth, masonry, timeline, parallax
7
  Requires PHP: 5.4
8
  Requires at least: 4.6
9
- Tested up to: 5.5.0
10
- Stable tag: 2.7.6
11
  License: GPLv3
12
  License URI: http://www.gnu.org/licenses/gpl.html
13
 
6
  Tags: phlox, gallery, elementor, siteorigin, auxin, averta, auxin-elements, framework, widget, fullwidth, masonry, timeline, parallax
7
  Requires PHP: 5.4
8
  Requires at least: 4.6
9
+ Tested up to: 5.6.0
10
+ Stable tag: 2.7.7
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.6 (2021-01)
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.7 (2021-01)
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/assets/js/solo/global.js CHANGED
@@ -1,5 +1,102 @@
 
 
1
  (function( $ ) {
2
  "use strict";
3
-
4
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5
  })( jQuery );
1
+ // serialize the form to JSON
2
+ jQuery.fn.serializeObject=function(){"use strict";var a={},b=function(b,c){var d=a[c.name];"undefined"!=typeof d&&d!==null?jQuery.isArray(d)?d.push(c.value):a[c.name]=[d,c.value]:a[c.name]=c.value};return jQuery.each(this.serializeArray(),b),a};
3
  (function( $ ) {
4
  "use strict";
5
+
6
+ $(function(){
7
+ var $feedback_popup = $('.aux-feedback-notice'),
8
+ $theme_menu = $('.toplevel_page_auxin-welcome');
9
+
10
+ // skip if feedback popup is not present
11
+ if( ! $feedback_popup.length ){
12
+ return;
13
+ }
14
+
15
+ // apply animation and position to popup
16
+ var $feedback_popup_top_offset = $theme_menu.length ? $theme_menu.offset().top -20 : '130';
17
+ $theme_menu.addClass('aux-highlight-focus');
18
+ $feedback_popup.css('top', $feedback_popup_top_offset ).removeClass('aux-not-animated');
19
+
20
+ // highlight selected rating
21
+ $feedback_popup.find('.aux-rate-cell').on( 'click', function(){
22
+ $('.aux-feedback-notice .aux-rate-cell').removeClass('checked');
23
+ $(this).addClass('checked');
24
+ });
25
+
26
+ $feedback_popup.find('input[name="theme_rate"]').on('change', function(){
27
+ var rateValue = $(this).val(),
28
+ $status_progress = $('.aux-sending-status'),
29
+ $conditional_sections = $('.aux-conditional-section');
30
+
31
+ $status_progress.removeClass('aux-hide');
32
+ $conditional_sections.addClass('aux-disappear');
33
+
34
+ $.ajax({
35
+ url: auxin.ajaxurl,
36
+ type: "post",
37
+ data: {
38
+ form : $('.aux-popup-feedback-form').serializeObject(),
39
+ action : 'send_feedback' // the ajax handler,
40
+ }
41
+ }).done( function( response ){
42
+
43
+ if ( response.success ) {
44
+ $status_progress.addClass('aux-hide');
45
+
46
+ if ( rateValue > 8 ) {
47
+ $('.aux-rate-on-market').removeClass('aux-disappear');
48
+ } else {
49
+ $('.aux-feedback-detail').removeClass('aux-disappear');
50
+ }
51
+ }
52
+
53
+ });
54
+ });
55
+
56
+ $('.aux-close-form:not(.btn-submit)').on('click', function(){
57
+
58
+ $.ajax({
59
+ url: auxin.ajaxurl,
60
+ type: 'post',
61
+ data: {
62
+ action: 'aux-remove-feedback-notice',
63
+ form : $('.aux-popup-feedback-form').serializeObject(),
64
+ }
65
+ }).done(function(response){
66
+ $('.aux-feedback-notice').remove();
67
+ });
68
+
69
+ });
70
+
71
+ $('.aux-close-form.btn-submit').on('click', function(){
72
+
73
+ $.ajax({
74
+ url: auxin.ajaxurl,
75
+ type: 'post',
76
+ data: {
77
+ action: 'send_feedback',
78
+ form : $('.aux-popup-feedback-form').serializeObject(),
79
+ }
80
+ }).done(function(response){
81
+ $('.aux-feedback-notice').remove();
82
+ });
83
+
84
+ });
85
+
86
+ $('.aux-remind-later').on('click', function(){
87
+
88
+ $.ajax({
89
+ url: auxin.ajaxurl,
90
+ type: 'post',
91
+ data: {
92
+ action: 'remind_feedback',
93
+ form : $('.aux-popup-feedback-form').serializeObject()
94
+ }
95
+ });
96
+
97
+ $('.aux-feedback-notice').remove();
98
+
99
+ });
100
+ })
101
+
102
  })( jQuery );
admin/includes/admin-ajax.php CHANGED
@@ -10,7 +10,7 @@ function auxin_ajax_send_feedback(){
10
  $form_data = $_POST['form'];
11
 
12
  // extract the form data
13
- $rate = ! empty( $form_data['theme_rate'] ) ? $form_data['theme_rate'] : '';
14
  $feedback = ! empty( $form_data['feedback'] ) ? $form_data['feedback'] : '';
15
  $email = ! empty( $form_data['email'] ) ? $form_data['email'] : '';
16
  $nonce = ! empty( $form_data['_wpnonce'] ) ? $form_data['_wpnonce'] : '';
@@ -19,7 +19,7 @@ function auxin_ajax_send_feedback(){
19
  wp_send_json_error( __( 'Authorization failed!', 'auxin-elements' ) );
20
  }
21
 
22
- if( $rate ){
23
 
24
  global $wp_version;
25
 
@@ -27,15 +27,19 @@ function auxin_ajax_send_feedback(){
27
  'user-agent' => 'WordPress/'.$wp_version.'; '. get_home_url(),
28
  'timeout' => ( ( defined('DOING_CRON') && DOING_CRON ) ? 30 : 5),
29
  'body' => array(
30
- 'cat' => 'rating',
31
- 'action' => 'submit',
32
- 'item-slug' => 'phlox',
33
- 'rate' => $rate
 
 
 
 
34
  )
35
  );
36
  // send the rating through the api
37
  $request = wp_remote_post( 'http://api.averta.net/envato/items/', $args );
38
-
39
  // if ( ! is_wp_error( $request ) || wp_remote_retrieve_response_code( $request ) === 200 ) {}
40
 
41
  // store the user rating on the website
@@ -55,6 +59,58 @@ function auxin_ajax_send_feedback(){
55
 
56
  add_action( 'wp_ajax_send_feedback', 'auxin_ajax_send_feedback' );
57
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
58
  function auxin_ajax_isotope_filter_group(){
59
  // Check nonce
60
  if ( ! isset( $_POST['group'] ) ||! isset( $_POST['key'] ) || ! isset( $_POST['nonce'] ) || ! wp_verify_nonce( $_POST['nonce'], 'aux-iso-group' ) ) {
10
  $form_data = $_POST['form'];
11
 
12
  // extract the form data
13
+ $rate = ( ! empty( $form_data['theme_rate'] ) || $form_data['theme_rate'] === '0' ) ? $form_data['theme_rate'] : '';
14
  $feedback = ! empty( $form_data['feedback'] ) ? $form_data['feedback'] : '';
15
  $email = ! empty( $form_data['email'] ) ? $form_data['email'] : '';
16
  $nonce = ! empty( $form_data['_wpnonce'] ) ? $form_data['_wpnonce'] : '';
19
  wp_send_json_error( __( 'Authorization failed!', 'auxin-elements' ) );
20
  }
21
 
22
+ if( $rate || $rate === '0' ){
23
 
24
  global $wp_version;
25
 
27
  'user-agent' => 'WordPress/'.$wp_version.'; '. get_home_url(),
28
  'timeout' => ( ( defined('DOING_CRON') && DOING_CRON ) ? 30 : 5),
29
  'body' => array(
30
+ 'cat' => 'rating',
31
+ 'action' => 'submit',
32
+ 'item-slug' => 'phlox',
33
+ 'rate' => $rate,
34
+ 'client_key' => get_theme_mod( 'client_key', ''),
35
+ 'item_version'=> THEME_VERSION,
36
+ 'theme_slug' => THEME_ID,
37
+ 'feedback' => $feedback
38
  )
39
  );
40
  // send the rating through the api
41
  $request = wp_remote_post( 'http://api.averta.net/envato/items/', $args );
42
+ update_option( 'auxin_show_rate_scale_notice', false );
43
  // if ( ! is_wp_error( $request ) || wp_remote_retrieve_response_code( $request ) === 200 ) {}
44
 
45
  // store the user rating on the website
59
 
60
  add_action( 'wp_ajax_send_feedback', 'auxin_ajax_send_feedback' );
61
 
62
+ /**
63
+ * Hide Feedback notice
64
+ */
65
+ function auxin_remove_feedback_notice() {
66
+ // skip if the form data is not receiced
67
+ if( empty( $_POST['form'] ) ){
68
+ wp_send_json_error( __( 'Data cannot be delivered, please try again.', 'auxin-elements' ) );
69
+ }
70
+
71
+ $form_data = $_POST['form'];
72
+
73
+ $nonce = ! empty( $form_data['_wpnonce'] ) ? $form_data['_wpnonce'] : '';
74
+
75
+ if( ! wp_verify_nonce( $nonce, 'phlox_feedback' ) ){
76
+ wp_send_json_error( __( 'Authorization failed!', 'auxin-elements' ) );
77
+ }
78
+
79
+ update_option( 'auxin_show_rate_scale_notice', false );
80
+ wp_send_json_success();
81
+ }
82
+
83
+ add_action( 'wp_ajax_aux-remove-feedback-notice', 'auxin_remove_feedback_notice' );
84
+
85
+
86
+ /**
87
+ * Remind feedback
88
+ */
89
+ function auxin_ajax_remind_feedback() {
90
+ // skip if the form data is not receiced
91
+ if( empty( $_POST['form'] ) ){
92
+ wp_send_json_error( __( 'Data cannot be delivered, please try again.', 'auxin-elements' ) );
93
+ }
94
+
95
+ $form_data = $_POST['form'];
96
+
97
+ $nonce = ! empty( $form_data['_wpnonce'] ) ? $form_data['_wpnonce'] : '';
98
+
99
+ if( ! wp_verify_nonce( $nonce, 'phlox_feedback' ) ){
100
+ wp_send_json_error( __( 'Authorization failed!', 'auxin-elements' ) );
101
+ }
102
+
103
+ // reset feedback notice viewer
104
+ update_option( 'auxin_show_rate_scale_notice', false );
105
+ set_theme_mod( 'rate_scale_notice_remind_later_date', time() + DAY_IN_SECONDS * 3 );
106
+
107
+ wp_send_json_success();
108
+ }
109
+
110
+ add_action( 'wp_ajax_remind_feedback', 'auxin_ajax_remind_feedback' );
111
+
112
+
113
+
114
  function auxin_ajax_isotope_filter_group(){
115
  // Check nonce
116
  if ( ! isset( $_POST['group'] ) ||! isset( $_POST['key'] ) || ! isset( $_POST['nonce'] ) || ! wp_verify_nonce( $_POST['nonce'], 'aux-iso-group' ) ) {
admin/includes/admin-hooks.php CHANGED
@@ -975,3 +975,27 @@ function auxin_maybe_set_default_footer_template() {
975
 
976
  }
977
  add_action( 'admin_init', 'auxin_maybe_set_default_footer_template', 13 ); // Run after `auxin_maybe_port_deprecated_elementor_footer_template`
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
975
 
976
  }
977
  add_action( 'admin_init', 'auxin_maybe_set_default_footer_template', 13 ); // Run after `auxin_maybe_port_deprecated_elementor_footer_template`
978
+
979
+ /**
980
+ * Display feedback rate notice if date requirements where passed
981
+ *
982
+ * @return void
983
+ */
984
+ function auxin_show_feedback_notice_conditionally() {
985
+
986
+ // If the appropriate time if passed for showing feedback notice
987
+ if( '' === get_option( 'auxin_show_rate_scale_notice', '' ) ){
988
+ $passed_diff_time = auxin_get_passed_installed_time();
989
+ if( isset( $passed_diff_time->days ) && $passed_diff_time->days > 7 ){
990
+ update_option( 'auxin_show_rate_scale_notice', true );
991
+ }
992
+ }
993
+
994
+ // If remind me later snooze date is passed for showing feedback notice
995
+ $remind_notice_time = get_theme_mod( 'rate_scale_notice_remind_later_date' );
996
+ if( $remind_notice_time && ( time() > $remind_notice_time ) ){
997
+ update_option( 'auxin_show_rate_scale_notice', true );
998
+ set_theme_mod( 'rate_scale_notice_remind_later_date', false );
999
+ }
1000
+ }
1001
+ add_action( 'save_post', 'auxin_show_feedback_notice_conditionally' );
auxin-elements.php CHANGED
@@ -12,14 +12,14 @@
12
  * Plugin Name: Phlox Core Elements
13
  * Plugin URI: https://wordpress.org/plugins/auxin-elements/
14
  * Description: Exclusive and comprehensive plugin that extends the functionality of Phlox theme by adding new Elements, widgets and options.
15
- * Version: 2.7.6
16
  * Author: averta
17
  * Author URI: http://averta.net
18
  * Text Domain: auxin-elements
19
  * License: GPL2
20
  * License URI: https://www.gnu.org/licenses/gpl-2.0.html
21
  * Domain Path: /languages
22
- * Tested up to: 5.5.3
23
  */
24
 
25
  // If this file is called directly, abort.
12
  * Plugin Name: Phlox Core Elements
13
  * Plugin URI: https://wordpress.org/plugins/auxin-elements/
14
  * Description: Exclusive and comprehensive plugin that extends the functionality of Phlox theme by adding new Elements, widgets and options.
15
+ * Version: 2.7.7
16
  * Author: averta
17
  * Author URI: http://averta.net
18
  * Text Domain: auxin-elements
19
  * License: GPL2
20
  * License URI: https://www.gnu.org/licenses/gpl-2.0.html
21
  * Domain Path: /languages
22
+ * Tested up to: 5.6.0
23
  */
24
 
25
  // If this file is called directly, abort.
includes/classes/class-auxels-wc-attribute-nav-menu.php CHANGED
@@ -160,10 +160,10 @@ class Auxels_WC_Attribute_Nav_Menu {
160
  </div>
161
  <p class="button-controls">
162
  <span class="list-controls">
163
- <a href="<?php echo esc_url( admin_url( 'nav-menus.php?page-tab=all&selectall=1#posttype-woocommerce-attr' ) ); ?>" class="select-all"><?php esc_html_e( 'Select all', 'woocommerce' ); ?></a>
164
  </span>
165
  <span class="add-to-menu">
166
- <button type="submit" class="button-secondary submit-add-to-menu right" value="<?php esc_attr_e( 'Add to menu', 'woocommerce' ); ?>" name="add-post-type-menu-item" id="submit-posttype-woocommerce-attr"><?php esc_html_e( 'Add to menu', 'woocommerce' ); ?></button>
167
  <span class="spinner"></span>
168
  </span>
169
  </p>
160
  </div>
161
  <p class="button-controls">
162
  <span class="list-controls">
163
+ <a href="<?php echo esc_url( admin_url( 'nav-menus.php?page-tab=all&selectall=1#posttype-woocommerce-attr' ) ); ?>" class="select-all"><?php esc_html_e( 'Select all', 'auxin-elements' ); ?></a>
164
  </span>
165
  <span class="add-to-menu">
166
+ <button type="submit" class="button-secondary submit-add-to-menu right" value="<?php esc_attr_e( 'Add to menu', 'auxin-elements' ); ?>" name="add-post-type-menu-item" id="submit-posttype-woocommerce-attr"><?php esc_html_e( 'Add to menu', 'auxin-elements' ); ?></button>
167
  <span class="spinner"></span>
168
  </span>
169
  </p>
includes/classes/class-auxin-welcome-sections.php CHANGED
@@ -42,7 +42,12 @@ class Auxin_Welcome_Sections {
42
  add_filter( 'auxin_admin_welcome_sections', array( $this, 'add_section_status' ), 110 );
43
  add_filter( 'auxin_admin_welcome_sections', array( $this, 'add_section_updates' ), 120 );
44
 
 
 
 
 
45
  add_action( 'auxin_admin_before_welcome_section_content', array( $this, 'maybe_add_dashboard_notice') );
 
46
  if( ! defined('THEME_PRO') || ! THEME_PRO ) {
47
  add_filter( 'auxin_admin_welcome_sections', array( $this, 'add_section_go_pro' ), 120 );
48
  }
@@ -473,4 +478,87 @@ class Auxin_Welcome_Sections {
473
  return $response;
474
  }
475
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
476
  }
42
  add_filter( 'auxin_admin_welcome_sections', array( $this, 'add_section_status' ), 110 );
43
  add_filter( 'auxin_admin_welcome_sections', array( $this, 'add_section_updates' ), 120 );
44
 
45
+ if ( isset( $_GET['rate'] ) || get_option( 'auxin_show_rate_scale_notice', false ) ) {
46
+ add_action( 'all_admin_notices', array( $this, 'add_feedback_notice') );
47
+ }
48
+
49
  add_action( 'auxin_admin_before_welcome_section_content', array( $this, 'maybe_add_dashboard_notice') );
50
+
51
  if( ! defined('THEME_PRO') || ! THEME_PRO ) {
52
  add_filter( 'auxin_admin_welcome_sections', array( $this, 'add_section_go_pro' ), 120 );
53
  }
478
  return $response;
479
  }
480
 
481
+ /**
482
+ * Add feedback popup to all admin pages
483
+ */
484
+ public function add_feedback_notice() {
485
+
486
+ $previous_rate = auxin_get_option( 'user_rating', '' );
487
+
488
+ ?>
489
+ <div class="aux-feedback-notice aux-welcome-page-feedback aux-not-animated <?php echo esc_attr( THEME_ID ); ?>">
490
+ <div class="aux-section-content-box">
491
+
492
+ <div class="aux-columns-wrap">
493
+ <div class="aux-form-wrap">
494
+ <form class="aux-popup-feedback-form" action="<?php echo admin_url( 'admin.php?page=auxin-welcome&tab=feedback'); ?>" method="post" >
495
+
496
+ <div class="aux-rating-section">
497
+ <h3 class="aux-content-title"><?php echo wp_sprintf( __( 'How likely are you to recommend %s to a friend?', THEME_DOMAIN ), THEME_NAME_I18N ) ?></h3>
498
+ <div class="aux-ratings-measure">
499
+ <p><?php _e( "Don't like it", 'auxin-elements' ); ?></p>
500
+ <p><?php _e( "Neither likely nor unlikely", 'auxin-elements' ); ?></p>
501
+ <p><?php _e( "Like it so much", 'auxin-elements' ); ?></p>
502
+ </div>
503
+ <div class="aux-theme-ratings">
504
+ <?php
505
+ for( $i = 0; $i <= 10; $i++ ){
506
+ printf(
507
+ '<div class="aux-rate-cell %3$s"><input type="radio" name="theme_rate" id="theme-rating%1$s" value="%1$s" %2$s/><label class="rating" for="theme-rating%1$s">%1$s</label></div>',
508
+ $i, checked( $previous_rate, $i, false ), ( $previous_rate == $i ? 'checked' : '' )
509
+ );
510
+ }
511
+ ?>
512
+
513
+ </div>
514
+ </div>
515
+
516
+ <div class="aux-feedback-section">
517
+ <div class="aux-rate-on-market aux-conditional-section aux-disappear">
518
+ <a class='aux-close-form aux-button aux-medium aux-curve aux-rate-market' href="<?php echo esc_url( 'http://phlox.pro/rate/'.THEME_ID ); ?>" target="_blank">
519
+ <span class="aux-overlay"></span>
520
+ <span class="aux-text">
521
+ <?php _e( 'Support by rating 5 stars', 'auxin-elements');?>
522
+ </span>
523
+ </a>
524
+ <a class='aux-close-form aux-button aux-medium aux-curve aux-outline aux-white' href="#">
525
+ <span class="aux-overlay"></span>
526
+ <span class="aux-text">
527
+ <?php _e( 'I already did :)', 'auxin-elements');?>
528
+ </span>
529
+ </a>
530
+ <?php if( THEME_ID === 'phlox' ){ ?>
531
+ <a class='aux-more-info' href="https://phlox.pro/go/" target="_blank"><?php printf( 'Have you heard about %s?', '<strong>'. __( 'Phlox Pro', 'auxin-elements' ) .'</strong>' ); ?></a>
532
+ <?php } ?>
533
+ </div>
534
+
535
+ <div class="aux-feedback-detail aux-conditional-section aux-disappear">
536
+ <h3 class="aux-content-title"><?php _e('Please explain why you gave this score (optional)', 'auxin-elements'); ?></h3>
537
+ <textarea placeholder="<?php echo esc_attr( 'Enter your feedback here' ); ?>" rows="10" name="feedback" class="large-text"></textarea>
538
+ <?php wp_nonce_field( 'phlox_feedback' ); ?>
539
+ <a class='aux-close-form aux-button aux-medium aux-curve aux-outline btn-submit' href="#">
540
+ <span class="aux-overlay"></span>
541
+ <span class="aux-text">
542
+ <?php _e( 'Submit', 'auxin-elements');?>
543
+ </span>
544
+ </a>
545
+ </div>
546
+
547
+ <div class="aux-feedback-more aux-conditional-section">
548
+ <a class="aux-remind-later" href="#"><?php _e( 'Remind Me Later', 'auxin-elements' ); ?></a>
549
+ </div>
550
+
551
+ <div class="aux-sending-status aux-hide">
552
+ <img class="ajax-progress" src="<?php echo AUXIN_URL; ?>/css/images/elements/saving.gif" />
553
+ </div>
554
+
555
+ </div>
556
+ </form>
557
+
558
+ </div>
559
+ </div>
560
+ </div>
561
+ </div>
562
+ <?php
563
+ }
564
  }
includes/define.php CHANGED
@@ -12,7 +12,7 @@ if( ! defined( 'THEME_NAME' ) ){
12
  }
13
 
14
 
15
- define( 'AUXELS_VERSION' , '2.7.6' );
16
 
17
  define( 'AUXELS_SLUG' , 'auxin-elements' );
18
 
12
  }
13
 
14
 
15
+ define( 'AUXELS_VERSION' , '2.7.7' );
16
 
17
  define( 'AUXELS_SLUG' , 'auxin-elements' );
18
 
includes/general-hooks.php CHANGED
@@ -2494,6 +2494,21 @@ function auxin_on_auxin_fw_admin_loaded(){
2494
  add_action( 'auxin_admin_loaded', 'auxin_on_auxin_fw_admin_loaded' );
2495
 
2496
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2497
  /*-------------------------------------------------------------------------------*/
2498
  /* assigns theme custom post types capabilities to main roles
2499
  /*-------------------------------------------------------------------------------*/
@@ -3357,10 +3372,10 @@ add_filter( 'woocommerce_loop_add_to_cart_args', 'auxels_enable_woocommerce_ajax
3357
  /* Change Products Title Dom
3358
  /*-----------------------------------------------------------------------------------*/
3359
  add_action( 'init', 'auxin_remove_default_woocommerce_product_title' );
3360
-
3361
  function auxin_remove_default_woocommerce_product_title() {
3362
  remove_action( 'woocommerce_shop_loop_item_title', 'woocommerce_template_loop_product_title', 10 );
3363
- add_action( 'woocommerce_shop_loop_item_title', 'auxin_woocommerce_template_loop_product_title', 10 );
3364
  }
3365
 
3366
  function auxin_woocommerce_template_loop_product_title() {
@@ -3564,10 +3579,10 @@ add_action( 'admin_bar_menu', 'auxin_add_admin_bar_header_footer_edit_link', 100
3564
 
3565
  function auxin_add_admin_bar_header_footer_edit_link() {
3566
  global $wp_admin_bar, $post;
3567
-
3568
  if ( !is_super_admin() || !is_admin_bar_showing() || is_admin() )
3569
  return;
3570
-
3571
  if ( 'default' === $use_legacy_header = auxin_get_post_meta( $post, 'page_header_use_legacy', 'default' ) ) {
3572
  $use_legacy_header = auxin_get_option('site_header_use_legacy');
3573
  }
@@ -3580,14 +3595,14 @@ function auxin_add_admin_bar_header_footer_edit_link() {
3580
 
3581
  if ( get_post_type( $post ) == 'page' ) {
3582
  if ( ! auxin_is_true( $use_legacy_header) && ( $current_header = auxin_get_post_meta( $post, 'page_elementor_header_template' ) ) && is_numeric( $current_header ) ) {
3583
- $template['current']['header'] = $current_header;
3584
  }
3585
 
3586
  if ( ! auxin_is_true( $use_legacy_footer) && ( $current_footer = auxin_get_post_meta( $post, 'page_elementor_footer_template' ) ) && is_numeric( $current_footer ) ) {
3587
- $template['current']['footer'] = $current_footer;
3588
  }
3589
  }
3590
-
3591
  if ( ! auxin_is_true( auxin_get_option('site_header_use_legacy') ) && $global_header = auxin_get_option('site_elementor_header_template', '' ) ) {
3592
  $template['global']['header'] = $global_header;
3593
  }
@@ -3607,9 +3622,9 @@ function auxin_add_admin_bar_header_footer_edit_link() {
3607
  'href' => get_edit_post_link( $value ),
3608
  'meta' => [
3609
  'target' => '_blank'
3610
- ]
3611
  ];
3612
- }
3613
  }
3614
 
3615
  if ( ! empty( $template['global'] ) ) {
@@ -3623,9 +3638,9 @@ function auxin_add_admin_bar_header_footer_edit_link() {
3623
  'href' => get_edit_post_link( $value ),
3624
  'meta' => [
3625
  'target' => '_blank'
3626
- ]
3627
  ];
3628
- }
3629
  }
3630
 
3631
  if ( ! empty( $args ) ) {
@@ -3648,4 +3663,3 @@ function auxels_add_svg_upload_permission( $mimes ){
3648
  return $mimes;
3649
  }
3650
  add_filter( 'upload_mimes', 'auxels_add_svg_upload_permission' );
3651
-
2494
  add_action( 'auxin_admin_loaded', 'auxin_on_auxin_fw_admin_loaded' );
2495
 
2496
 
2497
+ /**
2498
+ * Retrieves the passed time from first installation date of theme
2499
+ *
2500
+ * @return DataTimeInterface
2501
+ */
2502
+ function auxin_get_passed_installed_time(){
2503
+ $slug = THEME_PRO ? 'pro' : 'free';
2504
+ $initial_time = auxin_get_theme_mod( 'initial_date_' . $slug, "now" );
2505
+ $initial_date = new DateTime( $initial_time );
2506
+ $passed_time = $initial_date->diff( new DateTime() );
2507
+
2508
+ return $passed_time;
2509
+ }
2510
+
2511
+
2512
  /*-------------------------------------------------------------------------------*/
2513
  /* assigns theme custom post types capabilities to main roles
2514
  /*-------------------------------------------------------------------------------*/
3372
  /* Change Products Title Dom
3373
  /*-----------------------------------------------------------------------------------*/
3374
  add_action( 'init', 'auxin_remove_default_woocommerce_product_title' );
3375
+
3376
  function auxin_remove_default_woocommerce_product_title() {
3377
  remove_action( 'woocommerce_shop_loop_item_title', 'woocommerce_template_loop_product_title', 10 );
3378
+ add_action( 'woocommerce_shop_loop_item_title', 'auxin_woocommerce_template_loop_product_title', 10 );
3379
  }
3380
 
3381
  function auxin_woocommerce_template_loop_product_title() {
3579
 
3580
  function auxin_add_admin_bar_header_footer_edit_link() {
3581
  global $wp_admin_bar, $post;
3582
+
3583
  if ( !is_super_admin() || !is_admin_bar_showing() || is_admin() )
3584
  return;
3585
+
3586
  if ( 'default' === $use_legacy_header = auxin_get_post_meta( $post, 'page_header_use_legacy', 'default' ) ) {
3587
  $use_legacy_header = auxin_get_option('site_header_use_legacy');
3588
  }
3595
 
3596
  if ( get_post_type( $post ) == 'page' ) {
3597
  if ( ! auxin_is_true( $use_legacy_header) && ( $current_header = auxin_get_post_meta( $post, 'page_elementor_header_template' ) ) && is_numeric( $current_header ) ) {
3598
+ $template['current']['header'] = $current_header;
3599
  }
3600
 
3601
  if ( ! auxin_is_true( $use_legacy_footer) && ( $current_footer = auxin_get_post_meta( $post, 'page_elementor_footer_template' ) ) && is_numeric( $current_footer ) ) {
3602
+ $template['current']['footer'] = $current_footer;
3603
  }
3604
  }
3605
+
3606
  if ( ! auxin_is_true( auxin_get_option('site_header_use_legacy') ) && $global_header = auxin_get_option('site_elementor_header_template', '' ) ) {
3607
  $template['global']['header'] = $global_header;
3608
  }
3622
  'href' => get_edit_post_link( $value ),
3623
  'meta' => [
3624
  'target' => '_blank'
3625
+ ]
3626
  ];
3627
+ }
3628
  }
3629
 
3630
  if ( ! empty( $template['global'] ) ) {
3638
  'href' => get_edit_post_link( $value ),
3639
  'meta' => [
3640
  'target' => '_blank'
3641
+ ]
3642
  ];
3643
+ }
3644
  }
3645
 
3646
  if ( ! empty( $args ) ) {
3663
  return $mimes;
3664
  }
3665
  add_filter( 'upload_mimes', 'auxels_add_svg_upload_permission' );
 
languages/auxin-elements-fa_IR.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Auxin Essential Elements\n"
4
  "Report-Msgid-Bugs-To: http://averta.net/phlox/wordpress-theme/\n"
5
- "POT-Creation-Date: 2021-01-10 12:05:01+00:00\n"
6
  "PO-Revision-Date: 2016-11-09 12:50+0330\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -21,75 +21,77 @@ msgstr ""
21
  "X-Poedit-SearchPath-0: .\n"
22
  "X-Poedit-SearchPathExcluded-0: *.js\n"
23
 
24
- #: admin/includes/admin-ajax.php:7
 
25
  msgid "Data cannot be delivered, please try again."
26
  msgstr "داده ها قابل تحویل نیستند، لطفا دوباره تلاش کنید."
27
 
28
- #: admin/includes/admin-ajax.php:19
 
29
  msgid "Authorization failed!"
30
  msgstr "احراز هویت با خطا مواجه شد!"
31
 
32
- #: admin/includes/admin-ajax.php:48
33
  msgid "Sent Successfully. Thanks for your feedback!"
34
  msgstr "با موفقیت ارسال شد. از بازخورد شما ممنونیم."
35
 
36
- #: admin/includes/admin-ajax.php:51
37
  msgid "An error occurred. Feedback could not be delivered, please try again."
38
  msgstr "خطایی رخ داده است. بازخورد قابل تحویل نیست، لطفا دوباره تلاش کنید."
39
 
40
- #: admin/includes/admin-ajax.php:61 admin/includes/admin-ajax.php:182
41
- #: admin/includes/admin-ajax.php:241 admin/includes/admin-ajax.php:276
42
- #: admin/includes/admin-ajax.php:294 admin/includes/admin-ajax.php:335
43
  msgid "Token Error."
44
  msgstr ""
45
 
46
- #: admin/includes/admin-ajax.php:65
47
  msgid "It's Done."
48
  msgstr ""
49
 
50
- #: admin/includes/admin-ajax.php:68
51
  msgid "An error occurred."
52
  msgstr ""
53
 
54
- #: admin/includes/admin-ajax.php:185
55
  msgid "It's OK."
56
  msgstr ""
57
 
58
- #: admin/includes/admin-ajax.php:198
59
  #: includes/classes/class-auxin-welcome.php:1139
60
  #: includes/classes/class-auxin-welcome.php:1255
61
  msgid "Security Token Error!"
62
  msgstr ""
63
 
64
- #: admin/includes/admin-ajax.php:205
65
  msgid "License Activation"
66
  msgstr ""
67
 
68
- #: admin/includes/admin-ajax.php:206
69
  msgid ""
70
  "Please activate your license to get automatic updates, premium support, and "
71
  "unlimited access to the template library and demo importer."
72
  msgstr ""
73
 
74
- #: admin/includes/admin-ajax.php:209
75
  #, fuzzy
76
  msgid "E-mail address"
77
  msgstr "آدرس ایمیل جعبه تماس"
78
 
79
- #: admin/includes/admin-ajax.php:214
80
  msgid "Purchase code"
81
  msgstr ""
82
 
83
- #: admin/includes/admin-ajax.php:222
84
  msgid "Activate"
85
  msgstr ""
86
 
87
- #: admin/includes/admin-ajax.php:242 admin/includes/admin-ajax.php:257
88
  #: includes/classes/class-auxin-demo-importer.php:190
89
  msgid "Retry"
90
  msgstr ""
91
 
92
- #: admin/includes/admin-ajax.php:253
93
  #: includes/classes/class-auxin-demo-importer.php:114
94
  #: includes/classes/class-auxin-demo-importer.php:157
95
  #: includes/classes/class-auxin-demo-importer.php:192
@@ -99,20 +101,20 @@ msgstr ""
99
  msgid "Close"
100
  msgstr ""
101
 
102
- #: admin/includes/admin-ajax.php:310
103
  msgid "No data found!"
104
  msgstr ""
105
 
106
- #: admin/includes/admin-ajax.php:340
107
  #, fuzzy
108
  msgid "Please upload a valid file."
109
  msgstr "لطفا فایل ویدیو را بارگذاری کنید."
110
 
111
- #: admin/includes/admin-ajax.php:354
112
  msgid "Invalid or Empty Data."
113
  msgstr ""
114
 
115
- #: admin/includes/admin-ajax.php:391
116
  msgid "Successfully Imported."
117
  msgstr ""
118
 
@@ -226,6 +228,7 @@ msgid "Activate License"
226
  msgstr "افزونه های فعال"
227
 
228
  #: admin/includes/admin-hooks.php:733
 
229
  msgid "Remind Me Later"
230
  msgstr ""
231
 
@@ -1091,7 +1094,7 @@ msgstr ""
1091
 
1092
  #: admin/includes/metaboxes/metabox-fields-general-header.php:202
1093
  #: includes/elements/staff.php:207 includes/elements/text.php:105
1094
- #: includes/general-hooks.php:3001
1095
  msgid "Boxed"
1096
  msgstr "جعبه ای"
1097
 
@@ -1901,7 +1904,7 @@ msgstr ""
1901
  msgid "Page Builder by SiteOrigin"
1902
  msgstr ""
1903
 
1904
- #: auxin-elements.php:64
1905
  #, fuzzy
1906
  msgid "Phlox Pro"
1907
  msgstr "[فلوکس] کد"
@@ -2406,56 +2409,60 @@ msgstr ""
2406
  msgid "Cancel"
2407
  msgstr ""
2408
 
2409
- #: includes/classes/class-auxin-welcome-sections.php:81
2410
  msgid "Updates"
2411
  msgstr ""
2412
 
2413
- #: includes/classes/class-auxin-welcome-sections.php:93
2414
  msgid "Template Kits"
2415
  msgstr ""
2416
 
2417
- #: includes/classes/class-auxin-welcome-sections.php:131
2418
  #, fuzzy
2419
  msgid "Plugins"
2420
  msgstr "افزونه های فعال"
2421
 
2422
- #: includes/classes/class-auxin-welcome-sections.php:148
2423
  msgid "Feedback"
2424
  msgstr "بازخورد"
2425
 
2426
- #: includes/classes/class-auxin-welcome-sections.php:167
2427
  msgid "System Status"
2428
  msgstr "وضعیت سیستم"
2429
 
2430
- #: includes/classes/class-auxin-welcome-sections.php:183
2431
  msgid "Go Pro"
2432
  msgstr ""
2433
 
2434
- #: includes/classes/class-auxin-welcome-sections.php:210
 
2435
  #, fuzzy
2436
  msgid "How likely are you to recommend %s to a friend?"
2437
  msgstr "چه میزان فلوکس را به دوستان خود پیشنهاد می دهید؟"
2438
 
2439
- #: includes/classes/class-auxin-welcome-sections.php:223
 
2440
  msgid "Don't like it"
2441
  msgstr ""
2442
 
2443
- #: includes/classes/class-auxin-welcome-sections.php:224
 
2444
  msgid "Like it so much"
2445
  msgstr ""
2446
 
2447
- #: includes/classes/class-auxin-welcome-sections.php:232
2448
  msgid ""
2449
  "Thanks for using Phlox theme. If you are enjoying this theme, please support "
2450
  "us by %s submitting 5 star rate here%s. That would be a huge help for us to "
2451
  "continue developing this theme."
2452
  msgstr ""
2453
 
2454
- #: includes/classes/class-auxin-welcome-sections.php:238
 
2455
  msgid "Please explain why you gave this score (optional)"
2456
  msgstr "لطفا در مورد امتیاز داده شده توضیحاتی دهید (دلخواه)"
2457
 
2458
- #: includes/classes/class-auxin-welcome-sections.php:241
2459
  msgid ""
2460
  "Please do not use this form to get support, in this case please check the %s "
2461
  "help section %s"
@@ -2463,53 +2470,66 @@ msgstr ""
2463
  "لطفا از این فرم به منظور دریافت خدمات پشتیبانی استفاده نکنید، برای دریافت "
2464
  "پشتیبانی لطفا %s بخش کمک %s را ببینید."
2465
 
2466
- #: includes/classes/class-auxin-welcome-sections.php:248
 
2467
  #: includes/elementor/widgets/theme-elements/modern-search.php:124
2468
  #: includes/elements/contact-form.php:228
2469
  msgid "Submit"
2470
  msgstr "تایید"
2471
 
2472
- #: includes/classes/class-auxin-welcome-sections.php:252
2473
  msgid "Submitting your feedback .."
2474
  msgstr "در حال ثبت بازخورد شما .."
2475
 
2476
- #: includes/classes/class-auxin-welcome-sections.php:276
2477
  msgid "Thanks for your feedback"
2478
  msgstr "از بازخورد شما متشکریم."
2479
 
2480
- #: includes/classes/class-auxin-welcome-sections.php:278
2481
  msgid "Please try again and fill up at least the feedback field."
2482
  msgstr "لطفا دوباره تلاش کنید و حداقل فیلد بازخورد را تکمیل کنید."
2483
 
2484
- #: includes/classes/class-auxin-welcome-sections.php:322
2485
  msgid "Changelog"
2486
  msgstr ""
2487
 
2488
- #: includes/classes/class-auxin-welcome-sections.php:324
2489
  msgid "Follow Us"
2490
  msgstr ""
2491
 
2492
- #: includes/classes/class-auxin-welcome-sections.php:326
2493
  msgid "Follow us on Twitter"
2494
  msgstr ""
2495
 
2496
- #: includes/classes/class-auxin-welcome-sections.php:327
2497
  #, fuzzy
2498
  msgid "Follow us on Facebook"
2499
  msgstr "[فلوکس] خوراک فیسبوک سفارشی"
2500
 
2501
- #: includes/classes/class-auxin-welcome-sections.php:328
2502
  msgid "Follow us on Instagram"
2503
  msgstr ""
2504
 
2505
- #: includes/classes/class-auxin-welcome-sections.php:329
2506
  msgid "Follow us on Envato"
2507
  msgstr ""
2508
 
2509
- #: includes/classes/class-auxin-welcome-sections.php:330
2510
  msgid "Subscribe to Phlox YouTube channel"
2511
  msgstr ""
2512
 
 
 
 
 
 
 
 
 
 
 
 
 
2513
  #: includes/classes/class-auxin-welcome.php:267
2514
  #, fuzzy
2515
  msgid "Dashboard"
@@ -12629,27 +12649,27 @@ msgstr ""
12629
  msgid "GitHub"
12630
  msgstr ""
12631
 
12632
- #: includes/general-hooks.php:2549
12633
  #, fuzzy
12634
  msgid "Page Options"
12635
  msgstr "تنظیمات طراحی"
12636
 
12637
- #: includes/general-hooks.php:2557
12638
  #, fuzzy
12639
  msgid "Post Options"
12640
  msgstr "تنظیمات نوشته صوتی"
12641
 
12642
- #: includes/general-hooks.php:3032
12643
  #, fuzzy
12644
  msgid "Page %s"
12645
  msgstr "برگه ها"
12646
 
12647
- #: includes/general-hooks.php:3605
12648
  #, fuzzy
12649
  msgid "current "
12650
  msgstr "صفحه جاری"
12651
 
12652
- #: includes/general-hooks.php:3635
12653
  msgid "Edit Header & Footer"
12654
  msgstr ""
12655
 
@@ -12898,13 +12918,13 @@ msgid "Chats"
12898
  msgstr ""
12899
 
12900
  #. translators: playlist item title
12901
- #: includes/general-hooks.php:3053
12902
  msgctxt "playlist item title"
12903
  msgid "&#8220;%s&#8221;"
12904
  msgstr ""
12905
 
12906
  #. translators: playlist item title
12907
- #: includes/general-hooks.php:3078 includes/general-hooks.php:3083
12908
  msgctxt "playlist item title"
12909
  msgid "%s"
12910
  msgstr ""
2
  msgstr ""
3
  "Project-Id-Version: Auxin Essential Elements\n"
4
  "Report-Msgid-Bugs-To: http://averta.net/phlox/wordpress-theme/\n"
5
+ "POT-Creation-Date: 2021-01-24 06:15:13+00:00\n"
6
  "PO-Revision-Date: 2016-11-09 12:50+0330\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
21
  "X-Poedit-SearchPath-0: .\n"
22
  "X-Poedit-SearchPathExcluded-0: *.js\n"
23
 
24
+ #: admin/includes/admin-ajax.php:7 admin/includes/admin-ajax.php:68
25
+ #: admin/includes/admin-ajax.php:92
26
  msgid "Data cannot be delivered, please try again."
27
  msgstr "داده ها قابل تحویل نیستند، لطفا دوباره تلاش کنید."
28
 
29
+ #: admin/includes/admin-ajax.php:19 admin/includes/admin-ajax.php:76
30
+ #: admin/includes/admin-ajax.php:100
31
  msgid "Authorization failed!"
32
  msgstr "احراز هویت با خطا مواجه شد!"
33
 
34
+ #: admin/includes/admin-ajax.php:52
35
  msgid "Sent Successfully. Thanks for your feedback!"
36
  msgstr "با موفقیت ارسال شد. از بازخورد شما ممنونیم."
37
 
38
+ #: admin/includes/admin-ajax.php:55
39
  msgid "An error occurred. Feedback could not be delivered, please try again."
40
  msgstr "خطایی رخ داده است. بازخورد قابل تحویل نیست، لطفا دوباره تلاش کنید."
41
 
42
+ #: admin/includes/admin-ajax.php:117 admin/includes/admin-ajax.php:238
43
+ #: admin/includes/admin-ajax.php:297 admin/includes/admin-ajax.php:332
44
+ #: admin/includes/admin-ajax.php:350 admin/includes/admin-ajax.php:391
45
  msgid "Token Error."
46
  msgstr ""
47
 
48
+ #: admin/includes/admin-ajax.php:121
49
  msgid "It's Done."
50
  msgstr ""
51
 
52
+ #: admin/includes/admin-ajax.php:124
53
  msgid "An error occurred."
54
  msgstr ""
55
 
56
+ #: admin/includes/admin-ajax.php:241
57
  msgid "It's OK."
58
  msgstr ""
59
 
60
+ #: admin/includes/admin-ajax.php:254
61
  #: includes/classes/class-auxin-welcome.php:1139
62
  #: includes/classes/class-auxin-welcome.php:1255
63
  msgid "Security Token Error!"
64
  msgstr ""
65
 
66
+ #: admin/includes/admin-ajax.php:261
67
  msgid "License Activation"
68
  msgstr ""
69
 
70
+ #: admin/includes/admin-ajax.php:262
71
  msgid ""
72
  "Please activate your license to get automatic updates, premium support, and "
73
  "unlimited access to the template library and demo importer."
74
  msgstr ""
75
 
76
+ #: admin/includes/admin-ajax.php:265
77
  #, fuzzy
78
  msgid "E-mail address"
79
  msgstr "آدرس ایمیل جعبه تماس"
80
 
81
+ #: admin/includes/admin-ajax.php:270
82
  msgid "Purchase code"
83
  msgstr ""
84
 
85
+ #: admin/includes/admin-ajax.php:278
86
  msgid "Activate"
87
  msgstr ""
88
 
89
+ #: admin/includes/admin-ajax.php:298 admin/includes/admin-ajax.php:313
90
  #: includes/classes/class-auxin-demo-importer.php:190
91
  msgid "Retry"
92
  msgstr ""
93
 
94
+ #: admin/includes/admin-ajax.php:309
95
  #: includes/classes/class-auxin-demo-importer.php:114
96
  #: includes/classes/class-auxin-demo-importer.php:157
97
  #: includes/classes/class-auxin-demo-importer.php:192
101
  msgid "Close"
102
  msgstr ""
103
 
104
+ #: admin/includes/admin-ajax.php:366
105
  msgid "No data found!"
106
  msgstr ""
107
 
108
+ #: admin/includes/admin-ajax.php:396
109
  #, fuzzy
110
  msgid "Please upload a valid file."
111
  msgstr "لطفا فایل ویدیو را بارگذاری کنید."
112
 
113
+ #: admin/includes/admin-ajax.php:410
114
  msgid "Invalid or Empty Data."
115
  msgstr ""
116
 
117
+ #: admin/includes/admin-ajax.php:447
118
  msgid "Successfully Imported."
119
  msgstr ""
120
 
228
  msgstr "افزونه های فعال"
229
 
230
  #: admin/includes/admin-hooks.php:733
231
+ #: includes/classes/class-auxin-welcome-sections.php:548
232
  msgid "Remind Me Later"
233
  msgstr ""
234
 
1094
 
1095
  #: admin/includes/metaboxes/metabox-fields-general-header.php:202
1096
  #: includes/elements/staff.php:207 includes/elements/text.php:105
1097
+ #: includes/general-hooks.php:3016
1098
  msgid "Boxed"
1099
  msgstr "جعبه ای"
1100
 
1904
  msgid "Page Builder by SiteOrigin"
1905
  msgstr ""
1906
 
1907
+ #: auxin-elements.php:64 includes/classes/class-auxin-welcome-sections.php:531
1908
  #, fuzzy
1909
  msgid "Phlox Pro"
1910
  msgstr "[فلوکس] کد"
2409
  msgid "Cancel"
2410
  msgstr ""
2411
 
2412
+ #: includes/classes/class-auxin-welcome-sections.php:86
2413
  msgid "Updates"
2414
  msgstr ""
2415
 
2416
+ #: includes/classes/class-auxin-welcome-sections.php:98
2417
  msgid "Template Kits"
2418
  msgstr ""
2419
 
2420
+ #: includes/classes/class-auxin-welcome-sections.php:136
2421
  #, fuzzy
2422
  msgid "Plugins"
2423
  msgstr "افزونه های فعال"
2424
 
2425
+ #: includes/classes/class-auxin-welcome-sections.php:153
2426
  msgid "Feedback"
2427
  msgstr "بازخورد"
2428
 
2429
+ #: includes/classes/class-auxin-welcome-sections.php:172
2430
  msgid "System Status"
2431
  msgstr "وضعیت سیستم"
2432
 
2433
+ #: includes/classes/class-auxin-welcome-sections.php:188
2434
  msgid "Go Pro"
2435
  msgstr ""
2436
 
2437
+ #: includes/classes/class-auxin-welcome-sections.php:215
2438
+ #: includes/classes/class-auxin-welcome-sections.php:497
2439
  #, fuzzy
2440
  msgid "How likely are you to recommend %s to a friend?"
2441
  msgstr "چه میزان فلوکس را به دوستان خود پیشنهاد می دهید؟"
2442
 
2443
+ #: includes/classes/class-auxin-welcome-sections.php:228
2444
+ #: includes/classes/class-auxin-welcome-sections.php:499
2445
  msgid "Don't like it"
2446
  msgstr ""
2447
 
2448
+ #: includes/classes/class-auxin-welcome-sections.php:229
2449
+ #: includes/classes/class-auxin-welcome-sections.php:501
2450
  msgid "Like it so much"
2451
  msgstr ""
2452
 
2453
+ #: includes/classes/class-auxin-welcome-sections.php:237
2454
  msgid ""
2455
  "Thanks for using Phlox theme. If you are enjoying this theme, please support "
2456
  "us by %s submitting 5 star rate here%s. That would be a huge help for us to "
2457
  "continue developing this theme."
2458
  msgstr ""
2459
 
2460
+ #: includes/classes/class-auxin-welcome-sections.php:243
2461
+ #: includes/classes/class-auxin-welcome-sections.php:536
2462
  msgid "Please explain why you gave this score (optional)"
2463
  msgstr "لطفا در مورد امتیاز داده شده توضیحاتی دهید (دلخواه)"
2464
 
2465
+ #: includes/classes/class-auxin-welcome-sections.php:246
2466
  msgid ""
2467
  "Please do not use this form to get support, in this case please check the %s "
2468
  "help section %s"
2470
  "لطفا از این فرم به منظور دریافت خدمات پشتیبانی استفاده نکنید، برای دریافت "
2471
  "پشتیبانی لطفا %s بخش کمک %s را ببینید."
2472
 
2473
+ #: includes/classes/class-auxin-welcome-sections.php:253
2474
+ #: includes/classes/class-auxin-welcome-sections.php:542
2475
  #: includes/elementor/widgets/theme-elements/modern-search.php:124
2476
  #: includes/elements/contact-form.php:228
2477
  msgid "Submit"
2478
  msgstr "تایید"
2479
 
2480
+ #: includes/classes/class-auxin-welcome-sections.php:257
2481
  msgid "Submitting your feedback .."
2482
  msgstr "در حال ثبت بازخورد شما .."
2483
 
2484
+ #: includes/classes/class-auxin-welcome-sections.php:281
2485
  msgid "Thanks for your feedback"
2486
  msgstr "از بازخورد شما متشکریم."
2487
 
2488
+ #: includes/classes/class-auxin-welcome-sections.php:283
2489
  msgid "Please try again and fill up at least the feedback field."
2490
  msgstr "لطفا دوباره تلاش کنید و حداقل فیلد بازخورد را تکمیل کنید."
2491
 
2492
+ #: includes/classes/class-auxin-welcome-sections.php:327
2493
  msgid "Changelog"
2494
  msgstr ""
2495
 
2496
+ #: includes/classes/class-auxin-welcome-sections.php:329
2497
  msgid "Follow Us"
2498
  msgstr ""
2499
 
2500
+ #: includes/classes/class-auxin-welcome-sections.php:331
2501
  msgid "Follow us on Twitter"
2502
  msgstr ""
2503
 
2504
+ #: includes/classes/class-auxin-welcome-sections.php:332
2505
  #, fuzzy
2506
  msgid "Follow us on Facebook"
2507
  msgstr "[فلوکس] خوراک فیسبوک سفارشی"
2508
 
2509
+ #: includes/classes/class-auxin-welcome-sections.php:333
2510
  msgid "Follow us on Instagram"
2511
  msgstr ""
2512
 
2513
+ #: includes/classes/class-auxin-welcome-sections.php:334
2514
  msgid "Follow us on Envato"
2515
  msgstr ""
2516
 
2517
+ #: includes/classes/class-auxin-welcome-sections.php:335
2518
  msgid "Subscribe to Phlox YouTube channel"
2519
  msgstr ""
2520
 
2521
+ #: includes/classes/class-auxin-welcome-sections.php:500
2522
+ msgid "Neither likely nor unlikely"
2523
+ msgstr ""
2524
+
2525
+ #: includes/classes/class-auxin-welcome-sections.php:521
2526
+ msgid "Support by rating 5 stars"
2527
+ msgstr ""
2528
+
2529
+ #: includes/classes/class-auxin-welcome-sections.php:527
2530
+ msgid "I already did :)"
2531
+ msgstr ""
2532
+
2533
  #: includes/classes/class-auxin-welcome.php:267
2534
  #, fuzzy
2535
  msgid "Dashboard"
12649
  msgid "GitHub"
12650
  msgstr ""
12651
 
12652
+ #: includes/general-hooks.php:2564
12653
  #, fuzzy
12654
  msgid "Page Options"
12655
  msgstr "تنظیمات طراحی"
12656
 
12657
+ #: includes/general-hooks.php:2572
12658
  #, fuzzy
12659
  msgid "Post Options"
12660
  msgstr "تنظیمات نوشته صوتی"
12661
 
12662
+ #: includes/general-hooks.php:3047
12663
  #, fuzzy
12664
  msgid "Page %s"
12665
  msgstr "برگه ها"
12666
 
12667
+ #: includes/general-hooks.php:3620
12668
  #, fuzzy
12669
  msgid "current "
12670
  msgstr "صفحه جاری"
12671
 
12672
+ #: includes/general-hooks.php:3650
12673
  msgid "Edit Header & Footer"
12674
  msgstr ""
12675
 
12918
  msgstr ""
12919
 
12920
  #. translators: playlist item title
12921
+ #: includes/general-hooks.php:3068
12922
  msgctxt "playlist item title"
12923
  msgid "&#8220;%s&#8221;"
12924
  msgstr ""
12925
 
12926
  #. translators: playlist item title
12927
+ #: includes/general-hooks.php:3093 includes/general-hooks.php:3098
12928
  msgctxt "playlist item title"
12929
  msgid "%s"
12930
  msgstr ""
languages/auxin-elements.pot CHANGED
@@ -1,9 +1,9 @@
1
  # Averta Copyright (c) {2021}
2
  msgid ""
3
  msgstr ""
4
- "Project-Id-Version: Phlox Core Elements 2.7.6\n"
5
  "Report-Msgid-Bugs-To: http://averta.net/phlox/wordpress-theme/\n"
6
- "POT-Creation-Date: 2021-01-10 12:05:01+00:00\n"
7
  "MIME-Version: 1.0\n"
8
  "Content-Type: text/plain; charset=utf-8\n"
9
  "Content-Transfer-Encoding: 8bit\n"
@@ -24,74 +24,76 @@ msgstr ""
24
  "X-Textdomain-Support: yes\n"
25
  "X-Generator: grunt-wp-i18n 1.0.3\n"
26
 
27
- #: admin/includes/admin-ajax.php:7
 
28
  msgid "Data cannot be delivered, please try again."
29
  msgstr ""
30
 
31
- #: admin/includes/admin-ajax.php:19
 
32
  msgid "Authorization failed!"
33
  msgstr ""
34
 
35
- #: admin/includes/admin-ajax.php:48
36
  msgid "Sent Successfully. Thanks for your feedback!"
37
  msgstr ""
38
 
39
- #: admin/includes/admin-ajax.php:51
40
  msgid "An error occurred. Feedback could not be delivered, please try again."
41
  msgstr ""
42
 
43
- #: admin/includes/admin-ajax.php:61 admin/includes/admin-ajax.php:182
44
- #: admin/includes/admin-ajax.php:241 admin/includes/admin-ajax.php:276
45
- #: admin/includes/admin-ajax.php:294 admin/includes/admin-ajax.php:335
46
  msgid "Token Error."
47
  msgstr ""
48
 
49
- #: admin/includes/admin-ajax.php:65
50
  msgid "It's Done."
51
  msgstr ""
52
 
53
- #: admin/includes/admin-ajax.php:68
54
  msgid "An error occurred."
55
  msgstr ""
56
 
57
- #: admin/includes/admin-ajax.php:185
58
  msgid "It's OK."
59
  msgstr ""
60
 
61
- #: admin/includes/admin-ajax.php:198
62
  #: includes/classes/class-auxin-welcome.php:1139
63
  #: includes/classes/class-auxin-welcome.php:1255
64
  msgid "Security Token Error!"
65
  msgstr ""
66
 
67
- #: admin/includes/admin-ajax.php:205
68
  msgid "License Activation"
69
  msgstr ""
70
 
71
- #: admin/includes/admin-ajax.php:206
72
  msgid ""
73
  "Please activate your license to get automatic updates, premium support, and "
74
  "unlimited access to the template library and demo importer."
75
  msgstr ""
76
 
77
- #: admin/includes/admin-ajax.php:209
78
  msgid "E-mail address"
79
  msgstr ""
80
 
81
- #: admin/includes/admin-ajax.php:214
82
  msgid "Purchase code"
83
  msgstr ""
84
 
85
- #: admin/includes/admin-ajax.php:222
86
  msgid "Activate"
87
  msgstr ""
88
 
89
- #: admin/includes/admin-ajax.php:242 admin/includes/admin-ajax.php:257
90
  #: includes/classes/class-auxin-demo-importer.php:190
91
  msgid "Retry"
92
  msgstr ""
93
 
94
- #: admin/includes/admin-ajax.php:253
95
  #: includes/classes/class-auxin-demo-importer.php:114
96
  #: includes/classes/class-auxin-demo-importer.php:157
97
  #: includes/classes/class-auxin-demo-importer.php:192
@@ -101,19 +103,19 @@ msgstr ""
101
  msgid "Close"
102
  msgstr ""
103
 
104
- #: admin/includes/admin-ajax.php:310
105
  msgid "No data found!"
106
  msgstr ""
107
 
108
- #: admin/includes/admin-ajax.php:340
109
  msgid "Please upload a valid file."
110
  msgstr ""
111
 
112
- #: admin/includes/admin-ajax.php:354
113
  msgid "Invalid or Empty Data."
114
  msgstr ""
115
 
116
- #: admin/includes/admin-ajax.php:391
117
  msgid "Successfully Imported."
118
  msgstr ""
119
 
@@ -215,6 +217,7 @@ msgid "Activate License"
215
  msgstr ""
216
 
217
  #: admin/includes/admin-hooks.php:733
 
218
  msgid "Remind Me Later"
219
  msgstr ""
220
 
@@ -1012,7 +1015,7 @@ msgstr ""
1012
 
1013
  #: admin/includes/metaboxes/metabox-fields-general-header.php:202
1014
  #: includes/elements/staff.php:207 includes/elements/text.php:105
1015
- #: includes/general-hooks.php:3001
1016
  msgid "Boxed"
1017
  msgstr ""
1018
 
@@ -1776,7 +1779,7 @@ msgstr ""
1776
  msgid "Page Builder by SiteOrigin"
1777
  msgstr ""
1778
 
1779
- #: auxin-elements.php:64
1780
  msgid "Phlox Pro"
1781
  msgstr ""
1782
 
@@ -2251,105 +2254,122 @@ msgstr ""
2251
  msgid "Cancel"
2252
  msgstr ""
2253
 
2254
- #: includes/classes/class-auxin-welcome-sections.php:81
2255
  msgid "Updates"
2256
  msgstr ""
2257
 
2258
- #: includes/classes/class-auxin-welcome-sections.php:93
2259
  msgid "Template Kits"
2260
  msgstr ""
2261
 
2262
- #: includes/classes/class-auxin-welcome-sections.php:131
2263
  msgid "Plugins"
2264
  msgstr ""
2265
 
2266
- #: includes/classes/class-auxin-welcome-sections.php:148
2267
  msgid "Feedback"
2268
  msgstr ""
2269
 
2270
- #: includes/classes/class-auxin-welcome-sections.php:167
2271
  msgid "System Status"
2272
  msgstr ""
2273
 
2274
- #: includes/classes/class-auxin-welcome-sections.php:183
2275
  msgid "Go Pro"
2276
  msgstr ""
2277
 
2278
- #: includes/classes/class-auxin-welcome-sections.php:210
 
2279
  msgid "How likely are you to recommend %s to a friend?"
2280
  msgstr ""
2281
 
2282
- #: includes/classes/class-auxin-welcome-sections.php:223
 
2283
  msgid "Don't like it"
2284
  msgstr ""
2285
 
2286
- #: includes/classes/class-auxin-welcome-sections.php:224
 
2287
  msgid "Like it so much"
2288
  msgstr ""
2289
 
2290
- #: includes/classes/class-auxin-welcome-sections.php:232
2291
  msgid ""
2292
  "Thanks for using Phlox theme. If you are enjoying this theme, please "
2293
  "support us by %s submitting 5 star rate here%s. That would be a huge help "
2294
  "for us to continue developing this theme."
2295
  msgstr ""
2296
 
2297
- #: includes/classes/class-auxin-welcome-sections.php:238
 
2298
  msgid "Please explain why you gave this score (optional)"
2299
  msgstr ""
2300
 
2301
- #: includes/classes/class-auxin-welcome-sections.php:241
2302
  msgid ""
2303
  "Please do not use this form to get support, in this case please check the "
2304
  "%s help section %s"
2305
  msgstr ""
2306
 
2307
- #: includes/classes/class-auxin-welcome-sections.php:248
 
2308
  #: includes/elementor/widgets/theme-elements/modern-search.php:124
2309
  #: includes/elements/contact-form.php:228
2310
  msgid "Submit"
2311
  msgstr ""
2312
 
2313
- #: includes/classes/class-auxin-welcome-sections.php:252
2314
  msgid "Submitting your feedback .."
2315
  msgstr ""
2316
 
2317
- #: includes/classes/class-auxin-welcome-sections.php:276
2318
  msgid "Thanks for your feedback"
2319
  msgstr ""
2320
 
2321
- #: includes/classes/class-auxin-welcome-sections.php:278
2322
  msgid "Please try again and fill up at least the feedback field."
2323
  msgstr ""
2324
 
2325
- #: includes/classes/class-auxin-welcome-sections.php:322
2326
  msgid "Changelog"
2327
  msgstr ""
2328
 
2329
- #: includes/classes/class-auxin-welcome-sections.php:324
2330
  msgid "Follow Us"
2331
  msgstr ""
2332
 
2333
- #: includes/classes/class-auxin-welcome-sections.php:326
2334
  msgid "Follow us on Twitter"
2335
  msgstr ""
2336
 
2337
- #: includes/classes/class-auxin-welcome-sections.php:327
2338
  msgid "Follow us on Facebook"
2339
  msgstr ""
2340
 
2341
- #: includes/classes/class-auxin-welcome-sections.php:328
2342
  msgid "Follow us on Instagram"
2343
  msgstr ""
2344
 
2345
- #: includes/classes/class-auxin-welcome-sections.php:329
2346
  msgid "Follow us on Envato"
2347
  msgstr ""
2348
 
2349
- #: includes/classes/class-auxin-welcome-sections.php:330
2350
  msgid "Subscribe to Phlox YouTube channel"
2351
  msgstr ""
2352
 
 
 
 
 
 
 
 
 
 
 
 
 
2353
  #: includes/classes/class-auxin-welcome.php:267
2354
  msgid "Dashboard"
2355
  msgstr ""
@@ -11835,23 +11855,23 @@ msgstr ""
11835
  msgid "GitHub"
11836
  msgstr ""
11837
 
11838
- #: includes/general-hooks.php:2549
11839
  msgid "Page Options"
11840
  msgstr ""
11841
 
11842
- #: includes/general-hooks.php:2557
11843
  msgid "Post Options"
11844
  msgstr ""
11845
 
11846
- #: includes/general-hooks.php:3032
11847
  msgid "Page %s"
11848
  msgstr ""
11849
 
11850
- #: includes/general-hooks.php:3605
11851
  msgid "current "
11852
  msgstr ""
11853
 
11854
- #: includes/general-hooks.php:3635
11855
  msgid "Edit Header & Footer"
11856
  msgstr ""
11857
 
@@ -12082,13 +12102,13 @@ msgctxt "post format archive title"
12082
  msgid "Chats"
12083
  msgstr ""
12084
 
12085
- #: includes/general-hooks.php:3053
12086
  #. translators: playlist item title
12087
  msgctxt "playlist item title"
12088
  msgid "&#8220;%s&#8221;"
12089
  msgstr ""
12090
 
12091
- #: includes/general-hooks.php:3078 includes/general-hooks.php:3083
12092
  #. translators: playlist item title
12093
  msgctxt "playlist item title"
12094
  msgid "%s"
1
  # Averta Copyright (c) {2021}
2
  msgid ""
3
  msgstr ""
4
+ "Project-Id-Version: Phlox Core Elements 2.7.7\n"
5
  "Report-Msgid-Bugs-To: http://averta.net/phlox/wordpress-theme/\n"
6
+ "POT-Creation-Date: 2021-01-24 06:15:13+00:00\n"
7
  "MIME-Version: 1.0\n"
8
  "Content-Type: text/plain; charset=utf-8\n"
9
  "Content-Transfer-Encoding: 8bit\n"
24
  "X-Textdomain-Support: yes\n"
25
  "X-Generator: grunt-wp-i18n 1.0.3\n"
26
 
27
+ #: admin/includes/admin-ajax.php:7 admin/includes/admin-ajax.php:68
28
+ #: admin/includes/admin-ajax.php:92
29
  msgid "Data cannot be delivered, please try again."
30
  msgstr ""
31
 
32
+ #: admin/includes/admin-ajax.php:19 admin/includes/admin-ajax.php:76
33
+ #: admin/includes/admin-ajax.php:100
34
  msgid "Authorization failed!"
35
  msgstr ""
36
 
37
+ #: admin/includes/admin-ajax.php:52
38
  msgid "Sent Successfully. Thanks for your feedback!"
39
  msgstr ""
40
 
41
+ #: admin/includes/admin-ajax.php:55
42
  msgid "An error occurred. Feedback could not be delivered, please try again."
43
  msgstr ""
44
 
45
+ #: admin/includes/admin-ajax.php:117 admin/includes/admin-ajax.php:238
46
+ #: admin/includes/admin-ajax.php:297 admin/includes/admin-ajax.php:332
47
+ #: admin/includes/admin-ajax.php:350 admin/includes/admin-ajax.php:391
48
  msgid "Token Error."
49
  msgstr ""
50
 
51
+ #: admin/includes/admin-ajax.php:121
52
  msgid "It's Done."
53
  msgstr ""
54
 
55
+ #: admin/includes/admin-ajax.php:124
56
  msgid "An error occurred."
57
  msgstr ""
58
 
59
+ #: admin/includes/admin-ajax.php:241
60
  msgid "It's OK."
61
  msgstr ""
62
 
63
+ #: admin/includes/admin-ajax.php:254
64
  #: includes/classes/class-auxin-welcome.php:1139
65
  #: includes/classes/class-auxin-welcome.php:1255
66
  msgid "Security Token Error!"
67
  msgstr ""
68
 
69
+ #: admin/includes/admin-ajax.php:261
70
  msgid "License Activation"
71
  msgstr ""
72
 
73
+ #: admin/includes/admin-ajax.php:262
74
  msgid ""
75
  "Please activate your license to get automatic updates, premium support, and "
76
  "unlimited access to the template library and demo importer."
77
  msgstr ""
78
 
79
+ #: admin/includes/admin-ajax.php:265
80
  msgid "E-mail address"
81
  msgstr ""
82
 
83
+ #: admin/includes/admin-ajax.php:270
84
  msgid "Purchase code"
85
  msgstr ""
86
 
87
+ #: admin/includes/admin-ajax.php:278
88
  msgid "Activate"
89
  msgstr ""
90
 
91
+ #: admin/includes/admin-ajax.php:298 admin/includes/admin-ajax.php:313
92
  #: includes/classes/class-auxin-demo-importer.php:190
93
  msgid "Retry"
94
  msgstr ""
95
 
96
+ #: admin/includes/admin-ajax.php:309
97
  #: includes/classes/class-auxin-demo-importer.php:114
98
  #: includes/classes/class-auxin-demo-importer.php:157
99
  #: includes/classes/class-auxin-demo-importer.php:192
103
  msgid "Close"
104
  msgstr ""
105
 
106
+ #: admin/includes/admin-ajax.php:366
107
  msgid "No data found!"
108
  msgstr ""
109
 
110
+ #: admin/includes/admin-ajax.php:396
111
  msgid "Please upload a valid file."
112
  msgstr ""
113
 
114
+ #: admin/includes/admin-ajax.php:410
115
  msgid "Invalid or Empty Data."
116
  msgstr ""
117
 
118
+ #: admin/includes/admin-ajax.php:447
119
  msgid "Successfully Imported."
120
  msgstr ""
121
 
217
  msgstr ""
218
 
219
  #: admin/includes/admin-hooks.php:733
220
+ #: includes/classes/class-auxin-welcome-sections.php:548
221
  msgid "Remind Me Later"
222
  msgstr ""
223
 
1015
 
1016
  #: admin/includes/metaboxes/metabox-fields-general-header.php:202
1017
  #: includes/elements/staff.php:207 includes/elements/text.php:105
1018
+ #: includes/general-hooks.php:3016
1019
  msgid "Boxed"
1020
  msgstr ""
1021
 
1779
  msgid "Page Builder by SiteOrigin"
1780
  msgstr ""
1781
 
1782
+ #: auxin-elements.php:64 includes/classes/class-auxin-welcome-sections.php:531
1783
  msgid "Phlox Pro"
1784
  msgstr ""
1785
 
2254
  msgid "Cancel"
2255
  msgstr ""
2256
 
2257
+ #: includes/classes/class-auxin-welcome-sections.php:86
2258
  msgid "Updates"
2259
  msgstr ""
2260
 
2261
+ #: includes/classes/class-auxin-welcome-sections.php:98
2262
  msgid "Template Kits"
2263
  msgstr ""
2264
 
2265
+ #: includes/classes/class-auxin-welcome-sections.php:136
2266
  msgid "Plugins"
2267
  msgstr ""
2268
 
2269
+ #: includes/classes/class-auxin-welcome-sections.php:153
2270
  msgid "Feedback"
2271
  msgstr ""
2272
 
2273
+ #: includes/classes/class-auxin-welcome-sections.php:172
2274
  msgid "System Status"
2275
  msgstr ""
2276
 
2277
+ #: includes/classes/class-auxin-welcome-sections.php:188
2278
  msgid "Go Pro"
2279
  msgstr ""
2280
 
2281
+ #: includes/classes/class-auxin-welcome-sections.php:215
2282
+ #: includes/classes/class-auxin-welcome-sections.php:497
2283
  msgid "How likely are you to recommend %s to a friend?"
2284
  msgstr ""
2285
 
2286
+ #: includes/classes/class-auxin-welcome-sections.php:228
2287
+ #: includes/classes/class-auxin-welcome-sections.php:499
2288
  msgid "Don't like it"
2289
  msgstr ""
2290
 
2291
+ #: includes/classes/class-auxin-welcome-sections.php:229
2292
+ #: includes/classes/class-auxin-welcome-sections.php:501
2293
  msgid "Like it so much"
2294
  msgstr ""
2295
 
2296
+ #: includes/classes/class-auxin-welcome-sections.php:237
2297
  msgid ""
2298
  "Thanks for using Phlox theme. If you are enjoying this theme, please "
2299
  "support us by %s submitting 5 star rate here%s. That would be a huge help "
2300
  "for us to continue developing this theme."
2301
  msgstr ""
2302
 
2303
+ #: includes/classes/class-auxin-welcome-sections.php:243
2304
+ #: includes/classes/class-auxin-welcome-sections.php:536
2305
  msgid "Please explain why you gave this score (optional)"
2306
  msgstr ""
2307
 
2308
+ #: includes/classes/class-auxin-welcome-sections.php:246
2309
  msgid ""
2310
  "Please do not use this form to get support, in this case please check the "
2311
  "%s help section %s"
2312
  msgstr ""
2313
 
2314
+ #: includes/classes/class-auxin-welcome-sections.php:253
2315
+ #: includes/classes/class-auxin-welcome-sections.php:542
2316
  #: includes/elementor/widgets/theme-elements/modern-search.php:124
2317
  #: includes/elements/contact-form.php:228
2318
  msgid "Submit"
2319
  msgstr ""
2320
 
2321
+ #: includes/classes/class-auxin-welcome-sections.php:257
2322
  msgid "Submitting your feedback .."
2323
  msgstr ""
2324
 
2325
+ #: includes/classes/class-auxin-welcome-sections.php:281
2326
  msgid "Thanks for your feedback"
2327
  msgstr ""
2328
 
2329
+ #: includes/classes/class-auxin-welcome-sections.php:283
2330
  msgid "Please try again and fill up at least the feedback field."
2331
  msgstr ""
2332
 
2333
+ #: includes/classes/class-auxin-welcome-sections.php:327
2334
  msgid "Changelog"
2335
  msgstr ""
2336
 
2337
+ #: includes/classes/class-auxin-welcome-sections.php:329
2338
  msgid "Follow Us"
2339
  msgstr ""
2340
 
2341
+ #: includes/classes/class-auxin-welcome-sections.php:331
2342
  msgid "Follow us on Twitter"
2343
  msgstr ""
2344
 
2345
+ #: includes/classes/class-auxin-welcome-sections.php:332
2346
  msgid "Follow us on Facebook"
2347
  msgstr ""
2348
 
2349
+ #: includes/classes/class-auxin-welcome-sections.php:333
2350
  msgid "Follow us on Instagram"
2351
  msgstr ""
2352
 
2353
+ #: includes/classes/class-auxin-welcome-sections.php:334
2354
  msgid "Follow us on Envato"
2355
  msgstr ""
2356
 
2357
+ #: includes/classes/class-auxin-welcome-sections.php:335
2358
  msgid "Subscribe to Phlox YouTube channel"
2359
  msgstr ""
2360
 
2361
+ #: includes/classes/class-auxin-welcome-sections.php:500
2362
+ msgid "Neither likely nor unlikely"
2363
+ msgstr ""
2364
+
2365
+ #: includes/classes/class-auxin-welcome-sections.php:521
2366
+ msgid "Support by rating 5 stars"
2367
+ msgstr ""
2368
+
2369
+ #: includes/classes/class-auxin-welcome-sections.php:527
2370
+ msgid "I already did :)"
2371
+ msgstr ""
2372
+
2373
  #: includes/classes/class-auxin-welcome.php:267
2374
  msgid "Dashboard"
2375
  msgstr ""
11855
  msgid "GitHub"
11856
  msgstr ""
11857
 
11858
+ #: includes/general-hooks.php:2564
11859
  msgid "Page Options"
11860
  msgstr ""
11861
 
11862
+ #: includes/general-hooks.php:2572
11863
  msgid "Post Options"
11864
  msgstr ""
11865
 
11866
+ #: includes/general-hooks.php:3047
11867
  msgid "Page %s"
11868
  msgstr ""
11869
 
11870
+ #: includes/general-hooks.php:3620
11871
  msgid "current "
11872
  msgstr ""
11873
 
11874
+ #: includes/general-hooks.php:3650
11875
  msgid "Edit Header & Footer"
11876
  msgstr ""
11877
 
12102
  msgid "Chats"
12103
  msgstr ""
12104
 
12105
+ #: includes/general-hooks.php:3068
12106
  #. translators: playlist item title
12107
  msgctxt "playlist item title"
12108
  msgid "&#8220;%s&#8221;"
12109
  msgstr ""
12110
 
12111
+ #: includes/general-hooks.php:3093 includes/general-hooks.php:3098
12112
  #. translators: playlist item title
12113
  msgctxt "playlist item title"
12114
  msgid "%s"
public/assets/js/plugins.js CHANGED
@@ -1,4 +1,4 @@
1
- /*! Phlox Core Plugin - v2.7.6 (2021-01)
2
  * All required plugins
3
  * http://phlox.pro/
4
  */
1
+ /*! Phlox Core Plugin - v2.7.7 (2021-01)
2
  * All required plugins
3
  * http://phlox.pro/
4
  */