Shortcodes and extra features for Phlox theme - Version 2.7.2

Version Description

Download this release

Release Info

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

Code changes from version 2.7.1 to 2.7.2

README.txt CHANGED
@@ -7,7 +7,7 @@ Tags: phlox, gallery, elementor, siteorigin, auxin, averta, auxin-elements, fram
7
  Requires PHP: 5.4
8
  Requires at least: 4.6
9
  Tested up to: 5.5.0
10
- Stable tag: 2.7.1
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.2
11
  License: GPLv3
12
  License URI: http://www.gnu.org/licenses/gpl.html
13
 
admin/assets/js/plugins.js CHANGED
@@ -1,4 +1,4 @@
1
- /*! Phlox Core Plugin - v2.7.1 (2020-10)
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.2 (2020-11)
2
  * All required javascript plugins for admin
3
  * http://phlox.pro/
4
  * Place any jQuery/helper plugins in here, instead of separate, slower script files!
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.1
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.2
16
  * Author: averta
17
  * Author URI: http://averta.net
18
  * Text Domain: auxin-elements
includes/classes/class-auxin-demo-importer.php CHANGED
@@ -1075,6 +1075,16 @@ class Auxin_Demo_Importer {
1075
  }
1076
  }
1077
 
 
 
 
 
 
 
 
 
 
 
1078
  // Change template's id in flexible recent posts element
1079
  preg_match_all( '/post_column":"\d*/', $elementor_data, $templates, PREG_SET_ORDER );
1080
  if ( ! empty( $templates ) ) {
1075
  }
1076
  }
1077
 
1078
+ // Change contact form 7 old id
1079
+ preg_match_all( '/contact-form-7 id=\\\"(\d*)/', $elementor_data, $contact_forms, PREG_SET_ORDER );
1080
+ if ( ! empty( $contact_forms ) ) {
1081
+ foreach ( $contact_forms as $key => $form ) {
1082
+ $new_form = str_replace( $form[1], $this->get_attachment_id( 'auxin_import_post', $form[1] ), $form[0] );
1083
+
1084
+ $elementor_data = str_replace( $form[0], $new_form, $elementor_data );
1085
+ }
1086
+ }
1087
+
1088
  // Change template's id in flexible recent posts element
1089
  preg_match_all( '/post_column":"\d*/', $elementor_data, $templates, PREG_SET_ORDER );
1090
  if ( ! empty( $templates ) ) {
includes/classes/class-auxin-welcome.php CHANGED
@@ -1399,6 +1399,10 @@ class Auxin_Welcome extends Auxin_Welcome_Base {
1399
  ),
1400
  '9' => array(
1401
  'method' => 'verify_envato_elements_step',
 
 
 
 
1402
  'next' => '3'
1403
  )
1404
 
@@ -1783,7 +1787,7 @@ class Auxin_Welcome extends Auxin_Welcome_Base {
1783
  ><?php esc_html_e( 'Verify Token', 'auxin-elements' ); ?></a>
1784
  <a href="#"
1785
  class="aux-button aux-outline aux-round aux-transparent aux-medium aux-next-step aux-skip"
1786
- data-next-step="<?php echo esc_attr( $next_step ); ?>"
1787
  data-args="<?php echo htmlspecialchars( wp_json_encode($args), ENT_QUOTES, 'UTF-8' ); ?>"
1788
  data-step-nonce="<?php echo wp_create_nonce( 'aux-step-manager' );?>">
1789
  <?php _e( 'Skip', 'auxin-elements' ); ?>
@@ -1794,6 +1798,28 @@ class Auxin_Welcome extends Auxin_Welcome_Base {
1794
  return ob_get_clean();
1795
  }
1796
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1797
  private function encode_url_parameter( $parameter ) {
1798
  $parameter = html_entity_decode( $parameter, ENT_QUOTES | ENT_XML1, 'UTF-8' );
1799
  $parameter = str_replace( '#', '', $parameter );
1399
  ),
1400
  '9' => array(
1401
  'method' => 'verify_envato_elements_step',
1402
+ 'next' => '10'
1403
+ ),
1404
+ '10' => array(
1405
+ 'method' => 'envato_elements_success_step',
1406
  'next' => '3'
1407
  )
1408
 
1787
  ><?php esc_html_e( 'Verify Token', 'auxin-elements' ); ?></a>
1788
  <a href="#"
1789
  class="aux-button aux-outline aux-round aux-transparent aux-medium aux-next-step aux-skip"
1790
+ data-next-step="3"
1791
  data-args="<?php echo htmlspecialchars( wp_json_encode($args), ENT_QUOTES, 'UTF-8' ); ?>"
1792
  data-step-nonce="<?php echo wp_create_nonce( 'aux-step-manager' );?>">
1793
  <?php _e( 'Skip', 'auxin-elements' ); ?>
1798
  return ob_get_clean();
1799
  }
1800
 
1801
+ public function envato_elements_success_step( array $args, $next_step) {
1802
+ ob_start();
1803
+ ?>
1804
+ <div class="aux-setup-demo-content aux-content-col aux-step-envato-elements-success aux-step-import-notice">
1805
+ <img src="<?php echo esc_url( AUXELS_ADMIN_URL . '/assets/images/welcome/completed.svg' ); ?>" />
1806
+ <h2 class="aux-step-import-title"><?php esc_html_e( 'Succeed', 'auxin-elements' ); ?></h2>
1807
+ <p class="aux-step-description"><?php esc_html_e( "Congratulations! you have successfully authorized your Envato Elements subscription.", 'auxin-elements' ); ?></p>
1808
+ </div>
1809
+ <div class="aux-setup-demo-actions">
1810
+ <div class="aux-return-back">
1811
+ <a href="#"
1812
+ class="aux-button aux-medium aux-primary button-next aux-next-step"
1813
+ data-next-step="<?php echo esc_attr( $next_step ); ?>"
1814
+ data-args="<?php echo htmlspecialchars( wp_json_encode($args), ENT_QUOTES, 'UTF-8' ); ?>"
1815
+ data-step-nonce="<?php echo wp_create_nonce( 'aux-step-manager' ); ?>"
1816
+ ><?php esc_html_e( 'Continue', 'auxin-elements' ); ?></a>
1817
+ </div>
1818
+ </div>
1819
+ <?php
1820
+ return ob_get_clean();
1821
+ }
1822
+
1823
  private function encode_url_parameter( $parameter ) {
1824
  $parameter = html_entity_decode( $parameter, ENT_QUOTES | ENT_XML1, 'UTF-8' );
1825
  $parameter = str_replace( '#', '', $parameter );
includes/define.php CHANGED
@@ -12,7 +12,7 @@ if( ! defined( 'THEME_NAME' ) ){
12
  }
13
 
14
 
15
- define( 'AUXELS_VERSION' , '2.7.1' );
16
 
17
  define( 'AUXELS_SLUG' , 'auxin-elements' );
18
 
12
  }
13
 
14
 
15
+ define( 'AUXELS_VERSION' , '2.7.2' );
16
 
17
  define( 'AUXELS_SLUG' , 'auxin-elements' );
18
 
includes/elementor/widgets/gallery.php CHANGED
@@ -177,7 +177,7 @@ class Gallery extends Widget_Base {
177
  )
178
  ),
179
  'condition' => array(
180
- 'layout' => array('masonry','grid')
181
  )
182
  )
183
  );
177
  )
178
  ),
179
  'condition' => array(
180
+ 'layout' => array('masonry','grid', 'tiles')
181
  )
182
  )
183
  );
includes/elements/gallery.php CHANGED
@@ -501,7 +501,6 @@ function auxin_widget_gallery_callback( $attr, $shortcode_content = null ){
501
  $isotop_layout = 'justifyRows';
502
  } elseif ( 'tiles' == $layout ) {
503
  $isotop_layout = 'packery';
504
- $space = 0;
505
  } else {
506
  $isotop_layout = 'masonry';
507
  }
501
  $isotop_layout = 'justifyRows';
502
  } elseif ( 'tiles' == $layout ) {
503
  $isotop_layout = 'packery';
 
504
  } else {
505
  $isotop_layout = 'masonry';
506
  }
includes/general-functions.php CHANGED
@@ -2072,6 +2072,8 @@ function auxin_get_header_template(){
2072
  $template_ID = auxin_get_option( 'site_elementor_header_template', '' );
2073
  $template_ID = ( ! empty( auxin_get_post_meta( $post, 'page_elementor_header_template' ) ) && auxin_get_post_meta($post , 'page_header_use_legacy' ) !== 'default' ) ?
2074
  auxin_get_post_meta( $post, 'page_elementor_header_template' ) : $template_ID ;
 
 
2075
 
2076
  $attrs = [
2077
  'class' => ['aux-elementor-header'],
@@ -2116,7 +2118,9 @@ function auxin_get_footer_template(){
2116
  $template_ID = auxin_get_option( 'site_elementor_footer_template', '' );
2117
  $template_ID = ( ! empty( auxin_get_post_meta( $post, 'page_elementor_footer_template' ) ) && auxin_get_post_meta($post , 'page_footer_use_legacy' ) !== 'default' ) ?
2118
  auxin_get_post_meta( $post, 'page_elementor_footer_template' ) : $template_ID ;
2119
-
 
 
2120
  $attrs = [
2121
  'class' => ['aux-elementor-footer'],
2122
  'itemscope' => 'itemscope',
2072
  $template_ID = auxin_get_option( 'site_elementor_header_template', '' );
2073
  $template_ID = ( ! empty( auxin_get_post_meta( $post, 'page_elementor_header_template' ) ) && auxin_get_post_meta($post , 'page_header_use_legacy' ) !== 'default' ) ?
2074
  auxin_get_post_meta( $post, 'page_elementor_header_template' ) : $template_ID ;
2075
+ // get translated template if wpml enabled
2076
+ $template_ID = ( function_exists( 'icl_object_id' ) && defined( 'ICL_LANGUAGE_CODE' ) ) ? icl_object_id( $template_ID, 'elementor_library', false, ICL_LANGUAGE_CODE ) : $template_ID;
2077
 
2078
  $attrs = [
2079
  'class' => ['aux-elementor-header'],
2118
  $template_ID = auxin_get_option( 'site_elementor_footer_template', '' );
2119
  $template_ID = ( ! empty( auxin_get_post_meta( $post, 'page_elementor_footer_template' ) ) && auxin_get_post_meta($post , 'page_footer_use_legacy' ) !== 'default' ) ?
2120
  auxin_get_post_meta( $post, 'page_elementor_footer_template' ) : $template_ID ;
2121
+ // get translated template if wpml enabled
2122
+ $template_ID = ( function_exists( 'icl_object_id' ) && defined( 'ICL_LANGUAGE_CODE' ) ) ? icl_object_id( $template_ID, 'elementor_library', false, ICL_LANGUAGE_CODE ) : $template_ID;
2123
+
2124
  $attrs = [
2125
  'class' => ['aux-elementor-footer'],
2126
  'itemscope' => 'itemscope',
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-10-24 13:58:00+00:00\n"
6
  "PO-Revision-Date: 2016-11-09 12:50+0330\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -95,7 +95,7 @@ msgstr ""
95
  #: includes/classes/class-auxin-demo-importer.php:192
96
  #: includes/classes/class-auxin-welcome.php:1234
97
  #: includes/classes/class-auxin-welcome.php:1269
98
- #: includes/classes/class-auxin-welcome.php:1633
99
  msgid "Close"
100
  msgstr ""
101
 
@@ -356,9 +356,9 @@ msgid "You need to enter a unique id for notice."
356
  msgstr ""
357
 
358
  #: admin/includes/classes/class-auxin-notices.php:186
359
- #: includes/classes/class-auxin-welcome.php:1685
360
- #: includes/classes/class-auxin-welcome.php:1714
361
- #: includes/classes/class-auxin-welcome.php:1789
362
  msgid "Skip"
363
  msgstr ""
364
 
@@ -1928,21 +1928,22 @@ msgstr ""
1928
 
1929
  #: includes/classes/class-auxels-admin-assets.php:67
1930
  #: includes/classes/class-auxin-welcome.php:1310
1931
- #: includes/classes/class-auxin-welcome.php:1433
1932
- #: includes/classes/class-auxin-welcome.php:1742
 
1933
  #, fuzzy
1934
  msgid "Continue"
1935
  msgstr "دربرگیرنده"
1936
 
1937
  #: includes/classes/class-auxels-admin-assets.php:68
1938
  #: includes/classes/class-auxin-welcome.php:522
1939
- #: includes/classes/class-auxin-welcome.php:1508
1940
  #, fuzzy
1941
  msgid "Install Plugins"
1942
  msgstr "افزونه های فعال"
1943
 
1944
  #: includes/classes/class-auxels-admin-assets.php:69
1945
- #: includes/classes/class-auxin-welcome.php:1599
1946
  #, fuzzy
1947
  msgid "Import Content"
1948
  msgstr "محتوای جعبه ای"
@@ -2105,7 +2106,7 @@ msgid "Importing Media"
2105
  msgstr ""
2106
 
2107
  #: includes/classes/class-auxin-demo-importer.php:293
2108
- #: includes/classes/class-auxin-demo-importer.php:1250
2109
  msgid "Importing Users"
2110
  msgstr ""
2111
 
@@ -2136,11 +2137,11 @@ msgstr ""
2136
  msgid "Importing Sliders"
2137
  msgstr ""
2138
 
2139
- #: includes/classes/class-auxin-demo-importer.php:1313
2140
  msgid "Preparing Site ..."
2141
  msgstr ""
2142
 
2143
- #: includes/classes/class-auxin-demo-importer.php:1332
2144
  msgid "All steps are successful"
2145
  msgstr ""
2146
 
@@ -2398,10 +2399,10 @@ msgstr ""
2398
  #: includes/classes/class-auxin-walker-nav-menu-back.php:384
2399
  #: includes/classes/class-auxin-welcome.php:1313
2400
  #: includes/classes/class-auxin-welcome.php:1341
2401
- #: includes/classes/class-auxin-welcome.php:1436
2402
- #: includes/classes/class-auxin-welcome.php:1510
2403
- #: includes/classes/class-auxin-welcome.php:1601
2404
- #: includes/classes/class-auxin-welcome.php:1744
2405
  msgid "Cancel"
2406
  msgstr ""
2407
 
@@ -2622,7 +2623,7 @@ msgstr ""
2622
  #: includes/classes/class-auxin-welcome.php:829
2623
  #: includes/classes/class-auxin-welcome.php:943
2624
  #: includes/classes/class-auxin-welcome.php:1231
2625
- #: includes/classes/class-auxin-welcome.php:1630
2626
  msgid "Preview"
2627
  msgstr ""
2628
 
@@ -2676,7 +2677,7 @@ msgstr ""
2676
 
2677
  #: includes/classes/class-auxin-welcome.php:1066
2678
  #: includes/classes/class-auxin-welcome.php:1096
2679
- #: includes/classes/class-auxin-welcome.php:1484
2680
  msgid "Ready to update"
2681
  msgstr ""
2682
 
@@ -2729,187 +2730,197 @@ msgid "Are you sure you want to uninstall this demo?"
2729
  msgstr ""
2730
 
2731
  #: includes/classes/class-auxin-welcome.php:1347
2732
- #: includes/classes/class-auxin-welcome.php:1607
2733
  msgid "Please wait, this may take several minutes .."
2734
  msgstr ""
2735
 
2736
- #: includes/classes/class-auxin-welcome.php:1409
2737
  msgid "An error occurred!"
2738
  msgstr ""
2739
 
2740
- #: includes/classes/class-auxin-welcome.php:1411
2741
  msgid "Method not exist!"
2742
  msgstr ""
2743
 
2744
- #: includes/classes/class-auxin-welcome.php:1425
2745
- #: includes/classes/class-auxin-welcome.php:1461
2746
  msgid "Required Plugins for this demo."
2747
  msgstr ""
2748
 
2749
- #: includes/classes/class-auxin-welcome.php:1427
2750
  msgid ""
2751
  "For better and faster install process it's recommended to install demo on a "
2752
  "clean WordPress website."
2753
  msgstr ""
2754
 
2755
- #: includes/classes/class-auxin-welcome.php:1462
2756
  msgid "The following plugins are required to be installed for this demo."
2757
  msgstr ""
2758
 
2759
- #: includes/classes/class-auxin-welcome.php:1476
2760
  #, fuzzy
2761
  msgid "Ready to install"
2762
  msgstr "تکرار افقی"
2763
 
2764
- #: includes/classes/class-auxin-welcome.php:1480
2765
  #, fuzzy
2766
  msgid "Not activated"
2767
  msgstr "اصلا"
2768
 
2769
- #: includes/classes/class-auxin-welcome.php:1526
2770
  msgid "Import Demo Content of Phlox Theme."
2771
  msgstr ""
2772
 
2773
- #: includes/classes/class-auxin-welcome.php:1531
2774
  msgid "Complete pre-build Website"
2775
  msgstr ""
2776
 
2777
- #: includes/classes/class-auxin-welcome.php:1536
2778
  #, fuzzy
2779
  msgid "Import media (images, videos, etc.)"
2780
  msgstr "نمایش رسانه های نوشته (تصویر، ویدیو، غیره)"
2781
 
2782
- #: includes/classes/class-auxin-welcome.php:1543
2783
  msgid "Selected Data Only"
2784
  msgstr ""
2785
 
2786
- #: includes/classes/class-auxin-welcome.php:1549
2787
  #, fuzzy
2788
  msgid "Posts/Pages"
2789
  msgstr "نوشته ها"
2790
 
2791
- #: includes/classes/class-auxin-welcome.php:1554
2792
  #, fuzzy
2793
  msgid "Media"
2794
  msgstr "متوسط"
2795
 
2796
- #: includes/classes/class-auxin-welcome.php:1559
2797
  #, fuzzy
2798
  msgid "Widgets"
2799
  msgstr "عنوان ابزارک"
2800
 
2801
- #: includes/classes/class-auxin-welcome.php:1566
2802
  msgid "Menus"
2803
  msgstr ""
2804
 
2805
- #: includes/classes/class-auxin-welcome.php:1571
2806
  #, fuzzy
2807
  msgid "Theme Options"
2808
  msgstr "تنظیمات طراحی"
2809
 
2810
- #: includes/classes/class-auxin-welcome.php:1576
2811
  msgid "MasterSlider (If Available)"
2812
  msgstr ""
2813
 
2814
- #: includes/classes/class-auxin-welcome.php:1586
2815
  msgid "Importing Demo Content is in Progress..."
2816
  msgstr ""
2817
 
2818
- #: includes/classes/class-auxin-welcome.php:1587
2819
  msgid ""
2820
  "This process may take 5 to 10 minutes to complete, please do not close or "
2821
  "refresh this page."
2822
  msgstr ""
2823
 
2824
- #: includes/classes/class-auxin-welcome.php:1621
2825
  msgid "Congratulations!"
2826
  msgstr ""
2827
 
2828
- #: includes/classes/class-auxin-welcome.php:1622
2829
  msgid "Demo has been successfully imported."
2830
  msgstr ""
2831
 
2832
- #: includes/classes/class-auxin-welcome.php:1627
2833
  #, fuzzy
2834
  msgid "Customize"
2835
  msgstr "تصویر دلخواه"
2836
 
2837
- #: includes/classes/class-auxin-welcome.php:1644
2838
  #, fuzzy
2839
  msgid "Importing page content ..."
2840
  msgstr "تراز تصویر در محتوا."
2841
 
2842
- #: includes/classes/class-auxin-welcome.php:1668
2843
  msgid "Remove Watermarks?"
2844
  msgstr ""
2845
 
2846
- #: includes/classes/class-auxin-welcome.php:1669
2847
  msgid ""
2848
  "Some images in this demo are copyrighted and watermarked, you can remove "
2849
  "watermarks by authorizing your Envato Elements subscription."
2850
  msgstr ""
2851
 
2852
- #: includes/classes/class-auxin-welcome.php:1683
2853
  msgid "Remove Watermarks"
2854
  msgstr ""
2855
 
2856
- #: includes/classes/class-auxin-welcome.php:1698
2857
  msgid "Remove watermarks by authorizing your Envato Elements subscription"
2858
  msgstr ""
2859
 
2860
- #: includes/classes/class-auxin-welcome.php:1699
2861
  msgid ""
2862
  "By subscribing to Envato Elements you will have access to unlimited premium "
2863
  "stock images, icons, graphical assets, videos and more."
2864
  msgstr ""
2865
 
2866
- #: includes/classes/class-auxin-welcome.php:1701
2867
  msgid "Explore and Subscribe"
2868
  msgstr ""
2869
 
2870
- #: includes/classes/class-auxin-welcome.php:1709
2871
  msgid "Already an Envato Elements member?"
2872
  msgstr ""
2873
 
2874
- #: includes/classes/class-auxin-welcome.php:1709
2875
  msgid "Activate here"
2876
  msgstr ""
2877
 
2878
- #: includes/classes/class-auxin-welcome.php:1727
2879
- #: includes/classes/class-auxin-welcome.php:1757
2880
  msgid "Verify Your Envato Elements Subscription"
2881
  msgstr ""
2882
 
2883
- #: includes/classes/class-auxin-welcome.php:1728
2884
  msgid "Enter your email below and click continue button"
2885
  msgstr ""
2886
 
2887
- #: includes/classes/class-auxin-welcome.php:1730
2888
  #, fuzzy
2889
  msgid "Enter your email"
2890
  msgstr "برچسب آیتم زبانه را وارد کنید."
2891
 
2892
- #: includes/classes/class-auxin-welcome.php:1758
2893
  msgid "Enter your token below to verify your Subscription"
2894
  msgstr ""
2895
 
2896
- #: includes/classes/class-auxin-welcome.php:1760
2897
  #, fuzzy
2898
  msgid "Enter token here"
2899
  msgstr "برچسب دکمه را وارد کنید."
2900
 
2901
- #: includes/classes/class-auxin-welcome.php:1772
2902
  msgid "How to generate a token ?"
2903
  msgstr ""
2904
 
2905
- #: includes/classes/class-auxin-welcome.php:1773
2906
  msgid "Don't have subscription?"
2907
  msgstr ""
2908
 
2909
- #: includes/classes/class-auxin-welcome.php:1783
2910
  msgid "Verify Token"
2911
  msgstr ""
2912
 
 
 
 
 
 
 
 
 
 
 
2913
  #: includes/classes/class-auxin-widget-shortcode-map.php:308
2914
  #, fuzzy
2915
  msgid "CSS"
@@ -11851,63 +11862,63 @@ msgid "Loading spinner (dark)"
11851
  msgstr ""
11852
 
11853
  #. translators: %s: Search term.
11854
- #: includes/general-functions.php:2239
11855
  msgid "Search Results for: %s"
11856
  msgstr ""
11857
 
11858
  #. translators: %s is the page number.
11859
- #: includes/general-functions.php:2243
11860
  msgid "&nbsp;&ndash; Page %s"
11861
  msgstr ""
11862
 
11863
  #. translators: Category archive title. 1: Category name
11864
- #: includes/general-functions.php:2250
11865
  #, fuzzy
11866
  msgid "Category: %s"
11867
  msgstr "دسته 1"
11868
 
11869
  #. translators: Tag archive title. 1: Tag name
11870
- #: includes/general-functions.php:2256
11871
  msgid "Tag: %s"
11872
  msgstr ""
11873
 
11874
  #. translators: Author archive title. 1: Author name
11875
- #: includes/general-functions.php:2263
11876
  #, fuzzy
11877
  msgid "Author: %s"
11878
  msgstr "نویسنده"
11879
 
11880
  #. translators: Yearly archive title. 1: Year
11881
- #: includes/general-functions.php:2270
11882
  msgid "Year: %s"
11883
  msgstr ""
11884
 
11885
  #. translators: Monthly archive title. 1: Month name and year
11886
- #: includes/general-functions.php:2277
11887
  msgid "Month: %s"
11888
  msgstr ""
11889
 
11890
  #. translators: Daily archive title. 1: Date
11891
- #: includes/general-functions.php:2284
11892
  msgid "Day: %s"
11893
  msgstr ""
11894
 
11895
  #. translators: Post type archive title. 1: Post type name
11896
- #: includes/general-functions.php:2311
11897
  msgid "Archives: %s"
11898
  msgstr ""
11899
 
11900
  #. translators: Taxonomy term archive title. 1: Taxonomy singular name, 2:
11901
  #. Current taxonomy term
11902
- #: includes/general-functions.php:2319
11903
  msgid "%1$s: %2$s"
11904
  msgstr ""
11905
 
11906
- #: includes/general-functions.php:2322
11907
  msgid "Page Not Found"
11908
  msgstr ""
11909
 
11910
- #: includes/general-functions.php:2487
11911
  #, fuzzy
11912
  msgid "Select Page"
11913
  msgstr "تراز شکلک را انتخاب کنید."
@@ -12821,67 +12832,67 @@ msgstr "اورتا"
12821
  msgid "http://averta.net"
12822
  msgstr "http://averta.net"
12823
 
12824
- #: includes/general-functions.php:2266
12825
  msgctxt "yearly archives date format"
12826
  msgid "Y"
12827
  msgstr ""
12828
 
12829
- #: includes/general-functions.php:2273
12830
  msgctxt "monthly archives date format"
12831
  msgid "F Y"
12832
  msgstr ""
12833
 
12834
- #: includes/general-functions.php:2280
12835
  msgctxt "daily archives date format"
12836
  msgid "F j, Y"
12837
  msgstr ""
12838
 
12839
- #: includes/general-functions.php:2288
12840
  msgctxt "post format archive title"
12841
  msgid "Asides"
12842
  msgstr ""
12843
 
12844
- #: includes/general-functions.php:2290
12845
  #, fuzzy
12846
  msgctxt "post format archive title"
12847
  msgid "Galleries"
12848
  msgstr "گالری ها"
12849
 
12850
- #: includes/general-functions.php:2292
12851
  #, fuzzy
12852
  msgctxt "post format archive title"
12853
  msgid "Images"
12854
  msgstr "تصاویر"
12855
 
12856
- #: includes/general-functions.php:2294
12857
  #, fuzzy
12858
  msgctxt "post format archive title"
12859
  msgid "Videos"
12860
  msgstr "پوستر ویدیو"
12861
 
12862
- #: includes/general-functions.php:2296
12863
  #, fuzzy
12864
  msgctxt "post format archive title"
12865
  msgid "Quotes"
12866
  msgstr "متن نقل قول"
12867
 
12868
- #: includes/general-functions.php:2298
12869
  #, fuzzy
12870
  msgctxt "post format archive title"
12871
  msgid "Links"
12872
  msgstr "پیوند"
12873
 
12874
- #: includes/general-functions.php:2300
12875
  msgctxt "post format archive title"
12876
  msgid "Statuses"
12877
  msgstr ""
12878
 
12879
- #: includes/general-functions.php:2302
12880
  msgctxt "post format archive title"
12881
  msgid "Audio"
12882
  msgstr ""
12883
 
12884
- #: includes/general-functions.php:2304
12885
  msgctxt "post format archive title"
12886
  msgid "Chats"
12887
  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-11-08 09:19:55+00:00\n"
6
  "PO-Revision-Date: 2016-11-09 12:50+0330\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
95
  #: includes/classes/class-auxin-demo-importer.php:192
96
  #: includes/classes/class-auxin-welcome.php:1234
97
  #: includes/classes/class-auxin-welcome.php:1269
98
+ #: includes/classes/class-auxin-welcome.php:1637
99
  msgid "Close"
100
  msgstr ""
101
 
356
  msgstr ""
357
 
358
  #: admin/includes/classes/class-auxin-notices.php:186
359
+ #: includes/classes/class-auxin-welcome.php:1689
360
+ #: includes/classes/class-auxin-welcome.php:1718
361
+ #: includes/classes/class-auxin-welcome.php:1793
362
  msgid "Skip"
363
  msgstr ""
364
 
1928
 
1929
  #: includes/classes/class-auxels-admin-assets.php:67
1930
  #: includes/classes/class-auxin-welcome.php:1310
1931
+ #: includes/classes/class-auxin-welcome.php:1437
1932
+ #: includes/classes/class-auxin-welcome.php:1746
1933
+ #: includes/classes/class-auxin-welcome.php:1816
1934
  #, fuzzy
1935
  msgid "Continue"
1936
  msgstr "دربرگیرنده"
1937
 
1938
  #: includes/classes/class-auxels-admin-assets.php:68
1939
  #: includes/classes/class-auxin-welcome.php:522
1940
+ #: includes/classes/class-auxin-welcome.php:1512
1941
  #, fuzzy
1942
  msgid "Install Plugins"
1943
  msgstr "افزونه های فعال"
1944
 
1945
  #: includes/classes/class-auxels-admin-assets.php:69
1946
+ #: includes/classes/class-auxin-welcome.php:1603
1947
  #, fuzzy
1948
  msgid "Import Content"
1949
  msgstr "محتوای جعبه ای"
2106
  msgstr ""
2107
 
2108
  #: includes/classes/class-auxin-demo-importer.php:293
2109
+ #: includes/classes/class-auxin-demo-importer.php:1260
2110
  msgid "Importing Users"
2111
  msgstr ""
2112
 
2137
  msgid "Importing Sliders"
2138
  msgstr ""
2139
 
2140
+ #: includes/classes/class-auxin-demo-importer.php:1323
2141
  msgid "Preparing Site ..."
2142
  msgstr ""
2143
 
2144
+ #: includes/classes/class-auxin-demo-importer.php:1342
2145
  msgid "All steps are successful"
2146
  msgstr ""
2147
 
2399
  #: includes/classes/class-auxin-walker-nav-menu-back.php:384
2400
  #: includes/classes/class-auxin-welcome.php:1313
2401
  #: includes/classes/class-auxin-welcome.php:1341
2402
+ #: includes/classes/class-auxin-welcome.php:1440
2403
+ #: includes/classes/class-auxin-welcome.php:1514
2404
+ #: includes/classes/class-auxin-welcome.php:1605
2405
+ #: includes/classes/class-auxin-welcome.php:1748
2406
  msgid "Cancel"
2407
  msgstr ""
2408
 
2623
  #: includes/classes/class-auxin-welcome.php:829
2624
  #: includes/classes/class-auxin-welcome.php:943
2625
  #: includes/classes/class-auxin-welcome.php:1231
2626
+ #: includes/classes/class-auxin-welcome.php:1634
2627
  msgid "Preview"
2628
  msgstr ""
2629
 
2677
 
2678
  #: includes/classes/class-auxin-welcome.php:1066
2679
  #: includes/classes/class-auxin-welcome.php:1096
2680
+ #: includes/classes/class-auxin-welcome.php:1488
2681
  msgid "Ready to update"
2682
  msgstr ""
2683
 
2730
  msgstr ""
2731
 
2732
  #: includes/classes/class-auxin-welcome.php:1347
2733
+ #: includes/classes/class-auxin-welcome.php:1611
2734
  msgid "Please wait, this may take several minutes .."
2735
  msgstr ""
2736
 
2737
+ #: includes/classes/class-auxin-welcome.php:1413
2738
  msgid "An error occurred!"
2739
  msgstr ""
2740
 
2741
+ #: includes/classes/class-auxin-welcome.php:1415
2742
  msgid "Method not exist!"
2743
  msgstr ""
2744
 
2745
+ #: includes/classes/class-auxin-welcome.php:1429
2746
+ #: includes/classes/class-auxin-welcome.php:1465
2747
  msgid "Required Plugins for this demo."
2748
  msgstr ""
2749
 
2750
+ #: includes/classes/class-auxin-welcome.php:1431
2751
  msgid ""
2752
  "For better and faster install process it's recommended to install demo on a "
2753
  "clean WordPress website."
2754
  msgstr ""
2755
 
2756
+ #: includes/classes/class-auxin-welcome.php:1466
2757
  msgid "The following plugins are required to be installed for this demo."
2758
  msgstr ""
2759
 
2760
+ #: includes/classes/class-auxin-welcome.php:1480
2761
  #, fuzzy
2762
  msgid "Ready to install"
2763
  msgstr "تکرار افقی"
2764
 
2765
+ #: includes/classes/class-auxin-welcome.php:1484
2766
  #, fuzzy
2767
  msgid "Not activated"
2768
  msgstr "اصلا"
2769
 
2770
+ #: includes/classes/class-auxin-welcome.php:1530
2771
  msgid "Import Demo Content of Phlox Theme."
2772
  msgstr ""
2773
 
2774
+ #: includes/classes/class-auxin-welcome.php:1535
2775
  msgid "Complete pre-build Website"
2776
  msgstr ""
2777
 
2778
+ #: includes/classes/class-auxin-welcome.php:1540
2779
  #, fuzzy
2780
  msgid "Import media (images, videos, etc.)"
2781
  msgstr "نمایش رسانه های نوشته (تصویر، ویدیو، غیره)"
2782
 
2783
+ #: includes/classes/class-auxin-welcome.php:1547
2784
  msgid "Selected Data Only"
2785
  msgstr ""
2786
 
2787
+ #: includes/classes/class-auxin-welcome.php:1553
2788
  #, fuzzy
2789
  msgid "Posts/Pages"
2790
  msgstr "نوشته ها"
2791
 
2792
+ #: includes/classes/class-auxin-welcome.php:1558
2793
  #, fuzzy
2794
  msgid "Media"
2795
  msgstr "متوسط"
2796
 
2797
+ #: includes/classes/class-auxin-welcome.php:1563
2798
  #, fuzzy
2799
  msgid "Widgets"
2800
  msgstr "عنوان ابزارک"
2801
 
2802
+ #: includes/classes/class-auxin-welcome.php:1570
2803
  msgid "Menus"
2804
  msgstr ""
2805
 
2806
+ #: includes/classes/class-auxin-welcome.php:1575
2807
  #, fuzzy
2808
  msgid "Theme Options"
2809
  msgstr "تنظیمات طراحی"
2810
 
2811
+ #: includes/classes/class-auxin-welcome.php:1580
2812
  msgid "MasterSlider (If Available)"
2813
  msgstr ""
2814
 
2815
+ #: includes/classes/class-auxin-welcome.php:1590
2816
  msgid "Importing Demo Content is in Progress..."
2817
  msgstr ""
2818
 
2819
+ #: includes/classes/class-auxin-welcome.php:1591
2820
  msgid ""
2821
  "This process may take 5 to 10 minutes to complete, please do not close or "
2822
  "refresh this page."
2823
  msgstr ""
2824
 
2825
+ #: includes/classes/class-auxin-welcome.php:1625
2826
  msgid "Congratulations!"
2827
  msgstr ""
2828
 
2829
+ #: includes/classes/class-auxin-welcome.php:1626
2830
  msgid "Demo has been successfully imported."
2831
  msgstr ""
2832
 
2833
+ #: includes/classes/class-auxin-welcome.php:1631
2834
  #, fuzzy
2835
  msgid "Customize"
2836
  msgstr "تصویر دلخواه"
2837
 
2838
+ #: includes/classes/class-auxin-welcome.php:1648
2839
  #, fuzzy
2840
  msgid "Importing page content ..."
2841
  msgstr "تراز تصویر در محتوا."
2842
 
2843
+ #: includes/classes/class-auxin-welcome.php:1672
2844
  msgid "Remove Watermarks?"
2845
  msgstr ""
2846
 
2847
+ #: includes/classes/class-auxin-welcome.php:1673
2848
  msgid ""
2849
  "Some images in this demo are copyrighted and watermarked, you can remove "
2850
  "watermarks by authorizing your Envato Elements subscription."
2851
  msgstr ""
2852
 
2853
+ #: includes/classes/class-auxin-welcome.php:1687
2854
  msgid "Remove Watermarks"
2855
  msgstr ""
2856
 
2857
+ #: includes/classes/class-auxin-welcome.php:1702
2858
  msgid "Remove watermarks by authorizing your Envato Elements subscription"
2859
  msgstr ""
2860
 
2861
+ #: includes/classes/class-auxin-welcome.php:1703
2862
  msgid ""
2863
  "By subscribing to Envato Elements you will have access to unlimited premium "
2864
  "stock images, icons, graphical assets, videos and more."
2865
  msgstr ""
2866
 
2867
+ #: includes/classes/class-auxin-welcome.php:1705
2868
  msgid "Explore and Subscribe"
2869
  msgstr ""
2870
 
2871
+ #: includes/classes/class-auxin-welcome.php:1713
2872
  msgid "Already an Envato Elements member?"
2873
  msgstr ""
2874
 
2875
+ #: includes/classes/class-auxin-welcome.php:1713
2876
  msgid "Activate here"
2877
  msgstr ""
2878
 
2879
+ #: includes/classes/class-auxin-welcome.php:1731
2880
+ #: includes/classes/class-auxin-welcome.php:1761
2881
  msgid "Verify Your Envato Elements Subscription"
2882
  msgstr ""
2883
 
2884
+ #: includes/classes/class-auxin-welcome.php:1732
2885
  msgid "Enter your email below and click continue button"
2886
  msgstr ""
2887
 
2888
+ #: includes/classes/class-auxin-welcome.php:1734
2889
  #, fuzzy
2890
  msgid "Enter your email"
2891
  msgstr "برچسب آیتم زبانه را وارد کنید."
2892
 
2893
+ #: includes/classes/class-auxin-welcome.php:1762
2894
  msgid "Enter your token below to verify your Subscription"
2895
  msgstr ""
2896
 
2897
+ #: includes/classes/class-auxin-welcome.php:1764
2898
  #, fuzzy
2899
  msgid "Enter token here"
2900
  msgstr "برچسب دکمه را وارد کنید."
2901
 
2902
+ #: includes/classes/class-auxin-welcome.php:1776
2903
  msgid "How to generate a token ?"
2904
  msgstr ""
2905
 
2906
+ #: includes/classes/class-auxin-welcome.php:1777
2907
  msgid "Don't have subscription?"
2908
  msgstr ""
2909
 
2910
+ #: includes/classes/class-auxin-welcome.php:1787
2911
  msgid "Verify Token"
2912
  msgstr ""
2913
 
2914
+ #: includes/classes/class-auxin-welcome.php:1806
2915
+ msgid "Succeed"
2916
+ msgstr ""
2917
+
2918
+ #: includes/classes/class-auxin-welcome.php:1807
2919
+ msgid ""
2920
+ "Congratulations! you have successfully authorized your Envato Elements "
2921
+ "subscription."
2922
+ msgstr ""
2923
+
2924
  #: includes/classes/class-auxin-widget-shortcode-map.php:308
2925
  #, fuzzy
2926
  msgid "CSS"
11862
  msgstr ""
11863
 
11864
  #. translators: %s: Search term.
11865
+ #: includes/general-functions.php:2243
11866
  msgid "Search Results for: %s"
11867
  msgstr ""
11868
 
11869
  #. translators: %s is the page number.
11870
+ #: includes/general-functions.php:2247
11871
  msgid "&nbsp;&ndash; Page %s"
11872
  msgstr ""
11873
 
11874
  #. translators: Category archive title. 1: Category name
11875
+ #: includes/general-functions.php:2254
11876
  #, fuzzy
11877
  msgid "Category: %s"
11878
  msgstr "دسته 1"
11879
 
11880
  #. translators: Tag archive title. 1: Tag name
11881
+ #: includes/general-functions.php:2260
11882
  msgid "Tag: %s"
11883
  msgstr ""
11884
 
11885
  #. translators: Author archive title. 1: Author name
11886
+ #: includes/general-functions.php:2267
11887
  #, fuzzy
11888
  msgid "Author: %s"
11889
  msgstr "نویسنده"
11890
 
11891
  #. translators: Yearly archive title. 1: Year
11892
+ #: includes/general-functions.php:2274
11893
  msgid "Year: %s"
11894
  msgstr ""
11895
 
11896
  #. translators: Monthly archive title. 1: Month name and year
11897
+ #: includes/general-functions.php:2281
11898
  msgid "Month: %s"
11899
  msgstr ""
11900
 
11901
  #. translators: Daily archive title. 1: Date
11902
+ #: includes/general-functions.php:2288
11903
  msgid "Day: %s"
11904
  msgstr ""
11905
 
11906
  #. translators: Post type archive title. 1: Post type name
11907
+ #: includes/general-functions.php:2315
11908
  msgid "Archives: %s"
11909
  msgstr ""
11910
 
11911
  #. translators: Taxonomy term archive title. 1: Taxonomy singular name, 2:
11912
  #. Current taxonomy term
11913
+ #: includes/general-functions.php:2323
11914
  msgid "%1$s: %2$s"
11915
  msgstr ""
11916
 
11917
+ #: includes/general-functions.php:2326
11918
  msgid "Page Not Found"
11919
  msgstr ""
11920
 
11921
+ #: includes/general-functions.php:2491
11922
  #, fuzzy
11923
  msgid "Select Page"
11924
  msgstr "تراز شکلک را انتخاب کنید."
12832
  msgid "http://averta.net"
12833
  msgstr "http://averta.net"
12834
 
12835
+ #: includes/general-functions.php:2270
12836
  msgctxt "yearly archives date format"
12837
  msgid "Y"
12838
  msgstr ""
12839
 
12840
+ #: includes/general-functions.php:2277
12841
  msgctxt "monthly archives date format"
12842
  msgid "F Y"
12843
  msgstr ""
12844
 
12845
+ #: includes/general-functions.php:2284
12846
  msgctxt "daily archives date format"
12847
  msgid "F j, Y"
12848
  msgstr ""
12849
 
12850
+ #: includes/general-functions.php:2292
12851
  msgctxt "post format archive title"
12852
  msgid "Asides"
12853
  msgstr ""
12854
 
12855
+ #: includes/general-functions.php:2294
12856
  #, fuzzy
12857
  msgctxt "post format archive title"
12858
  msgid "Galleries"
12859
  msgstr "گالری ها"
12860
 
12861
+ #: includes/general-functions.php:2296
12862
  #, fuzzy
12863
  msgctxt "post format archive title"
12864
  msgid "Images"
12865
  msgstr "تصاویر"
12866
 
12867
+ #: includes/general-functions.php:2298
12868
  #, fuzzy
12869
  msgctxt "post format archive title"
12870
  msgid "Videos"
12871
  msgstr "پوستر ویدیو"
12872
 
12873
+ #: includes/general-functions.php:2300
12874
  #, fuzzy
12875
  msgctxt "post format archive title"
12876
  msgid "Quotes"
12877
  msgstr "متن نقل قول"
12878
 
12879
+ #: includes/general-functions.php:2302
12880
  #, fuzzy
12881
  msgctxt "post format archive title"
12882
  msgid "Links"
12883
  msgstr "پیوند"
12884
 
12885
+ #: includes/general-functions.php:2304
12886
  msgctxt "post format archive title"
12887
  msgid "Statuses"
12888
  msgstr ""
12889
 
12890
+ #: includes/general-functions.php:2306
12891
  msgctxt "post format archive title"
12892
  msgid "Audio"
12893
  msgstr ""
12894
 
12895
+ #: includes/general-functions.php:2308
12896
  msgctxt "post format archive title"
12897
  msgid "Chats"
12898
  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.1\n"
5
  "Report-Msgid-Bugs-To: http://averta.net/phlox/wordpress-theme/\n"
6
- "POT-Creation-Date: 2020-10-24 13:58:00+00:00\n"
7
  "MIME-Version: 1.0\n"
8
  "Content-Type: text/plain; charset=utf-8\n"
9
  "Content-Transfer-Encoding: 8bit\n"
@@ -97,7 +97,7 @@ msgstr ""
97
  #: includes/classes/class-auxin-demo-importer.php:192
98
  #: includes/classes/class-auxin-welcome.php:1234
99
  #: includes/classes/class-auxin-welcome.php:1269
100
- #: includes/classes/class-auxin-welcome.php:1633
101
  msgid "Close"
102
  msgstr ""
103
 
@@ -338,9 +338,9 @@ msgid "You need to enter a unique id for notice."
338
  msgstr ""
339
 
340
  #: admin/includes/classes/class-auxin-notices.php:186
341
- #: includes/classes/class-auxin-welcome.php:1685
342
- #: includes/classes/class-auxin-welcome.php:1714
343
- #: includes/classes/class-auxin-welcome.php:1789
344
  msgid "Skip"
345
  msgstr ""
346
 
@@ -1802,19 +1802,20 @@ msgstr ""
1802
 
1803
  #: includes/classes/class-auxels-admin-assets.php:67
1804
  #: includes/classes/class-auxin-welcome.php:1310
1805
- #: includes/classes/class-auxin-welcome.php:1433
1806
- #: includes/classes/class-auxin-welcome.php:1742
 
1807
  msgid "Continue"
1808
  msgstr ""
1809
 
1810
  #: includes/classes/class-auxels-admin-assets.php:68
1811
  #: includes/classes/class-auxin-welcome.php:522
1812
- #: includes/classes/class-auxin-welcome.php:1508
1813
  msgid "Install Plugins"
1814
  msgstr ""
1815
 
1816
  #: includes/classes/class-auxels-admin-assets.php:69
1817
- #: includes/classes/class-auxin-welcome.php:1599
1818
  msgid "Import Content"
1819
  msgstr ""
1820
 
@@ -1965,7 +1966,7 @@ msgid "Importing Media"
1965
  msgstr ""
1966
 
1967
  #: includes/classes/class-auxin-demo-importer.php:293
1968
- #: includes/classes/class-auxin-demo-importer.php:1250
1969
  msgid "Importing Users"
1970
  msgstr ""
1971
 
@@ -1995,11 +1996,11 @@ msgstr ""
1995
  msgid "Importing Sliders"
1996
  msgstr ""
1997
 
1998
- #: includes/classes/class-auxin-demo-importer.php:1313
1999
  msgid "Preparing Site ..."
2000
  msgstr ""
2001
 
2002
- #: includes/classes/class-auxin-demo-importer.php:1332
2003
  msgid "All steps are successful"
2004
  msgstr ""
2005
 
@@ -2243,10 +2244,10 @@ msgstr ""
2243
  #: includes/classes/class-auxin-walker-nav-menu-back.php:384
2244
  #: includes/classes/class-auxin-welcome.php:1313
2245
  #: includes/classes/class-auxin-welcome.php:1341
2246
- #: includes/classes/class-auxin-welcome.php:1436
2247
- #: includes/classes/class-auxin-welcome.php:1510
2248
- #: includes/classes/class-auxin-welcome.php:1601
2249
- #: includes/classes/class-auxin-welcome.php:1744
2250
  msgid "Cancel"
2251
  msgstr ""
2252
 
@@ -2456,7 +2457,7 @@ msgstr ""
2456
  #: includes/classes/class-auxin-welcome.php:829
2457
  #: includes/classes/class-auxin-welcome.php:943
2458
  #: includes/classes/class-auxin-welcome.php:1231
2459
- #: includes/classes/class-auxin-welcome.php:1630
2460
  msgid "Preview"
2461
  msgstr ""
2462
 
@@ -2508,7 +2509,7 @@ msgstr ""
2508
 
2509
  #: includes/classes/class-auxin-welcome.php:1066
2510
  #: includes/classes/class-auxin-welcome.php:1096
2511
- #: includes/classes/class-auxin-welcome.php:1484
2512
  msgid "Ready to update"
2513
  msgstr ""
2514
 
@@ -2560,176 +2561,186 @@ msgid "Are you sure you want to uninstall this demo?"
2560
  msgstr ""
2561
 
2562
  #: includes/classes/class-auxin-welcome.php:1347
2563
- #: includes/classes/class-auxin-welcome.php:1607
2564
  msgid "Please wait, this may take several minutes .."
2565
  msgstr ""
2566
 
2567
- #: includes/classes/class-auxin-welcome.php:1409
2568
  msgid "An error occurred!"
2569
  msgstr ""
2570
 
2571
- #: includes/classes/class-auxin-welcome.php:1411
2572
  msgid "Method not exist!"
2573
  msgstr ""
2574
 
2575
- #: includes/classes/class-auxin-welcome.php:1425
2576
- #: includes/classes/class-auxin-welcome.php:1461
2577
  msgid "Required Plugins for this demo."
2578
  msgstr ""
2579
 
2580
- #: includes/classes/class-auxin-welcome.php:1427
2581
  msgid ""
2582
  "For better and faster install process it's recommended to install demo on a "
2583
  "clean WordPress website."
2584
  msgstr ""
2585
 
2586
- #: includes/classes/class-auxin-welcome.php:1462
2587
  msgid "The following plugins are required to be installed for this demo."
2588
  msgstr ""
2589
 
2590
- #: includes/classes/class-auxin-welcome.php:1476
2591
  msgid "Ready to install"
2592
  msgstr ""
2593
 
2594
- #: includes/classes/class-auxin-welcome.php:1480
2595
  msgid "Not activated"
2596
  msgstr ""
2597
 
2598
- #: includes/classes/class-auxin-welcome.php:1526
2599
  msgid "Import Demo Content of Phlox Theme."
2600
  msgstr ""
2601
 
2602
- #: includes/classes/class-auxin-welcome.php:1531
2603
  msgid "Complete pre-build Website"
2604
  msgstr ""
2605
 
2606
- #: includes/classes/class-auxin-welcome.php:1536
2607
  msgid "Import media (images, videos, etc.)"
2608
  msgstr ""
2609
 
2610
- #: includes/classes/class-auxin-welcome.php:1543
2611
  msgid "Selected Data Only"
2612
  msgstr ""
2613
 
2614
- #: includes/classes/class-auxin-welcome.php:1549
2615
  msgid "Posts/Pages"
2616
  msgstr ""
2617
 
2618
- #: includes/classes/class-auxin-welcome.php:1554
2619
  msgid "Media"
2620
  msgstr ""
2621
 
2622
- #: includes/classes/class-auxin-welcome.php:1559
2623
  msgid "Widgets"
2624
  msgstr ""
2625
 
2626
- #: includes/classes/class-auxin-welcome.php:1566
2627
  msgid "Menus"
2628
  msgstr ""
2629
 
2630
- #: includes/classes/class-auxin-welcome.php:1571
2631
  msgid "Theme Options"
2632
  msgstr ""
2633
 
2634
- #: includes/classes/class-auxin-welcome.php:1576
2635
  msgid "MasterSlider (If Available)"
2636
  msgstr ""
2637
 
2638
- #: includes/classes/class-auxin-welcome.php:1586
2639
  msgid "Importing Demo Content is in Progress..."
2640
  msgstr ""
2641
 
2642
- #: includes/classes/class-auxin-welcome.php:1587
2643
  msgid ""
2644
  "This process may take 5 to 10 minutes to complete, please do not close or "
2645
  "refresh this page."
2646
  msgstr ""
2647
 
2648
- #: includes/classes/class-auxin-welcome.php:1621
2649
  msgid "Congratulations!"
2650
  msgstr ""
2651
 
2652
- #: includes/classes/class-auxin-welcome.php:1622
2653
  msgid "Demo has been successfully imported."
2654
  msgstr ""
2655
 
2656
- #: includes/classes/class-auxin-welcome.php:1627
2657
  msgid "Customize"
2658
  msgstr ""
2659
 
2660
- #: includes/classes/class-auxin-welcome.php:1644
2661
  msgid "Importing page content ..."
2662
  msgstr ""
2663
 
2664
- #: includes/classes/class-auxin-welcome.php:1668
2665
  msgid "Remove Watermarks?"
2666
  msgstr ""
2667
 
2668
- #: includes/classes/class-auxin-welcome.php:1669
2669
  msgid ""
2670
  "Some images in this demo are copyrighted and watermarked, you can remove "
2671
  "watermarks by authorizing your Envato Elements subscription."
2672
  msgstr ""
2673
 
2674
- #: includes/classes/class-auxin-welcome.php:1683
2675
  msgid "Remove Watermarks"
2676
  msgstr ""
2677
 
2678
- #: includes/classes/class-auxin-welcome.php:1698
2679
  msgid "Remove watermarks by authorizing your Envato Elements subscription"
2680
  msgstr ""
2681
 
2682
- #: includes/classes/class-auxin-welcome.php:1699
2683
  msgid ""
2684
  "By subscribing to Envato Elements you will have access to unlimited premium "
2685
  "stock images, icons, graphical assets, videos and more."
2686
  msgstr ""
2687
 
2688
- #: includes/classes/class-auxin-welcome.php:1701
2689
  msgid "Explore and Subscribe"
2690
  msgstr ""
2691
 
2692
- #: includes/classes/class-auxin-welcome.php:1709
2693
  msgid "Already an Envato Elements member?"
2694
  msgstr ""
2695
 
2696
- #: includes/classes/class-auxin-welcome.php:1709
2697
  msgid "Activate here"
2698
  msgstr ""
2699
 
2700
- #: includes/classes/class-auxin-welcome.php:1727
2701
- #: includes/classes/class-auxin-welcome.php:1757
2702
  msgid "Verify Your Envato Elements Subscription"
2703
  msgstr ""
2704
 
2705
- #: includes/classes/class-auxin-welcome.php:1728
2706
  msgid "Enter your email below and click continue button"
2707
  msgstr ""
2708
 
2709
- #: includes/classes/class-auxin-welcome.php:1730
2710
  msgid "Enter your email"
2711
  msgstr ""
2712
 
2713
- #: includes/classes/class-auxin-welcome.php:1758
2714
  msgid "Enter your token below to verify your Subscription"
2715
  msgstr ""
2716
 
2717
- #: includes/classes/class-auxin-welcome.php:1760
2718
  msgid "Enter token here"
2719
  msgstr ""
2720
 
2721
- #: includes/classes/class-auxin-welcome.php:1772
2722
  msgid "How to generate a token ?"
2723
  msgstr ""
2724
 
2725
- #: includes/classes/class-auxin-welcome.php:1773
2726
  msgid "Don't have subscription?"
2727
  msgstr ""
2728
 
2729
- #: includes/classes/class-auxin-welcome.php:1783
2730
  msgid "Verify Token"
2731
  msgstr ""
2732
 
 
 
 
 
 
 
 
 
 
 
2733
  #: includes/classes/class-auxin-widget-shortcode-map.php:308
2734
  msgid "CSS"
2735
  msgstr ""
@@ -11111,62 +11122,62 @@ msgstr ""
11111
  msgid "Loading spinner (dark)"
11112
  msgstr ""
11113
 
11114
- #: includes/general-functions.php:2239
11115
  #. translators: %s: Search term.
11116
  msgid "Search Results for: %s"
11117
  msgstr ""
11118
 
11119
- #: includes/general-functions.php:2243
11120
  #. translators: %s is the page number.
11121
  msgid "&nbsp;&ndash; Page %s"
11122
  msgstr ""
11123
 
11124
- #: includes/general-functions.php:2250
11125
  #. translators: Category archive title. 1: Category name
11126
  msgid "Category: %s"
11127
  msgstr ""
11128
 
11129
- #: includes/general-functions.php:2256
11130
  #. translators: Tag archive title. 1: Tag name
11131
  msgid "Tag: %s"
11132
  msgstr ""
11133
 
11134
- #: includes/general-functions.php:2263
11135
  #. translators: Author archive title. 1: Author name
11136
  msgid "Author: %s"
11137
  msgstr ""
11138
 
11139
- #: includes/general-functions.php:2270
11140
  #. translators: Yearly archive title. 1: Year
11141
  msgid "Year: %s"
11142
  msgstr ""
11143
 
11144
- #: includes/general-functions.php:2277
11145
  #. translators: Monthly archive title. 1: Month name and year
11146
  msgid "Month: %s"
11147
  msgstr ""
11148
 
11149
- #: includes/general-functions.php:2284
11150
  #. translators: Daily archive title. 1: Date
11151
  msgid "Day: %s"
11152
  msgstr ""
11153
 
11154
- #: includes/general-functions.php:2311
11155
  #. translators: Post type archive title. 1: Post type name
11156
  msgid "Archives: %s"
11157
  msgstr ""
11158
 
11159
- #: includes/general-functions.php:2319
11160
  #. translators: Taxonomy term archive title. 1: Taxonomy singular name, 2:
11161
  #. Current taxonomy term
11162
  msgid "%1$s: %2$s"
11163
  msgstr ""
11164
 
11165
- #: includes/general-functions.php:2322
11166
  msgid "Page Not Found"
11167
  msgstr ""
11168
 
11169
- #: includes/general-functions.php:2487
11170
  msgid "Select Page"
11171
  msgstr ""
11172
 
@@ -12011,62 +12022,62 @@ msgstr ""
12011
  msgid "http://averta.net"
12012
  msgstr ""
12013
 
12014
- #: includes/general-functions.php:2266
12015
  msgctxt "yearly archives date format"
12016
  msgid "Y"
12017
  msgstr ""
12018
 
12019
- #: includes/general-functions.php:2273
12020
  msgctxt "monthly archives date format"
12021
  msgid "F Y"
12022
  msgstr ""
12023
 
12024
- #: includes/general-functions.php:2280
12025
  msgctxt "daily archives date format"
12026
  msgid "F j, Y"
12027
  msgstr ""
12028
 
12029
- #: includes/general-functions.php:2288
12030
  msgctxt "post format archive title"
12031
  msgid "Asides"
12032
  msgstr ""
12033
 
12034
- #: includes/general-functions.php:2290
12035
  msgctxt "post format archive title"
12036
  msgid "Galleries"
12037
  msgstr ""
12038
 
12039
- #: includes/general-functions.php:2292
12040
  msgctxt "post format archive title"
12041
  msgid "Images"
12042
  msgstr ""
12043
 
12044
- #: includes/general-functions.php:2294
12045
  msgctxt "post format archive title"
12046
  msgid "Videos"
12047
  msgstr ""
12048
 
12049
- #: includes/general-functions.php:2296
12050
  msgctxt "post format archive title"
12051
  msgid "Quotes"
12052
  msgstr ""
12053
 
12054
- #: includes/general-functions.php:2298
12055
  msgctxt "post format archive title"
12056
  msgid "Links"
12057
  msgstr ""
12058
 
12059
- #: includes/general-functions.php:2300
12060
  msgctxt "post format archive title"
12061
  msgid "Statuses"
12062
  msgstr ""
12063
 
12064
- #: includes/general-functions.php:2302
12065
  msgctxt "post format archive title"
12066
  msgid "Audio"
12067
  msgstr ""
12068
 
12069
- #: includes/general-functions.php:2304
12070
  msgctxt "post format archive title"
12071
  msgid "Chats"
12072
  msgstr ""
1
  # Averta Copyright (c) {2020}
2
  msgid ""
3
  msgstr ""
4
+ "Project-Id-Version: Phlox Core Elements 2.7.2\n"
5
  "Report-Msgid-Bugs-To: http://averta.net/phlox/wordpress-theme/\n"
6
+ "POT-Creation-Date: 2020-11-08 09:19:55+00:00\n"
7
  "MIME-Version: 1.0\n"
8
  "Content-Type: text/plain; charset=utf-8\n"
9
  "Content-Transfer-Encoding: 8bit\n"
97
  #: includes/classes/class-auxin-demo-importer.php:192
98
  #: includes/classes/class-auxin-welcome.php:1234
99
  #: includes/classes/class-auxin-welcome.php:1269
100
+ #: includes/classes/class-auxin-welcome.php:1637
101
  msgid "Close"
102
  msgstr ""
103
 
338
  msgstr ""
339
 
340
  #: admin/includes/classes/class-auxin-notices.php:186
341
+ #: includes/classes/class-auxin-welcome.php:1689
342
+ #: includes/classes/class-auxin-welcome.php:1718
343
+ #: includes/classes/class-auxin-welcome.php:1793
344
  msgid "Skip"
345
  msgstr ""
346
 
1802
 
1803
  #: includes/classes/class-auxels-admin-assets.php:67
1804
  #: includes/classes/class-auxin-welcome.php:1310
1805
+ #: includes/classes/class-auxin-welcome.php:1437
1806
+ #: includes/classes/class-auxin-welcome.php:1746
1807
+ #: includes/classes/class-auxin-welcome.php:1816
1808
  msgid "Continue"
1809
  msgstr ""
1810
 
1811
  #: includes/classes/class-auxels-admin-assets.php:68
1812
  #: includes/classes/class-auxin-welcome.php:522
1813
+ #: includes/classes/class-auxin-welcome.php:1512
1814
  msgid "Install Plugins"
1815
  msgstr ""
1816
 
1817
  #: includes/classes/class-auxels-admin-assets.php:69
1818
+ #: includes/classes/class-auxin-welcome.php:1603
1819
  msgid "Import Content"
1820
  msgstr ""
1821
 
1966
  msgstr ""
1967
 
1968
  #: includes/classes/class-auxin-demo-importer.php:293
1969
+ #: includes/classes/class-auxin-demo-importer.php:1260
1970
  msgid "Importing Users"
1971
  msgstr ""
1972
 
1996
  msgid "Importing Sliders"
1997
  msgstr ""
1998
 
1999
+ #: includes/classes/class-auxin-demo-importer.php:1323
2000
  msgid "Preparing Site ..."
2001
  msgstr ""
2002
 
2003
+ #: includes/classes/class-auxin-demo-importer.php:1342
2004
  msgid "All steps are successful"
2005
  msgstr ""
2006
 
2244
  #: includes/classes/class-auxin-walker-nav-menu-back.php:384
2245
  #: includes/classes/class-auxin-welcome.php:1313
2246
  #: includes/classes/class-auxin-welcome.php:1341
2247
+ #: includes/classes/class-auxin-welcome.php:1440
2248
+ #: includes/classes/class-auxin-welcome.php:1514
2249
+ #: includes/classes/class-auxin-welcome.php:1605
2250
+ #: includes/classes/class-auxin-welcome.php:1748
2251
  msgid "Cancel"
2252
  msgstr ""
2253
 
2457
  #: includes/classes/class-auxin-welcome.php:829
2458
  #: includes/classes/class-auxin-welcome.php:943
2459
  #: includes/classes/class-auxin-welcome.php:1231
2460
+ #: includes/classes/class-auxin-welcome.php:1634
2461
  msgid "Preview"
2462
  msgstr ""
2463
 
2509
 
2510
  #: includes/classes/class-auxin-welcome.php:1066
2511
  #: includes/classes/class-auxin-welcome.php:1096
2512
+ #: includes/classes/class-auxin-welcome.php:1488
2513
  msgid "Ready to update"
2514
  msgstr ""
2515
 
2561
  msgstr ""
2562
 
2563
  #: includes/classes/class-auxin-welcome.php:1347
2564
+ #: includes/classes/class-auxin-welcome.php:1611
2565
  msgid "Please wait, this may take several minutes .."
2566
  msgstr ""
2567
 
2568
+ #: includes/classes/class-auxin-welcome.php:1413
2569
  msgid "An error occurred!"
2570
  msgstr ""
2571
 
2572
+ #: includes/classes/class-auxin-welcome.php:1415
2573
  msgid "Method not exist!"
2574
  msgstr ""
2575
 
2576
+ #: includes/classes/class-auxin-welcome.php:1429
2577
+ #: includes/classes/class-auxin-welcome.php:1465
2578
  msgid "Required Plugins for this demo."
2579
  msgstr ""
2580
 
2581
+ #: includes/classes/class-auxin-welcome.php:1431
2582
  msgid ""
2583
  "For better and faster install process it's recommended to install demo on a "
2584
  "clean WordPress website."
2585
  msgstr ""
2586
 
2587
+ #: includes/classes/class-auxin-welcome.php:1466
2588
  msgid "The following plugins are required to be installed for this demo."
2589
  msgstr ""
2590
 
2591
+ #: includes/classes/class-auxin-welcome.php:1480
2592
  msgid "Ready to install"
2593
  msgstr ""
2594
 
2595
+ #: includes/classes/class-auxin-welcome.php:1484
2596
  msgid "Not activated"
2597
  msgstr ""
2598
 
2599
+ #: includes/classes/class-auxin-welcome.php:1530
2600
  msgid "Import Demo Content of Phlox Theme."
2601
  msgstr ""
2602
 
2603
+ #: includes/classes/class-auxin-welcome.php:1535
2604
  msgid "Complete pre-build Website"
2605
  msgstr ""
2606
 
2607
+ #: includes/classes/class-auxin-welcome.php:1540
2608
  msgid "Import media (images, videos, etc.)"
2609
  msgstr ""
2610
 
2611
+ #: includes/classes/class-auxin-welcome.php:1547
2612
  msgid "Selected Data Only"
2613
  msgstr ""
2614
 
2615
+ #: includes/classes/class-auxin-welcome.php:1553
2616
  msgid "Posts/Pages"
2617
  msgstr ""
2618
 
2619
+ #: includes/classes/class-auxin-welcome.php:1558
2620
  msgid "Media"
2621
  msgstr ""
2622
 
2623
+ #: includes/classes/class-auxin-welcome.php:1563
2624
  msgid "Widgets"
2625
  msgstr ""
2626
 
2627
+ #: includes/classes/class-auxin-welcome.php:1570
2628
  msgid "Menus"
2629
  msgstr ""
2630
 
2631
+ #: includes/classes/class-auxin-welcome.php:1575
2632
  msgid "Theme Options"
2633
  msgstr ""
2634
 
2635
+ #: includes/classes/class-auxin-welcome.php:1580
2636
  msgid "MasterSlider (If Available)"
2637
  msgstr ""
2638
 
2639
+ #: includes/classes/class-auxin-welcome.php:1590
2640
  msgid "Importing Demo Content is in Progress..."
2641
  msgstr ""
2642
 
2643
+ #: includes/classes/class-auxin-welcome.php:1591
2644
  msgid ""
2645
  "This process may take 5 to 10 minutes to complete, please do not close or "
2646
  "refresh this page."
2647
  msgstr ""
2648
 
2649
+ #: includes/classes/class-auxin-welcome.php:1625
2650
  msgid "Congratulations!"
2651
  msgstr ""
2652
 
2653
+ #: includes/classes/class-auxin-welcome.php:1626
2654
  msgid "Demo has been successfully imported."
2655
  msgstr ""
2656
 
2657
+ #: includes/classes/class-auxin-welcome.php:1631
2658
  msgid "Customize"
2659
  msgstr ""
2660
 
2661
+ #: includes/classes/class-auxin-welcome.php:1648
2662
  msgid "Importing page content ..."
2663
  msgstr ""
2664
 
2665
+ #: includes/classes/class-auxin-welcome.php:1672
2666
  msgid "Remove Watermarks?"
2667
  msgstr ""
2668
 
2669
+ #: includes/classes/class-auxin-welcome.php:1673
2670
  msgid ""
2671
  "Some images in this demo are copyrighted and watermarked, you can remove "
2672
  "watermarks by authorizing your Envato Elements subscription."
2673
  msgstr ""
2674
 
2675
+ #: includes/classes/class-auxin-welcome.php:1687
2676
  msgid "Remove Watermarks"
2677
  msgstr ""
2678
 
2679
+ #: includes/classes/class-auxin-welcome.php:1702
2680
  msgid "Remove watermarks by authorizing your Envato Elements subscription"
2681
  msgstr ""
2682
 
2683
+ #: includes/classes/class-auxin-welcome.php:1703
2684
  msgid ""
2685
  "By subscribing to Envato Elements you will have access to unlimited premium "
2686
  "stock images, icons, graphical assets, videos and more."
2687
  msgstr ""
2688
 
2689
+ #: includes/classes/class-auxin-welcome.php:1705
2690
  msgid "Explore and Subscribe"
2691
  msgstr ""
2692
 
2693
+ #: includes/classes/class-auxin-welcome.php:1713
2694
  msgid "Already an Envato Elements member?"
2695
  msgstr ""
2696
 
2697
+ #: includes/classes/class-auxin-welcome.php:1713
2698
  msgid "Activate here"
2699
  msgstr ""
2700
 
2701
+ #: includes/classes/class-auxin-welcome.php:1731
2702
+ #: includes/classes/class-auxin-welcome.php:1761
2703
  msgid "Verify Your Envato Elements Subscription"
2704
  msgstr ""
2705
 
2706
+ #: includes/classes/class-auxin-welcome.php:1732
2707
  msgid "Enter your email below and click continue button"
2708
  msgstr ""
2709
 
2710
+ #: includes/classes/class-auxin-welcome.php:1734
2711
  msgid "Enter your email"
2712
  msgstr ""
2713
 
2714
+ #: includes/classes/class-auxin-welcome.php:1762
2715
  msgid "Enter your token below to verify your Subscription"
2716
  msgstr ""
2717
 
2718
+ #: includes/classes/class-auxin-welcome.php:1764
2719
  msgid "Enter token here"
2720
  msgstr ""
2721
 
2722
+ #: includes/classes/class-auxin-welcome.php:1776
2723
  msgid "How to generate a token ?"
2724
  msgstr ""
2725
 
2726
+ #: includes/classes/class-auxin-welcome.php:1777
2727
  msgid "Don't have subscription?"
2728
  msgstr ""
2729
 
2730
+ #: includes/classes/class-auxin-welcome.php:1787
2731
  msgid "Verify Token"
2732
  msgstr ""
2733
 
2734
+ #: includes/classes/class-auxin-welcome.php:1806
2735
+ msgid "Succeed"
2736
+ msgstr ""
2737
+
2738
+ #: includes/classes/class-auxin-welcome.php:1807
2739
+ msgid ""
2740
+ "Congratulations! you have successfully authorized your Envato Elements "
2741
+ "subscription."
2742
+ msgstr ""
2743
+
2744
  #: includes/classes/class-auxin-widget-shortcode-map.php:308
2745
  msgid "CSS"
2746
  msgstr ""
11122
  msgid "Loading spinner (dark)"
11123
  msgstr ""
11124
 
11125
+ #: includes/general-functions.php:2243
11126
  #. translators: %s: Search term.
11127
  msgid "Search Results for: %s"
11128
  msgstr ""
11129
 
11130
+ #: includes/general-functions.php:2247
11131
  #. translators: %s is the page number.
11132
  msgid "&nbsp;&ndash; Page %s"
11133
  msgstr ""
11134
 
11135
+ #: includes/general-functions.php:2254
11136
  #. translators: Category archive title. 1: Category name
11137
  msgid "Category: %s"
11138
  msgstr ""
11139
 
11140
+ #: includes/general-functions.php:2260
11141
  #. translators: Tag archive title. 1: Tag name
11142
  msgid "Tag: %s"
11143
  msgstr ""
11144
 
11145
+ #: includes/general-functions.php:2267
11146
  #. translators: Author archive title. 1: Author name
11147
  msgid "Author: %s"
11148
  msgstr ""
11149
 
11150
+ #: includes/general-functions.php:2274
11151
  #. translators: Yearly archive title. 1: Year
11152
  msgid "Year: %s"
11153
  msgstr ""
11154
 
11155
+ #: includes/general-functions.php:2281
11156
  #. translators: Monthly archive title. 1: Month name and year
11157
  msgid "Month: %s"
11158
  msgstr ""
11159
 
11160
+ #: includes/general-functions.php:2288
11161
  #. translators: Daily archive title. 1: Date
11162
  msgid "Day: %s"
11163
  msgstr ""
11164
 
11165
+ #: includes/general-functions.php:2315
11166
  #. translators: Post type archive title. 1: Post type name
11167
  msgid "Archives: %s"
11168
  msgstr ""
11169
 
11170
+ #: includes/general-functions.php:2323
11171
  #. translators: Taxonomy term archive title. 1: Taxonomy singular name, 2:
11172
  #. Current taxonomy term
11173
  msgid "%1$s: %2$s"
11174
  msgstr ""
11175
 
11176
+ #: includes/general-functions.php:2326
11177
  msgid "Page Not Found"
11178
  msgstr ""
11179
 
11180
+ #: includes/general-functions.php:2491
11181
  msgid "Select Page"
11182
  msgstr ""
11183
 
12022
  msgid "http://averta.net"
12023
  msgstr ""
12024
 
12025
+ #: includes/general-functions.php:2270
12026
  msgctxt "yearly archives date format"
12027
  msgid "Y"
12028
  msgstr ""
12029
 
12030
+ #: includes/general-functions.php:2277
12031
  msgctxt "monthly archives date format"
12032
  msgid "F Y"
12033
  msgstr ""
12034
 
12035
+ #: includes/general-functions.php:2284
12036
  msgctxt "daily archives date format"
12037
  msgid "F j, Y"
12038
  msgstr ""
12039
 
12040
+ #: includes/general-functions.php:2292
12041
  msgctxt "post format archive title"
12042
  msgid "Asides"
12043
  msgstr ""
12044
 
12045
+ #: includes/general-functions.php:2294
12046
  msgctxt "post format archive title"
12047
  msgid "Galleries"
12048
  msgstr ""
12049
 
12050
+ #: includes/general-functions.php:2296
12051
  msgctxt "post format archive title"
12052
  msgid "Images"
12053
  msgstr ""
12054
 
12055
+ #: includes/general-functions.php:2298
12056
  msgctxt "post format archive title"
12057
  msgid "Videos"
12058
  msgstr ""
12059
 
12060
+ #: includes/general-functions.php:2300
12061
  msgctxt "post format archive title"
12062
  msgid "Quotes"
12063
  msgstr ""
12064
 
12065
+ #: includes/general-functions.php:2302
12066
  msgctxt "post format archive title"
12067
  msgid "Links"
12068
  msgstr ""
12069
 
12070
+ #: includes/general-functions.php:2304
12071
  msgctxt "post format archive title"
12072
  msgid "Statuses"
12073
  msgstr ""
12074
 
12075
+ #: includes/general-functions.php:2306
12076
  msgctxt "post format archive title"
12077
  msgid "Audio"
12078
  msgstr ""
12079
 
12080
+ #: includes/general-functions.php:2308
12081
  msgctxt "post format archive title"
12082
  msgid "Chats"
12083
  msgstr ""
public/assets/js/plugins.js CHANGED
@@ -1,4 +1,4 @@
1
- /*! Phlox Core Plugin - v2.7.1 (2020-10)
2
  * All required plugins
3
  * http://phlox.pro/
4
  */
1
+ /*! Phlox Core Plugin - v2.7.2 (2020-11)
2
  * All required plugins
3
  * http://phlox.pro/
4
  */