Version Description
Download this release
Release Info
Developer | averta |
Plugin | Shortcodes and extra features for Phlox theme |
Version | 2.6.2 |
Comparing to | |
See all releases |
Code changes from version 2.6.1 to 2.6.2
- README.txt +1 -1
- admin/assets/js/plugins.js +1 -1
- admin/includes/classes/class-auxin-cli-commands.php +49 -0
- auxin-elements.php +1 -1
- includes/classes/class-auxin-demo-importer.php +2 -1
- includes/define.php +1 -1
- includes/elementor/widgets/mailchimp.php +1 -1
- includes/elementor/widgets/modern-button.php +5 -2
- includes/elementor/widgets/theme-elements/menu.php +33 -1
- includes/general-hooks.php +6 -1
- languages/auxin-elements.pot +120 -111
- public/assets/js/plugins.js +1 -1
- public/class-auxels.php +3 -0
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 |
|
7 |
Requires PHP: 5.4
|
8 |
Requires at least: 4.6
|
9 |
Tested up to: 5.4.3
|
10 |
+
Stable tag: 2.6.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.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.2 (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!
|
admin/includes/classes/class-auxin-cli-commands.php
ADDED
@@ -0,0 +1,49 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
*
|
4 |
+
*
|
5 |
+
* @package Auxin
|
6 |
+
* @license LICENSE.txt
|
7 |
+
* @author averta
|
8 |
+
* @link http://phlox.pro/
|
9 |
+
* @copyright (c) 2010-2020 averta
|
10 |
+
*/
|
11 |
+
|
12 |
+
// no direct access allowed
|
13 |
+
if ( ! defined('ABSPATH') ) {
|
14 |
+
die();
|
15 |
+
}
|
16 |
+
|
17 |
+
/**
|
18 |
+
* WP Cli Auxin Commands
|
19 |
+
*/
|
20 |
+
class Auxin_CLI_Commands {
|
21 |
+
|
22 |
+
/**
|
23 |
+
* flush cache
|
24 |
+
*
|
25 |
+
* @synopsis [--network]
|
26 |
+
*/
|
27 |
+
public function flush_cache( $args, $assoc_args ) {
|
28 |
+
if ( ! class_exists( 'autoptimizeCache' ) ) {
|
29 |
+
WP_CLI::error( 'Autoptimize plugin need to be active.' );
|
30 |
+
return;
|
31 |
+
}
|
32 |
+
|
33 |
+
if ( ! isset( $assoc_args['network'] ) || ! is_multisite() ) {
|
34 |
+
autoptimizeCache::clearall();
|
35 |
+
} else {
|
36 |
+
$sites = get_sites();
|
37 |
+
foreach ( $sites as $site ) {
|
38 |
+
switch_to_blog( $site->blog_id );
|
39 |
+
autoptimizeCache::clearall();
|
40 |
+
restore_current_blog();
|
41 |
+
}
|
42 |
+
}
|
43 |
+
|
44 |
+
WP_CLI::success( 'Flushing cache proccess done.' );
|
45 |
+
}
|
46 |
+
}
|
47 |
+
|
48 |
+
WP_CLI::add_command( 'auxin', 'Auxin_CLI_Commands');
|
49 |
+
|
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.2
|
16 |
* Author: averta
|
17 |
* Author URI: http://averta.net
|
18 |
* Text Domain: auxin-elements
|
includes/classes/class-auxin-demo-importer.php
CHANGED
@@ -30,7 +30,8 @@ class Auxin_Demo_Importer {
|
|
30 |
'initial_version_free',
|
31 |
'initial_date_pro',
|
32 |
'initial_version_pro',
|
33 |
-
'client_key'
|
|
|
34 |
];
|
35 |
|
36 |
/**
|
30 |
'initial_version_free',
|
31 |
'initial_date_pro',
|
32 |
'initial_version_pro',
|
33 |
+
'client_key',
|
34 |
+
'imported_demo_id'
|
35 |
];
|
36 |
|
37 |
/**
|
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.2' );
|
16 |
|
17 |
define( 'AUXELS_SLUG' , 'auxin-elements' );
|
18 |
|
includes/elementor/widgets/mailchimp.php
CHANGED
@@ -557,7 +557,7 @@ class MailChimp extends Widget_Base {
|
|
557 |
'type' => Controls_Manager::DIMENSIONS,
|
558 |
'size_units' => [ 'px', '%', 'em' ],
|
559 |
'selectors' => [
|
560 |
-
'{{WRAPPER}} .mc4wp-form input[type="submit"]' => 'padding:{{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT};'
|
561 |
]
|
562 |
]
|
563 |
);
|
557 |
'type' => Controls_Manager::DIMENSIONS,
|
558 |
'size_units' => [ 'px', '%', 'em' ],
|
559 |
'selectors' => [
|
560 |
+
'{{WRAPPER}} .mc4wp-form input[type="submit"]' => 'padding:{{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};'
|
561 |
]
|
562 |
]
|
563 |
);
|
includes/elementor/widgets/modern-button.php
CHANGED
@@ -195,9 +195,12 @@ class ModernButton extends Widget_Base {
|
|
195 |
'justify' => [
|
196 |
'title' => __( 'Justified', 'auxin-elements' ),
|
197 |
'icon' => 'eicon-text-align-justify',
|
198 |
-
]
|
199 |
],
|
200 |
-
|
|
|
|
|
|
|
201 |
]
|
202 |
);
|
203 |
|
195 |
'justify' => [
|
196 |
'title' => __( 'Justified', 'auxin-elements' ),
|
197 |
'icon' => 'eicon-text-align-justify',
|
198 |
+
]
|
199 |
],
|
200 |
+
'default' => 'left',
|
201 |
+
'selectors' => [
|
202 |
+
'{{WRAPPER}} .aux-modern-button-wrapper' => 'text-align:{{VALUE}};',
|
203 |
+
]
|
204 |
]
|
205 |
);
|
206 |
|
includes/elementor/widgets/theme-elements/menu.php
CHANGED
@@ -1392,7 +1392,39 @@ class MenuBox extends Widget_Base {
|
|
1392 |
Group_Control_Text_Shadow::get_type(),
|
1393 |
[
|
1394 |
'name' => 'fullscr_current_item_text_shadow',
|
1395 |
-
'selector' => '{{WRAPPER}} .aux-fs-menu .aux-menu-depth-0.current-menu-item > a'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1396 |
]
|
1397 |
);
|
1398 |
|
1392 |
Group_Control_Text_Shadow::get_type(),
|
1393 |
[
|
1394 |
'name' => 'fullscr_current_item_text_shadow',
|
1395 |
+
'selector' => '{{WRAPPER}} .aux-fs-menu .aux-menu-depth-0.current-menu-item > a',
|
1396 |
+
'separator' => 'after'
|
1397 |
+
]
|
1398 |
+
);
|
1399 |
+
|
1400 |
+
$this->add_control(
|
1401 |
+
'fullscr_close_btn_heading',
|
1402 |
+
[
|
1403 |
+
'label' => __( 'Close Button', 'auxin-elements' ),
|
1404 |
+
'type' => Controls_Manager::HEADING
|
1405 |
+
]
|
1406 |
+
);
|
1407 |
+
|
1408 |
+
$this->add_control(
|
1409 |
+
'fullscr_close_btn_border_color',
|
1410 |
+
[
|
1411 |
+
'label' => __( 'Outline Color', 'auxin-elements' ),
|
1412 |
+
'type' => Controls_Manager::COLOR,
|
1413 |
+
'selectors' => [
|
1414 |
+
'{{WRAPPER}} .aux-fs-popup .aux-panel-close' => 'border-color: {{VALUE}};'
|
1415 |
+
]
|
1416 |
+
]
|
1417 |
+
);
|
1418 |
+
|
1419 |
+
$this->add_control(
|
1420 |
+
'fullscr_close_btn_symbol_color',
|
1421 |
+
[
|
1422 |
+
'label' => __( 'Outline Color', 'auxin-elements' ),
|
1423 |
+
'type' => Controls_Manager::COLOR,
|
1424 |
+
'selectors' => [
|
1425 |
+
'{{WRAPPER}} .aux-fs-popup .aux-panel-close .aux-close:before' => 'background-color: {{VALUE}};',
|
1426 |
+
'{{WRAPPER}} .aux-fs-popup .aux-panel-close .aux-close:after' => 'background-color: {{VALUE}};'
|
1427 |
+
]
|
1428 |
]
|
1429 |
);
|
1430 |
|
includes/general-hooks.php
CHANGED
@@ -2345,7 +2345,7 @@ function auxin_after_setup_theme_extra(){
|
|
2345 |
// gererate shortcodes in widget text
|
2346 |
add_filter('widget_text', 'do_shortcode');
|
2347 |
// Remove wp ulike auto disaply filter
|
2348 |
-
remove_filter( 'the_content', 'wp_ulike_put_posts' );
|
2349 |
}
|
2350 |
add_action( 'after_setup_theme', 'auxin_after_setup_theme_extra' );
|
2351 |
|
@@ -3465,6 +3465,11 @@ function auxels_improve_usage_feedback( $args ) {
|
|
3465 |
if ( false == $transient = auxin_get_transient( 'auxels_usage_trac' ) ) {
|
3466 |
$migrated = ( THEME_ID == 'phlox-pro' && ! empty( get_option( 'theme_mods_phlox' ) ) ) ? true : false;
|
3467 |
$args['body']['client_meta']['migrated'] = $migrated;
|
|
|
|
|
|
|
|
|
|
|
3468 |
|
3469 |
// plugins usage
|
3470 |
$plugins = [
|
2345 |
// gererate shortcodes in widget text
|
2346 |
add_filter('widget_text', 'do_shortcode');
|
2347 |
// Remove wp ulike auto disaply filter
|
2348 |
+
remove_filter( 'the_content', 'wp_ulike_put_posts', 15 );
|
2349 |
}
|
2350 |
add_action( 'after_setup_theme', 'auxin_after_setup_theme_extra' );
|
2351 |
|
3465 |
if ( false == $transient = auxin_get_transient( 'auxels_usage_trac' ) ) {
|
3466 |
$migrated = ( THEME_ID == 'phlox-pro' && ! empty( get_option( 'theme_mods_phlox' ) ) ) ? true : false;
|
3467 |
$args['body']['client_meta']['migrated'] = $migrated;
|
3468 |
+
|
3469 |
+
$last_imported_demo = get_option( 'auxin_last_imported_demo', '' );
|
3470 |
+
if ( ! empty( $last_imported_demo ) && $last_imported_demo['id'] ) {
|
3471 |
+
$args['body']['client_meta'][ THEME_ID . '_imported_demo_id' ] = $last_imported_demo['id'];
|
3472 |
+
}
|
3473 |
|
3474 |
// plugins usage
|
3475 |
$plugins = [
|
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"
|
@@ -87,14 +87,14 @@ msgid "Activate"
|
|
87 |
msgstr ""
|
88 |
|
89 |
#: admin/includes/admin-ajax.php:242 admin/includes/admin-ajax.php:257
|
90 |
-
#: includes/classes/class-auxin-demo-importer.php:
|
91 |
msgid "Retry"
|
92 |
msgstr ""
|
93 |
|
94 |
#: admin/includes/admin-ajax.php:253
|
95 |
-
#: includes/classes/class-auxin-demo-importer.php:
|
96 |
-
#: includes/classes/class-auxin-demo-importer.php:
|
97 |
-
#: includes/classes/class-auxin-demo-importer.php:
|
98 |
#: includes/classes/class-auxin-welcome.php:1234
|
99 |
#: includes/classes/class-auxin-welcome.php:1269
|
100 |
#: includes/classes/class-auxin-welcome.php:1629
|
@@ -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
|
@@ -1888,92 +1888,92 @@ msgstr ""
|
|
1888 |
msgid "%s Status"
|
1889 |
msgstr ""
|
1890 |
|
1891 |
-
#: includes/classes/class-auxin-demo-importer.php:
|
1892 |
msgid "Import content"
|
1893 |
msgstr ""
|
1894 |
|
1895 |
-
#: includes/classes/class-auxin-demo-importer.php:
|
1896 |
msgid "Page has been successfully generated."
|
1897 |
msgstr ""
|
1898 |
|
1899 |
-
#: includes/classes/class-auxin-demo-importer.php:
|
1900 |
msgid "Edit Page"
|
1901 |
msgstr ""
|
1902 |
|
1903 |
-
#: includes/classes/class-auxin-demo-importer.php:
|
1904 |
msgid "Template content has been successfully imported."
|
1905 |
msgstr ""
|
1906 |
|
1907 |
-
#: includes/classes/class-auxin-demo-importer.php:
|
1908 |
-
#: includes/classes/class-auxin-demo-importer.php:
|
1909 |
#: includes/classes/class-auxin-welcome.php:809
|
1910 |
msgid "Copy to clipboard"
|
1911 |
msgstr ""
|
1912 |
|
1913 |
-
#: includes/classes/class-auxin-demo-importer.php:
|
1914 |
msgid "Import to my templates"
|
1915 |
msgstr ""
|
1916 |
|
1917 |
-
#: includes/classes/class-auxin-demo-importer.php:
|
1918 |
msgid "Process failed!."
|
1919 |
msgstr ""
|
1920 |
|
1921 |
-
#: includes/classes/class-auxin-demo-importer.php:
|
1922 |
msgid "Invalid Inputs."
|
1923 |
msgstr ""
|
1924 |
|
1925 |
-
#: includes/classes/class-auxin-demo-importer.php:
|
1926 |
msgid "Step Failed!"
|
1927 |
msgstr ""
|
1928 |
|
1929 |
-
#: includes/classes/class-auxin-demo-importer.php:
|
1930 |
msgid "Error in getting data!"
|
1931 |
msgstr ""
|
1932 |
|
1933 |
-
#: includes/classes/class-auxin-demo-importer.php:
|
1934 |
msgid "Downloading Medias"
|
1935 |
msgstr ""
|
1936 |
|
1937 |
-
#: includes/classes/class-auxin-demo-importer.php:
|
1938 |
msgid "Importing Media"
|
1939 |
msgstr ""
|
1940 |
|
1941 |
-
#: includes/classes/class-auxin-demo-importer.php:
|
1942 |
-
#: includes/classes/class-auxin-demo-importer.php:
|
1943 |
msgid "Importing Users"
|
1944 |
msgstr ""
|
1945 |
|
1946 |
-
#: includes/classes/class-auxin-demo-importer.php:
|
1947 |
-
#: includes/classes/class-auxin-demo-importer.php:
|
1948 |
msgid "Importing Contents"
|
1949 |
msgstr ""
|
1950 |
|
1951 |
-
#: includes/classes/class-auxin-demo-importer.php:
|
1952 |
msgid "Importing Options"
|
1953 |
msgstr ""
|
1954 |
|
1955 |
-
#: includes/classes/class-auxin-demo-importer.php:
|
1956 |
-
#: includes/classes/class-auxin-demo-importer.php:
|
1957 |
msgid "Importing Menus"
|
1958 |
msgstr ""
|
1959 |
|
1960 |
-
#: includes/classes/class-auxin-demo-importer.php:
|
1961 |
msgid "Importing Widgets"
|
1962 |
msgstr ""
|
1963 |
|
1964 |
-
#: includes/classes/class-auxin-demo-importer.php:
|
1965 |
msgid "Retrieve Body Fails"
|
1966 |
msgstr ""
|
1967 |
|
1968 |
-
#: includes/classes/class-auxin-demo-importer.php:
|
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 |
|
@@ -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
|
@@ -3177,7 +3177,7 @@ msgstr ""
|
|
3177 |
#: includes/elementor/widgets/heading-modern.php:120
|
3178 |
#: includes/elementor/widgets/heading-modern.php:270
|
3179 |
#: includes/elementor/widgets/icon.php:154
|
3180 |
-
#: includes/elementor/widgets/modern-button.php:
|
3181 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:743
|
3182 |
#: includes/elementor/widgets/text.php:321
|
3183 |
#: includes/elementor/widgets/theme-elements/logo.php:182
|
@@ -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
|
@@ -5022,7 +5022,7 @@ msgid "If you want to link your button."
|
|
5022 |
msgstr ""
|
5023 |
|
5024 |
#: includes/elementor/widgets/button.php:130
|
5025 |
-
#: includes/elementor/widgets/modern-button.php:
|
5026 |
msgid "Open Video in Lightbox"
|
5027 |
msgstr ""
|
5028 |
|
@@ -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,35 +6526,35 @@ msgstr ""
|
|
6526 |
msgid "Justified"
|
6527 |
msgstr ""
|
6528 |
|
6529 |
-
#: includes/elementor/widgets/modern-button.php:
|
6530 |
msgid "To use this option, the above link option should be a video"
|
6531 |
msgstr ""
|
6532 |
|
6533 |
-
#: includes/elementor/widgets/modern-button.php:
|
6534 |
msgid "Display Icon"
|
6535 |
msgstr ""
|
6536 |
|
6537 |
-
#: includes/elementor/widgets/modern-button.php:
|
6538 |
msgid "black"
|
6539 |
msgstr ""
|
6540 |
|
6541 |
-
#: includes/elementor/widgets/modern-button.php:
|
6542 |
msgid "White"
|
6543 |
msgstr ""
|
6544 |
|
6545 |
-
#: includes/elementor/widgets/modern-button.php:
|
6546 |
msgid "Ball Blue"
|
6547 |
msgstr ""
|
6548 |
|
6549 |
-
#: includes/elementor/widgets/modern-button.php:
|
6550 |
msgid "Mikado Yellow"
|
6551 |
msgstr ""
|
6552 |
|
6553 |
-
#: includes/elementor/widgets/modern-button.php:
|
6554 |
msgid "Carmine Pink"
|
6555 |
msgstr ""
|
6556 |
|
6557 |
-
#: includes/elementor/widgets/modern-button.php:
|
6558 |
msgid "Below"
|
6559 |
msgstr ""
|
6560 |
|
@@ -8627,7 +8627,16 @@ msgstr ""
|
|
8627 |
msgid "Fullscreen Menu"
|
8628 |
msgstr ""
|
8629 |
|
8630 |
-
#: includes/elementor/widgets/theme-elements/menu.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8631 |
msgid "There are no menus in your site."
|
8632 |
msgstr ""
|
8633 |
|
1 |
# Averta Copyright (c) {2020}
|
2 |
msgid ""
|
3 |
msgstr ""
|
4 |
+
"Project-Id-Version: Phlox Core Elements 2.6.2\n"
|
5 |
"Report-Msgid-Bugs-To: http://averta.net/phlox/wordpress-theme/\n"
|
6 |
+
"POT-Creation-Date: 2020-07-19 09:28: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"
|
87 |
msgstr ""
|
88 |
|
89 |
#: admin/includes/admin-ajax.php:242 admin/includes/admin-ajax.php:257
|
90 |
+
#: includes/classes/class-auxin-demo-importer.php:190
|
91 |
msgid "Retry"
|
92 |
msgstr ""
|
93 |
|
94 |
#: admin/includes/admin-ajax.php:253
|
95 |
+
#: includes/classes/class-auxin-demo-importer.php:114
|
96 |
+
#: includes/classes/class-auxin-demo-importer.php:157
|
97 |
+
#: includes/classes/class-auxin-demo-importer.php:192
|
98 |
#: includes/classes/class-auxin-welcome.php:1234
|
99 |
#: includes/classes/class-auxin-welcome.php:1269
|
100 |
#: includes/classes/class-auxin-welcome.php:1629
|
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:806
|
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:311
|
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:310
|
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:309
|
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:281
|
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:407
|
1434 |
+
#: includes/elementor/widgets/modern-button.php:518
|
1435 |
+
#: includes/elementor/widgets/modern-button.php:618
|
1436 |
+
#: includes/elementor/widgets/modern-button.php:730
|
1437 |
+
#: includes/elementor/widgets/modern-button.php:916
|
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
|
1888 |
msgid "%s Status"
|
1889 |
msgstr ""
|
1890 |
|
1891 |
+
#: includes/classes/class-auxin-demo-importer.php:76
|
1892 |
msgid "Import content"
|
1893 |
msgstr ""
|
1894 |
|
1895 |
+
#: includes/classes/class-auxin-demo-importer.php:108
|
1896 |
msgid "Page has been successfully generated."
|
1897 |
msgstr ""
|
1898 |
|
1899 |
+
#: includes/classes/class-auxin-demo-importer.php:111
|
1900 |
msgid "Edit Page"
|
1901 |
msgstr ""
|
1902 |
|
1903 |
+
#: includes/classes/class-auxin-demo-importer.php:138
|
1904 |
msgid "Template content has been successfully imported."
|
1905 |
msgstr ""
|
1906 |
|
1907 |
+
#: includes/classes/class-auxin-demo-importer.php:146
|
1908 |
+
#: includes/classes/class-auxin-demo-importer.php:165
|
1909 |
#: includes/classes/class-auxin-welcome.php:809
|
1910 |
msgid "Copy to clipboard"
|
1911 |
msgstr ""
|
1912 |
|
1913 |
+
#: includes/classes/class-auxin-demo-importer.php:155
|
1914 |
msgid "Import to my templates"
|
1915 |
msgstr ""
|
1916 |
|
1917 |
+
#: includes/classes/class-auxin-demo-importer.php:182
|
1918 |
msgid "Process failed!."
|
1919 |
msgstr ""
|
1920 |
|
1921 |
+
#: includes/classes/class-auxin-demo-importer.php:210
|
1922 |
msgid "Invalid Inputs."
|
1923 |
msgstr ""
|
1924 |
|
1925 |
+
#: includes/classes/class-auxin-demo-importer.php:241
|
1926 |
msgid "Step Failed!"
|
1927 |
msgstr ""
|
1928 |
|
1929 |
+
#: includes/classes/class-auxin-demo-importer.php:248
|
1930 |
msgid "Error in getting data!"
|
1931 |
msgstr ""
|
1932 |
|
1933 |
+
#: includes/classes/class-auxin-demo-importer.php:271
|
1934 |
msgid "Downloading Medias"
|
1935 |
msgstr ""
|
1936 |
|
1937 |
+
#: includes/classes/class-auxin-demo-importer.php:277
|
1938 |
msgid "Importing Media"
|
1939 |
msgstr ""
|
1940 |
|
1941 |
+
#: includes/classes/class-auxin-demo-importer.php:293
|
1942 |
+
#: includes/classes/class-auxin-demo-importer.php:1214
|
1943 |
msgid "Importing Users"
|
1944 |
msgstr ""
|
1945 |
|
1946 |
+
#: includes/classes/class-auxin-demo-importer.php:298
|
1947 |
+
#: includes/classes/class-auxin-demo-importer.php:310
|
1948 |
msgid "Importing Contents"
|
1949 |
msgstr ""
|
1950 |
|
1951 |
+
#: includes/classes/class-auxin-demo-importer.php:322
|
1952 |
msgid "Importing Options"
|
1953 |
msgstr ""
|
1954 |
|
1955 |
+
#: includes/classes/class-auxin-demo-importer.php:339
|
1956 |
+
#: includes/classes/class-auxin-demo-importer.php:545
|
1957 |
msgid "Importing Menus"
|
1958 |
msgstr ""
|
1959 |
|
1960 |
+
#: includes/classes/class-auxin-demo-importer.php:345
|
1961 |
msgid "Importing Widgets"
|
1962 |
msgstr ""
|
1963 |
|
1964 |
+
#: includes/classes/class-auxin-demo-importer.php:425
|
1965 |
msgid "Retrieve Body Fails"
|
1966 |
msgstr ""
|
1967 |
|
1968 |
+
#: includes/classes/class-auxin-demo-importer.php:611
|
1969 |
msgid "Importing Sliders"
|
1970 |
msgstr ""
|
1971 |
|
1972 |
+
#: includes/classes/class-auxin-demo-importer.php:1277
|
1973 |
msgid "Preparing Site ..."
|
1974 |
msgstr ""
|
1975 |
|
1976 |
+
#: includes/classes/class-auxin-demo-importer.php:1292
|
1977 |
msgid "All steps are successful"
|
1978 |
msgstr ""
|
1979 |
|
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:807
|
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
|
3177 |
#: includes/elementor/widgets/heading-modern.php:120
|
3178 |
#: includes/elementor/widgets/heading-modern.php:270
|
3179 |
#: includes/elementor/widgets/icon.php:154
|
3180 |
+
#: includes/elementor/widgets/modern-button.php:210
|
3181 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:743
|
3182 |
#: includes/elementor/widgets/text.php:321
|
3183 |
#: includes/elementor/widgets/theme-elements/logo.php:182
|
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:277
|
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:658
|
4154 |
+
#: includes/elementor/widgets/modern-button.php:770
|
4155 |
+
#: includes/elementor/widgets/modern-button.php:876
|
4156 |
+
#: includes/elementor/widgets/modern-button.php:975
|
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:391
|
4190 |
+
#: includes/elementor/widgets/modern-button.php:444
|
4191 |
+
#: includes/elementor/widgets/modern-button.php:900
|
4192 |
+
#: includes/elementor/widgets/modern-button.php:999
|
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:294
|
4241 |
+
#: includes/elementor/widgets/modern-button.php:354
|
4242 |
+
#: includes/elementor/widgets/modern-button.php:479
|
4243 |
+
#: includes/elementor/widgets/modern-button.php:579
|
4244 |
+
#: includes/elementor/widgets/modern-button.php:691
|
4245 |
+
#: includes/elementor/widgets/modern-button.php:817
|
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:379
|
4379 |
+
#: includes/elementor/widgets/modern-button.php:432
|
4380 |
+
#: includes/elementor/widgets/modern-button.php:888
|
4381 |
+
#: includes/elementor/widgets/modern-button.php:987
|
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:495
|
4453 |
+
#: includes/elementor/widgets/modern-button.php:534
|
4454 |
+
#: includes/elementor/widgets/modern-button.php:595
|
4455 |
+
#: includes/elementor/widgets/modern-button.php:634
|
4456 |
+
#: includes/elementor/widgets/modern-button.php:707
|
4457 |
+
#: includes/elementor/widgets/modern-button.php:746
|
4458 |
+
#: includes/elementor/widgets/modern-button.php:847
|
4459 |
+
#: includes/elementor/widgets/modern-button.php:946
|
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:226
|
4606 |
+
#: includes/elementor/widgets/modern-button.php:238
|
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:227
|
4752 |
+
#: includes/elementor/widgets/modern-button.php:239
|
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:320
|
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:269
|
4995 |
#: includes/elementor/widgets/text.php:278
|
4996 |
#: includes/elementor/widgets/text.php:992
|
4997 |
#: includes/elementor/widgets/theme-elements/modern-search.php:99
|
5022 |
msgstr ""
|
5023 |
|
5024 |
#: includes/elementor/widgets/button.php:130
|
5025 |
+
#: includes/elementor/widgets/modern-button.php:223
|
5026 |
msgid "Open Video in Lightbox"
|
5027 |
msgstr ""
|
5028 |
|
5040 |
msgstr ""
|
5041 |
|
5042 |
#: includes/elementor/widgets/button.php:160
|
5043 |
+
#: includes/elementor/widgets/modern-button.php:308
|
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:312
|
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:295
|
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:296
|
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:282
|
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:362
|
5125 |
+
#: includes/elementor/widgets/modern-button.php:415
|
5126 |
+
#: includes/elementor/widgets/modern-button.php:859
|
5127 |
+
#: includes/elementor/widgets/modern-button.php:958
|
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:789
|
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:804
|
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:468
|
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:508
|
5259 |
+
#: includes/elementor/widgets/modern-button.php:546
|
5260 |
+
#: includes/elementor/widgets/modern-button.php:608
|
5261 |
+
#: includes/elementor/widgets/modern-button.php:646
|
5262 |
+
#: includes/elementor/widgets/modern-button.php:720
|
5263 |
+
#: includes/elementor/widgets/modern-button.php:758
|
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:304
|
5352 |
+
#: includes/elementor/widgets/modern-button.php:824
|
5353 |
+
#: includes/elementor/widgets/modern-button.php:923
|
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:800
|
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:565
|
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:677
|
6211 |
msgid "After Text"
|
6212 |
msgstr ""
|
6213 |
|
6243 |
msgstr ""
|
6244 |
|
6245 |
#: includes/elementor/widgets/icon.php:137
|
6246 |
+
#: includes/elementor/widgets/modern-button.php:290
|
6247 |
msgid "Shape"
|
6248 |
msgstr ""
|
6249 |
|
6526 |
msgid "Justified"
|
6527 |
msgstr ""
|
6528 |
|
6529 |
+
#: includes/elementor/widgets/modern-button.php:224
|
6530 |
msgid "To use this option, the above link option should be a video"
|
6531 |
msgstr ""
|
6532 |
|
6533 |
+
#: includes/elementor/widgets/modern-button.php:236
|
6534 |
msgid "Display Icon"
|
6535 |
msgstr ""
|
6536 |
|
6537 |
+
#: includes/elementor/widgets/modern-button.php:326
|
6538 |
msgid "black"
|
6539 |
msgstr ""
|
6540 |
|
6541 |
+
#: includes/elementor/widgets/modern-button.php:330
|
6542 |
msgid "White"
|
6543 |
msgstr ""
|
6544 |
|
6545 |
+
#: includes/elementor/widgets/modern-button.php:334
|
6546 |
msgid "Ball Blue"
|
6547 |
msgstr ""
|
6548 |
|
6549 |
+
#: includes/elementor/widgets/modern-button.php:338
|
6550 |
msgid "Mikado Yellow"
|
6551 |
msgstr ""
|
6552 |
|
6553 |
+
#: includes/elementor/widgets/modern-button.php:342
|
6554 |
msgid "Carmine Pink"
|
6555 |
msgstr ""
|
6556 |
|
6557 |
+
#: includes/elementor/widgets/modern-button.php:805
|
6558 |
msgid "Below"
|
6559 |
msgstr ""
|
6560 |
|
8627 |
msgid "Fullscreen Menu"
|
8628 |
msgstr ""
|
8629 |
|
8630 |
+
#: includes/elementor/widgets/theme-elements/menu.php:1403
|
8631 |
+
msgid "Close Button"
|
8632 |
+
msgstr ""
|
8633 |
+
|
8634 |
+
#: includes/elementor/widgets/theme-elements/menu.php:1411
|
8635 |
+
#: includes/elementor/widgets/theme-elements/menu.php:1422
|
8636 |
+
msgid "Outline Color"
|
8637 |
+
msgstr ""
|
8638 |
+
|
8639 |
+
#: includes/elementor/widgets/theme-elements/menu.php:1447
|
8640 |
msgid "There are no menus in your site."
|
8641 |
msgstr ""
|
8642 |
|
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.2 (2020-07)
|
2 |
* All required plugins
|
3 |
* http://phlox.pro/
|
4 |
*/
|
public/class-auxels.php
CHANGED
@@ -81,6 +81,9 @@ class AUXELS {
|
|
81 |
// load common functionalities
|
82 |
include_once( AUXELS_INC_DIR . '/index.php' );
|
83 |
|
|
|
|
|
|
|
84 |
|
85 |
// Dashboard and Administrative Functionality
|
86 |
if ( is_admin() ) {
|
81 |
// load common functionalities
|
82 |
include_once( AUXELS_INC_DIR . '/index.php' );
|
83 |
|
84 |
+
if ( defined( 'WP_CLI' ) && WP_CLI ) {
|
85 |
+
include( AUXELS_ADMIN_DIR . '/includes/classes/class-auxin-cli-commands.php' );
|
86 |
+
}
|
87 |
|
88 |
// Dashboard and Administrative Functionality
|
89 |
if ( is_admin() ) {
|