Version Description
Download this release
Release Info
Developer | averta |
Plugin | Shortcodes and extra features for Phlox theme |
Version | 2.6.1 |
Comparing to | |
See all releases |
Code changes from version 2.6.0 to 2.6.1
- README.txt +3 -2
- admin/assets/js/plugins.js +1 -1
- auxin-elements.php +1 -1
- includes/classes/class-auxin-demo-importer.php +8 -3
- includes/classes/class-auxin-welcome.php +16 -15
- includes/define.php +1 -1
- includes/elementor/widgets/modern-button.php +1 -0
- includes/elementor/widgets/theme-elements/modern-search.php +1 -0
- languages/auxin-elements.pot +184 -180
- public/assets/js/plugins.js +1 -1
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.4.3
|
10 |
-
Stable tag: 2.6.
|
11 |
License: GPLv3
|
12 |
License URI: http://www.gnu.org/licenses/gpl.html
|
13 |
|
@@ -436,4 +436,5 @@ Bugs can be reported in our [support forums](https://docs.phlox.pro).
|
|
436 |
|
437 |
== Upgrade Notice ==
|
438 |
|
439 |
-
= 2.
|
|
7 |
Requires PHP: 5.4
|
8 |
Requires at least: 4.6
|
9 |
Tested up to: 5.4.3
|
10 |
+
Stable tag: 2.6.1
|
11 |
License: GPLv3
|
12 |
License URI: http://www.gnu.org/licenses/gpl.html
|
13 |
|
436 |
|
437 |
== Upgrade Notice ==
|
438 |
|
439 |
+
= 2.6.1 =
|
440 |
+
- Minor bugs fixed.
|
admin/assets/js/plugins.js
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
/*! Phlox Core Plugin - v2.6.
|
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.6.1 (2020-07)
|
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.6.
|
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.6.1
|
16 |
* Author: averta
|
17 |
* Author URI: http://averta.net
|
18 |
* Text Domain: auxin-elements
|
includes/classes/class-auxin-demo-importer.php
CHANGED
@@ -313,8 +313,8 @@ class Auxin_Demo_Importer {
|
|
313 |
|
314 |
}
|
315 |
|
316 |
-
auxin_delete_transient( 'aux-old-products-id-transformation' );
|
317 |
$this->update_imported_ids();
|
|
|
318 |
if ( ! empty( $data['terms-meta'] ) ) {
|
319 |
$this->add_demo_terms_meta( $data['terms-meta'] );
|
320 |
}
|
@@ -829,6 +829,10 @@ class Auxin_Demo_Importer {
|
|
829 |
auxin_set_transient( "aux-elementor-library-{$post['ID']}-changs-to", $post_id, 48 * HOUR_IN_SECONDS );
|
830 |
}
|
831 |
|
|
|
|
|
|
|
|
|
832 |
if ( $post['post_type'] == 'page' ) {
|
833 |
auxin_set_transient( "aux-page-{$post['ID']}-changs-to", $post_id, 48 * HOUR_IN_SECONDS );
|
834 |
}
|
@@ -1091,12 +1095,13 @@ class Auxin_Demo_Importer {
|
|
1091 |
// Change products's id in flexible recent posts element
|
1092 |
preg_match_all( '/only_products__in":"[\d,]*/', $elementor_data, $product_id_strings, PREG_SET_ORDER );
|
1093 |
if ( ! empty( $product_id_strings ) ) {
|
|
|
1094 |
foreach ( $product_id_strings as $key => $product_id_string ) {
|
1095 |
$old_ids = str_replace( 'only_products__in":"', '', $product_id_string[0] );
|
1096 |
$old_ids = explode( ',', $old_ids );
|
1097 |
$new_id = [];
|
1098 |
foreach( $old_ids as $key => $id ) {
|
1099 |
-
$new_id[] =
|
1100 |
}
|
1101 |
$new_id = implode(',', $new_id );
|
1102 |
$new_product_id_string = 'only_products__in":"' . $new_id . '"';
|
@@ -1112,7 +1117,7 @@ class Auxin_Demo_Importer {
|
|
1112 |
$old_ids = explode( ',', $old_ids );
|
1113 |
$new_id = [];
|
1114 |
foreach( $old_ids as $key => $id ) {
|
1115 |
-
$new_id[] = auxin_get_transient( "aux-
|
1116 |
}
|
1117 |
$new_id = implode(',', $new_id );
|
1118 |
$new_post_id_string = 'only_posts__in":"' . $new_id . '"';
|
313 |
|
314 |
}
|
315 |
|
|
|
316 |
$this->update_imported_ids();
|
317 |
+
auxin_delete_transient( 'aux-old-products-id-transformation' );
|
318 |
if ( ! empty( $data['terms-meta'] ) ) {
|
319 |
$this->add_demo_terms_meta( $data['terms-meta'] );
|
320 |
}
|
829 |
auxin_set_transient( "aux-elementor-library-{$post['ID']}-changs-to", $post_id, 48 * HOUR_IN_SECONDS );
|
830 |
}
|
831 |
|
832 |
+
if ( $post['post_type'] == 'post' ) {
|
833 |
+
auxin_set_transient( "aux-post-{$post['ID']}-changs-to", $post_id, 48 * HOUR_IN_SECONDS );
|
834 |
+
}
|
835 |
+
|
836 |
if ( $post['post_type'] == 'page' ) {
|
837 |
auxin_set_transient( "aux-page-{$post['ID']}-changs-to", $post_id, 48 * HOUR_IN_SECONDS );
|
838 |
}
|
1095 |
// Change products's id in flexible recent posts element
|
1096 |
preg_match_all( '/only_products__in":"[\d,]*/', $elementor_data, $product_id_strings, PREG_SET_ORDER );
|
1097 |
if ( ! empty( $product_id_strings ) ) {
|
1098 |
+
$old_products_id = maybe_unserialize( auxin_get_transient( 'aux-old-products-id-transformation' ) );
|
1099 |
foreach ( $product_id_strings as $key => $product_id_string ) {
|
1100 |
$old_ids = str_replace( 'only_products__in":"', '', $product_id_string[0] );
|
1101 |
$old_ids = explode( ',', $old_ids );
|
1102 |
$new_id = [];
|
1103 |
foreach( $old_ids as $key => $id ) {
|
1104 |
+
$new_id[] = $old_products_id[ $id ];
|
1105 |
}
|
1106 |
$new_id = implode(',', $new_id );
|
1107 |
$new_product_id_string = 'only_products__in":"' . $new_id . '"';
|
1117 |
$old_ids = explode( ',', $old_ids );
|
1118 |
$new_id = [];
|
1119 |
foreach( $old_ids as $key => $id ) {
|
1120 |
+
$new_id[] = auxin_get_transient( "aux-post-{$id}-changs-to" );
|
1121 |
}
|
1122 |
$new_id = implode(',', $new_id );
|
1123 |
$new_post_id_string = 'only_posts__in":"' . $new_id . '"';
|
includes/classes/class-auxin-welcome.php
CHANGED
@@ -693,19 +693,22 @@ class Auxin_Welcome extends Auxin_Welcome_Base {
|
|
693 |
/*-----------------------------------------------------------------------------------*/
|
694 |
|
695 |
public function setup_templates(){
|
696 |
-
$
|
697 |
|
698 |
// Create subjects group by type
|
699 |
-
$
|
700 |
-
|
701 |
-
|
702 |
-
|
703 |
-
|
704 |
-
|
705 |
-
|
|
|
|
|
|
|
|
|
|
|
706 |
}
|
707 |
-
// Pass items to group type
|
708 |
-
$subjectsGroup[ $args['type'] ] = array_unique( array_merge( $subjectsGroup[ $args['type'] ], $categoryStack ), SORT_REGULAR );
|
709 |
}
|
710 |
|
711 |
$activeIsoGroup = get_option( 'aux_isotope_group_templates_kit', 'page' );
|
@@ -723,7 +726,7 @@ class Auxin_Welcome extends Auxin_Welcome_Base {
|
|
723 |
</div>
|
724 |
<div class="aux-isotope-filters-wrapper">
|
725 |
<?php
|
726 |
-
foreach ( $
|
727 |
?>
|
728 |
<ul class="aux-group-filter aux-grouping-<?php echo esc_attr( $type ); ?> <?php echo $activeIsoGroup !== $type ? 'aux-iso-hidden' : ''; ?>">
|
729 |
<li data-filter="all"><a href="#" class="aux-selected"><span data-select="<?php _e('Recent', 'auxin-elements'); ?>"><?php _e('Recent', 'auxin-elements'); ?></span></a></li>
|
@@ -745,10 +748,10 @@ class Auxin_Welcome extends Auxin_Welcome_Base {
|
|
745 |
|
746 |
<div class="aux-templates-list aux-grid-list aux-isotope-templates" data-search-filter="true" data-grouping="<?php echo esc_attr( $activeIsoGroup ); ?> ">
|
747 |
<?php
|
748 |
-
if( ! is_array( $
|
749 |
echo '<p class="aux-grid-item grid_12">'. __( 'An error occurred while downloading the list of templates. Please try again later.' ) .'</p>';
|
750 |
} else {
|
751 |
-
foreach ( $
|
752 |
|
753 |
// Collect plugin filters for current item
|
754 |
$filter_categories = '';
|
@@ -962,8 +965,6 @@ class Auxin_Welcome extends Auxin_Welcome_Base {
|
|
962 |
*/
|
963 |
public function get_demo_list( $type = 'demos', $url = 'http://demo.phlox.pro/api/v2/info/', $sanitize_key = 'auxin_cache_demo_library_items' ) {
|
964 |
|
965 |
-
// $url = 'http://demo.phlox.pro/api/?demo_list&demo=beta&key=averta_avtdph';
|
966 |
-
|
967 |
if( $type === 'templates' ){
|
968 |
$url = 'http://library.phlox.pro/info-api/';
|
969 |
$sanitize_key = 'auxin_cache_template_library_items';
|
693 |
/*-----------------------------------------------------------------------------------*/
|
694 |
|
695 |
public function setup_templates(){
|
696 |
+
$template_list = $this->get_demo_list( 'templates' );
|
697 |
|
698 |
// Create subjects group by type
|
699 |
+
$subjects_group = array();
|
700 |
+
|
701 |
+
if( $template_list ){
|
702 |
+
foreach ( $template_list['templates'] as $key => $args ) {
|
703 |
+
// Convert subject JSON to Array
|
704 |
+
$categoryStack = json_decode( $args['subject'], true );
|
705 |
+
// Set group type
|
706 |
+
if( ! isset( $subjects_group[ $args['type'] ] ) ) {
|
707 |
+
$subjects_group[ $args['type'] ] = array();
|
708 |
+
}
|
709 |
+
// Pass items to group type
|
710 |
+
$subjects_group[ $args['type'] ] = array_unique( array_merge( $subjects_group[ $args['type'] ], $categoryStack ), SORT_REGULAR );
|
711 |
}
|
|
|
|
|
712 |
}
|
713 |
|
714 |
$activeIsoGroup = get_option( 'aux_isotope_group_templates_kit', 'page' );
|
726 |
</div>
|
727 |
<div class="aux-isotope-filters-wrapper">
|
728 |
<?php
|
729 |
+
foreach ( $subjects_group as $type => $subjects ) {
|
730 |
?>
|
731 |
<ul class="aux-group-filter aux-grouping-<?php echo esc_attr( $type ); ?> <?php echo $activeIsoGroup !== $type ? 'aux-iso-hidden' : ''; ?>">
|
732 |
<li data-filter="all"><a href="#" class="aux-selected"><span data-select="<?php _e('Recent', 'auxin-elements'); ?>"><?php _e('Recent', 'auxin-elements'); ?></span></a></li>
|
748 |
|
749 |
<div class="aux-templates-list aux-grid-list aux-isotope-templates" data-search-filter="true" data-grouping="<?php echo esc_attr( $activeIsoGroup ); ?> ">
|
750 |
<?php
|
751 |
+
if( ! is_array( $template_list['templates'] ) ){
|
752 |
echo '<p class="aux-grid-item grid_12">'. __( 'An error occurred while downloading the list of templates. Please try again later.' ) .'</p>';
|
753 |
} else {
|
754 |
+
foreach ( $template_list['templates'] as $key => $args ) {
|
755 |
|
756 |
// Collect plugin filters for current item
|
757 |
$filter_categories = '';
|
965 |
*/
|
966 |
public function get_demo_list( $type = 'demos', $url = 'http://demo.phlox.pro/api/v2/info/', $sanitize_key = 'auxin_cache_demo_library_items' ) {
|
967 |
|
|
|
|
|
968 |
if( $type === 'templates' ){
|
969 |
$url = 'http://library.phlox.pro/info-api/';
|
970 |
$sanitize_key = 'auxin_cache_template_library_items';
|
includes/define.php
CHANGED
@@ -12,7 +12,7 @@ if( ! defined( 'THEME_NAME' ) ){
|
|
12 |
}
|
13 |
|
14 |
|
15 |
-
define( 'AUXELS_VERSION' , '2.6.
|
16 |
|
17 |
define( 'AUXELS_SLUG' , 'auxin-elements' );
|
18 |
|
12 |
}
|
13 |
|
14 |
|
15 |
+
define( 'AUXELS_VERSION' , '2.6.1' );
|
16 |
|
17 |
define( 'AUXELS_SLUG' , 'auxin-elements' );
|
18 |
|
includes/elementor/widgets/modern-button.php
CHANGED
@@ -218,6 +218,7 @@ class ModernButton extends Widget_Base {
|
|
218 |
'open_video_in_lightbox',
|
219 |
array(
|
220 |
'label' => __('Open Video in Lightbox','auxin-elements' ),
|
|
|
221 |
'type' => Controls_Manager::SWITCHER,
|
222 |
'label_on' => __( 'On', 'auxin-elements' ),
|
223 |
'label_off' => __( 'Off', 'auxin-elements' ),
|
218 |
'open_video_in_lightbox',
|
219 |
array(
|
220 |
'label' => __('Open Video in Lightbox','auxin-elements' ),
|
221 |
+
'description' => __( 'To use this option, the above link option should be a video', 'auxin-elements' ),
|
222 |
'type' => Controls_Manager::SWITCHER,
|
223 |
'label_on' => __( 'On', 'auxin-elements' ),
|
224 |
'label_off' => __( 'Off', 'auxin-elements' ),
|
includes/elementor/widgets/theme-elements/modern-search.php
CHANGED
@@ -900,6 +900,7 @@ class ModernSearch extends Widget_Base {
|
|
900 |
<form action="<?php echo esc_url( home_url( '/' ) ); ?>" method="get" >
|
901 |
<div class="aux-search-input-form">
|
902 |
<input type="text" class="aux-search-field" placeholder="<?php esc_attr_e('Search...', 'auxin-elements' ); ?>" name="s" autocomplete="off" data-post-types="<?php echo esc_attr ( wp_json_encode( $args['post_types'] ) ) ;?>" />
|
|
|
903 |
<?php if ( $args['display_cats'] ) { ;?>
|
904 |
<?php $this->render_category( ['post_types' => $args['post_types'] ] );?>
|
905 |
<?php };?>
|
900 |
<form action="<?php echo esc_url( home_url( '/' ) ); ?>" method="get" >
|
901 |
<div class="aux-search-input-form">
|
902 |
<input type="text" class="aux-search-field" placeholder="<?php esc_attr_e('Search...', 'auxin-elements' ); ?>" name="s" autocomplete="off" data-post-types="<?php echo esc_attr ( wp_json_encode( $args['post_types'] ) ) ;?>" />
|
903 |
+
<input type="hidden" name='post_type' value="<?php echo implode( ',', $args['post_types'] );?>">
|
904 |
<?php if ( $args['display_cats'] ) { ;?>
|
905 |
<?php $this->render_category( ['post_types' => $args['post_types'] ] );?>
|
906 |
<?php };?>
|
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.6.
|
5 |
"Report-Msgid-Bugs-To: http://averta.net/phlox/wordpress-theme/\n"
|
6 |
-
"POT-Creation-Date: 2020-07-
|
7 |
"MIME-Version: 1.0\n"
|
8 |
"Content-Type: text/plain; charset=utf-8\n"
|
9 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -59,8 +59,8 @@ msgid "It's OK."
|
|
59 |
msgstr ""
|
60 |
|
61 |
#: admin/includes/admin-ajax.php:198
|
62 |
-
#: includes/classes/class-auxin-welcome.php:
|
63 |
-
#: includes/classes/class-auxin-welcome.php:
|
64 |
msgid "Security Token Error!"
|
65 |
msgstr ""
|
66 |
|
@@ -95,9 +95,9 @@ msgstr ""
|
|
95 |
#: includes/classes/class-auxin-demo-importer.php:113
|
96 |
#: includes/classes/class-auxin-demo-importer.php:156
|
97 |
#: includes/classes/class-auxin-demo-importer.php:191
|
98 |
-
#: includes/classes/class-auxin-welcome.php:
|
99 |
-
#: includes/classes/class-auxin-welcome.php:
|
100 |
-
#: includes/classes/class-auxin-welcome.php:
|
101 |
msgid "Close"
|
102 |
msgstr ""
|
103 |
|
@@ -338,7 +338,7 @@ 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:
|
342 |
msgid "Skip"
|
343 |
msgstr ""
|
344 |
|
@@ -1230,7 +1230,7 @@ msgstr ""
|
|
1230 |
#: includes/elementor/widgets/icon.php:170
|
1231 |
#: includes/elementor/widgets/image.php:319
|
1232 |
#: includes/elementor/widgets/modern-button.php:184
|
1233 |
-
#: includes/elementor/widgets/modern-button.php:
|
1234 |
#: includes/elementor/widgets/quote.php:165
|
1235 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1614
|
1236 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1751
|
@@ -1298,7 +1298,7 @@ msgstr ""
|
|
1298 |
#: admin/includes/metaboxes/metabox-fields-general-header.php:707
|
1299 |
#: includes/elementor/widgets/button.php:163
|
1300 |
#: includes/elementor/widgets/divider.php:146
|
1301 |
-
#: includes/elementor/widgets/modern-button.php:
|
1302 |
#: includes/elementor/widgets/staff.php:755
|
1303 |
#: includes/elementor/widgets/text.php:1010 includes/elements/button.php:66
|
1304 |
#: includes/elements/divider.php:90 includes/elements/socials-list.php:63
|
@@ -1312,7 +1312,7 @@ msgstr ""
|
|
1312 |
#: includes/classes/class-auxin-svg-support.php:192
|
1313 |
#: includes/elementor/widgets/button.php:162
|
1314 |
#: includes/elementor/widgets/divider.php:145
|
1315 |
-
#: includes/elementor/widgets/modern-button.php:
|
1316 |
#: includes/elementor/widgets/staff.php:756
|
1317 |
#: includes/elementor/widgets/text.php:1009
|
1318 |
#: includes/elements/before-after.php:104 includes/elements/button.php:65
|
@@ -1327,7 +1327,7 @@ msgstr ""
|
|
1327 |
#: admin/includes/metaboxes/metabox-fields-general-header.php:709
|
1328 |
#: includes/classes/class-auxin-svg-support.php:193
|
1329 |
#: includes/elementor/widgets/button.php:161
|
1330 |
-
#: includes/elementor/widgets/modern-button.php:
|
1331 |
#: includes/elementor/widgets/staff.php:757
|
1332 |
#: includes/elementor/widgets/text.php:1008
|
1333 |
#: includes/elements/before-after.php:105 includes/elements/button.php:64
|
@@ -1390,7 +1390,7 @@ msgstr ""
|
|
1390 |
#: includes/elementor/widgets/custom-list.php:385
|
1391 |
#: includes/elementor/widgets/gallery.php:131
|
1392 |
#: includes/elementor/widgets/icon.php:125
|
1393 |
-
#: includes/elementor/widgets/modern-button.php:
|
1394 |
#: includes/elementor/widgets/quote.php:161
|
1395 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:130
|
1396 |
#: includes/elementor/widgets/recent-posts-tiles.php:130
|
@@ -1430,11 +1430,11 @@ msgstr ""
|
|
1430 |
#: includes/elementor/widgets/image.php:539
|
1431 |
#: includes/elementor/widgets/mailchimp.php:352
|
1432 |
#: includes/elementor/widgets/mailchimp.php:609
|
1433 |
-
#: includes/elementor/widgets/modern-button.php:
|
1434 |
-
#: includes/elementor/widgets/modern-button.php:
|
1435 |
-
#: includes/elementor/widgets/modern-button.php:
|
1436 |
-
#: includes/elementor/widgets/modern-button.php:
|
1437 |
-
#: includes/elementor/widgets/modern-button.php:
|
1438 |
#: includes/elementor/widgets/recent-comments.php:201
|
1439 |
#: includes/elementor/widgets/recent-comments.php:284
|
1440 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:997
|
@@ -1795,21 +1795,21 @@ msgid "Processing: Download"
|
|
1795 |
msgstr ""
|
1796 |
|
1797 |
#: includes/classes/class-auxels-admin-assets.php:67
|
1798 |
-
#: includes/classes/class-auxin-welcome.php:
|
1799 |
-
#: includes/classes/class-auxin-welcome.php:
|
1800 |
-
#: includes/classes/class-auxin-welcome.php:
|
1801 |
-
#: includes/classes/class-auxin-welcome.php:
|
1802 |
msgid "Continue"
|
1803 |
msgstr ""
|
1804 |
|
1805 |
#: includes/classes/class-auxels-admin-assets.php:68
|
1806 |
#: includes/classes/class-auxin-welcome.php:522
|
1807 |
-
#: includes/classes/class-auxin-welcome.php:
|
1808 |
msgid "Install Plugins"
|
1809 |
msgstr ""
|
1810 |
|
1811 |
#: includes/classes/class-auxels-admin-assets.php:69
|
1812 |
-
#: includes/classes/class-auxin-welcome.php:
|
1813 |
msgid "Import Content"
|
1814 |
msgstr ""
|
1815 |
|
@@ -1906,7 +1906,7 @@ msgstr ""
|
|
1906 |
|
1907 |
#: includes/classes/class-auxin-demo-importer.php:145
|
1908 |
#: includes/classes/class-auxin-demo-importer.php:164
|
1909 |
-
#: includes/classes/class-auxin-welcome.php:
|
1910 |
msgid "Copy to clipboard"
|
1911 |
msgstr ""
|
1912 |
|
@@ -1939,7 +1939,7 @@ msgid "Importing Media"
|
|
1939 |
msgstr ""
|
1940 |
|
1941 |
#: includes/classes/class-auxin-demo-importer.php:292
|
1942 |
-
#: includes/classes/class-auxin-demo-importer.php:
|
1943 |
msgid "Importing Users"
|
1944 |
msgstr ""
|
1945 |
|
@@ -1969,11 +1969,11 @@ msgstr ""
|
|
1969 |
msgid "Importing Sliders"
|
1970 |
msgstr ""
|
1971 |
|
1972 |
-
#: includes/classes/class-auxin-demo-importer.php:
|
1973 |
msgid "Preparing Site ..."
|
1974 |
msgstr ""
|
1975 |
|
1976 |
-
#: includes/classes/class-auxin-demo-importer.php:
|
1977 |
msgid "All steps are successful"
|
1978 |
msgstr ""
|
1979 |
|
@@ -2215,13 +2215,13 @@ msgid "Remove"
|
|
2215 |
msgstr ""
|
2216 |
|
2217 |
#: includes/classes/class-auxin-walker-nav-menu-back.php:371
|
2218 |
-
#: includes/classes/class-auxin-welcome.php:
|
2219 |
-
#: includes/classes/class-auxin-welcome.php:
|
2220 |
-
#: includes/classes/class-auxin-welcome.php:
|
2221 |
-
#: includes/classes/class-auxin-welcome.php:
|
2222 |
-
#: includes/classes/class-auxin-welcome.php:
|
2223 |
-
#: includes/classes/class-auxin-welcome.php:
|
2224 |
-
#: includes/classes/class-auxin-welcome.php:
|
2225 |
msgid "Cancel"
|
2226 |
msgstr ""
|
2227 |
|
@@ -2356,7 +2356,7 @@ msgid ""
|
|
2356 |
msgstr ""
|
2357 |
|
2358 |
#: includes/classes/class-auxin-welcome.php:412
|
2359 |
-
#: includes/classes/class-auxin-welcome.php:
|
2360 |
#: includes/elements/popular-posts-widget.php:388
|
2361 |
msgid "Recent"
|
2362 |
msgstr ""
|
@@ -2409,287 +2409,287 @@ msgstr ""
|
|
2409 |
msgid "Activated"
|
2410 |
msgstr ""
|
2411 |
|
2412 |
-
#: includes/classes/class-auxin-welcome.php:
|
2413 |
msgid "Search Templates"
|
2414 |
msgstr ""
|
2415 |
|
2416 |
-
#: includes/classes/class-auxin-welcome.php:
|
2417 |
msgid ""
|
2418 |
"An error occurred while downloading the list of templates. Please try again "
|
2419 |
"later."
|
2420 |
msgstr ""
|
2421 |
|
2422 |
-
#: includes/classes/class-auxin-welcome.php:
|
2423 |
msgid "Download"
|
2424 |
msgstr ""
|
2425 |
|
2426 |
-
#: includes/classes/class-auxin-welcome.php:
|
2427 |
-
#: includes/classes/class-auxin-welcome.php:
|
2428 |
msgid "Unlock"
|
2429 |
msgstr ""
|
2430 |
|
2431 |
-
#: includes/classes/class-auxin-welcome.php:
|
2432 |
-
#: includes/classes/class-auxin-welcome.php:
|
2433 |
-
#: includes/classes/class-auxin-welcome.php:
|
2434 |
-
#: includes/classes/class-auxin-welcome.php:
|
2435 |
msgid "Preview"
|
2436 |
msgstr ""
|
2437 |
|
2438 |
-
#: includes/classes/class-auxin-welcome.php:
|
2439 |
msgid "Save to my templates"
|
2440 |
msgstr ""
|
2441 |
|
2442 |
-
#: includes/classes/class-auxin-welcome.php:
|
2443 |
msgid "Create new page"
|
2444 |
msgstr ""
|
2445 |
|
2446 |
-
#: includes/classes/class-auxin-welcome.php:
|
2447 |
msgid ""
|
2448 |
"An error occurred while downloading the list of demo sites. Please try "
|
2449 |
"again later."
|
2450 |
msgstr ""
|
2451 |
|
2452 |
-
#: includes/classes/class-auxin-welcome.php:
|
2453 |
-
#: includes/classes/class-auxin-welcome.php:
|
2454 |
msgid "Uninstall"
|
2455 |
msgstr ""
|
2456 |
|
2457 |
-
#: includes/classes/class-auxin-welcome.php:
|
2458 |
-
#: includes/classes/class-auxin-welcome.php:
|
2459 |
msgid "Import"
|
2460 |
msgstr ""
|
2461 |
|
2462 |
-
#: includes/classes/class-auxin-welcome.php:
|
2463 |
msgid "You have already the latest version."
|
2464 |
msgstr ""
|
2465 |
|
2466 |
-
#: includes/classes/class-auxin-welcome.php:
|
2467 |
msgid "New updates are available."
|
2468 |
msgstr ""
|
2469 |
|
2470 |
-
#: includes/classes/class-auxin-welcome.php:
|
2471 |
msgid ""
|
2472 |
"The following items require update, click update button to update them to "
|
2473 |
"the latest version."
|
2474 |
msgstr ""
|
2475 |
|
2476 |
-
#: includes/classes/class-auxin-welcome.php:
|
2477 |
msgid "Last checked "
|
2478 |
msgstr ""
|
2479 |
|
2480 |
-
#: includes/classes/class-auxin-welcome.php:
|
2481 |
msgid "ago"
|
2482 |
msgstr ""
|
2483 |
|
2484 |
-
#: includes/classes/class-auxin-welcome.php:
|
2485 |
-
#: includes/classes/class-auxin-welcome.php:
|
2486 |
-
#: includes/classes/class-auxin-welcome.php:
|
2487 |
msgid "Ready to update"
|
2488 |
msgstr ""
|
2489 |
|
2490 |
-
#: includes/classes/class-auxin-welcome.php:
|
2491 |
msgid "Update Now"
|
2492 |
msgstr ""
|
2493 |
|
2494 |
-
#: includes/classes/class-auxin-welcome.php:
|
2495 |
msgid "Check Again"
|
2496 |
msgstr ""
|
2497 |
|
2498 |
-
#: includes/classes/class-auxin-welcome.php:
|
2499 |
msgid "You can't remove this demo."
|
2500 |
msgstr ""
|
2501 |
|
2502 |
-
#: includes/classes/class-auxin-welcome.php:
|
2503 |
msgid "Done!"
|
2504 |
msgstr ""
|
2505 |
|
2506 |
-
#: includes/classes/class-auxin-welcome.php:
|
2507 |
msgid "Demo has been successfully uninstalled."
|
2508 |
msgstr ""
|
2509 |
|
2510 |
-
#: includes/classes/class-auxin-welcome.php:
|
2511 |
#: public/includes/frontend-ajax.php:154 public/includes/frontend-ajax.php:211
|
2512 |
msgid "An Error Occurred!"
|
2513 |
msgstr ""
|
2514 |
|
2515 |
-
#: includes/classes/class-auxin-welcome.php:
|
2516 |
msgid "Notice"
|
2517 |
msgstr ""
|
2518 |
|
2519 |
-
#: includes/classes/class-auxin-welcome.php:
|
2520 |
msgid ""
|
2521 |
"For better and faster result, it's recommended to install the demo on a "
|
2522 |
"clean WordPress website."
|
2523 |
msgstr ""
|
2524 |
|
2525 |
-
#: includes/classes/class-auxin-welcome.php:
|
2526 |
msgid "Warning!"
|
2527 |
msgstr ""
|
2528 |
|
2529 |
-
#: includes/classes/class-auxin-welcome.php:
|
2530 |
msgid "This process will erase all images, posts and settings of this demo..."
|
2531 |
msgstr ""
|
2532 |
|
2533 |
-
#: includes/classes/class-auxin-welcome.php:
|
2534 |
msgid "Are you sure you want to uninstall this demo?"
|
2535 |
msgstr ""
|
2536 |
|
2537 |
-
#: includes/classes/class-auxin-welcome.php:
|
2538 |
-
#: includes/classes/class-auxin-welcome.php:
|
2539 |
msgid "Please wait, this may take several minutes .."
|
2540 |
msgstr ""
|
2541 |
|
2542 |
-
#: includes/classes/class-auxin-welcome.php:
|
2543 |
msgid "An error occurred!"
|
2544 |
msgstr ""
|
2545 |
|
2546 |
-
#: includes/classes/class-auxin-welcome.php:
|
2547 |
msgid "Method not exist!"
|
2548 |
msgstr ""
|
2549 |
|
2550 |
-
#: includes/classes/class-auxin-welcome.php:
|
2551 |
-
#: includes/classes/class-auxin-welcome.php:
|
2552 |
msgid "Required Plugins for this demo."
|
2553 |
msgstr ""
|
2554 |
|
2555 |
-
#: includes/classes/class-auxin-welcome.php:
|
2556 |
msgid ""
|
2557 |
"For better and faster install process it's recommended to install demo on a "
|
2558 |
"clean WordPress website."
|
2559 |
msgstr ""
|
2560 |
|
2561 |
-
#: includes/classes/class-auxin-welcome.php:
|
2562 |
msgid "The following plugins are required to be installed for this demo."
|
2563 |
msgstr ""
|
2564 |
|
2565 |
-
#: includes/classes/class-auxin-welcome.php:
|
2566 |
msgid "Ready to install"
|
2567 |
msgstr ""
|
2568 |
|
2569 |
-
#: includes/classes/class-auxin-welcome.php:
|
2570 |
msgid "Not activated"
|
2571 |
msgstr ""
|
2572 |
|
2573 |
-
#: includes/classes/class-auxin-welcome.php:
|
2574 |
msgid "Import Demo Content of Phlox Theme."
|
2575 |
msgstr ""
|
2576 |
|
2577 |
-
#: includes/classes/class-auxin-welcome.php:
|
2578 |
msgid "Complete pre-build Website"
|
2579 |
msgstr ""
|
2580 |
|
2581 |
-
#: includes/classes/class-auxin-welcome.php:
|
2582 |
msgid "Import media (images, videos, etc.)"
|
2583 |
msgstr ""
|
2584 |
|
2585 |
-
#: includes/classes/class-auxin-welcome.php:
|
2586 |
msgid "Selected Data Only"
|
2587 |
msgstr ""
|
2588 |
|
2589 |
-
#: includes/classes/class-auxin-welcome.php:
|
2590 |
msgid "Posts/Pages"
|
2591 |
msgstr ""
|
2592 |
|
2593 |
-
#: includes/classes/class-auxin-welcome.php:
|
2594 |
msgid "Media"
|
2595 |
msgstr ""
|
2596 |
|
2597 |
-
#: includes/classes/class-auxin-welcome.php:
|
2598 |
msgid "Widgets"
|
2599 |
msgstr ""
|
2600 |
|
2601 |
-
#: includes/classes/class-auxin-welcome.php:
|
2602 |
msgid "Menus"
|
2603 |
msgstr ""
|
2604 |
|
2605 |
-
#: includes/classes/class-auxin-welcome.php:
|
2606 |
msgid "Theme Options"
|
2607 |
msgstr ""
|
2608 |
|
2609 |
-
#: includes/classes/class-auxin-welcome.php:
|
2610 |
msgid "MasterSlider (If Available)"
|
2611 |
msgstr ""
|
2612 |
|
2613 |
-
#: includes/classes/class-auxin-welcome.php:
|
2614 |
msgid "Importing Demo Content is in Progress..."
|
2615 |
msgstr ""
|
2616 |
|
2617 |
-
#: includes/classes/class-auxin-welcome.php:
|
2618 |
msgid ""
|
2619 |
"This process may take 5 to 10 minutes to complete, please do not close or "
|
2620 |
"refresh this page."
|
2621 |
msgstr ""
|
2622 |
|
2623 |
-
#: includes/classes/class-auxin-welcome.php:
|
2624 |
msgid "Congratulations!"
|
2625 |
msgstr ""
|
2626 |
|
2627 |
-
#: includes/classes/class-auxin-welcome.php:
|
2628 |
msgid "Demo has been successfully imported."
|
2629 |
msgstr ""
|
2630 |
|
2631 |
-
#: includes/classes/class-auxin-welcome.php:
|
2632 |
msgid "Customize"
|
2633 |
msgstr ""
|
2634 |
|
2635 |
-
#: includes/classes/class-auxin-welcome.php:
|
2636 |
msgid "Importing page content ..."
|
2637 |
msgstr ""
|
2638 |
|
2639 |
-
#: includes/classes/class-auxin-welcome.php:
|
2640 |
msgid ""
|
2641 |
"Images are copyrighted and watermarked. You can remove watermarks by having "
|
2642 |
"Envato Elements subscription"
|
2643 |
msgstr ""
|
2644 |
|
2645 |
-
#: includes/classes/class-auxin-welcome.php:
|
2646 |
msgid ""
|
2647 |
"By subscribing to Envato Elements you will have access to unlimited premium "
|
2648 |
"stock images, icons, graphical assets, videos and more."
|
2649 |
msgstr ""
|
2650 |
|
2651 |
-
#: includes/classes/class-auxin-welcome.php:
|
2652 |
msgid "Explore and Subscribe"
|
2653 |
msgstr ""
|
2654 |
|
2655 |
-
#: includes/classes/class-auxin-welcome.php:
|
2656 |
msgid "Already an Envato Elements member?"
|
2657 |
msgstr ""
|
2658 |
|
2659 |
-
#: includes/classes/class-auxin-welcome.php:
|
2660 |
msgid "Activate here"
|
2661 |
msgstr ""
|
2662 |
|
2663 |
-
#: includes/classes/class-auxin-welcome.php:
|
2664 |
-
#: includes/classes/class-auxin-welcome.php:
|
2665 |
msgid "Verify Your Envato Elements Subscription"
|
2666 |
msgstr ""
|
2667 |
|
2668 |
-
#: includes/classes/class-auxin-welcome.php:
|
2669 |
msgid "Enter your email below and click continue button"
|
2670 |
msgstr ""
|
2671 |
|
2672 |
-
#: includes/classes/class-auxin-welcome.php:
|
2673 |
msgid "Enter your email"
|
2674 |
msgstr ""
|
2675 |
|
2676 |
-
#: includes/classes/class-auxin-welcome.php:
|
2677 |
msgid "Enter your token below to verify your Subscription"
|
2678 |
msgstr ""
|
2679 |
|
2680 |
-
#: includes/classes/class-auxin-welcome.php:
|
2681 |
msgid "Enter token here"
|
2682 |
msgstr ""
|
2683 |
|
2684 |
-
#: includes/classes/class-auxin-welcome.php:
|
2685 |
msgid "Verify token"
|
2686 |
msgstr ""
|
2687 |
|
2688 |
-
#: includes/classes/class-auxin-welcome.php:
|
2689 |
msgid "How to generate a token ?"
|
2690 |
msgstr ""
|
2691 |
|
2692 |
-
#: includes/classes/class-auxin-welcome.php:
|
2693 |
msgid "Don't have subscription?"
|
2694 |
msgstr ""
|
2695 |
|
@@ -2709,7 +2709,7 @@ msgstr ""
|
|
2709 |
#: includes/elementor/widgets/recent-posts-tiles.php:92
|
2710 |
#: includes/elementor/widgets/recent-posts-timeline.php:92
|
2711 |
#: includes/elementor/widgets/recent-products.php:101
|
2712 |
-
#: includes/elementor/widgets/theme-elements/modern-search.php:
|
2713 |
#: includes/elements/popular-posts-widget.php:16
|
2714 |
#: includes/elements/recent-posts-grid-carousel.php:16
|
2715 |
#: includes/elements/recent-posts-land-style.php:16
|
@@ -2936,7 +2936,7 @@ msgstr ""
|
|
2936 |
#: includes/elementor/widgets/icon.php:178
|
2937 |
#: includes/elementor/widgets/image.php:327
|
2938 |
#: includes/elementor/widgets/modern-button.php:192
|
2939 |
-
#: includes/elementor/widgets/modern-button.php:
|
2940 |
#: includes/elementor/widgets/quote.php:173
|
2941 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1622
|
2942 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1759
|
@@ -3245,7 +3245,7 @@ msgstr ""
|
|
3245 |
#: includes/elementor/modules/dynamic-tags/post-time.php:34
|
3246 |
#: includes/elementor/modules/dynamic-tags/request-parameter.php:66
|
3247 |
#: includes/elementor/widgets/accordion.php:145
|
3248 |
-
#: includes/elementor/widgets/modern-button.php:
|
3249 |
#: includes/elementor/widgets/svg.php:107
|
3250 |
#: includes/elementor/widgets/text.php:111
|
3251 |
#: includes/elementor/widgets/theme-elements/logo.php:135
|
@@ -4150,10 +4150,10 @@ msgstr ""
|
|
4150 |
#: includes/elementor/widgets/heading-modern.php:915
|
4151 |
#: includes/elementor/widgets/heading-modern.php:991
|
4152 |
#: includes/elementor/widgets/heading-modern.php:1105
|
4153 |
-
#: includes/elementor/widgets/modern-button.php:
|
4154 |
-
#: includes/elementor/widgets/modern-button.php:
|
4155 |
-
#: includes/elementor/widgets/modern-button.php:
|
4156 |
-
#: includes/elementor/widgets/modern-button.php:
|
4157 |
#: includes/elementor/widgets/quote.php:288
|
4158 |
#: includes/elementor/widgets/tabs.php:480
|
4159 |
#: includes/elementor/widgets/theme-elements/breadcrumbs.php:240
|
@@ -4186,10 +4186,10 @@ msgstr ""
|
|
4186 |
#: includes/elementor/widgets/icon.php:360
|
4187 |
#: includes/elementor/widgets/mailchimp.php:298
|
4188 |
#: includes/elementor/widgets/mailchimp.php:544
|
4189 |
-
#: includes/elementor/widgets/modern-button.php:
|
4190 |
-
#: includes/elementor/widgets/modern-button.php:
|
4191 |
-
#: includes/elementor/widgets/modern-button.php:
|
4192 |
-
#: includes/elementor/widgets/modern-button.php:
|
4193 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:957
|
4194 |
#: includes/elementor/widgets/recent-posts-land-style.php:551
|
4195 |
#: includes/elementor/widgets/recent-posts-masonry.php:630
|
@@ -4237,12 +4237,12 @@ msgstr ""
|
|
4237 |
#: includes/elementor/widgets/image.php:502
|
4238 |
#: includes/elementor/widgets/mailchimp.php:326
|
4239 |
#: includes/elementor/widgets/mailchimp.php:571
|
4240 |
-
#: includes/elementor/widgets/modern-button.php:
|
4241 |
-
#: includes/elementor/widgets/modern-button.php:
|
4242 |
-
#: includes/elementor/widgets/modern-button.php:
|
4243 |
-
#: includes/elementor/widgets/modern-button.php:
|
4244 |
-
#: includes/elementor/widgets/modern-button.php:
|
4245 |
-
#: includes/elementor/widgets/modern-button.php:
|
4246 |
#: includes/elementor/widgets/recent-comments.php:181
|
4247 |
#: includes/elementor/widgets/recent-comments.php:264
|
4248 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:974
|
@@ -4375,10 +4375,10 @@ msgstr ""
|
|
4375 |
#: includes/elementor/widgets/icon.php:311
|
4376 |
#: includes/elementor/widgets/mailchimp.php:310
|
4377 |
#: includes/elementor/widgets/mailchimp.php:556
|
4378 |
-
#: includes/elementor/widgets/modern-button.php:
|
4379 |
-
#: includes/elementor/widgets/modern-button.php:
|
4380 |
-
#: includes/elementor/widgets/modern-button.php:
|
4381 |
-
#: includes/elementor/widgets/modern-button.php:
|
4382 |
#: includes/elementor/widgets/quote.php:333
|
4383 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1403
|
4384 |
#: includes/elementor/widgets/staff.php:778
|
@@ -4449,14 +4449,14 @@ msgstr ""
|
|
4449 |
#: includes/elementor/widgets/mailchimp.php:423
|
4450 |
#: includes/elementor/widgets/mailchimp.php:578
|
4451 |
#: includes/elementor/widgets/mailchimp.php:616
|
4452 |
-
#: includes/elementor/widgets/modern-button.php:
|
4453 |
-
#: includes/elementor/widgets/modern-button.php:
|
4454 |
-
#: includes/elementor/widgets/modern-button.php:
|
4455 |
-
#: includes/elementor/widgets/modern-button.php:
|
4456 |
-
#: includes/elementor/widgets/modern-button.php:
|
4457 |
-
#: includes/elementor/widgets/modern-button.php:
|
4458 |
-
#: includes/elementor/widgets/modern-button.php:
|
4459 |
-
#: includes/elementor/widgets/modern-button.php:
|
4460 |
#: includes/elementor/widgets/recent-comments.php:188
|
4461 |
#: includes/elementor/widgets/recent-comments.php:208
|
4462 |
#: includes/elementor/widgets/recent-comments.php:271
|
@@ -4602,8 +4602,8 @@ msgstr ""
|
|
4602 |
#: includes/elementor/widgets/image.php:345
|
4603 |
#: includes/elementor/widgets/image.php:385
|
4604 |
#: includes/elementor/widgets/image.php:399
|
4605 |
-
#: includes/elementor/widgets/modern-button.php:
|
4606 |
-
#: includes/elementor/widgets/modern-button.php:
|
4607 |
#: includes/elementor/widgets/quote.php:221
|
4608 |
#: includes/elementor/widgets/recent-comments.php:155
|
4609 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:282
|
@@ -4748,8 +4748,8 @@ msgstr ""
|
|
4748 |
#: includes/elementor/widgets/image.php:346
|
4749 |
#: includes/elementor/widgets/image.php:386
|
4750 |
#: includes/elementor/widgets/image.php:400
|
4751 |
-
#: includes/elementor/widgets/modern-button.php:
|
4752 |
-
#: includes/elementor/widgets/modern-button.php:
|
4753 |
#: includes/elementor/widgets/quote.php:222
|
4754 |
#: includes/elementor/widgets/recent-comments.php:156
|
4755 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:283
|
@@ -4879,7 +4879,7 @@ msgstr ""
|
|
4879 |
#: includes/elementor/widgets/audio.php:150
|
4880 |
#: includes/elementor/widgets/button.php:275
|
4881 |
#: includes/elementor/widgets/button.php:283
|
4882 |
-
#: includes/elementor/widgets/modern-button.php:
|
4883 |
#: includes/elementor/widgets/tabs.php:149
|
4884 |
#: includes/elementor/widgets/text.php:1028
|
4885 |
#: includes/elementor/widgets/theme-elements/menu.php:610
|
@@ -4991,7 +4991,7 @@ msgstr ""
|
|
4991 |
#: includes/elementor/widgets/button.php:52
|
4992 |
#: includes/elementor/widgets/button.php:100
|
4993 |
#: includes/elementor/widgets/modern-button.php:101
|
4994 |
-
#: includes/elementor/widgets/modern-button.php:
|
4995 |
#: includes/elementor/widgets/text.php:278
|
4996 |
#: includes/elementor/widgets/text.php:992
|
4997 |
#: includes/elementor/widgets/theme-elements/modern-search.php:99
|
@@ -5040,7 +5040,7 @@ msgid "Button size"
|
|
5040 |
msgstr ""
|
5041 |
|
5042 |
#: includes/elementor/widgets/button.php:160
|
5043 |
-
#: includes/elementor/widgets/modern-button.php:
|
5044 |
#: includes/elementor/widgets/text.php:1007 includes/elements/button.php:63
|
5045 |
#: includes/elements/text.php:674 includes/general-hooks.php:686
|
5046 |
#: includes/general-hooks.php:1091
|
@@ -5049,7 +5049,7 @@ msgstr ""
|
|
5049 |
|
5050 |
#: includes/elementor/widgets/button.php:164
|
5051 |
#: includes/elementor/widgets/divider.php:147
|
5052 |
-
#: includes/elementor/widgets/modern-button.php:
|
5053 |
#: includes/elementor/widgets/text.php:1011 includes/elements/button.php:67
|
5054 |
#: includes/elements/divider.php:91 includes/elements/text.php:678
|
5055 |
#: includes/general-hooks.php:690 includes/general-hooks.php:1095
|
@@ -5072,7 +5072,7 @@ msgid "Box"
|
|
5072 |
msgstr ""
|
5073 |
|
5074 |
#: includes/elementor/widgets/button.php:192
|
5075 |
-
#: includes/elementor/widgets/modern-button.php:
|
5076 |
#: includes/elementor/widgets/text.php:1336 includes/elements/button.php:95
|
5077 |
#: includes/elements/text.php:712 includes/general-hooks.php:721
|
5078 |
#: includes/general-hooks.php:1126
|
@@ -5080,7 +5080,7 @@ msgid "Round"
|
|
5080 |
msgstr ""
|
5081 |
|
5082 |
#: includes/elementor/widgets/button.php:196
|
5083 |
-
#: includes/elementor/widgets/modern-button.php:
|
5084 |
#: includes/elementor/widgets/text.php:1340 includes/elements/button.php:99
|
5085 |
#: includes/elements/text.php:716 includes/general-hooks.php:725
|
5086 |
#: includes/general-hooks.php:1130
|
@@ -5100,7 +5100,7 @@ msgid "3D"
|
|
5100 |
msgstr ""
|
5101 |
|
5102 |
#: includes/elementor/widgets/button.php:219
|
5103 |
-
#: includes/elementor/widgets/modern-button.php:
|
5104 |
#: includes/elementor/widgets/text.php:1364 includes/elements/button.php:126
|
5105 |
#: includes/elements/text.php:746 includes/general-hooks.php:762
|
5106 |
#: includes/general-hooks.php:1167
|
@@ -5121,10 +5121,10 @@ msgstr ""
|
|
5121 |
#: includes/elementor/widgets/carousel-navigation.php:292
|
5122 |
#: includes/elementor/widgets/carousel-navigation.php:399
|
5123 |
#: includes/elementor/widgets/heading-modern.php:949
|
5124 |
-
#: includes/elementor/widgets/modern-button.php:
|
5125 |
-
#: includes/elementor/widgets/modern-button.php:
|
5126 |
-
#: includes/elementor/widgets/modern-button.php:
|
5127 |
-
#: includes/elementor/widgets/modern-button.php:
|
5128 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1340
|
5129 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1370
|
5130 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1550
|
@@ -5164,7 +5164,7 @@ msgstr ""
|
|
5164 |
#: includes/elementor/widgets/icon.php:107
|
5165 |
#: includes/elementor/widgets/icon.php:114
|
5166 |
#: includes/elementor/widgets/icon.php:194
|
5167 |
-
#: includes/elementor/widgets/modern-button.php:
|
5168 |
#: includes/elementor/widgets/text.php:116
|
5169 |
#: includes/elementor/widgets/text.php:126
|
5170 |
#: includes/elementor/widgets/theme-elements/modern-search.php:106
|
@@ -5195,7 +5195,7 @@ msgid "Icon alignment"
|
|
5195 |
msgstr ""
|
5196 |
|
5197 |
#: includes/elementor/widgets/button.php:380
|
5198 |
-
#: includes/elementor/widgets/modern-button.php:
|
5199 |
#: includes/elementor/widgets/text.php:1116 includes/elements/button.php:191
|
5200 |
#: includes/elements/text.php:809 includes/general-hooks.php:847
|
5201 |
#: includes/general-hooks.php:1252
|
@@ -5233,7 +5233,7 @@ msgstr ""
|
|
5233 |
#: includes/elementor/widgets/custom-list.php:765
|
5234 |
#: includes/elementor/widgets/image.php:198
|
5235 |
#: includes/elementor/widgets/modern-button.php:108
|
5236 |
-
#: includes/elementor/widgets/modern-button.php:
|
5237 |
#: includes/elementor/widgets/quote.php:98
|
5238 |
#: includes/elementor/widgets/quote.php:148
|
5239 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1349
|
@@ -5255,12 +5255,12 @@ msgstr ""
|
|
5255 |
#: includes/elementor/widgets/heading-modern.php:734
|
5256 |
#: includes/elementor/widgets/heading-modern.php:772
|
5257 |
#: includes/elementor/widgets/image.php:683
|
5258 |
-
#: includes/elementor/widgets/modern-button.php:
|
5259 |
-
#: includes/elementor/widgets/modern-button.php:
|
5260 |
-
#: includes/elementor/widgets/modern-button.php:
|
5261 |
-
#: includes/elementor/widgets/modern-button.php:
|
5262 |
-
#: includes/elementor/widgets/modern-button.php:
|
5263 |
-
#: includes/elementor/widgets/modern-button.php:
|
5264 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1839
|
5265 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1895
|
5266 |
#: includes/elementor/widgets/recent-posts-masonry.php:1255
|
@@ -5348,9 +5348,9 @@ msgstr ""
|
|
5348 |
#: includes/elementor/widgets/carousel-navigation.php:430
|
5349 |
#: includes/elementor/widgets/custom-list.php:949
|
5350 |
#: includes/elementor/widgets/icon.php:294
|
5351 |
-
#: includes/elementor/widgets/modern-button.php:
|
5352 |
-
#: includes/elementor/widgets/modern-button.php:
|
5353 |
-
#: includes/elementor/widgets/modern-button.php:
|
5354 |
#: includes/elementor/widgets/testimonial.php:756
|
5355 |
#: includes/elementor/widgets/text.php:1003
|
5356 |
#: includes/elementor/widgets/theme-elements/breadcrumbs.php:268
|
@@ -5880,7 +5880,7 @@ msgstr ""
|
|
5880 |
#: includes/elementor/widgets/icon.php:166
|
5881 |
#: includes/elementor/widgets/image.php:314
|
5882 |
#: includes/elementor/widgets/modern-button.php:180
|
5883 |
-
#: includes/elementor/widgets/modern-button.php:
|
5884 |
#: includes/elementor/widgets/svg.php:279
|
5885 |
#: includes/elementor/widgets/theme-elements/breadcrumbs.php:427
|
5886 |
#: includes/elementor/widgets/theme-elements/copyright.php:138
|
@@ -6200,14 +6200,14 @@ msgstr ""
|
|
6200 |
|
6201 |
#: includes/elementor/widgets/heading-modern.php:244
|
6202 |
#: includes/elementor/widgets/modern-button.php:117
|
6203 |
-
#: includes/elementor/widgets/modern-button.php:
|
6204 |
#: includes/elements/highlight.php:18
|
6205 |
msgid "Highlighted Text"
|
6206 |
msgstr ""
|
6207 |
|
6208 |
#: includes/elementor/widgets/heading-modern.php:257
|
6209 |
#: includes/elementor/widgets/modern-button.php:126
|
6210 |
-
#: includes/elementor/widgets/modern-button.php:
|
6211 |
msgid "After Text"
|
6212 |
msgstr ""
|
6213 |
|
@@ -6243,7 +6243,7 @@ msgid "Framed"
|
|
6243 |
msgstr ""
|
6244 |
|
6245 |
#: includes/elementor/widgets/icon.php:137
|
6246 |
-
#: includes/elementor/widgets/modern-button.php:
|
6247 |
msgid "Shape"
|
6248 |
msgstr ""
|
6249 |
|
@@ -6526,31 +6526,35 @@ msgstr ""
|
|
6526 |
msgid "Justified"
|
6527 |
msgstr ""
|
6528 |
|
6529 |
-
#: includes/elementor/widgets/modern-button.php:
|
|
|
|
|
|
|
|
|
6530 |
msgid "Display Icon"
|
6531 |
msgstr ""
|
6532 |
|
6533 |
-
#: includes/elementor/widgets/modern-button.php:
|
6534 |
msgid "black"
|
6535 |
msgstr ""
|
6536 |
|
6537 |
-
#: includes/elementor/widgets/modern-button.php:
|
6538 |
msgid "White"
|
6539 |
msgstr ""
|
6540 |
|
6541 |
-
#: includes/elementor/widgets/modern-button.php:
|
6542 |
msgid "Ball Blue"
|
6543 |
msgstr ""
|
6544 |
|
6545 |
-
#: includes/elementor/widgets/modern-button.php:
|
6546 |
msgid "Mikado Yellow"
|
6547 |
msgstr ""
|
6548 |
|
6549 |
-
#: includes/elementor/widgets/modern-button.php:
|
6550 |
msgid "Carmine Pink"
|
6551 |
msgstr ""
|
6552 |
|
6553 |
-
#: includes/elementor/widgets/modern-button.php:
|
6554 |
msgid "Below"
|
6555 |
msgstr ""
|
6556 |
|
@@ -7887,8 +7891,8 @@ msgid "Table Even Rows"
|
|
7887 |
msgstr ""
|
7888 |
|
7889 |
#: includes/elementor/widgets/search.php:47
|
7890 |
-
#: includes/elementor/widgets/theme-elements/modern-search.php:
|
7891 |
-
#: includes/elementor/widgets/theme-elements/modern-search.php:
|
7892 |
#: includes/elements/search.php:14
|
7893 |
msgid "Search"
|
7894 |
msgstr ""
|
1 |
# Averta Copyright (c) {2020}
|
2 |
msgid ""
|
3 |
msgstr ""
|
4 |
+
"Project-Id-Version: Phlox Core Elements 2.6.1\n"
|
5 |
"Report-Msgid-Bugs-To: http://averta.net/phlox/wordpress-theme/\n"
|
6 |
+
"POT-Creation-Date: 2020-07-12 10:42: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"
|
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 |
|
95 |
#: includes/classes/class-auxin-demo-importer.php:113
|
96 |
#: includes/classes/class-auxin-demo-importer.php:156
|
97 |
#: includes/classes/class-auxin-demo-importer.php:191
|
98 |
+
#: includes/classes/class-auxin-welcome.php:1234
|
99 |
+
#: includes/classes/class-auxin-welcome.php:1269
|
100 |
+
#: includes/classes/class-auxin-welcome.php:1629
|
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:1671
|
342 |
msgid "Skip"
|
343 |
msgstr ""
|
344 |
|
1230 |
#: includes/elementor/widgets/icon.php:170
|
1231 |
#: includes/elementor/widgets/image.php:319
|
1232 |
#: includes/elementor/widgets/modern-button.php:184
|
1233 |
+
#: includes/elementor/widgets/modern-button.php:803
|
1234 |
#: includes/elementor/widgets/quote.php:165
|
1235 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1614
|
1236 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1751
|
1298 |
#: admin/includes/metaboxes/metabox-fields-general-header.php:707
|
1299 |
#: includes/elementor/widgets/button.php:163
|
1300 |
#: includes/elementor/widgets/divider.php:146
|
1301 |
+
#: includes/elementor/widgets/modern-button.php:308
|
1302 |
#: includes/elementor/widgets/staff.php:755
|
1303 |
#: includes/elementor/widgets/text.php:1010 includes/elements/button.php:66
|
1304 |
#: includes/elements/divider.php:90 includes/elements/socials-list.php:63
|
1312 |
#: includes/classes/class-auxin-svg-support.php:192
|
1313 |
#: includes/elementor/widgets/button.php:162
|
1314 |
#: includes/elementor/widgets/divider.php:145
|
1315 |
+
#: includes/elementor/widgets/modern-button.php:307
|
1316 |
#: includes/elementor/widgets/staff.php:756
|
1317 |
#: includes/elementor/widgets/text.php:1009
|
1318 |
#: includes/elements/before-after.php:104 includes/elements/button.php:65
|
1327 |
#: admin/includes/metaboxes/metabox-fields-general-header.php:709
|
1328 |
#: includes/classes/class-auxin-svg-support.php:193
|
1329 |
#: includes/elementor/widgets/button.php:161
|
1330 |
+
#: includes/elementor/widgets/modern-button.php:306
|
1331 |
#: includes/elementor/widgets/staff.php:757
|
1332 |
#: includes/elementor/widgets/text.php:1008
|
1333 |
#: includes/elements/before-after.php:105 includes/elements/button.php:64
|
1390 |
#: includes/elementor/widgets/custom-list.php:385
|
1391 |
#: includes/elementor/widgets/gallery.php:131
|
1392 |
#: includes/elementor/widgets/icon.php:125
|
1393 |
+
#: includes/elementor/widgets/modern-button.php:278
|
1394 |
#: includes/elementor/widgets/quote.php:161
|
1395 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:130
|
1396 |
#: includes/elementor/widgets/recent-posts-tiles.php:130
|
1430 |
#: includes/elementor/widgets/image.php:539
|
1431 |
#: includes/elementor/widgets/mailchimp.php:352
|
1432 |
#: includes/elementor/widgets/mailchimp.php:609
|
1433 |
+
#: includes/elementor/widgets/modern-button.php:404
|
1434 |
+
#: includes/elementor/widgets/modern-button.php:515
|
1435 |
+
#: includes/elementor/widgets/modern-button.php:615
|
1436 |
+
#: includes/elementor/widgets/modern-button.php:727
|
1437 |
+
#: includes/elementor/widgets/modern-button.php:913
|
1438 |
#: includes/elementor/widgets/recent-comments.php:201
|
1439 |
#: includes/elementor/widgets/recent-comments.php:284
|
1440 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:997
|
1795 |
msgstr ""
|
1796 |
|
1797 |
#: includes/classes/class-auxels-admin-assets.php:67
|
1798 |
+
#: includes/classes/class-auxin-welcome.php:1310
|
1799 |
+
#: includes/classes/class-auxin-welcome.php:1429
|
1800 |
+
#: includes/classes/class-auxin-welcome.php:1699
|
1801 |
+
#: includes/classes/class-auxin-welcome.php:1743
|
1802 |
msgid "Continue"
|
1803 |
msgstr ""
|
1804 |
|
1805 |
#: includes/classes/class-auxels-admin-assets.php:68
|
1806 |
#: includes/classes/class-auxin-welcome.php:522
|
1807 |
+
#: includes/classes/class-auxin-welcome.php:1504
|
1808 |
msgid "Install Plugins"
|
1809 |
msgstr ""
|
1810 |
|
1811 |
#: includes/classes/class-auxels-admin-assets.php:69
|
1812 |
+
#: includes/classes/class-auxin-welcome.php:1595
|
1813 |
msgid "Import Content"
|
1814 |
msgstr ""
|
1815 |
|
1906 |
|
1907 |
#: includes/classes/class-auxin-demo-importer.php:145
|
1908 |
#: includes/classes/class-auxin-demo-importer.php:164
|
1909 |
+
#: includes/classes/class-auxin-welcome.php:809
|
1910 |
msgid "Copy to clipboard"
|
1911 |
msgstr ""
|
1912 |
|
1939 |
msgstr ""
|
1940 |
|
1941 |
#: includes/classes/class-auxin-demo-importer.php:292
|
1942 |
+
#: includes/classes/class-auxin-demo-importer.php:1213
|
1943 |
msgid "Importing Users"
|
1944 |
msgstr ""
|
1945 |
|
1969 |
msgid "Importing Sliders"
|
1970 |
msgstr ""
|
1971 |
|
1972 |
+
#: includes/classes/class-auxin-demo-importer.php:1276
|
1973 |
msgid "Preparing Site ..."
|
1974 |
msgstr ""
|
1975 |
|
1976 |
+
#: includes/classes/class-auxin-demo-importer.php:1291
|
1977 |
msgid "All steps are successful"
|
1978 |
msgstr ""
|
1979 |
|
2215 |
msgstr ""
|
2216 |
|
2217 |
#: includes/classes/class-auxin-walker-nav-menu-back.php:371
|
2218 |
+
#: includes/classes/class-auxin-welcome.php:1313
|
2219 |
+
#: includes/classes/class-auxin-welcome.php:1341
|
2220 |
+
#: includes/classes/class-auxin-welcome.php:1432
|
2221 |
+
#: includes/classes/class-auxin-welcome.php:1506
|
2222 |
+
#: includes/classes/class-auxin-welcome.php:1597
|
2223 |
+
#: includes/classes/class-auxin-welcome.php:1701
|
2224 |
+
#: includes/classes/class-auxin-welcome.php:1745
|
2225 |
msgid "Cancel"
|
2226 |
msgstr ""
|
2227 |
|
2356 |
msgstr ""
|
2357 |
|
2358 |
#: includes/classes/class-auxin-welcome.php:412
|
2359 |
+
#: includes/classes/class-auxin-welcome.php:732
|
2360 |
#: includes/elements/popular-posts-widget.php:388
|
2361 |
msgid "Recent"
|
2362 |
msgstr ""
|
2409 |
msgid "Activated"
|
2410 |
msgstr ""
|
2411 |
|
2412 |
+
#: includes/classes/class-auxin-welcome.php:745
|
2413 |
msgid "Search Templates"
|
2414 |
msgstr ""
|
2415 |
|
2416 |
+
#: includes/classes/class-auxin-welcome.php:752
|
2417 |
msgid ""
|
2418 |
"An error occurred while downloading the list of templates. Please try again "
|
2419 |
"later."
|
2420 |
msgstr ""
|
2421 |
|
2422 |
+
#: includes/classes/class-auxin-welcome.php:796
|
2423 |
msgid "Download"
|
2424 |
msgstr ""
|
2425 |
|
2426 |
+
#: includes/classes/class-auxin-welcome.php:817
|
2427 |
+
#: includes/classes/class-auxin-welcome.php:932
|
2428 |
msgid "Unlock"
|
2429 |
msgstr ""
|
2430 |
|
2431 |
+
#: includes/classes/class-auxin-welcome.php:829
|
2432 |
+
#: includes/classes/class-auxin-welcome.php:943
|
2433 |
+
#: includes/classes/class-auxin-welcome.php:1231
|
2434 |
+
#: includes/classes/class-auxin-welcome.php:1626
|
2435 |
msgid "Preview"
|
2436 |
msgstr ""
|
2437 |
|
2438 |
+
#: includes/classes/class-auxin-welcome.php:852
|
2439 |
msgid "Save to my templates"
|
2440 |
msgstr ""
|
2441 |
|
2442 |
+
#: includes/classes/class-auxin-welcome.php:863
|
2443 |
msgid "Create new page"
|
2444 |
msgstr ""
|
2445 |
|
2446 |
+
#: includes/classes/class-auxin-welcome.php:903
|
2447 |
msgid ""
|
2448 |
"An error occurred while downloading the list of demo sites. Please try "
|
2449 |
"again later."
|
2450 |
msgstr ""
|
2451 |
|
2452 |
+
#: includes/classes/class-auxin-welcome.php:927
|
2453 |
+
#: includes/classes/class-auxin-welcome.php:1338
|
2454 |
msgid "Uninstall"
|
2455 |
msgstr ""
|
2456 |
|
2457 |
+
#: includes/classes/class-auxin-welcome.php:927
|
2458 |
+
#: includes/classes/class-auxin-welcome.php:1242
|
2459 |
msgid "Import"
|
2460 |
msgstr ""
|
2461 |
|
2462 |
+
#: includes/classes/class-auxin-welcome.php:1030
|
2463 |
msgid "You have already the latest version."
|
2464 |
msgstr ""
|
2465 |
|
2466 |
+
#: includes/classes/class-auxin-welcome.php:1034
|
2467 |
msgid "New updates are available."
|
2468 |
msgstr ""
|
2469 |
|
2470 |
+
#: includes/classes/class-auxin-welcome.php:1035
|
2471 |
msgid ""
|
2472 |
"The following items require update, click update button to update them to "
|
2473 |
"the latest version."
|
2474 |
msgstr ""
|
2475 |
|
2476 |
+
#: includes/classes/class-auxin-welcome.php:1044
|
2477 |
msgid "Last checked "
|
2478 |
msgstr ""
|
2479 |
|
2480 |
+
#: includes/classes/class-auxin-welcome.php:1046
|
2481 |
msgid "ago"
|
2482 |
msgstr ""
|
2483 |
|
2484 |
+
#: includes/classes/class-auxin-welcome.php:1066
|
2485 |
+
#: includes/classes/class-auxin-welcome.php:1096
|
2486 |
+
#: includes/classes/class-auxin-welcome.php:1480
|
2487 |
msgid "Ready to update"
|
2488 |
msgstr ""
|
2489 |
|
2490 |
+
#: includes/classes/class-auxin-welcome.php:1116
|
2491 |
msgid "Update Now"
|
2492 |
msgstr ""
|
2493 |
|
2494 |
+
#: includes/classes/class-auxin-welcome.php:1119
|
2495 |
msgid "Check Again"
|
2496 |
msgstr ""
|
2497 |
|
2498 |
+
#: includes/classes/class-auxin-welcome.php:1146
|
2499 |
msgid "You can't remove this demo."
|
2500 |
msgstr ""
|
2501 |
|
2502 |
+
#: includes/classes/class-auxin-welcome.php:1225
|
2503 |
msgid "Done!"
|
2504 |
msgstr ""
|
2505 |
|
2506 |
+
#: includes/classes/class-auxin-welcome.php:1226
|
2507 |
msgid "Demo has been successfully uninstalled."
|
2508 |
msgstr ""
|
2509 |
|
2510 |
+
#: includes/classes/class-auxin-welcome.php:1288
|
2511 |
#: public/includes/frontend-ajax.php:154 public/includes/frontend-ajax.php:211
|
2512 |
msgid "An Error Occurred!"
|
2513 |
msgstr ""
|
2514 |
|
2515 |
+
#: includes/classes/class-auxin-welcome.php:1302
|
2516 |
msgid "Notice"
|
2517 |
msgstr ""
|
2518 |
|
2519 |
+
#: includes/classes/class-auxin-welcome.php:1304
|
2520 |
msgid ""
|
2521 |
"For better and faster result, it's recommended to install the demo on a "
|
2522 |
"clean WordPress website."
|
2523 |
msgstr ""
|
2524 |
|
2525 |
+
#: includes/classes/class-auxin-welcome.php:1330
|
2526 |
msgid "Warning!"
|
2527 |
msgstr ""
|
2528 |
|
2529 |
+
#: includes/classes/class-auxin-welcome.php:1332
|
2530 |
msgid "This process will erase all images, posts and settings of this demo..."
|
2531 |
msgstr ""
|
2532 |
|
2533 |
+
#: includes/classes/class-auxin-welcome.php:1337
|
2534 |
msgid "Are you sure you want to uninstall this demo?"
|
2535 |
msgstr ""
|
2536 |
|
2537 |
+
#: includes/classes/class-auxin-welcome.php:1347
|
2538 |
+
#: includes/classes/class-auxin-welcome.php:1603
|
2539 |
msgid "Please wait, this may take several minutes .."
|
2540 |
msgstr ""
|
2541 |
|
2542 |
+
#: includes/classes/class-auxin-welcome.php:1405
|
2543 |
msgid "An error occurred!"
|
2544 |
msgstr ""
|
2545 |
|
2546 |
+
#: includes/classes/class-auxin-welcome.php:1407
|
2547 |
msgid "Method not exist!"
|
2548 |
msgstr ""
|
2549 |
|
2550 |
+
#: includes/classes/class-auxin-welcome.php:1421
|
2551 |
+
#: includes/classes/class-auxin-welcome.php:1457
|
2552 |
msgid "Required Plugins for this demo."
|
2553 |
msgstr ""
|
2554 |
|
2555 |
+
#: includes/classes/class-auxin-welcome.php:1423
|
2556 |
msgid ""
|
2557 |
"For better and faster install process it's recommended to install demo on a "
|
2558 |
"clean WordPress website."
|
2559 |
msgstr ""
|
2560 |
|
2561 |
+
#: includes/classes/class-auxin-welcome.php:1458
|
2562 |
msgid "The following plugins are required to be installed for this demo."
|
2563 |
msgstr ""
|
2564 |
|
2565 |
+
#: includes/classes/class-auxin-welcome.php:1472
|
2566 |
msgid "Ready to install"
|
2567 |
msgstr ""
|
2568 |
|
2569 |
+
#: includes/classes/class-auxin-welcome.php:1476
|
2570 |
msgid "Not activated"
|
2571 |
msgstr ""
|
2572 |
|
2573 |
+
#: includes/classes/class-auxin-welcome.php:1522
|
2574 |
msgid "Import Demo Content of Phlox Theme."
|
2575 |
msgstr ""
|
2576 |
|
2577 |
+
#: includes/classes/class-auxin-welcome.php:1527
|
2578 |
msgid "Complete pre-build Website"
|
2579 |
msgstr ""
|
2580 |
|
2581 |
+
#: includes/classes/class-auxin-welcome.php:1532
|
2582 |
msgid "Import media (images, videos, etc.)"
|
2583 |
msgstr ""
|
2584 |
|
2585 |
+
#: includes/classes/class-auxin-welcome.php:1539
|
2586 |
msgid "Selected Data Only"
|
2587 |
msgstr ""
|
2588 |
|
2589 |
+
#: includes/classes/class-auxin-welcome.php:1545
|
2590 |
msgid "Posts/Pages"
|
2591 |
msgstr ""
|
2592 |
|
2593 |
+
#: includes/classes/class-auxin-welcome.php:1550
|
2594 |
msgid "Media"
|
2595 |
msgstr ""
|
2596 |
|
2597 |
+
#: includes/classes/class-auxin-welcome.php:1555
|
2598 |
msgid "Widgets"
|
2599 |
msgstr ""
|
2600 |
|
2601 |
+
#: includes/classes/class-auxin-welcome.php:1562
|
2602 |
msgid "Menus"
|
2603 |
msgstr ""
|
2604 |
|
2605 |
+
#: includes/classes/class-auxin-welcome.php:1567
|
2606 |
msgid "Theme Options"
|
2607 |
msgstr ""
|
2608 |
|
2609 |
+
#: includes/classes/class-auxin-welcome.php:1572
|
2610 |
msgid "MasterSlider (If Available)"
|
2611 |
msgstr ""
|
2612 |
|
2613 |
+
#: includes/classes/class-auxin-welcome.php:1582
|
2614 |
msgid "Importing Demo Content is in Progress..."
|
2615 |
msgstr ""
|
2616 |
|
2617 |
+
#: includes/classes/class-auxin-welcome.php:1583
|
2618 |
msgid ""
|
2619 |
"This process may take 5 to 10 minutes to complete, please do not close or "
|
2620 |
"refresh this page."
|
2621 |
msgstr ""
|
2622 |
|
2623 |
+
#: includes/classes/class-auxin-welcome.php:1617
|
2624 |
msgid "Congratulations!"
|
2625 |
msgstr ""
|
2626 |
|
2627 |
+
#: includes/classes/class-auxin-welcome.php:1618
|
2628 |
msgid "Demo has been successfully imported."
|
2629 |
msgstr ""
|
2630 |
|
2631 |
+
#: includes/classes/class-auxin-welcome.php:1623
|
2632 |
msgid "Customize"
|
2633 |
msgstr ""
|
2634 |
|
2635 |
+
#: includes/classes/class-auxin-welcome.php:1640
|
2636 |
msgid "Importing page content ..."
|
2637 |
msgstr ""
|
2638 |
|
2639 |
+
#: includes/classes/class-auxin-welcome.php:1655
|
2640 |
msgid ""
|
2641 |
"Images are copyrighted and watermarked. You can remove watermarks by having "
|
2642 |
"Envato Elements subscription"
|
2643 |
msgstr ""
|
2644 |
|
2645 |
+
#: includes/classes/class-auxin-welcome.php:1656
|
2646 |
msgid ""
|
2647 |
"By subscribing to Envato Elements you will have access to unlimited premium "
|
2648 |
"stock images, icons, graphical assets, videos and more."
|
2649 |
msgstr ""
|
2650 |
|
2651 |
+
#: includes/classes/class-auxin-welcome.php:1658
|
2652 |
msgid "Explore and Subscribe"
|
2653 |
msgstr ""
|
2654 |
|
2655 |
+
#: includes/classes/class-auxin-welcome.php:1666
|
2656 |
msgid "Already an Envato Elements member?"
|
2657 |
msgstr ""
|
2658 |
|
2659 |
+
#: includes/classes/class-auxin-welcome.php:1666
|
2660 |
msgid "Activate here"
|
2661 |
msgstr ""
|
2662 |
|
2663 |
+
#: includes/classes/class-auxin-welcome.php:1684
|
2664 |
+
#: includes/classes/class-auxin-welcome.php:1714
|
2665 |
msgid "Verify Your Envato Elements Subscription"
|
2666 |
msgstr ""
|
2667 |
|
2668 |
+
#: includes/classes/class-auxin-welcome.php:1685
|
2669 |
msgid "Enter your email below and click continue button"
|
2670 |
msgstr ""
|
2671 |
|
2672 |
+
#: includes/classes/class-auxin-welcome.php:1687
|
2673 |
msgid "Enter your email"
|
2674 |
msgstr ""
|
2675 |
|
2676 |
+
#: includes/classes/class-auxin-welcome.php:1715
|
2677 |
msgid "Enter your token below to verify your Subscription"
|
2678 |
msgstr ""
|
2679 |
|
2680 |
+
#: includes/classes/class-auxin-welcome.php:1717
|
2681 |
msgid "Enter token here"
|
2682 |
msgstr ""
|
2683 |
|
2684 |
+
#: includes/classes/class-auxin-welcome.php:1719
|
2685 |
msgid "Verify token"
|
2686 |
msgstr ""
|
2687 |
|
2688 |
+
#: includes/classes/class-auxin-welcome.php:1732
|
2689 |
msgid "How to generate a token ?"
|
2690 |
msgstr ""
|
2691 |
|
2692 |
+
#: includes/classes/class-auxin-welcome.php:1733
|
2693 |
msgid "Don't have subscription?"
|
2694 |
msgstr ""
|
2695 |
|
2709 |
#: includes/elementor/widgets/recent-posts-tiles.php:92
|
2710 |
#: includes/elementor/widgets/recent-posts-timeline.php:92
|
2711 |
#: includes/elementor/widgets/recent-products.php:101
|
2712 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:947
|
2713 |
#: includes/elements/popular-posts-widget.php:16
|
2714 |
#: includes/elements/recent-posts-grid-carousel.php:16
|
2715 |
#: includes/elements/recent-posts-land-style.php:16
|
2936 |
#: includes/elementor/widgets/icon.php:178
|
2937 |
#: includes/elementor/widgets/image.php:327
|
2938 |
#: includes/elementor/widgets/modern-button.php:192
|
2939 |
+
#: includes/elementor/widgets/modern-button.php:804
|
2940 |
#: includes/elementor/widgets/quote.php:173
|
2941 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1622
|
2942 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1759
|
3245 |
#: includes/elementor/modules/dynamic-tags/post-time.php:34
|
3246 |
#: includes/elementor/modules/dynamic-tags/request-parameter.php:66
|
3247 |
#: includes/elementor/widgets/accordion.php:145
|
3248 |
+
#: includes/elementor/widgets/modern-button.php:274
|
3249 |
#: includes/elementor/widgets/svg.php:107
|
3250 |
#: includes/elementor/widgets/text.php:111
|
3251 |
#: includes/elementor/widgets/theme-elements/logo.php:135
|
4150 |
#: includes/elementor/widgets/heading-modern.php:915
|
4151 |
#: includes/elementor/widgets/heading-modern.php:991
|
4152 |
#: includes/elementor/widgets/heading-modern.php:1105
|
4153 |
+
#: includes/elementor/widgets/modern-button.php:655
|
4154 |
+
#: includes/elementor/widgets/modern-button.php:767
|
4155 |
+
#: includes/elementor/widgets/modern-button.php:873
|
4156 |
+
#: includes/elementor/widgets/modern-button.php:972
|
4157 |
#: includes/elementor/widgets/quote.php:288
|
4158 |
#: includes/elementor/widgets/tabs.php:480
|
4159 |
#: includes/elementor/widgets/theme-elements/breadcrumbs.php:240
|
4186 |
#: includes/elementor/widgets/icon.php:360
|
4187 |
#: includes/elementor/widgets/mailchimp.php:298
|
4188 |
#: includes/elementor/widgets/mailchimp.php:544
|
4189 |
+
#: includes/elementor/widgets/modern-button.php:388
|
4190 |
+
#: includes/elementor/widgets/modern-button.php:441
|
4191 |
+
#: includes/elementor/widgets/modern-button.php:897
|
4192 |
+
#: includes/elementor/widgets/modern-button.php:996
|
4193 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:957
|
4194 |
#: includes/elementor/widgets/recent-posts-land-style.php:551
|
4195 |
#: includes/elementor/widgets/recent-posts-masonry.php:630
|
4237 |
#: includes/elementor/widgets/image.php:502
|
4238 |
#: includes/elementor/widgets/mailchimp.php:326
|
4239 |
#: includes/elementor/widgets/mailchimp.php:571
|
4240 |
+
#: includes/elementor/widgets/modern-button.php:291
|
4241 |
+
#: includes/elementor/widgets/modern-button.php:351
|
4242 |
+
#: includes/elementor/widgets/modern-button.php:476
|
4243 |
+
#: includes/elementor/widgets/modern-button.php:576
|
4244 |
+
#: includes/elementor/widgets/modern-button.php:688
|
4245 |
+
#: includes/elementor/widgets/modern-button.php:814
|
4246 |
#: includes/elementor/widgets/recent-comments.php:181
|
4247 |
#: includes/elementor/widgets/recent-comments.php:264
|
4248 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:974
|
4375 |
#: includes/elementor/widgets/icon.php:311
|
4376 |
#: includes/elementor/widgets/mailchimp.php:310
|
4377 |
#: includes/elementor/widgets/mailchimp.php:556
|
4378 |
+
#: includes/elementor/widgets/modern-button.php:376
|
4379 |
+
#: includes/elementor/widgets/modern-button.php:429
|
4380 |
+
#: includes/elementor/widgets/modern-button.php:885
|
4381 |
+
#: includes/elementor/widgets/modern-button.php:984
|
4382 |
#: includes/elementor/widgets/quote.php:333
|
4383 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1403
|
4384 |
#: includes/elementor/widgets/staff.php:778
|
4449 |
#: includes/elementor/widgets/mailchimp.php:423
|
4450 |
#: includes/elementor/widgets/mailchimp.php:578
|
4451 |
#: includes/elementor/widgets/mailchimp.php:616
|
4452 |
+
#: includes/elementor/widgets/modern-button.php:492
|
4453 |
+
#: includes/elementor/widgets/modern-button.php:531
|
4454 |
+
#: includes/elementor/widgets/modern-button.php:592
|
4455 |
+
#: includes/elementor/widgets/modern-button.php:631
|
4456 |
+
#: includes/elementor/widgets/modern-button.php:704
|
4457 |
+
#: includes/elementor/widgets/modern-button.php:743
|
4458 |
+
#: includes/elementor/widgets/modern-button.php:844
|
4459 |
+
#: includes/elementor/widgets/modern-button.php:943
|
4460 |
#: includes/elementor/widgets/recent-comments.php:188
|
4461 |
#: includes/elementor/widgets/recent-comments.php:208
|
4462 |
#: includes/elementor/widgets/recent-comments.php:271
|
4602 |
#: includes/elementor/widgets/image.php:345
|
4603 |
#: includes/elementor/widgets/image.php:385
|
4604 |
#: includes/elementor/widgets/image.php:399
|
4605 |
+
#: includes/elementor/widgets/modern-button.php:223
|
4606 |
+
#: includes/elementor/widgets/modern-button.php:235
|
4607 |
#: includes/elementor/widgets/quote.php:221
|
4608 |
#: includes/elementor/widgets/recent-comments.php:155
|
4609 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:282
|
4748 |
#: includes/elementor/widgets/image.php:346
|
4749 |
#: includes/elementor/widgets/image.php:386
|
4750 |
#: includes/elementor/widgets/image.php:400
|
4751 |
+
#: includes/elementor/widgets/modern-button.php:224
|
4752 |
+
#: includes/elementor/widgets/modern-button.php:236
|
4753 |
#: includes/elementor/widgets/quote.php:222
|
4754 |
#: includes/elementor/widgets/recent-comments.php:156
|
4755 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:283
|
4879 |
#: includes/elementor/widgets/audio.php:150
|
4880 |
#: includes/elementor/widgets/button.php:275
|
4881 |
#: includes/elementor/widgets/button.php:283
|
4882 |
+
#: includes/elementor/widgets/modern-button.php:317
|
4883 |
#: includes/elementor/widgets/tabs.php:149
|
4884 |
#: includes/elementor/widgets/text.php:1028
|
4885 |
#: includes/elementor/widgets/theme-elements/menu.php:610
|
4991 |
#: includes/elementor/widgets/button.php:52
|
4992 |
#: includes/elementor/widgets/button.php:100
|
4993 |
#: includes/elementor/widgets/modern-button.php:101
|
4994 |
+
#: includes/elementor/widgets/modern-button.php:266
|
4995 |
#: includes/elementor/widgets/text.php:278
|
4996 |
#: includes/elementor/widgets/text.php:992
|
4997 |
#: includes/elementor/widgets/theme-elements/modern-search.php:99
|
5040 |
msgstr ""
|
5041 |
|
5042 |
#: includes/elementor/widgets/button.php:160
|
5043 |
+
#: includes/elementor/widgets/modern-button.php:305
|
5044 |
#: includes/elementor/widgets/text.php:1007 includes/elements/button.php:63
|
5045 |
#: includes/elements/text.php:674 includes/general-hooks.php:686
|
5046 |
#: includes/general-hooks.php:1091
|
5049 |
|
5050 |
#: includes/elementor/widgets/button.php:164
|
5051 |
#: includes/elementor/widgets/divider.php:147
|
5052 |
+
#: includes/elementor/widgets/modern-button.php:309
|
5053 |
#: includes/elementor/widgets/text.php:1011 includes/elements/button.php:67
|
5054 |
#: includes/elements/divider.php:91 includes/elements/text.php:678
|
5055 |
#: includes/general-hooks.php:690 includes/general-hooks.php:1095
|
5072 |
msgstr ""
|
5073 |
|
5074 |
#: includes/elementor/widgets/button.php:192
|
5075 |
+
#: includes/elementor/widgets/modern-button.php:292
|
5076 |
#: includes/elementor/widgets/text.php:1336 includes/elements/button.php:95
|
5077 |
#: includes/elements/text.php:712 includes/general-hooks.php:721
|
5078 |
#: includes/general-hooks.php:1126
|
5080 |
msgstr ""
|
5081 |
|
5082 |
#: includes/elementor/widgets/button.php:196
|
5083 |
+
#: includes/elementor/widgets/modern-button.php:293
|
5084 |
#: includes/elementor/widgets/text.php:1340 includes/elements/button.php:99
|
5085 |
#: includes/elements/text.php:716 includes/general-hooks.php:725
|
5086 |
#: includes/general-hooks.php:1130
|
5100 |
msgstr ""
|
5101 |
|
5102 |
#: includes/elementor/widgets/button.php:219
|
5103 |
+
#: includes/elementor/widgets/modern-button.php:279
|
5104 |
#: includes/elementor/widgets/text.php:1364 includes/elements/button.php:126
|
5105 |
#: includes/elements/text.php:746 includes/general-hooks.php:762
|
5106 |
#: includes/general-hooks.php:1167
|
5121 |
#: includes/elementor/widgets/carousel-navigation.php:292
|
5122 |
#: includes/elementor/widgets/carousel-navigation.php:399
|
5123 |
#: includes/elementor/widgets/heading-modern.php:949
|
5124 |
+
#: includes/elementor/widgets/modern-button.php:359
|
5125 |
+
#: includes/elementor/widgets/modern-button.php:412
|
5126 |
+
#: includes/elementor/widgets/modern-button.php:856
|
5127 |
+
#: includes/elementor/widgets/modern-button.php:955
|
5128 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1340
|
5129 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1370
|
5130 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1550
|
5164 |
#: includes/elementor/widgets/icon.php:107
|
5165 |
#: includes/elementor/widgets/icon.php:114
|
5166 |
#: includes/elementor/widgets/icon.php:194
|
5167 |
+
#: includes/elementor/widgets/modern-button.php:786
|
5168 |
#: includes/elementor/widgets/text.php:116
|
5169 |
#: includes/elementor/widgets/text.php:126
|
5170 |
#: includes/elementor/widgets/theme-elements/modern-search.php:106
|
5195 |
msgstr ""
|
5196 |
|
5197 |
#: includes/elementor/widgets/button.php:380
|
5198 |
+
#: includes/elementor/widgets/modern-button.php:801
|
5199 |
#: includes/elementor/widgets/text.php:1116 includes/elements/button.php:191
|
5200 |
#: includes/elements/text.php:809 includes/general-hooks.php:847
|
5201 |
#: includes/general-hooks.php:1252
|
5233 |
#: includes/elementor/widgets/custom-list.php:765
|
5234 |
#: includes/elementor/widgets/image.php:198
|
5235 |
#: includes/elementor/widgets/modern-button.php:108
|
5236 |
+
#: includes/elementor/widgets/modern-button.php:465
|
5237 |
#: includes/elementor/widgets/quote.php:98
|
5238 |
#: includes/elementor/widgets/quote.php:148
|
5239 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1349
|
5255 |
#: includes/elementor/widgets/heading-modern.php:734
|
5256 |
#: includes/elementor/widgets/heading-modern.php:772
|
5257 |
#: includes/elementor/widgets/image.php:683
|
5258 |
+
#: includes/elementor/widgets/modern-button.php:505
|
5259 |
+
#: includes/elementor/widgets/modern-button.php:543
|
5260 |
+
#: includes/elementor/widgets/modern-button.php:605
|
5261 |
+
#: includes/elementor/widgets/modern-button.php:643
|
5262 |
+
#: includes/elementor/widgets/modern-button.php:717
|
5263 |
+
#: includes/elementor/widgets/modern-button.php:755
|
5264 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1839
|
5265 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1895
|
5266 |
#: includes/elementor/widgets/recent-posts-masonry.php:1255
|
5348 |
#: includes/elementor/widgets/carousel-navigation.php:430
|
5349 |
#: includes/elementor/widgets/custom-list.php:949
|
5350 |
#: includes/elementor/widgets/icon.php:294
|
5351 |
+
#: includes/elementor/widgets/modern-button.php:301
|
5352 |
+
#: includes/elementor/widgets/modern-button.php:821
|
5353 |
+
#: includes/elementor/widgets/modern-button.php:920
|
5354 |
#: includes/elementor/widgets/testimonial.php:756
|
5355 |
#: includes/elementor/widgets/text.php:1003
|
5356 |
#: includes/elementor/widgets/theme-elements/breadcrumbs.php:268
|
5880 |
#: includes/elementor/widgets/icon.php:166
|
5881 |
#: includes/elementor/widgets/image.php:314
|
5882 |
#: includes/elementor/widgets/modern-button.php:180
|
5883 |
+
#: includes/elementor/widgets/modern-button.php:797
|
5884 |
#: includes/elementor/widgets/svg.php:279
|
5885 |
#: includes/elementor/widgets/theme-elements/breadcrumbs.php:427
|
5886 |
#: includes/elementor/widgets/theme-elements/copyright.php:138
|
6200 |
|
6201 |
#: includes/elementor/widgets/heading-modern.php:244
|
6202 |
#: includes/elementor/widgets/modern-button.php:117
|
6203 |
+
#: includes/elementor/widgets/modern-button.php:562
|
6204 |
#: includes/elements/highlight.php:18
|
6205 |
msgid "Highlighted Text"
|
6206 |
msgstr ""
|
6207 |
|
6208 |
#: includes/elementor/widgets/heading-modern.php:257
|
6209 |
#: includes/elementor/widgets/modern-button.php:126
|
6210 |
+
#: includes/elementor/widgets/modern-button.php:674
|
6211 |
msgid "After Text"
|
6212 |
msgstr ""
|
6213 |
|
6243 |
msgstr ""
|
6244 |
|
6245 |
#: includes/elementor/widgets/icon.php:137
|
6246 |
+
#: includes/elementor/widgets/modern-button.php:287
|
6247 |
msgid "Shape"
|
6248 |
msgstr ""
|
6249 |
|
6526 |
msgid "Justified"
|
6527 |
msgstr ""
|
6528 |
|
6529 |
+
#: includes/elementor/widgets/modern-button.php:221
|
6530 |
+
msgid "To use this option, the above link option should be a video"
|
6531 |
+
msgstr ""
|
6532 |
+
|
6533 |
+
#: includes/elementor/widgets/modern-button.php:233
|
6534 |
msgid "Display Icon"
|
6535 |
msgstr ""
|
6536 |
|
6537 |
+
#: includes/elementor/widgets/modern-button.php:323
|
6538 |
msgid "black"
|
6539 |
msgstr ""
|
6540 |
|
6541 |
+
#: includes/elementor/widgets/modern-button.php:327
|
6542 |
msgid "White"
|
6543 |
msgstr ""
|
6544 |
|
6545 |
+
#: includes/elementor/widgets/modern-button.php:331
|
6546 |
msgid "Ball Blue"
|
6547 |
msgstr ""
|
6548 |
|
6549 |
+
#: includes/elementor/widgets/modern-button.php:335
|
6550 |
msgid "Mikado Yellow"
|
6551 |
msgstr ""
|
6552 |
|
6553 |
+
#: includes/elementor/widgets/modern-button.php:339
|
6554 |
msgid "Carmine Pink"
|
6555 |
msgstr ""
|
6556 |
|
6557 |
+
#: includes/elementor/widgets/modern-button.php:802
|
6558 |
msgid "Below"
|
6559 |
msgstr ""
|
6560 |
|
7891 |
msgstr ""
|
7892 |
|
7893 |
#: includes/elementor/widgets/search.php:47
|
7894 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:909
|
7895 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:912
|
7896 |
#: includes/elements/search.php:14
|
7897 |
msgid "Search"
|
7898 |
msgstr ""
|
public/assets/js/plugins.js
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
/*! Phlox Core Plugin - v2.6.
|
2 |
* All required plugins
|
3 |
* http://phlox.pro/
|
4 |
*/
|
1 |
+
/*! Phlox Core Plugin - v2.6.1 (2020-07)
|
2 |
* All required plugins
|
3 |
* http://phlox.pro/
|
4 |
*/
|