Version Description
Download this release
Release Info
Developer | averta |
Plugin | Shortcodes and extra features for Phlox theme |
Version | 2.7.0 |
Comparing to | |
See all releases |
Code changes from version 2.6.20 to 2.7.0
- README.txt +1 -1
- admin/assets/js/elementor/editor.js +1 -2
- admin/assets/js/plugins.js +1 -1
- admin/includes/admin-hooks.php +2 -1
- auxin-elements.php +1 -1
- includes/classes/class-auxin-demo-importer.php +4 -0
- includes/classes/class-auxin-welcome.php +1 -1
- includes/define.php +1 -1
- includes/elementor/modules/common.php +10 -5
- includes/elementor/widgets/staff.php +34 -0
- includes/elementor/widgets/theme-elements/menu.php +6 -3
- includes/elements/gallery.php +1 -1
- includes/elements/staff.php +7 -0
- includes/general-hooks.php +87 -1
- languages/auxin-elements-fa_IR.po +100 -74
- languages/auxin-elements.pot +94 -74
- 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.5.0
|
10 |
-
Stable tag: 2.
|
11 |
License: GPLv3
|
12 |
License URI: http://www.gnu.org/licenses/gpl.html
|
13 |
|
7 |
Requires PHP: 5.4
|
8 |
Requires at least: 4.6
|
9 |
Tested up to: 5.5.0
|
10 |
+
Stable tag: 2.7.0
|
11 |
License: GPLv3
|
12 |
License URI: http://www.gnu.org/licenses/gpl.html
|
13 |
|
admin/assets/js/elementor/editor.js
CHANGED
@@ -375,8 +375,7 @@
|
|
375 |
if ( changedModel.changed.hasOwnProperty( settingName ) ) {
|
376 |
|
377 |
// Replay the animation if an animation option changed (except the animation name)
|
378 |
-
if( settingName !== "aux_animation_name" && -1 !== settingName.indexOf("aux_animation_") ){
|
379 |
-
|
380 |
// Reply the animation
|
381 |
view.$el.removeClass( model.getSetting('aux_animation_name') );
|
382 |
|
375 |
if ( changedModel.changed.hasOwnProperty( settingName ) ) {
|
376 |
|
377 |
// Replay the animation if an animation option changed (except the animation name)
|
378 |
+
if( settingName !== "aux_animation_name" && ( -1 !== settingName.indexOf("aux_animation_") || -1 !== settingName.indexOf("_custom") ) ){
|
|
|
379 |
// Reply the animation
|
380 |
view.$el.removeClass( model.getSetting('aux_animation_name') );
|
381 |
|
admin/assets/js/plugins.js
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
/*! Phlox Core Plugin - v2.
|
2 |
* All required javascript plugins for admin
|
3 |
* http://phlox.pro/
|
4 |
* Place any jQuery/helper plugins in here, instead of separate, slower script files!
|
1 |
+
/*! Phlox Core Plugin - v2.7.0 (2020-10)
|
2 |
* All required javascript plugins for admin
|
3 |
* http://phlox.pro/
|
4 |
* Place any jQuery/helper plugins in here, instead of separate, slower script files!
|
admin/includes/admin-hooks.php
CHANGED
@@ -917,7 +917,7 @@ add_action('admin_notices', 'auxin_check_license_terms');
|
|
917 |
function auxin_maybe_set_default_header_template() {
|
918 |
|
919 |
// check if auxin-elements and elementor is active and if site header template is set or not
|
920 |
-
if ( ! empty( auxin_get_option('site_elementor_header_template' ) ) || ! class_exists( '\Elementor\Plugin' ) ){
|
921 |
return;
|
922 |
}
|
923 |
|
@@ -935,6 +935,7 @@ function auxin_maybe_set_default_header_template() {
|
|
935 |
if ( $template_data['success'] == true ) {
|
936 |
auxin_update_option( 'site_elementor_header_edit_template', $template_data['data']['postId'] );
|
937 |
auxin_update_option( 'site_elementor_header_template', $template_data['data']['postId'] );
|
|
|
938 |
}
|
939 |
|
940 |
}
|
917 |
function auxin_maybe_set_default_header_template() {
|
918 |
|
919 |
// check if auxin-elements and elementor is active and if site header template is set or not
|
920 |
+
if ( ! empty( auxin_get_option('site_elementor_header_template' ) ) || ! class_exists( '\Elementor\Plugin' ) || get_theme_mod( 'default_template_imported' ) ){
|
921 |
return;
|
922 |
}
|
923 |
|
935 |
if ( $template_data['success'] == true ) {
|
936 |
auxin_update_option( 'site_elementor_header_edit_template', $template_data['data']['postId'] );
|
937 |
auxin_update_option( 'site_elementor_header_template', $template_data['data']['postId'] );
|
938 |
+
set_theme_mod( 'default_template_imported', true );
|
939 |
}
|
940 |
|
941 |
}
|
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.
|
16 |
* Author: averta
|
17 |
* Author URI: http://averta.net
|
18 |
* Text Domain: auxin-elements
|
12 |
* Plugin Name: Phlox Core Elements
|
13 |
* Plugin URI: https://wordpress.org/plugins/auxin-elements/
|
14 |
* Description: Exclusive and comprehensive plugin that extends the functionality of Phlox theme by adding new Elements, widgets and options.
|
15 |
+
* Version: 2.7.0
|
16 |
* Author: averta
|
17 |
* Author URI: http://averta.net
|
18 |
* Text Domain: auxin-elements
|
includes/classes/class-auxin-demo-importer.php
CHANGED
@@ -1974,6 +1974,10 @@ class Auxin_Demo_Importer {
|
|
1974 |
}
|
1975 |
}
|
1976 |
|
|
|
|
|
|
|
|
|
1977 |
return $meta;
|
1978 |
}
|
1979 |
|
1974 |
}
|
1975 |
}
|
1976 |
|
1977 |
+
// remove network part of url from importing
|
1978 |
+
// http:\/\/...\/\/wp-content\/uploads\/sites\/12\/2020\/09 => http:\/\/...\/\/wp-content\/uploads\/2020\/09
|
1979 |
+
$meta = preg_replace( "#sites\\\/\d*\\\/#", '', $meta );
|
1980 |
+
|
1981 |
return $meta;
|
1982 |
}
|
1983 |
|
includes/classes/class-auxin-welcome.php
CHANGED
@@ -1770,7 +1770,7 @@ class Auxin_Welcome extends Auxin_Welcome_Base {
|
|
1770 |
}
|
1771 |
?>
|
1772 |
<a href="<?php echo esc_url( $token_link ); ?>" target="_blank" class="aux-generate-token" ><?php esc_html_e( 'How to generate a token ?', 'auxin-elements' );?></a>
|
1773 |
-
<a href="
|
1774 |
</div>
|
1775 |
</div>
|
1776 |
<div class="aux-setup-demo-actions">
|
1770 |
}
|
1771 |
?>
|
1772 |
<a href="<?php echo esc_url( $token_link ); ?>" target="_blank" class="aux-generate-token" ><?php esc_html_e( 'How to generate a token ?', 'auxin-elements' );?></a>
|
1773 |
+
<a href="http://avt.li/elements" target="_blank" class="aux-subscription" ><?php esc_html_e( 'Don\'t have subscription?', 'auxin-elements' );?></a>
|
1774 |
</div>
|
1775 |
</div>
|
1776 |
<div class="aux-setup-demo-actions">
|
includes/define.php
CHANGED
@@ -12,7 +12,7 @@ if( ! defined( 'THEME_NAME' ) ){
|
|
12 |
}
|
13 |
|
14 |
|
15 |
-
define( 'AUXELS_VERSION' , '2.
|
16 |
|
17 |
define( 'AUXELS_SLUG' , 'auxin-elements' );
|
18 |
|
12 |
}
|
13 |
|
14 |
|
15 |
+
define( 'AUXELS_VERSION' , '2.7.0' );
|
16 |
|
17 |
define( 'AUXELS_SLUG' , 'auxin-elements' );
|
18 |
|
includes/elementor/modules/common.php
CHANGED
@@ -404,7 +404,8 @@ selector .child-element{ margin: 10px; }
|
|
404 |
),
|
405 |
'condition' => array(
|
406 |
'aux_animation_name' => 'aux-fade-in-custom'
|
407 |
-
)
|
|
|
408 |
)
|
409 |
);
|
410 |
|
@@ -423,7 +424,8 @@ selector .child-element{ margin: 10px; }
|
|
423 |
),
|
424 |
'condition' => array(
|
425 |
'aux_animation_name' => 'aux-fade-in-custom'
|
426 |
-
)
|
|
|
427 |
)
|
428 |
);
|
429 |
|
@@ -441,7 +443,8 @@ selector .child-element{ margin: 10px; }
|
|
441 |
),
|
442 |
'condition' => array(
|
443 |
'aux_animation_name' => 'aux-scale-custom'
|
444 |
-
)
|
|
|
445 |
)
|
446 |
);
|
447 |
|
@@ -459,7 +462,8 @@ selector .child-element{ margin: 10px; }
|
|
459 |
),
|
460 |
'condition' => array(
|
461 |
'aux_animation_name' => 'aux-rotate-custom'
|
462 |
-
)
|
|
|
463 |
)
|
464 |
);
|
465 |
|
@@ -478,7 +482,8 @@ selector .child-element{ margin: 10px; }
|
|
478 |
),
|
479 |
'condition' => array(
|
480 |
'aux_animation_name' => 'aux-rotate-custom'
|
481 |
-
)
|
|
|
482 |
)
|
483 |
);
|
484 |
|
404 |
),
|
405 |
'condition' => array(
|
406 |
'aux_animation_name' => 'aux-fade-in-custom'
|
407 |
+
),
|
408 |
+
'render_type' => 'template'
|
409 |
)
|
410 |
);
|
411 |
|
424 |
),
|
425 |
'condition' => array(
|
426 |
'aux_animation_name' => 'aux-fade-in-custom'
|
427 |
+
),
|
428 |
+
'render_type' => 'template'
|
429 |
)
|
430 |
);
|
431 |
|
443 |
),
|
444 |
'condition' => array(
|
445 |
'aux_animation_name' => 'aux-scale-custom'
|
446 |
+
),
|
447 |
+
'render_type' => 'template'
|
448 |
)
|
449 |
);
|
450 |
|
462 |
),
|
463 |
'condition' => array(
|
464 |
'aux_animation_name' => 'aux-rotate-custom'
|
465 |
+
),
|
466 |
+
'render_type' => 'template'
|
467 |
)
|
468 |
);
|
469 |
|
482 |
),
|
483 |
'condition' => array(
|
484 |
'aux_animation_name' => 'aux-rotate-custom'
|
485 |
+
),
|
486 |
+
'render_type' => 'template'
|
487 |
)
|
488 |
);
|
489 |
|
includes/elementor/widgets/staff.php
CHANGED
@@ -408,6 +408,38 @@ class Staff extends Widget_Base {
|
|
408 |
)
|
409 |
);
|
410 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
411 |
$this->end_controls_section();
|
412 |
|
413 |
/*-----------------------------------------------------------------------------------*/
|
@@ -920,6 +952,8 @@ class Staff extends Widget_Base {
|
|
920 |
'social_pinterest' => $settings['social_pinterest']['url'],
|
921 |
'social_github' => $settings['social_github']['url'],
|
922 |
'social_instagram' => $settings['social_instagram']['url'],
|
|
|
|
|
923 |
|
924 |
'icon_size' => $settings['icon_size'],
|
925 |
'icon_align' => $settings['icon_align'],
|
408 |
)
|
409 |
);
|
410 |
|
411 |
+
$this->add_control(
|
412 |
+
'social_dribbble',
|
413 |
+
array(
|
414 |
+
'label' => __('Dribbble Address','auxin-elements' ),
|
415 |
+
'type' => Controls_Manager::URL,
|
416 |
+
'placeholder' => 'https://your-link.com',
|
417 |
+
'show_external' => false,
|
418 |
+
'condition' => [
|
419 |
+
'socials' => 'yes'
|
420 |
+
],
|
421 |
+
'dynamic' => [
|
422 |
+
'active' => true
|
423 |
+
]
|
424 |
+
)
|
425 |
+
);
|
426 |
+
|
427 |
+
$this->add_control(
|
428 |
+
'social_linkedin',
|
429 |
+
array(
|
430 |
+
'label' => __('LinkedIn Address','auxin-elements' ),
|
431 |
+
'type' => Controls_Manager::URL,
|
432 |
+
'placeholder' => 'https://your-link.com',
|
433 |
+
'show_external' => false,
|
434 |
+
'condition' => [
|
435 |
+
'socials' => 'yes'
|
436 |
+
],
|
437 |
+
'dynamic' => [
|
438 |
+
'active' => true
|
439 |
+
]
|
440 |
+
)
|
441 |
+
);
|
442 |
+
|
443 |
$this->end_controls_section();
|
444 |
|
445 |
/*-----------------------------------------------------------------------------------*/
|
952 |
'social_pinterest' => $settings['social_pinterest']['url'],
|
953 |
'social_github' => $settings['social_github']['url'],
|
954 |
'social_instagram' => $settings['social_instagram']['url'],
|
955 |
+
'social_dribbble' => $settings['social_dribbble']['url'],
|
956 |
+
'social_linkedin' => $settings['social_linkedin']['url'],
|
957 |
|
958 |
'icon_size' => $settings['icon_size'],
|
959 |
'icon_align' => $settings['icon_align'],
|
includes/elementor/widgets/theme-elements/menu.php
CHANGED
@@ -1518,9 +1518,12 @@ class MenuBox extends Widget_Base {
|
|
1518 |
$settings = $this->get_settings_for_display();
|
1519 |
|
1520 |
if ( ! isset( $settings['menu_slug'] ) ) {
|
1521 |
-
return _e( '
|
1522 |
}
|
1523 |
|
|
|
|
|
|
|
1524 |
|
1525 |
$offcanvas_output = '';
|
1526 |
$fullscreen_output = '';
|
@@ -1592,7 +1595,7 @@ class MenuBox extends Widget_Base {
|
|
1592 |
'container_id' => 'master-menu-elementor-'. $this->get_id(),
|
1593 |
'menu' => $settings['menu_slug'],
|
1594 |
'direction' => 'burger' === $settings['type'] ? null : $settings['type'],
|
1595 |
-
'mobile_under' => 'burger' === $settings['type'] ?
|
1596 |
'mobile_menu_type' => $settings['burger_toggle_type'],
|
1597 |
'mobile_menu_target' => $mobile_menu_target,
|
1598 |
'theme_location' => 'element',
|
@@ -1607,7 +1610,7 @@ class MenuBox extends Widget_Base {
|
|
1607 |
echo '</div>';
|
1608 |
|
1609 |
if ( 'burger' !== $settings['type'] ) {
|
1610 |
-
printf( '<style>@media only screen and (min-width: %spx) { .elementor-element-%s .aux-burger-box { display: none } }</style>', $breakpoint + 1, $this->get_id() );
|
1611 |
}
|
1612 |
|
1613 |
}
|
1518 |
$settings = $this->get_settings_for_display();
|
1519 |
|
1520 |
if ( ! isset( $settings['menu_slug'] ) ) {
|
1521 |
+
return _e( 'Please choose a menu.', 'auxin-elements' ) ;
|
1522 |
}
|
1523 |
|
1524 |
+
if ( empty( wp_get_nav_menu_object( $settings['menu_slug'] ) ) || ! wp_get_nav_menu_object( $settings['menu_slug'] )->count ) {
|
1525 |
+
return _e( 'There are no menu items in this menu.', 'auxin-elements' ) ;
|
1526 |
+
}
|
1527 |
|
1528 |
$offcanvas_output = '';
|
1529 |
$fullscreen_output = '';
|
1595 |
'container_id' => 'master-menu-elementor-'. $this->get_id(),
|
1596 |
'menu' => $settings['menu_slug'],
|
1597 |
'direction' => 'burger' === $settings['type'] ? null : $settings['type'],
|
1598 |
+
'mobile_under' => 'burger' === $settings['type'] ? 9000 : $breakpoint,
|
1599 |
'mobile_menu_type' => $settings['burger_toggle_type'],
|
1600 |
'mobile_menu_target' => $mobile_menu_target,
|
1601 |
'theme_location' => 'element',
|
1610 |
echo '</div>';
|
1611 |
|
1612 |
if ( 'burger' !== $settings['type'] ) {
|
1613 |
+
printf( '<style>@media only screen and (min-width: %spx) { .elementor-element-%s .aux-burger-box { display: none } }</style>', (int)$breakpoint + 1, $this->get_id() );
|
1614 |
}
|
1615 |
|
1616 |
}
|
includes/elements/gallery.php
CHANGED
@@ -619,7 +619,7 @@ function auxin_widget_gallery_callback( $attr, $shortcode_content = null ){
|
|
619 |
'preload_preview' => false,
|
620 |
'crop' => $crop,
|
621 |
'size' => $image_dimension,
|
622 |
-
'add_hw' => true, // whether add width and height attr or not
|
623 |
'upscale' => true,
|
624 |
'image_sizes' => array(
|
625 |
array( 'min' => '', 'max' => '767px', 'width' => round( 100 / $phone_cnum ).'vw' ),
|
619 |
'preload_preview' => false,
|
620 |
'crop' => $crop,
|
621 |
'size' => $image_dimension,
|
622 |
+
'add_hw' => 'masonry' == $layout ? false : true, // whether add width and height attr or not
|
623 |
'upscale' => true,
|
624 |
'image_sizes' => array(
|
625 |
array( 'min' => '', 'max' => '767px', 'width' => round( 100 / $phone_cnum ).'vw' ),
|
includes/elements/staff.php
CHANGED
@@ -577,6 +577,7 @@ function auxin_widget_staff_callback( $atts, $shortcode_content = null ){
|
|
577 |
'social_github' => '',
|
578 |
'social_delicious' => '',
|
579 |
'social_instagram' => '',
|
|
|
580 |
'layout_style' => 'top',
|
581 |
'extra_classes' => '', // custom css class names for this element
|
582 |
'custom_el_id' => '', // custom id attribute for this element
|
@@ -717,6 +718,12 @@ function auxin_widget_staff_callback( $atts, $shortcode_content = null ){
|
|
717 |
<a class="instagram" href="<?php echo esc_url( $social_instagram ) ;?>" target="_blank"><span class="auxicon-instagram"></span>
|
718 |
</a>
|
719 |
</li>
|
|
|
|
|
|
|
|
|
|
|
|
|
720 |
<?php } ?>
|
721 |
</ul>
|
722 |
</div>
|
577 |
'social_github' => '',
|
578 |
'social_delicious' => '',
|
579 |
'social_instagram' => '',
|
580 |
+
'social_dribbble' => '',
|
581 |
'layout_style' => 'top',
|
582 |
'extra_classes' => '', // custom css class names for this element
|
583 |
'custom_el_id' => '', // custom id attribute for this element
|
718 |
<a class="instagram" href="<?php echo esc_url( $social_instagram ) ;?>" target="_blank"><span class="auxicon-instagram"></span>
|
719 |
</a>
|
720 |
</li>
|
721 |
+
<?php } ?>
|
722 |
+
<?php if ( ! empty( $social_dribbble ) ) { ;?>
|
723 |
+
<li>
|
724 |
+
<a class="dribbble" href="<?php echo esc_url( $social_dribble ) ;?>" target="_blank"><span class="auxicon-dribbble"></span>
|
725 |
+
</a>
|
726 |
+
</li>
|
727 |
<?php } ?>
|
728 |
</ul>
|
729 |
</div>
|
includes/general-hooks.php
CHANGED
@@ -3554,4 +3554,90 @@ function auxels_improve_usage_feedback( $args ) {
|
|
3554 |
return $args;
|
3555 |
|
3556 |
}
|
3557 |
-
add_filter( 'auxels_version_check_args', 'auxels_improve_usage_feedback' );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3554 |
return $args;
|
3555 |
|
3556 |
}
|
3557 |
+
add_filter( 'auxels_version_check_args', 'auxels_improve_usage_feedback' );
|
3558 |
+
|
3559 |
+
/*-----------------------------------------------------------------------------------*/
|
3560 |
+
/* Add header and footer edit link in admin bar
|
3561 |
+
/*-----------------------------------------------------------------------------------*/
|
3562 |
+
add_action( 'admin_bar_menu', 'auxin_add_admin_bar_header_footer_edit_link', 100);
|
3563 |
+
|
3564 |
+
function auxin_add_admin_bar_header_footer_edit_link() {
|
3565 |
+
global $wp_admin_bar, $post;
|
3566 |
+
|
3567 |
+
if ( !is_super_admin() || !is_admin_bar_showing() || is_admin() )
|
3568 |
+
return;
|
3569 |
+
|
3570 |
+
if ( 'default' === $use_legacy_header = auxin_get_post_meta( $post, 'page_header_use_legacy', 'default' ) ) {
|
3571 |
+
$use_legacy_header = auxin_get_option('site_header_use_legacy');
|
3572 |
+
}
|
3573 |
+
|
3574 |
+
if ( 'default' === $use_legacy_footer = auxin_get_post_meta( $post, 'page_footer_use_legacy', 'default' ) ) {
|
3575 |
+
$use_legacy_footer = auxin_get_option('site_footer_use_legacy');
|
3576 |
+
}
|
3577 |
+
|
3578 |
+
$template = [];
|
3579 |
+
|
3580 |
+
if ( get_post_type( $post ) == 'page' ) {
|
3581 |
+
if ( ! auxin_is_true( $use_legacy_header) && ( $current_header = auxin_get_post_meta( $post, 'page_elementor_header_template' ) ) && is_numeric( $current_header ) ) {
|
3582 |
+
$template['current']['header'] = $current_header;
|
3583 |
+
}
|
3584 |
+
|
3585 |
+
if ( ! auxin_is_true( $use_legacy_footer) && ( $current_footer = auxin_get_post_meta( $post, 'page_elementor_footer_template' ) ) && is_numeric( $current_footer ) ) {
|
3586 |
+
$template['current']['footer'] = $current_footer;
|
3587 |
+
}
|
3588 |
+
}
|
3589 |
+
|
3590 |
+
if ( ! auxin_is_true( auxin_get_option('site_header_use_legacy') ) && $global_header = auxin_get_option('site_elementor_header_template', '' ) ) {
|
3591 |
+
$template['global']['header'] = $global_header;
|
3592 |
+
}
|
3593 |
+
|
3594 |
+
if ( ! auxin_is_true( auxin_get_option('site_footer_use_legacy') ) && $global_footer = auxin_get_option('site_elementor_footer_template', '' ) ) {
|
3595 |
+
$template['global']['footer'] = $global_footer;
|
3596 |
+
}
|
3597 |
+
|
3598 |
+
if ( ! empty( $template['current'] ) ) {
|
3599 |
+
|
3600 |
+
foreach( $template['current'] as $key => $value ) {
|
3601 |
+
if ( empty( $value ) ) continue;
|
3602 |
+
$args[] = [
|
3603 |
+
'id' => 'aux-current-' . $key ,
|
3604 |
+
'title' => sprintf( '<span>%s</span><span class="aux-state">%s</span>', get_the_title( $value ), __( 'current ', 'auxin-elements' ) . $key ) ,
|
3605 |
+
'parent' => 'aux-header-footer',
|
3606 |
+
'href' => get_edit_post_link( $value ),
|
3607 |
+
'meta' => [
|
3608 |
+
'target' => '_blank'
|
3609 |
+
]
|
3610 |
+
];
|
3611 |
+
}
|
3612 |
+
}
|
3613 |
+
|
3614 |
+
if ( ! empty( $template['global'] ) ) {
|
3615 |
+
|
3616 |
+
foreach( $template['global'] as $key => $value ) {
|
3617 |
+
if ( empty( $value ) ) continue;
|
3618 |
+
$args[] = [
|
3619 |
+
'id' => 'aux-global-' . $key ,
|
3620 |
+
'title' => sprintf( '<span>%s</span><span class="aux-state">%s</span>', get_the_title( $value ), $key ) ,
|
3621 |
+
'parent' => 'aux-header-footer',
|
3622 |
+
'href' => get_edit_post_link( $value ),
|
3623 |
+
'meta' => [
|
3624 |
+
'target' => '_blank'
|
3625 |
+
]
|
3626 |
+
];
|
3627 |
+
}
|
3628 |
+
}
|
3629 |
+
|
3630 |
+
if ( ! empty( $args ) ) {
|
3631 |
+
$wp_admin_bar->add_node(
|
3632 |
+
[
|
3633 |
+
'id' => 'aux-header-footer',
|
3634 |
+
'title' => sprintf( '<div class="aux-header-footer-edit-links">%s</div>', __( 'Edit Header & Footer', 'auxin-elements' ) ),
|
3635 |
+
'href' => '',
|
3636 |
+
]
|
3637 |
+
);
|
3638 |
+
|
3639 |
+
foreach ( $args as $arg ) {
|
3640 |
+
$wp_admin_bar->add_node( $arg );
|
3641 |
+
}
|
3642 |
+
}
|
3643 |
+
}
|
languages/auxin-elements-fa_IR.po
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Auxin Essential Elements\n"
|
4 |
"Report-Msgid-Bugs-To: http://averta.net/phlox/wordpress-theme/\n"
|
5 |
-
"POT-Creation-Date: 2020-10-
|
6 |
"PO-Revision-Date: 2016-11-09 12:50+0330\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: \n"
|
@@ -1295,7 +1295,7 @@ msgstr ""
|
|
1295 |
#: includes/elementor/widgets/recent-posts-timeline.php:130
|
1296 |
#: includes/elementor/widgets/responsive-table.php:141
|
1297 |
#: includes/elementor/widgets/responsive-table.php:208
|
1298 |
-
#: includes/elementor/widgets/staff.php:
|
1299 |
#: includes/elementor/widgets/svg.php:288
|
1300 |
#: includes/elementor/widgets/testimonial.php:813
|
1301 |
#: includes/elementor/widgets/text.php:1437
|
@@ -1316,7 +1316,7 @@ msgid "Center"
|
|
1316 |
msgstr "وسط"
|
1317 |
|
1318 |
#: admin/includes/metaboxes/metabox-fields-general-header.php:603
|
1319 |
-
#: includes/elementor/modules/common.php:
|
1320 |
#: includes/elementor/widgets/button.php:234
|
1321 |
#: includes/elementor/widgets/button.php:378
|
1322 |
#: includes/elementor/widgets/custom-list.php:473
|
@@ -1335,8 +1335,8 @@ msgstr "وسط"
|
|
1335 |
#: includes/elementor/widgets/recent-posts-timeline.php:134
|
1336 |
#: includes/elementor/widgets/responsive-table.php:137
|
1337 |
#: includes/elementor/widgets/responsive-table.php:204
|
1338 |
-
#: includes/elementor/widgets/staff.php:
|
1339 |
-
#: includes/elementor/widgets/staff.php:
|
1340 |
#: includes/elementor/widgets/svg.php:284
|
1341 |
#: includes/elementor/widgets/testimonial.php:809
|
1342 |
#: includes/elementor/widgets/text.php:367
|
@@ -1404,7 +1404,7 @@ msgstr "تراز المان خط زمانی را مشخص می کند."
|
|
1404 |
#: includes/elementor/widgets/button.php:163
|
1405 |
#: includes/elementor/widgets/divider.php:146
|
1406 |
#: includes/elementor/widgets/modern-button.php:311
|
1407 |
-
#: includes/elementor/widgets/staff.php:
|
1408 |
#: includes/elementor/widgets/text.php:1030 includes/elements/button.php:66
|
1409 |
#: includes/elements/divider.php:90 includes/elements/socials-list.php:63
|
1410 |
#: includes/elements/staff.php:463 includes/elements/text.php:469
|
@@ -1418,7 +1418,7 @@ msgstr "کوچک"
|
|
1418 |
#: includes/elementor/widgets/button.php:162
|
1419 |
#: includes/elementor/widgets/divider.php:145
|
1420 |
#: includes/elementor/widgets/modern-button.php:310
|
1421 |
-
#: includes/elementor/widgets/staff.php:
|
1422 |
#: includes/elementor/widgets/text.php:1029
|
1423 |
#: includes/elements/before-after.php:104 includes/elements/button.php:65
|
1424 |
#: includes/elements/divider.php:89 includes/elements/instagram-feed.php:98
|
@@ -1433,7 +1433,7 @@ msgstr "متوسط"
|
|
1433 |
#: includes/classes/class-auxin-svg-support.php:193
|
1434 |
#: includes/elementor/widgets/button.php:161
|
1435 |
#: includes/elementor/widgets/modern-button.php:309
|
1436 |
-
#: includes/elementor/widgets/staff.php:
|
1437 |
#: includes/elementor/widgets/text.php:1028
|
1438 |
#: includes/elements/before-after.php:105 includes/elements/button.php:64
|
1439 |
#: includes/elements/divider.php:88 includes/elements/socials-list.php:65
|
@@ -1488,8 +1488,8 @@ msgid "Dropdown Action On"
|
|
1488 |
msgstr ""
|
1489 |
|
1490 |
#: admin/includes/metaboxes/metabox-fields-general-header.php:841
|
1491 |
-
#: includes/elementor/modules/common.php:
|
1492 |
-
#: includes/elementor/modules/common.php:
|
1493 |
#: includes/elementor/modules/dynamic-tags/current-date-time.php:37
|
1494 |
#: includes/elementor/modules/dynamic-tags/current-date-time.php:55
|
1495 |
#: includes/elementor/modules/dynamic-tags/post-date.php:49
|
@@ -1572,8 +1572,8 @@ msgstr "پیش فرض"
|
|
1572 |
#: includes/elementor/widgets/recent-posts-timeline.php:741
|
1573 |
#: includes/elementor/widgets/recent-posts-timeline.php:918
|
1574 |
#: includes/elementor/widgets/recent-products.php:644
|
1575 |
-
#: includes/elementor/widgets/staff.php:
|
1576 |
-
#: includes/elementor/widgets/staff.php:
|
1577 |
#: includes/elementor/widgets/svg.php:357
|
1578 |
#: includes/elementor/widgets/tabs.php:289
|
1579 |
#: includes/elementor/widgets/tabs.php:403
|
@@ -3111,89 +3111,89 @@ msgstr "فلش های ناوبری"
|
|
3111 |
msgid "Fade In For X"
|
3112 |
msgstr ""
|
3113 |
|
3114 |
-
#: includes/elementor/modules/common.php:
|
3115 |
msgid "Fade In For Y"
|
3116 |
msgstr ""
|
3117 |
|
3118 |
-
#: includes/elementor/modules/common.php:
|
3119 |
#: includes/elementor/widgets/theme-elements/logo.php:437
|
3120 |
msgid "Scale"
|
3121 |
msgstr ""
|
3122 |
|
3123 |
-
#: includes/elementor/modules/common.php:
|
3124 |
msgid "Rotate Degree"
|
3125 |
msgstr ""
|
3126 |
|
3127 |
-
#: includes/elementor/modules/common.php:
|
3128 |
msgid "Rotate Origin"
|
3129 |
msgstr ""
|
3130 |
|
3131 |
-
#: includes/elementor/modules/common.php:
|
3132 |
#, fuzzy
|
3133 |
msgid "Left Bottom"
|
3134 |
msgstr "چپ پایین"
|
3135 |
|
3136 |
-
#: includes/elementor/modules/common.php:
|
3137 |
#, fuzzy
|
3138 |
msgid "Right Bottom"
|
3139 |
msgstr "راست پایین"
|
3140 |
|
3141 |
-
#: includes/elementor/modules/common.php:
|
3142 |
#: includes/elements/general-element-fields.php:51
|
3143 |
#, fuzzy
|
3144 |
msgid "Duration"
|
3145 |
msgstr "عنوان"
|
3146 |
|
3147 |
-
#: includes/elementor/modules/common.php:
|
3148 |
#: includes/elements/general-element-fields.php:61
|
3149 |
msgid "Delay"
|
3150 |
msgstr ""
|
3151 |
|
3152 |
-
#: includes/elementor/modules/common.php:
|
3153 |
msgid "Easing"
|
3154 |
msgstr ""
|
3155 |
|
3156 |
-
#: includes/elementor/modules/common.php:
|
3157 |
#, fuzzy
|
3158 |
msgid "Repeat Count"
|
3159 |
msgstr "تکرار ویدیو"
|
3160 |
|
3161 |
-
#: includes/elementor/modules/common.php:
|
3162 |
msgid "Infinite"
|
3163 |
msgstr ""
|
3164 |
|
3165 |
-
#: includes/elementor/modules/common.php:
|
3166 |
#, fuzzy
|
3167 |
msgid "Positioning"
|
3168 |
msgstr "موقعیت"
|
3169 |
|
3170 |
-
#: includes/elementor/modules/common.php:
|
3171 |
#, fuzzy
|
3172 |
msgid "Position Type"
|
3173 |
msgstr "موقعیت"
|
3174 |
|
3175 |
-
#: includes/elementor/modules/common.php:
|
3176 |
msgid "Static"
|
3177 |
msgstr ""
|
3178 |
|
3179 |
-
#: includes/elementor/modules/common.php:
|
3180 |
msgid "Relative"
|
3181 |
msgstr ""
|
3182 |
|
3183 |
-
#: includes/elementor/modules/common.php:
|
3184 |
msgid "Absolute"
|
3185 |
msgstr ""
|
3186 |
|
3187 |
-
#: includes/elementor/modules/common.php:
|
3188 |
#: includes/elementor/widgets/modern-button.php:139
|
3189 |
-
#: includes/elementor/widgets/staff.php:
|
3190 |
#: includes/elementor/widgets/text.php:363 includes/elements/staff.php:226
|
3191 |
#: includes/elements/text.php:616
|
3192 |
#, fuzzy
|
3193 |
msgid "Top"
|
3194 |
msgstr "بالا"
|
3195 |
|
3196 |
-
#: includes/elementor/modules/common.php:
|
3197 |
#: includes/elementor/widgets/button.php:242
|
3198 |
#: includes/elementor/widgets/button.php:379
|
3199 |
#: includes/elementor/widgets/custom-list.php:481
|
@@ -3212,8 +3212,8 @@ msgstr "بالا"
|
|
3212 |
#: includes/elementor/widgets/recent-posts-timeline.php:138
|
3213 |
#: includes/elementor/widgets/responsive-table.php:145
|
3214 |
#: includes/elementor/widgets/responsive-table.php:212
|
3215 |
-
#: includes/elementor/widgets/staff.php:
|
3216 |
-
#: includes/elementor/widgets/staff.php:
|
3217 |
#: includes/elementor/widgets/svg.php:292
|
3218 |
#: includes/elementor/widgets/testimonial.php:817
|
3219 |
#: includes/elementor/widgets/text.php:371
|
@@ -3239,27 +3239,27 @@ msgstr "بالا"
|
|
3239 |
msgid "Right"
|
3240 |
msgstr "راست"
|
3241 |
|
3242 |
-
#: includes/elementor/modules/common.php:
|
3243 |
#: includes/elementor/widgets/modern-button.php:147
|
3244 |
-
#: includes/elementor/widgets/staff.php:
|
3245 |
msgid "Bottom"
|
3246 |
msgstr ""
|
3247 |
|
3248 |
-
#: includes/elementor/modules/common.php:
|
3249 |
#, fuzzy
|
3250 |
msgid "From Center"
|
3251 |
msgstr "وسط"
|
3252 |
|
3253 |
-
#: includes/elementor/modules/common.php:
|
3254 |
msgid ""
|
3255 |
"Please avoid using \"From Center\" and \"Left\" options at the same time."
|
3256 |
msgstr ""
|
3257 |
|
3258 |
-
#: includes/elementor/modules/common.php:
|
3259 |
msgid "Dimensions (extra)"
|
3260 |
msgstr ""
|
3261 |
|
3262 |
-
#: includes/elementor/modules/common.php:
|
3263 |
#: includes/elementor/widgets/contact-form.php:217
|
3264 |
#: includes/elementor/widgets/contact-form.php:527
|
3265 |
#: includes/elementor/widgets/contact-form.php:747
|
@@ -3283,24 +3283,24 @@ msgstr ""
|
|
3283 |
msgid "Max Width"
|
3284 |
msgstr "عرض"
|
3285 |
|
3286 |
-
#: includes/elementor/modules/common.php:
|
3287 |
#: includes/elementor/widgets/image.php:458
|
3288 |
#: includes/elementor/widgets/svg.php:250
|
3289 |
#, fuzzy
|
3290 |
msgid "Max Height"
|
3291 |
msgstr "ارتفاع نقشه"
|
3292 |
|
3293 |
-
#: includes/elementor/modules/common.php:
|
3294 |
#, fuzzy
|
3295 |
msgid "Min Width"
|
3296 |
msgstr "عرض"
|
3297 |
|
3298 |
-
#: includes/elementor/modules/common.php:
|
3299 |
#, fuzzy
|
3300 |
msgid "Min Height"
|
3301 |
msgstr "ارتفاع"
|
3302 |
|
3303 |
-
#: includes/elementor/modules/common.php:
|
3304 |
#: includes/elementor/widgets/before-after.php:194
|
3305 |
#: includes/elementor/widgets/carousel-navigation.php:254
|
3306 |
#: includes/elementor/widgets/contact-form.php:244
|
@@ -3323,7 +3323,7 @@ msgstr "ارتفاع"
|
|
3323 |
msgid "Height"
|
3324 |
msgstr "ارتفاع"
|
3325 |
|
3326 |
-
#: includes/elementor/modules/common.php:
|
3327 |
msgid "Grow in width"
|
3328 |
msgstr ""
|
3329 |
|
@@ -3693,7 +3693,7 @@ msgstr "بخش"
|
|
3693 |
#: includes/elementor/widgets/recent-posts-timeline.php:598
|
3694 |
#: includes/elementor/widgets/recent-products.php:384
|
3695 |
#: includes/elementor/widgets/recent-products.php:543
|
3696 |
-
#: includes/elementor/widgets/staff.php:
|
3697 |
#: includes/elementor/widgets/tabs.php:373
|
3698 |
#: includes/elementor/widgets/text.php:232
|
3699 |
#: includes/elementor/widgets/text.php:680
|
@@ -3934,7 +3934,7 @@ msgid "Taxonomy"
|
|
3934 |
msgstr ""
|
3935 |
|
3936 |
#: includes/elementor/modules/dynamic-tags/post-terms.php:71
|
3937 |
-
#: includes/elementor/widgets/staff.php:
|
3938 |
#: includes/elementor/widgets/theme-elements/breadcrumbs.php:365
|
3939 |
msgid "Separator"
|
3940 |
msgstr ""
|
@@ -4425,7 +4425,7 @@ msgstr "آکاردئون"
|
|
4425 |
#: includes/elementor/widgets/quote.php:105
|
4426 |
#: includes/elementor/widgets/staff.php:100
|
4427 |
#: includes/elementor/widgets/staff.php:140
|
4428 |
-
#: includes/elementor/widgets/staff.php:
|
4429 |
#: includes/elementor/widgets/tabs.php:100
|
4430 |
#: includes/elementor/widgets/tabs.php:136
|
4431 |
#: includes/elementor/widgets/tabs.php:439
|
@@ -4640,8 +4640,8 @@ msgstr "کادربندی شده"
|
|
4640 |
#: includes/elementor/widgets/recent-posts-timeline.php:715
|
4641 |
#: includes/elementor/widgets/recent-posts-timeline.php:898
|
4642 |
#: includes/elementor/widgets/recent-products.php:618
|
4643 |
-
#: includes/elementor/widgets/staff.php:
|
4644 |
-
#: includes/elementor/widgets/staff.php:
|
4645 |
#: includes/elementor/widgets/svg.php:320
|
4646 |
#: includes/elementor/widgets/tabs.php:251
|
4647 |
#: includes/elementor/widgets/tabs.php:383
|
@@ -4754,7 +4754,7 @@ msgstr ""
|
|
4754 |
#: includes/elementor/widgets/modern-button.php:987
|
4755 |
#: includes/elementor/widgets/quote.php:333
|
4756 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1403
|
4757 |
-
#: includes/elementor/widgets/staff.php:
|
4758 |
#: includes/elementor/widgets/tabs.php:210
|
4759 |
#: includes/elementor/widgets/tabs.php:467
|
4760 |
#: includes/elementor/widgets/testimonial.php:695
|
@@ -4882,12 +4882,12 @@ msgstr "تیتر گذاری"
|
|
4882 |
#: includes/elementor/widgets/responsive-table.php:246
|
4883 |
#: includes/elementor/widgets/responsive-table.php:276
|
4884 |
#: includes/elementor/widgets/responsive-table.php:306
|
4885 |
-
#: includes/elementor/widgets/staff.php:
|
4886 |
-
#: includes/elementor/widgets/staff.php:
|
4887 |
-
#: includes/elementor/widgets/staff.php:
|
4888 |
-
#: includes/elementor/widgets/staff.php:
|
4889 |
-
#: includes/elementor/widgets/staff.php:
|
4890 |
-
#: includes/elementor/widgets/staff.php:
|
4891 |
#: includes/elementor/widgets/tabs.php:390
|
4892 |
#: includes/elementor/widgets/tabs.php:410
|
4893 |
#: includes/elementor/widgets/tabs.php:447
|
@@ -6127,7 +6127,7 @@ msgstr ""
|
|
6127 |
#: includes/elementor/widgets/recent-posts-tiles.php:117
|
6128 |
#: includes/elementor/widgets/recent-posts-timeline.php:117
|
6129 |
#: includes/elementor/widgets/recent-products.php:129
|
6130 |
-
#: includes/elementor/widgets/staff.php:
|
6131 |
#: includes/elements/gallery.php:250 includes/elements/gallery.php:270
|
6132 |
#: includes/elements/recent-posts-grid-carousel.php:489
|
6133 |
#: includes/elements/recent-posts-grid-carousel.php:508
|
@@ -6147,14 +6147,14 @@ msgid "Direction"
|
|
6147 |
msgstr "بخش"
|
6148 |
|
6149 |
#: includes/elementor/widgets/custom-list.php:386
|
6150 |
-
#: includes/elementor/widgets/staff.php:
|
6151 |
#: includes/elementor/widgets/theme-elements/menu.php:161
|
6152 |
#: includes/elements/socials-list.php:84 includes/elements/staff.php:486
|
6153 |
msgid "Vertical"
|
6154 |
msgstr "عمودی"
|
6155 |
|
6156 |
#: includes/elementor/widgets/custom-list.php:387
|
6157 |
-
#: includes/elementor/widgets/staff.php:
|
6158 |
#: includes/elementor/widgets/theme-elements/menu.php:160
|
6159 |
#: includes/elements/socials-list.php:83 includes/elements/staff.php:487
|
6160 |
msgid "Horizontal"
|
@@ -7147,9 +7147,9 @@ msgstr "نمایش تصویر"
|
|
7147 |
#: includes/elementor/widgets/recent-posts-timeline.php:863
|
7148 |
#: includes/elementor/widgets/recent-posts-timeline.php:949
|
7149 |
#: includes/elementor/widgets/recent-products.php:684
|
7150 |
-
#: includes/elementor/widgets/staff.php:
|
7151 |
-
#: includes/elementor/widgets/staff.php:
|
7152 |
-
#: includes/elementor/widgets/staff.php:
|
7153 |
#: includes/elementor/widgets/testimonial.php:553
|
7154 |
#: includes/elementor/widgets/testimonial.php:774
|
7155 |
#: includes/elementor/widgets/text.php:754
|
@@ -8227,14 +8227,14 @@ msgstr ""
|
|
8227 |
|
8228 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1540
|
8229 |
#: includes/elementor/widgets/recent-posts-masonry.php:1178
|
8230 |
-
#: includes/elementor/widgets/staff.php:
|
8231 |
msgid "Padding for main wrapper"
|
8232 |
msgstr ""
|
8233 |
|
8234 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1552
|
8235 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1792
|
8236 |
#: includes/elementor/widgets/recent-posts-masonry.php:1190
|
8237 |
-
#: includes/elementor/widgets/staff.php:
|
8238 |
msgid "Padding for content wrapper"
|
8239 |
msgstr ""
|
8240 |
|
@@ -8596,14 +8596,24 @@ msgstr "آدرس"
|
|
8596 |
msgid "Instagram Address"
|
8597 |
msgstr "شناسه کاربر اینستاگرام"
|
8598 |
|
8599 |
-
#: includes/elementor/widgets/staff.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8600 |
#: includes/elementor/widgets/text.php:850
|
8601 |
#: includes/elementor/widgets/text.php:973
|
8602 |
#, fuzzy
|
8603 |
msgid "Top space"
|
8604 |
msgstr "فضای خالی"
|
8605 |
|
8606 |
-
#: includes/elementor/widgets/staff.php:
|
8607 |
#: includes/elementor/widgets/text.php:242
|
8608 |
#: includes/elementor/widgets/text.php:776
|
8609 |
#: includes/elements/recent-posts-grid-carousel.php:70
|
@@ -8611,7 +8621,7 @@ msgstr "فضای خالی"
|
|
8611 |
msgid "Subtitle"
|
8612 |
msgstr "زیرعنوان"
|
8613 |
|
8614 |
-
#: includes/elementor/widgets/staff.php:
|
8615 |
#: includes/elements/socials-list.php:15 includes/elements/staff.php:325
|
8616 |
#: includes/elements/staff.php:341 includes/elements/staff.php:357
|
8617 |
#: includes/elements/staff.php:373 includes/elements/staff.php:389
|
@@ -8622,27 +8632,27 @@ msgstr "زیرعنوان"
|
|
8622 |
msgid "Socials"
|
8623 |
msgstr "شکلک های شبکه های اجتماعی"
|
8624 |
|
8625 |
-
#: includes/elementor/widgets/staff.php:
|
8626 |
#, fuzzy
|
8627 |
msgid "Icon Direction"
|
8628 |
msgstr "دکمه شکلک دار"
|
8629 |
|
8630 |
-
#: includes/elementor/widgets/staff.php:
|
8631 |
#, fuzzy
|
8632 |
msgid "Socials Icon size"
|
8633 |
msgstr "اندازه شکلک"
|
8634 |
|
8635 |
-
#: includes/elementor/widgets/staff.php:
|
8636 |
#: includes/elements/text.php:472
|
8637 |
msgid "X-Large"
|
8638 |
msgstr "خیلی بزرگ"
|
8639 |
|
8640 |
-
#: includes/elementor/widgets/staff.php:
|
8641 |
#, fuzzy
|
8642 |
msgid "Wrappers"
|
8643 |
msgstr "ظاهر Wrapper"
|
8644 |
|
8645 |
-
#: includes/elementor/widgets/staff.php:
|
8646 |
#: includes/elementor/widgets/text.php:1429
|
8647 |
#: includes/elementor/widgets/theme-elements/menu.php:324
|
8648 |
#: includes/elementor/widgets/theme-elements/menu.php:1341
|
@@ -9312,8 +9322,12 @@ msgstr ""
|
|
9312 |
|
9313 |
#: includes/elementor/widgets/theme-elements/menu.php:1521
|
9314 |
#, fuzzy
|
9315 |
-
msgid "
|
9316 |
-
msgstr "
|
|
|
|
|
|
|
|
|
9317 |
|
9318 |
#: includes/elementor/widgets/theme-elements/modern-search.php:52
|
9319 |
#, fuzzy
|
@@ -12625,6 +12639,15 @@ msgstr "تنظیمات نوشته صوتی"
|
|
12625 |
msgid "Page %s"
|
12626 |
msgstr "برگه ها"
|
12627 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
12628 |
#: public/includes/frontend-ajax.php:17
|
12629 |
#, fuzzy
|
12630 |
msgid "Ajax action not found."
|
@@ -12898,6 +12921,9 @@ msgstr ""
|
|
12898 |
#~ msgid "The URL of your site's homepage."
|
12899 |
#~ msgstr "آدرس صفحه اصلی سایت شما."
|
12900 |
|
|
|
|
|
|
|
12901 |
#~ msgid "The version of WordPress installed on your site."
|
12902 |
#~ msgstr "نسخه وردپرسی که روی سایت شما نصب شده است."
|
12903 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Auxin Essential Elements\n"
|
4 |
"Report-Msgid-Bugs-To: http://averta.net/phlox/wordpress-theme/\n"
|
5 |
+
"POT-Creation-Date: 2020-10-20 11:18:04+00:00\n"
|
6 |
"PO-Revision-Date: 2016-11-09 12:50+0330\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: \n"
|
1295 |
#: includes/elementor/widgets/recent-posts-timeline.php:130
|
1296 |
#: includes/elementor/widgets/responsive-table.php:141
|
1297 |
#: includes/elementor/widgets/responsive-table.php:208
|
1298 |
+
#: includes/elementor/widgets/staff.php:878
|
1299 |
#: includes/elementor/widgets/svg.php:288
|
1300 |
#: includes/elementor/widgets/testimonial.php:813
|
1301 |
#: includes/elementor/widgets/text.php:1437
|
1316 |
msgstr "وسط"
|
1317 |
|
1318 |
#: admin/includes/metaboxes/metabox-fields-general-header.php:603
|
1319 |
+
#: includes/elementor/modules/common.php:755
|
1320 |
#: includes/elementor/widgets/button.php:234
|
1321 |
#: includes/elementor/widgets/button.php:378
|
1322 |
#: includes/elementor/widgets/custom-list.php:473
|
1335 |
#: includes/elementor/widgets/recent-posts-timeline.php:134
|
1336 |
#: includes/elementor/widgets/responsive-table.php:137
|
1337 |
#: includes/elementor/widgets/responsive-table.php:204
|
1338 |
+
#: includes/elementor/widgets/staff.php:859
|
1339 |
+
#: includes/elementor/widgets/staff.php:874
|
1340 |
#: includes/elementor/widgets/svg.php:284
|
1341 |
#: includes/elementor/widgets/testimonial.php:809
|
1342 |
#: includes/elementor/widgets/text.php:367
|
1404 |
#: includes/elementor/widgets/button.php:163
|
1405 |
#: includes/elementor/widgets/divider.php:146
|
1406 |
#: includes/elementor/widgets/modern-button.php:311
|
1407 |
+
#: includes/elementor/widgets/staff.php:787
|
1408 |
#: includes/elementor/widgets/text.php:1030 includes/elements/button.php:66
|
1409 |
#: includes/elements/divider.php:90 includes/elements/socials-list.php:63
|
1410 |
#: includes/elements/staff.php:463 includes/elements/text.php:469
|
1418 |
#: includes/elementor/widgets/button.php:162
|
1419 |
#: includes/elementor/widgets/divider.php:145
|
1420 |
#: includes/elementor/widgets/modern-button.php:310
|
1421 |
+
#: includes/elementor/widgets/staff.php:788
|
1422 |
#: includes/elementor/widgets/text.php:1029
|
1423 |
#: includes/elements/before-after.php:104 includes/elements/button.php:65
|
1424 |
#: includes/elements/divider.php:89 includes/elements/instagram-feed.php:98
|
1433 |
#: includes/classes/class-auxin-svg-support.php:193
|
1434 |
#: includes/elementor/widgets/button.php:161
|
1435 |
#: includes/elementor/widgets/modern-button.php:309
|
1436 |
+
#: includes/elementor/widgets/staff.php:789
|
1437 |
#: includes/elementor/widgets/text.php:1028
|
1438 |
#: includes/elements/before-after.php:105 includes/elements/button.php:64
|
1439 |
#: includes/elements/divider.php:88 includes/elements/socials-list.php:65
|
1488 |
msgstr ""
|
1489 |
|
1490 |
#: admin/includes/metaboxes/metabox-fields-general-header.php:841
|
1491 |
+
#: includes/elementor/modules/common.php:587
|
1492 |
+
#: includes/elementor/modules/common.php:643
|
1493 |
#: includes/elementor/modules/dynamic-tags/current-date-time.php:37
|
1494 |
#: includes/elementor/modules/dynamic-tags/current-date-time.php:55
|
1495 |
#: includes/elementor/modules/dynamic-tags/post-date.php:49
|
1572 |
#: includes/elementor/widgets/recent-posts-timeline.php:741
|
1573 |
#: includes/elementor/widgets/recent-posts-timeline.php:918
|
1574 |
#: includes/elementor/widgets/recent-products.php:644
|
1575 |
+
#: includes/elementor/widgets/staff.php:491
|
1576 |
+
#: includes/elementor/widgets/staff.php:738
|
1577 |
#: includes/elementor/widgets/svg.php:357
|
1578 |
#: includes/elementor/widgets/tabs.php:289
|
1579 |
#: includes/elementor/widgets/tabs.php:403
|
3111 |
msgid "Fade In For X"
|
3112 |
msgstr ""
|
3113 |
|
3114 |
+
#: includes/elementor/modules/common.php:415
|
3115 |
msgid "Fade In For Y"
|
3116 |
msgstr ""
|
3117 |
|
3118 |
+
#: includes/elementor/modules/common.php:435
|
3119 |
#: includes/elementor/widgets/theme-elements/logo.php:437
|
3120 |
msgid "Scale"
|
3121 |
msgstr ""
|
3122 |
|
3123 |
+
#: includes/elementor/modules/common.php:454
|
3124 |
msgid "Rotate Degree"
|
3125 |
msgstr ""
|
3126 |
|
3127 |
+
#: includes/elementor/modules/common.php:473
|
3128 |
msgid "Rotate Origin"
|
3129 |
msgstr ""
|
3130 |
|
3131 |
+
#: includes/elementor/modules/common.php:477
|
3132 |
#, fuzzy
|
3133 |
msgid "Left Bottom"
|
3134 |
msgstr "چپ پایین"
|
3135 |
|
3136 |
+
#: includes/elementor/modules/common.php:478
|
3137 |
#, fuzzy
|
3138 |
msgid "Right Bottom"
|
3139 |
msgstr "راست پایین"
|
3140 |
|
3141 |
+
#: includes/elementor/modules/common.php:493
|
3142 |
#: includes/elements/general-element-fields.php:51
|
3143 |
#, fuzzy
|
3144 |
msgid "Duration"
|
3145 |
msgstr "عنوان"
|
3146 |
|
3147 |
+
#: includes/elementor/modules/common.php:511
|
3148 |
#: includes/elements/general-element-fields.php:61
|
3149 |
msgid "Delay"
|
3150 |
msgstr ""
|
3151 |
|
3152 |
+
#: includes/elementor/modules/common.php:528
|
3153 |
msgid "Easing"
|
3154 |
msgstr ""
|
3155 |
|
3156 |
+
#: includes/elementor/modules/common.php:584
|
3157 |
#, fuzzy
|
3158 |
msgid "Repeat Count"
|
3159 |
msgstr "تکرار ویدیو"
|
3160 |
|
3161 |
+
#: includes/elementor/modules/common.php:593
|
3162 |
msgid "Infinite"
|
3163 |
msgstr ""
|
3164 |
|
3165 |
+
#: includes/elementor/modules/common.php:631
|
3166 |
#, fuzzy
|
3167 |
msgid "Positioning"
|
3168 |
msgstr "موقعیت"
|
3169 |
|
3170 |
+
#: includes/elementor/modules/common.php:639
|
3171 |
#, fuzzy
|
3172 |
msgid "Position Type"
|
3173 |
msgstr "موقعیت"
|
3174 |
|
3175 |
+
#: includes/elementor/modules/common.php:644
|
3176 |
msgid "Static"
|
3177 |
msgstr ""
|
3178 |
|
3179 |
+
#: includes/elementor/modules/common.php:645
|
3180 |
msgid "Relative"
|
3181 |
msgstr ""
|
3182 |
|
3183 |
+
#: includes/elementor/modules/common.php:646
|
3184 |
msgid "Absolute"
|
3185 |
msgstr ""
|
3186 |
|
3187 |
+
#: includes/elementor/modules/common.php:658
|
3188 |
#: includes/elementor/widgets/modern-button.php:139
|
3189 |
+
#: includes/elementor/widgets/staff.php:847
|
3190 |
#: includes/elementor/widgets/text.php:363 includes/elements/staff.php:226
|
3191 |
#: includes/elements/text.php:616
|
3192 |
#, fuzzy
|
3193 |
msgid "Top"
|
3194 |
msgstr "بالا"
|
3195 |
|
3196 |
+
#: includes/elementor/modules/common.php:690
|
3197 |
#: includes/elementor/widgets/button.php:242
|
3198 |
#: includes/elementor/widgets/button.php:379
|
3199 |
#: includes/elementor/widgets/custom-list.php:481
|
3212 |
#: includes/elementor/widgets/recent-posts-timeline.php:138
|
3213 |
#: includes/elementor/widgets/responsive-table.php:145
|
3214 |
#: includes/elementor/widgets/responsive-table.php:212
|
3215 |
+
#: includes/elementor/widgets/staff.php:851
|
3216 |
+
#: includes/elementor/widgets/staff.php:882
|
3217 |
#: includes/elementor/widgets/svg.php:292
|
3218 |
#: includes/elementor/widgets/testimonial.php:817
|
3219 |
#: includes/elementor/widgets/text.php:371
|
3239 |
msgid "Right"
|
3240 |
msgstr "راست"
|
3241 |
|
3242 |
+
#: includes/elementor/modules/common.php:723
|
3243 |
#: includes/elementor/widgets/modern-button.php:147
|
3244 |
+
#: includes/elementor/widgets/staff.php:855 includes/elements/staff.php:234
|
3245 |
msgid "Bottom"
|
3246 |
msgstr ""
|
3247 |
|
3248 |
+
#: includes/elementor/modules/common.php:787
|
3249 |
#, fuzzy
|
3250 |
msgid "From Center"
|
3251 |
msgstr "وسط"
|
3252 |
|
3253 |
+
#: includes/elementor/modules/common.php:788
|
3254 |
msgid ""
|
3255 |
"Please avoid using \"From Center\" and \"Left\" options at the same time."
|
3256 |
msgstr ""
|
3257 |
|
3258 |
+
#: includes/elementor/modules/common.php:844
|
3259 |
msgid "Dimensions (extra)"
|
3260 |
msgstr ""
|
3261 |
|
3262 |
+
#: includes/elementor/modules/common.php:852
|
3263 |
#: includes/elementor/widgets/contact-form.php:217
|
3264 |
#: includes/elementor/widgets/contact-form.php:527
|
3265 |
#: includes/elementor/widgets/contact-form.php:747
|
3283 |
msgid "Max Width"
|
3284 |
msgstr "عرض"
|
3285 |
|
3286 |
+
#: includes/elementor/modules/common.php:884
|
3287 |
#: includes/elementor/widgets/image.php:458
|
3288 |
#: includes/elementor/widgets/svg.php:250
|
3289 |
#, fuzzy
|
3290 |
msgid "Max Height"
|
3291 |
msgstr "ارتفاع نقشه"
|
3292 |
|
3293 |
+
#: includes/elementor/modules/common.php:917
|
3294 |
#, fuzzy
|
3295 |
msgid "Min Width"
|
3296 |
msgstr "عرض"
|
3297 |
|
3298 |
+
#: includes/elementor/modules/common.php:949
|
3299 |
#, fuzzy
|
3300 |
msgid "Min Height"
|
3301 |
msgstr "ارتفاع"
|
3302 |
|
3303 |
+
#: includes/elementor/modules/common.php:982
|
3304 |
#: includes/elementor/widgets/before-after.php:194
|
3305 |
#: includes/elementor/widgets/carousel-navigation.php:254
|
3306 |
#: includes/elementor/widgets/contact-form.php:244
|
3323 |
msgid "Height"
|
3324 |
msgstr "ارتفاع"
|
3325 |
|
3326 |
+
#: includes/elementor/modules/common.php:1014
|
3327 |
msgid "Grow in width"
|
3328 |
msgstr ""
|
3329 |
|
3693 |
#: includes/elementor/widgets/recent-posts-timeline.php:598
|
3694 |
#: includes/elementor/widgets/recent-products.php:384
|
3695 |
#: includes/elementor/widgets/recent-products.php:543
|
3696 |
+
#: includes/elementor/widgets/staff.php:452
|
3697 |
#: includes/elementor/widgets/tabs.php:373
|
3698 |
#: includes/elementor/widgets/text.php:232
|
3699 |
#: includes/elementor/widgets/text.php:680
|
3934 |
msgstr ""
|
3935 |
|
3936 |
#: includes/elementor/modules/dynamic-tags/post-terms.php:71
|
3937 |
+
#: includes/elementor/widgets/staff.php:802
|
3938 |
#: includes/elementor/widgets/theme-elements/breadcrumbs.php:365
|
3939 |
msgid "Separator"
|
3940 |
msgstr ""
|
4425 |
#: includes/elementor/widgets/quote.php:105
|
4426 |
#: includes/elementor/widgets/staff.php:100
|
4427 |
#: includes/elementor/widgets/staff.php:140
|
4428 |
+
#: includes/elementor/widgets/staff.php:637
|
4429 |
#: includes/elementor/widgets/tabs.php:100
|
4430 |
#: includes/elementor/widgets/tabs.php:136
|
4431 |
#: includes/elementor/widgets/tabs.php:439
|
4640 |
#: includes/elementor/widgets/recent-posts-timeline.php:715
|
4641 |
#: includes/elementor/widgets/recent-posts-timeline.php:898
|
4642 |
#: includes/elementor/widgets/recent-products.php:618
|
4643 |
+
#: includes/elementor/widgets/staff.php:465
|
4644 |
+
#: includes/elementor/widgets/staff.php:712
|
4645 |
#: includes/elementor/widgets/svg.php:320
|
4646 |
#: includes/elementor/widgets/tabs.php:251
|
4647 |
#: includes/elementor/widgets/tabs.php:383
|
4754 |
#: includes/elementor/widgets/modern-button.php:987
|
4755 |
#: includes/elementor/widgets/quote.php:333
|
4756 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1403
|
4757 |
+
#: includes/elementor/widgets/staff.php:810
|
4758 |
#: includes/elementor/widgets/tabs.php:210
|
4759 |
#: includes/elementor/widgets/tabs.php:467
|
4760 |
#: includes/elementor/widgets/testimonial.php:695
|
4882 |
#: includes/elementor/widgets/responsive-table.php:246
|
4883 |
#: includes/elementor/widgets/responsive-table.php:276
|
4884 |
#: includes/elementor/widgets/responsive-table.php:306
|
4885 |
+
#: includes/elementor/widgets/staff.php:475
|
4886 |
+
#: includes/elementor/widgets/staff.php:501
|
4887 |
+
#: includes/elementor/widgets/staff.php:586
|
4888 |
+
#: includes/elementor/widgets/staff.php:648
|
4889 |
+
#: includes/elementor/widgets/staff.php:722
|
4890 |
+
#: includes/elementor/widgets/staff.php:748
|
4891 |
#: includes/elementor/widgets/tabs.php:390
|
4892 |
#: includes/elementor/widgets/tabs.php:410
|
4893 |
#: includes/elementor/widgets/tabs.php:447
|
6127 |
#: includes/elementor/widgets/recent-posts-tiles.php:117
|
6128 |
#: includes/elementor/widgets/recent-posts-timeline.php:117
|
6129 |
#: includes/elementor/widgets/recent-products.php:129
|
6130 |
+
#: includes/elementor/widgets/staff.php:842 includes/elements/gallery.php:228
|
6131 |
#: includes/elements/gallery.php:250 includes/elements/gallery.php:270
|
6132 |
#: includes/elements/recent-posts-grid-carousel.php:489
|
6133 |
#: includes/elements/recent-posts-grid-carousel.php:508
|
6147 |
msgstr "بخش"
|
6148 |
|
6149 |
#: includes/elementor/widgets/custom-list.php:386
|
6150 |
+
#: includes/elementor/widgets/staff.php:770
|
6151 |
#: includes/elementor/widgets/theme-elements/menu.php:161
|
6152 |
#: includes/elements/socials-list.php:84 includes/elements/staff.php:486
|
6153 |
msgid "Vertical"
|
6154 |
msgstr "عمودی"
|
6155 |
|
6156 |
#: includes/elementor/widgets/custom-list.php:387
|
6157 |
+
#: includes/elementor/widgets/staff.php:771
|
6158 |
#: includes/elementor/widgets/theme-elements/menu.php:160
|
6159 |
#: includes/elements/socials-list.php:83 includes/elements/staff.php:487
|
6160 |
msgid "Horizontal"
|
7147 |
#: includes/elementor/widgets/recent-posts-timeline.php:863
|
7148 |
#: includes/elementor/widgets/recent-posts-timeline.php:949
|
7149 |
#: includes/elementor/widgets/recent-products.php:684
|
7150 |
+
#: includes/elementor/widgets/staff.php:550
|
7151 |
+
#: includes/elementor/widgets/staff.php:612
|
7152 |
+
#: includes/elementor/widgets/staff.php:674
|
7153 |
#: includes/elementor/widgets/testimonial.php:553
|
7154 |
#: includes/elementor/widgets/testimonial.php:774
|
7155 |
#: includes/elementor/widgets/text.php:754
|
8227 |
|
8228 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1540
|
8229 |
#: includes/elementor/widgets/recent-posts-masonry.php:1178
|
8230 |
+
#: includes/elementor/widgets/staff.php:894
|
8231 |
msgid "Padding for main wrapper"
|
8232 |
msgstr ""
|
8233 |
|
8234 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1552
|
8235 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1792
|
8236 |
#: includes/elementor/widgets/recent-posts-masonry.php:1190
|
8237 |
+
#: includes/elementor/widgets/staff.php:906
|
8238 |
msgid "Padding for content wrapper"
|
8239 |
msgstr ""
|
8240 |
|
8596 |
msgid "Instagram Address"
|
8597 |
msgstr "شناسه کاربر اینستاگرام"
|
8598 |
|
8599 |
+
#: includes/elementor/widgets/staff.php:414
|
8600 |
+
#, fuzzy
|
8601 |
+
msgid "Dribbble Address"
|
8602 |
+
msgstr "آدرس"
|
8603 |
+
|
8604 |
+
#: includes/elementor/widgets/staff.php:430
|
8605 |
+
#, fuzzy
|
8606 |
+
msgid "LinkedIn Address"
|
8607 |
+
msgstr "آدرس"
|
8608 |
+
|
8609 |
+
#: includes/elementor/widgets/staff.php:531
|
8610 |
#: includes/elementor/widgets/text.php:850
|
8611 |
#: includes/elementor/widgets/text.php:973
|
8612 |
#, fuzzy
|
8613 |
msgid "Top space"
|
8614 |
msgstr "فضای خالی"
|
8615 |
|
8616 |
+
#: includes/elementor/widgets/staff.php:575
|
8617 |
#: includes/elementor/widgets/text.php:242
|
8618 |
#: includes/elementor/widgets/text.php:776
|
8619 |
#: includes/elements/recent-posts-grid-carousel.php:70
|
8621 |
msgid "Subtitle"
|
8622 |
msgstr "زیرعنوان"
|
8623 |
|
8624 |
+
#: includes/elementor/widgets/staff.php:699
|
8625 |
#: includes/elements/socials-list.php:15 includes/elements/staff.php:325
|
8626 |
#: includes/elements/staff.php:341 includes/elements/staff.php:357
|
8627 |
#: includes/elements/staff.php:373 includes/elements/staff.php:389
|
8632 |
msgid "Socials"
|
8633 |
msgstr "شکلک های شبکه های اجتماعی"
|
8634 |
|
8635 |
+
#: includes/elementor/widgets/staff.php:766 includes/elements/staff.php:480
|
8636 |
#, fuzzy
|
8637 |
msgid "Icon Direction"
|
8638 |
msgstr "دکمه شکلک دار"
|
8639 |
|
8640 |
+
#: includes/elementor/widgets/staff.php:783 includes/elements/staff.php:457
|
8641 |
#, fuzzy
|
8642 |
msgid "Socials Icon size"
|
8643 |
msgstr "اندازه شکلک"
|
8644 |
|
8645 |
+
#: includes/elementor/widgets/staff.php:790 includes/elements/staff.php:466
|
8646 |
#: includes/elements/text.php:472
|
8647 |
msgid "X-Large"
|
8648 |
msgstr "خیلی بزرگ"
|
8649 |
|
8650 |
+
#: includes/elementor/widgets/staff.php:831
|
8651 |
#, fuzzy
|
8652 |
msgid "Wrappers"
|
8653 |
msgstr "ظاهر Wrapper"
|
8654 |
|
8655 |
+
#: includes/elementor/widgets/staff.php:870
|
8656 |
#: includes/elementor/widgets/text.php:1429
|
8657 |
#: includes/elementor/widgets/theme-elements/menu.php:324
|
8658 |
#: includes/elementor/widgets/theme-elements/menu.php:1341
|
9322 |
|
9323 |
#: includes/elementor/widgets/theme-elements/menu.php:1521
|
9324 |
#, fuzzy
|
9325 |
+
msgid "Please choose a menu."
|
9326 |
+
msgstr "لطفا پیامی را وارد کنید."
|
9327 |
+
|
9328 |
+
#: includes/elementor/widgets/theme-elements/menu.php:1525
|
9329 |
+
msgid "There are no menu items in this menu."
|
9330 |
+
msgstr ""
|
9331 |
|
9332 |
#: includes/elementor/widgets/theme-elements/modern-search.php:52
|
9333 |
#, fuzzy
|
12639 |
msgid "Page %s"
|
12640 |
msgstr "برگه ها"
|
12641 |
|
12642 |
+
#: includes/general-hooks.php:3604
|
12643 |
+
#, fuzzy
|
12644 |
+
msgid "current "
|
12645 |
+
msgstr "صفحه جاری"
|
12646 |
+
|
12647 |
+
#: includes/general-hooks.php:3634
|
12648 |
+
msgid "Edit Header & Footer"
|
12649 |
+
msgstr ""
|
12650 |
+
|
12651 |
#: public/includes/frontend-ajax.php:17
|
12652 |
#, fuzzy
|
12653 |
msgid "Ajax action not found."
|
12921 |
#~ msgid "The URL of your site's homepage."
|
12922 |
#~ msgstr "آدرس صفحه اصلی سایت شما."
|
12923 |
|
12924 |
+
#~ msgid "The root URL of your site."
|
12925 |
+
#~ msgstr "آدرس ریشه سایت شما"
|
12926 |
+
|
12927 |
#~ msgid "The version of WordPress installed on your site."
|
12928 |
#~ msgstr "نسخه وردپرسی که روی سایت شما نصب شده است."
|
12929 |
|
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.
|
5 |
"Report-Msgid-Bugs-To: http://averta.net/phlox/wordpress-theme/\n"
|
6 |
-
"POT-Creation-Date: 2020-10-
|
7 |
"MIME-Version: 1.0\n"
|
8 |
"Content-Type: text/plain; charset=utf-8\n"
|
9 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -1202,7 +1202,7 @@ msgstr ""
|
|
1202 |
#: includes/elementor/widgets/recent-posts-timeline.php:130
|
1203 |
#: includes/elementor/widgets/responsive-table.php:141
|
1204 |
#: includes/elementor/widgets/responsive-table.php:208
|
1205 |
-
#: includes/elementor/widgets/staff.php:
|
1206 |
#: includes/elementor/widgets/svg.php:288
|
1207 |
#: includes/elementor/widgets/testimonial.php:813
|
1208 |
#: includes/elementor/widgets/text.php:1437
|
@@ -1223,7 +1223,7 @@ msgid "Center"
|
|
1223 |
msgstr ""
|
1224 |
|
1225 |
#: admin/includes/metaboxes/metabox-fields-general-header.php:603
|
1226 |
-
#: includes/elementor/modules/common.php:
|
1227 |
#: includes/elementor/widgets/button.php:234
|
1228 |
#: includes/elementor/widgets/button.php:378
|
1229 |
#: includes/elementor/widgets/custom-list.php:473
|
@@ -1242,8 +1242,8 @@ msgstr ""
|
|
1242 |
#: includes/elementor/widgets/recent-posts-timeline.php:134
|
1243 |
#: includes/elementor/widgets/responsive-table.php:137
|
1244 |
#: includes/elementor/widgets/responsive-table.php:204
|
1245 |
-
#: includes/elementor/widgets/staff.php:
|
1246 |
-
#: includes/elementor/widgets/staff.php:
|
1247 |
#: includes/elementor/widgets/svg.php:284
|
1248 |
#: includes/elementor/widgets/testimonial.php:809
|
1249 |
#: includes/elementor/widgets/text.php:367
|
@@ -1305,7 +1305,7 @@ msgstr ""
|
|
1305 |
#: includes/elementor/widgets/button.php:163
|
1306 |
#: includes/elementor/widgets/divider.php:146
|
1307 |
#: includes/elementor/widgets/modern-button.php:311
|
1308 |
-
#: includes/elementor/widgets/staff.php:
|
1309 |
#: includes/elementor/widgets/text.php:1030 includes/elements/button.php:66
|
1310 |
#: includes/elements/divider.php:90 includes/elements/socials-list.php:63
|
1311 |
#: includes/elements/staff.php:463 includes/elements/text.php:469
|
@@ -1319,7 +1319,7 @@ msgstr ""
|
|
1319 |
#: includes/elementor/widgets/button.php:162
|
1320 |
#: includes/elementor/widgets/divider.php:145
|
1321 |
#: includes/elementor/widgets/modern-button.php:310
|
1322 |
-
#: includes/elementor/widgets/staff.php:
|
1323 |
#: includes/elementor/widgets/text.php:1029
|
1324 |
#: includes/elements/before-after.php:104 includes/elements/button.php:65
|
1325 |
#: includes/elements/divider.php:89 includes/elements/instagram-feed.php:98
|
@@ -1334,7 +1334,7 @@ msgstr ""
|
|
1334 |
#: includes/classes/class-auxin-svg-support.php:193
|
1335 |
#: includes/elementor/widgets/button.php:161
|
1336 |
#: includes/elementor/widgets/modern-button.php:309
|
1337 |
-
#: includes/elementor/widgets/staff.php:
|
1338 |
#: includes/elementor/widgets/text.php:1028
|
1339 |
#: includes/elements/before-after.php:105 includes/elements/button.php:64
|
1340 |
#: includes/elements/divider.php:88 includes/elements/socials-list.php:65
|
@@ -1384,8 +1384,8 @@ msgid "Dropdown Action On"
|
|
1384 |
msgstr ""
|
1385 |
|
1386 |
#: admin/includes/metaboxes/metabox-fields-general-header.php:841
|
1387 |
-
#: includes/elementor/modules/common.php:
|
1388 |
-
#: includes/elementor/modules/common.php:
|
1389 |
#: includes/elementor/modules/dynamic-tags/current-date-time.php:37
|
1390 |
#: includes/elementor/modules/dynamic-tags/current-date-time.php:55
|
1391 |
#: includes/elementor/modules/dynamic-tags/post-date.php:49
|
@@ -1468,8 +1468,8 @@ msgstr ""
|
|
1468 |
#: includes/elementor/widgets/recent-posts-timeline.php:741
|
1469 |
#: includes/elementor/widgets/recent-posts-timeline.php:918
|
1470 |
#: includes/elementor/widgets/recent-products.php:644
|
1471 |
-
#: includes/elementor/widgets/staff.php:
|
1472 |
-
#: includes/elementor/widgets/staff.php:
|
1473 |
#: includes/elementor/widgets/svg.php:357
|
1474 |
#: includes/elementor/widgets/tabs.php:289
|
1475 |
#: includes/elementor/widgets/tabs.php:403
|
@@ -2916,82 +2916,82 @@ msgstr ""
|
|
2916 |
msgid "Fade In For X"
|
2917 |
msgstr ""
|
2918 |
|
2919 |
-
#: includes/elementor/modules/common.php:
|
2920 |
msgid "Fade In For Y"
|
2921 |
msgstr ""
|
2922 |
|
2923 |
-
#: includes/elementor/modules/common.php:
|
2924 |
#: includes/elementor/widgets/theme-elements/logo.php:437
|
2925 |
msgid "Scale"
|
2926 |
msgstr ""
|
2927 |
|
2928 |
-
#: includes/elementor/modules/common.php:
|
2929 |
msgid "Rotate Degree"
|
2930 |
msgstr ""
|
2931 |
|
2932 |
-
#: includes/elementor/modules/common.php:
|
2933 |
msgid "Rotate Origin"
|
2934 |
msgstr ""
|
2935 |
|
2936 |
-
#: includes/elementor/modules/common.php:
|
2937 |
msgid "Left Bottom"
|
2938 |
msgstr ""
|
2939 |
|
2940 |
-
#: includes/elementor/modules/common.php:
|
2941 |
msgid "Right Bottom"
|
2942 |
msgstr ""
|
2943 |
|
2944 |
-
#: includes/elementor/modules/common.php:
|
2945 |
#: includes/elements/general-element-fields.php:51
|
2946 |
msgid "Duration"
|
2947 |
msgstr ""
|
2948 |
|
2949 |
-
#: includes/elementor/modules/common.php:
|
2950 |
#: includes/elements/general-element-fields.php:61
|
2951 |
msgid "Delay"
|
2952 |
msgstr ""
|
2953 |
|
2954 |
-
#: includes/elementor/modules/common.php:
|
2955 |
msgid "Easing"
|
2956 |
msgstr ""
|
2957 |
|
2958 |
-
#: includes/elementor/modules/common.php:
|
2959 |
msgid "Repeat Count"
|
2960 |
msgstr ""
|
2961 |
|
2962 |
-
#: includes/elementor/modules/common.php:
|
2963 |
msgid "Infinite"
|
2964 |
msgstr ""
|
2965 |
|
2966 |
-
#: includes/elementor/modules/common.php:
|
2967 |
msgid "Positioning"
|
2968 |
msgstr ""
|
2969 |
|
2970 |
-
#: includes/elementor/modules/common.php:
|
2971 |
msgid "Position Type"
|
2972 |
msgstr ""
|
2973 |
|
2974 |
-
#: includes/elementor/modules/common.php:
|
2975 |
msgid "Static"
|
2976 |
msgstr ""
|
2977 |
|
2978 |
-
#: includes/elementor/modules/common.php:
|
2979 |
msgid "Relative"
|
2980 |
msgstr ""
|
2981 |
|
2982 |
-
#: includes/elementor/modules/common.php:
|
2983 |
msgid "Absolute"
|
2984 |
msgstr ""
|
2985 |
|
2986 |
-
#: includes/elementor/modules/common.php:
|
2987 |
#: includes/elementor/widgets/modern-button.php:139
|
2988 |
-
#: includes/elementor/widgets/staff.php:
|
2989 |
#: includes/elementor/widgets/text.php:363 includes/elements/staff.php:226
|
2990 |
#: includes/elements/text.php:616
|
2991 |
msgid "Top"
|
2992 |
msgstr ""
|
2993 |
|
2994 |
-
#: includes/elementor/modules/common.php:
|
2995 |
#: includes/elementor/widgets/button.php:242
|
2996 |
#: includes/elementor/widgets/button.php:379
|
2997 |
#: includes/elementor/widgets/custom-list.php:481
|
@@ -3010,8 +3010,8 @@ msgstr ""
|
|
3010 |
#: includes/elementor/widgets/recent-posts-timeline.php:138
|
3011 |
#: includes/elementor/widgets/responsive-table.php:145
|
3012 |
#: includes/elementor/widgets/responsive-table.php:212
|
3013 |
-
#: includes/elementor/widgets/staff.php:
|
3014 |
-
#: includes/elementor/widgets/staff.php:
|
3015 |
#: includes/elementor/widgets/svg.php:292
|
3016 |
#: includes/elementor/widgets/testimonial.php:817
|
3017 |
#: includes/elementor/widgets/text.php:371
|
@@ -3037,25 +3037,25 @@ msgstr ""
|
|
3037 |
msgid "Right"
|
3038 |
msgstr ""
|
3039 |
|
3040 |
-
#: includes/elementor/modules/common.php:
|
3041 |
#: includes/elementor/widgets/modern-button.php:147
|
3042 |
-
#: includes/elementor/widgets/staff.php:
|
3043 |
msgid "Bottom"
|
3044 |
msgstr ""
|
3045 |
|
3046 |
-
#: includes/elementor/modules/common.php:
|
3047 |
msgid "From Center"
|
3048 |
msgstr ""
|
3049 |
|
3050 |
-
#: includes/elementor/modules/common.php:
|
3051 |
msgid "Please avoid using \"From Center\" and \"Left\" options at the same time."
|
3052 |
msgstr ""
|
3053 |
|
3054 |
-
#: includes/elementor/modules/common.php:
|
3055 |
msgid "Dimensions (extra)"
|
3056 |
msgstr ""
|
3057 |
|
3058 |
-
#: includes/elementor/modules/common.php:
|
3059 |
#: includes/elementor/widgets/contact-form.php:217
|
3060 |
#: includes/elementor/widgets/contact-form.php:527
|
3061 |
#: includes/elementor/widgets/contact-form.php:747
|
@@ -3078,21 +3078,21 @@ msgstr ""
|
|
3078 |
msgid "Max Width"
|
3079 |
msgstr ""
|
3080 |
|
3081 |
-
#: includes/elementor/modules/common.php:
|
3082 |
#: includes/elementor/widgets/image.php:458
|
3083 |
#: includes/elementor/widgets/svg.php:250
|
3084 |
msgid "Max Height"
|
3085 |
msgstr ""
|
3086 |
|
3087 |
-
#: includes/elementor/modules/common.php:
|
3088 |
msgid "Min Width"
|
3089 |
msgstr ""
|
3090 |
|
3091 |
-
#: includes/elementor/modules/common.php:
|
3092 |
msgid "Min Height"
|
3093 |
msgstr ""
|
3094 |
|
3095 |
-
#: includes/elementor/modules/common.php:
|
3096 |
#: includes/elementor/widgets/before-after.php:194
|
3097 |
#: includes/elementor/widgets/carousel-navigation.php:254
|
3098 |
#: includes/elementor/widgets/contact-form.php:244
|
@@ -3115,7 +3115,7 @@ msgstr ""
|
|
3115 |
msgid "Height"
|
3116 |
msgstr ""
|
3117 |
|
3118 |
-
#: includes/elementor/modules/common.php:
|
3119 |
msgid "Grow in width"
|
3120 |
msgstr ""
|
3121 |
|
@@ -3458,7 +3458,7 @@ msgstr ""
|
|
3458 |
#: includes/elementor/widgets/recent-posts-timeline.php:598
|
3459 |
#: includes/elementor/widgets/recent-products.php:384
|
3460 |
#: includes/elementor/widgets/recent-products.php:543
|
3461 |
-
#: includes/elementor/widgets/staff.php:
|
3462 |
#: includes/elementor/widgets/tabs.php:373
|
3463 |
#: includes/elementor/widgets/text.php:232
|
3464 |
#: includes/elementor/widgets/text.php:680
|
@@ -3675,7 +3675,7 @@ msgid "Taxonomy"
|
|
3675 |
msgstr ""
|
3676 |
|
3677 |
#: includes/elementor/modules/dynamic-tags/post-terms.php:71
|
3678 |
-
#: includes/elementor/widgets/staff.php:
|
3679 |
#: includes/elementor/widgets/theme-elements/breadcrumbs.php:365
|
3680 |
msgid "Separator"
|
3681 |
msgstr ""
|
@@ -4136,7 +4136,7 @@ msgstr ""
|
|
4136 |
#: includes/elementor/widgets/quote.php:105
|
4137 |
#: includes/elementor/widgets/staff.php:100
|
4138 |
#: includes/elementor/widgets/staff.php:140
|
4139 |
-
#: includes/elementor/widgets/staff.php:
|
4140 |
#: includes/elementor/widgets/tabs.php:100
|
4141 |
#: includes/elementor/widgets/tabs.php:136
|
4142 |
#: includes/elementor/widgets/tabs.php:439
|
@@ -4344,8 +4344,8 @@ msgstr ""
|
|
4344 |
#: includes/elementor/widgets/recent-posts-timeline.php:715
|
4345 |
#: includes/elementor/widgets/recent-posts-timeline.php:898
|
4346 |
#: includes/elementor/widgets/recent-products.php:618
|
4347 |
-
#: includes/elementor/widgets/staff.php:
|
4348 |
-
#: includes/elementor/widgets/staff.php:
|
4349 |
#: includes/elementor/widgets/svg.php:320
|
4350 |
#: includes/elementor/widgets/tabs.php:251
|
4351 |
#: includes/elementor/widgets/tabs.php:383
|
@@ -4456,7 +4456,7 @@ msgstr ""
|
|
4456 |
#: includes/elementor/widgets/modern-button.php:987
|
4457 |
#: includes/elementor/widgets/quote.php:333
|
4458 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1403
|
4459 |
-
#: includes/elementor/widgets/staff.php:
|
4460 |
#: includes/elementor/widgets/tabs.php:210
|
4461 |
#: includes/elementor/widgets/tabs.php:467
|
4462 |
#: includes/elementor/widgets/testimonial.php:695
|
@@ -4583,12 +4583,12 @@ msgstr ""
|
|
4583 |
#: includes/elementor/widgets/responsive-table.php:246
|
4584 |
#: includes/elementor/widgets/responsive-table.php:276
|
4585 |
#: includes/elementor/widgets/responsive-table.php:306
|
4586 |
-
#: includes/elementor/widgets/staff.php:
|
4587 |
-
#: includes/elementor/widgets/staff.php:
|
4588 |
-
#: includes/elementor/widgets/staff.php:
|
4589 |
-
#: includes/elementor/widgets/staff.php:
|
4590 |
-
#: includes/elementor/widgets/staff.php:
|
4591 |
-
#: includes/elementor/widgets/staff.php:
|
4592 |
#: includes/elementor/widgets/tabs.php:390
|
4593 |
#: includes/elementor/widgets/tabs.php:410
|
4594 |
#: includes/elementor/widgets/tabs.php:447
|
@@ -5789,7 +5789,7 @@ msgstr ""
|
|
5789 |
#: includes/elementor/widgets/recent-posts-tiles.php:117
|
5790 |
#: includes/elementor/widgets/recent-posts-timeline.php:117
|
5791 |
#: includes/elementor/widgets/recent-products.php:129
|
5792 |
-
#: includes/elementor/widgets/staff.php:
|
5793 |
#: includes/elements/gallery.php:250 includes/elements/gallery.php:270
|
5794 |
#: includes/elements/recent-posts-grid-carousel.php:489
|
5795 |
#: includes/elements/recent-posts-grid-carousel.php:508
|
@@ -5808,14 +5808,14 @@ msgid "Direction"
|
|
5808 |
msgstr ""
|
5809 |
|
5810 |
#: includes/elementor/widgets/custom-list.php:386
|
5811 |
-
#: includes/elementor/widgets/staff.php:
|
5812 |
#: includes/elementor/widgets/theme-elements/menu.php:161
|
5813 |
#: includes/elements/socials-list.php:84 includes/elements/staff.php:486
|
5814 |
msgid "Vertical"
|
5815 |
msgstr ""
|
5816 |
|
5817 |
#: includes/elementor/widgets/custom-list.php:387
|
5818 |
-
#: includes/elementor/widgets/staff.php:
|
5819 |
#: includes/elementor/widgets/theme-elements/menu.php:160
|
5820 |
#: includes/elements/socials-list.php:83 includes/elements/staff.php:487
|
5821 |
msgid "Horizontal"
|
@@ -6729,9 +6729,9 @@ msgstr ""
|
|
6729 |
#: includes/elementor/widgets/recent-posts-timeline.php:863
|
6730 |
#: includes/elementor/widgets/recent-posts-timeline.php:949
|
6731 |
#: includes/elementor/widgets/recent-products.php:684
|
6732 |
-
#: includes/elementor/widgets/staff.php:
|
6733 |
-
#: includes/elementor/widgets/staff.php:
|
6734 |
-
#: includes/elementor/widgets/staff.php:
|
6735 |
#: includes/elementor/widgets/testimonial.php:553
|
6736 |
#: includes/elementor/widgets/testimonial.php:774
|
6737 |
#: includes/elementor/widgets/text.php:754
|
@@ -7767,14 +7767,14 @@ msgstr ""
|
|
7767 |
|
7768 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1540
|
7769 |
#: includes/elementor/widgets/recent-posts-masonry.php:1178
|
7770 |
-
#: includes/elementor/widgets/staff.php:
|
7771 |
msgid "Padding for main wrapper"
|
7772 |
msgstr ""
|
7773 |
|
7774 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1552
|
7775 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1792
|
7776 |
#: includes/elementor/widgets/recent-posts-masonry.php:1190
|
7777 |
-
#: includes/elementor/widgets/staff.php:
|
7778 |
msgid "Padding for content wrapper"
|
7779 |
msgstr ""
|
7780 |
|
@@ -8104,13 +8104,21 @@ msgstr ""
|
|
8104 |
msgid "Instagram Address"
|
8105 |
msgstr ""
|
8106 |
|
8107 |
-
#: includes/elementor/widgets/staff.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8108 |
#: includes/elementor/widgets/text.php:850
|
8109 |
#: includes/elementor/widgets/text.php:973
|
8110 |
msgid "Top space"
|
8111 |
msgstr ""
|
8112 |
|
8113 |
-
#: includes/elementor/widgets/staff.php:
|
8114 |
#: includes/elementor/widgets/text.php:242
|
8115 |
#: includes/elementor/widgets/text.php:776
|
8116 |
#: includes/elements/recent-posts-grid-carousel.php:70
|
@@ -8118,7 +8126,7 @@ msgstr ""
|
|
8118 |
msgid "Subtitle"
|
8119 |
msgstr ""
|
8120 |
|
8121 |
-
#: includes/elementor/widgets/staff.php:
|
8122 |
#: includes/elements/socials-list.php:15 includes/elements/staff.php:325
|
8123 |
#: includes/elements/staff.php:341 includes/elements/staff.php:357
|
8124 |
#: includes/elements/staff.php:373 includes/elements/staff.php:389
|
@@ -8128,24 +8136,24 @@ msgstr ""
|
|
8128 |
msgid "Socials"
|
8129 |
msgstr ""
|
8130 |
|
8131 |
-
#: includes/elementor/widgets/staff.php:
|
8132 |
msgid "Icon Direction"
|
8133 |
msgstr ""
|
8134 |
|
8135 |
-
#: includes/elementor/widgets/staff.php:
|
8136 |
msgid "Socials Icon size"
|
8137 |
msgstr ""
|
8138 |
|
8139 |
-
#: includes/elementor/widgets/staff.php:
|
8140 |
#: includes/elements/text.php:472
|
8141 |
msgid "X-Large"
|
8142 |
msgstr ""
|
8143 |
|
8144 |
-
#: includes/elementor/widgets/staff.php:
|
8145 |
msgid "Wrappers"
|
8146 |
msgstr ""
|
8147 |
|
8148 |
-
#: includes/elementor/widgets/staff.php:
|
8149 |
#: includes/elementor/widgets/text.php:1429
|
8150 |
#: includes/elementor/widgets/theme-elements/menu.php:324
|
8151 |
#: includes/elementor/widgets/theme-elements/menu.php:1341
|
@@ -8757,7 +8765,11 @@ msgid "Menu Title Color"
|
|
8757 |
msgstr ""
|
8758 |
|
8759 |
#: includes/elementor/widgets/theme-elements/menu.php:1521
|
8760 |
-
msgid "
|
|
|
|
|
|
|
|
|
8761 |
msgstr ""
|
8762 |
|
8763 |
#: includes/elementor/widgets/theme-elements/modern-search.php:52
|
@@ -11830,6 +11842,14 @@ msgstr ""
|
|
11830 |
msgid "Page %s"
|
11831 |
msgstr ""
|
11832 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11833 |
#: public/includes/frontend-ajax.php:17
|
11834 |
msgid "Ajax action not found."
|
11835 |
msgstr ""
|
1 |
# Averta Copyright (c) {2020}
|
2 |
msgid ""
|
3 |
msgstr ""
|
4 |
+
"Project-Id-Version: Phlox Core Elements 2.7.0\n"
|
5 |
"Report-Msgid-Bugs-To: http://averta.net/phlox/wordpress-theme/\n"
|
6 |
+
"POT-Creation-Date: 2020-10-20 11:18:04+00:00\n"
|
7 |
"MIME-Version: 1.0\n"
|
8 |
"Content-Type: text/plain; charset=utf-8\n"
|
9 |
"Content-Transfer-Encoding: 8bit\n"
|
1202 |
#: includes/elementor/widgets/recent-posts-timeline.php:130
|
1203 |
#: includes/elementor/widgets/responsive-table.php:141
|
1204 |
#: includes/elementor/widgets/responsive-table.php:208
|
1205 |
+
#: includes/elementor/widgets/staff.php:878
|
1206 |
#: includes/elementor/widgets/svg.php:288
|
1207 |
#: includes/elementor/widgets/testimonial.php:813
|
1208 |
#: includes/elementor/widgets/text.php:1437
|
1223 |
msgstr ""
|
1224 |
|
1225 |
#: admin/includes/metaboxes/metabox-fields-general-header.php:603
|
1226 |
+
#: includes/elementor/modules/common.php:755
|
1227 |
#: includes/elementor/widgets/button.php:234
|
1228 |
#: includes/elementor/widgets/button.php:378
|
1229 |
#: includes/elementor/widgets/custom-list.php:473
|
1242 |
#: includes/elementor/widgets/recent-posts-timeline.php:134
|
1243 |
#: includes/elementor/widgets/responsive-table.php:137
|
1244 |
#: includes/elementor/widgets/responsive-table.php:204
|
1245 |
+
#: includes/elementor/widgets/staff.php:859
|
1246 |
+
#: includes/elementor/widgets/staff.php:874
|
1247 |
#: includes/elementor/widgets/svg.php:284
|
1248 |
#: includes/elementor/widgets/testimonial.php:809
|
1249 |
#: includes/elementor/widgets/text.php:367
|
1305 |
#: includes/elementor/widgets/button.php:163
|
1306 |
#: includes/elementor/widgets/divider.php:146
|
1307 |
#: includes/elementor/widgets/modern-button.php:311
|
1308 |
+
#: includes/elementor/widgets/staff.php:787
|
1309 |
#: includes/elementor/widgets/text.php:1030 includes/elements/button.php:66
|
1310 |
#: includes/elements/divider.php:90 includes/elements/socials-list.php:63
|
1311 |
#: includes/elements/staff.php:463 includes/elements/text.php:469
|
1319 |
#: includes/elementor/widgets/button.php:162
|
1320 |
#: includes/elementor/widgets/divider.php:145
|
1321 |
#: includes/elementor/widgets/modern-button.php:310
|
1322 |
+
#: includes/elementor/widgets/staff.php:788
|
1323 |
#: includes/elementor/widgets/text.php:1029
|
1324 |
#: includes/elements/before-after.php:104 includes/elements/button.php:65
|
1325 |
#: includes/elements/divider.php:89 includes/elements/instagram-feed.php:98
|
1334 |
#: includes/classes/class-auxin-svg-support.php:193
|
1335 |
#: includes/elementor/widgets/button.php:161
|
1336 |
#: includes/elementor/widgets/modern-button.php:309
|
1337 |
+
#: includes/elementor/widgets/staff.php:789
|
1338 |
#: includes/elementor/widgets/text.php:1028
|
1339 |
#: includes/elements/before-after.php:105 includes/elements/button.php:64
|
1340 |
#: includes/elements/divider.php:88 includes/elements/socials-list.php:65
|
1384 |
msgstr ""
|
1385 |
|
1386 |
#: admin/includes/metaboxes/metabox-fields-general-header.php:841
|
1387 |
+
#: includes/elementor/modules/common.php:587
|
1388 |
+
#: includes/elementor/modules/common.php:643
|
1389 |
#: includes/elementor/modules/dynamic-tags/current-date-time.php:37
|
1390 |
#: includes/elementor/modules/dynamic-tags/current-date-time.php:55
|
1391 |
#: includes/elementor/modules/dynamic-tags/post-date.php:49
|
1468 |
#: includes/elementor/widgets/recent-posts-timeline.php:741
|
1469 |
#: includes/elementor/widgets/recent-posts-timeline.php:918
|
1470 |
#: includes/elementor/widgets/recent-products.php:644
|
1471 |
+
#: includes/elementor/widgets/staff.php:491
|
1472 |
+
#: includes/elementor/widgets/staff.php:738
|
1473 |
#: includes/elementor/widgets/svg.php:357
|
1474 |
#: includes/elementor/widgets/tabs.php:289
|
1475 |
#: includes/elementor/widgets/tabs.php:403
|
2916 |
msgid "Fade In For X"
|
2917 |
msgstr ""
|
2918 |
|
2919 |
+
#: includes/elementor/modules/common.php:415
|
2920 |
msgid "Fade In For Y"
|
2921 |
msgstr ""
|
2922 |
|
2923 |
+
#: includes/elementor/modules/common.php:435
|
2924 |
#: includes/elementor/widgets/theme-elements/logo.php:437
|
2925 |
msgid "Scale"
|
2926 |
msgstr ""
|
2927 |
|
2928 |
+
#: includes/elementor/modules/common.php:454
|
2929 |
msgid "Rotate Degree"
|
2930 |
msgstr ""
|
2931 |
|
2932 |
+
#: includes/elementor/modules/common.php:473
|
2933 |
msgid "Rotate Origin"
|
2934 |
msgstr ""
|
2935 |
|
2936 |
+
#: includes/elementor/modules/common.php:477
|
2937 |
msgid "Left Bottom"
|
2938 |
msgstr ""
|
2939 |
|
2940 |
+
#: includes/elementor/modules/common.php:478
|
2941 |
msgid "Right Bottom"
|
2942 |
msgstr ""
|
2943 |
|
2944 |
+
#: includes/elementor/modules/common.php:493
|
2945 |
#: includes/elements/general-element-fields.php:51
|
2946 |
msgid "Duration"
|
2947 |
msgstr ""
|
2948 |
|
2949 |
+
#: includes/elementor/modules/common.php:511
|
2950 |
#: includes/elements/general-element-fields.php:61
|
2951 |
msgid "Delay"
|
2952 |
msgstr ""
|
2953 |
|
2954 |
+
#: includes/elementor/modules/common.php:528
|
2955 |
msgid "Easing"
|
2956 |
msgstr ""
|
2957 |
|
2958 |
+
#: includes/elementor/modules/common.php:584
|
2959 |
msgid "Repeat Count"
|
2960 |
msgstr ""
|
2961 |
|
2962 |
+
#: includes/elementor/modules/common.php:593
|
2963 |
msgid "Infinite"
|
2964 |
msgstr ""
|
2965 |
|
2966 |
+
#: includes/elementor/modules/common.php:631
|
2967 |
msgid "Positioning"
|
2968 |
msgstr ""
|
2969 |
|
2970 |
+
#: includes/elementor/modules/common.php:639
|
2971 |
msgid "Position Type"
|
2972 |
msgstr ""
|
2973 |
|
2974 |
+
#: includes/elementor/modules/common.php:644
|
2975 |
msgid "Static"
|
2976 |
msgstr ""
|
2977 |
|
2978 |
+
#: includes/elementor/modules/common.php:645
|
2979 |
msgid "Relative"
|
2980 |
msgstr ""
|
2981 |
|
2982 |
+
#: includes/elementor/modules/common.php:646
|
2983 |
msgid "Absolute"
|
2984 |
msgstr ""
|
2985 |
|
2986 |
+
#: includes/elementor/modules/common.php:658
|
2987 |
#: includes/elementor/widgets/modern-button.php:139
|
2988 |
+
#: includes/elementor/widgets/staff.php:847
|
2989 |
#: includes/elementor/widgets/text.php:363 includes/elements/staff.php:226
|
2990 |
#: includes/elements/text.php:616
|
2991 |
msgid "Top"
|
2992 |
msgstr ""
|
2993 |
|
2994 |
+
#: includes/elementor/modules/common.php:690
|
2995 |
#: includes/elementor/widgets/button.php:242
|
2996 |
#: includes/elementor/widgets/button.php:379
|
2997 |
#: includes/elementor/widgets/custom-list.php:481
|
3010 |
#: includes/elementor/widgets/recent-posts-timeline.php:138
|
3011 |
#: includes/elementor/widgets/responsive-table.php:145
|
3012 |
#: includes/elementor/widgets/responsive-table.php:212
|
3013 |
+
#: includes/elementor/widgets/staff.php:851
|
3014 |
+
#: includes/elementor/widgets/staff.php:882
|
3015 |
#: includes/elementor/widgets/svg.php:292
|
3016 |
#: includes/elementor/widgets/testimonial.php:817
|
3017 |
#: includes/elementor/widgets/text.php:371
|
3037 |
msgid "Right"
|
3038 |
msgstr ""
|
3039 |
|
3040 |
+
#: includes/elementor/modules/common.php:723
|
3041 |
#: includes/elementor/widgets/modern-button.php:147
|
3042 |
+
#: includes/elementor/widgets/staff.php:855 includes/elements/staff.php:234
|
3043 |
msgid "Bottom"
|
3044 |
msgstr ""
|
3045 |
|
3046 |
+
#: includes/elementor/modules/common.php:787
|
3047 |
msgid "From Center"
|
3048 |
msgstr ""
|
3049 |
|
3050 |
+
#: includes/elementor/modules/common.php:788
|
3051 |
msgid "Please avoid using \"From Center\" and \"Left\" options at the same time."
|
3052 |
msgstr ""
|
3053 |
|
3054 |
+
#: includes/elementor/modules/common.php:844
|
3055 |
msgid "Dimensions (extra)"
|
3056 |
msgstr ""
|
3057 |
|
3058 |
+
#: includes/elementor/modules/common.php:852
|
3059 |
#: includes/elementor/widgets/contact-form.php:217
|
3060 |
#: includes/elementor/widgets/contact-form.php:527
|
3061 |
#: includes/elementor/widgets/contact-form.php:747
|
3078 |
msgid "Max Width"
|
3079 |
msgstr ""
|
3080 |
|
3081 |
+
#: includes/elementor/modules/common.php:884
|
3082 |
#: includes/elementor/widgets/image.php:458
|
3083 |
#: includes/elementor/widgets/svg.php:250
|
3084 |
msgid "Max Height"
|
3085 |
msgstr ""
|
3086 |
|
3087 |
+
#: includes/elementor/modules/common.php:917
|
3088 |
msgid "Min Width"
|
3089 |
msgstr ""
|
3090 |
|
3091 |
+
#: includes/elementor/modules/common.php:949
|
3092 |
msgid "Min Height"
|
3093 |
msgstr ""
|
3094 |
|
3095 |
+
#: includes/elementor/modules/common.php:982
|
3096 |
#: includes/elementor/widgets/before-after.php:194
|
3097 |
#: includes/elementor/widgets/carousel-navigation.php:254
|
3098 |
#: includes/elementor/widgets/contact-form.php:244
|
3115 |
msgid "Height"
|
3116 |
msgstr ""
|
3117 |
|
3118 |
+
#: includes/elementor/modules/common.php:1014
|
3119 |
msgid "Grow in width"
|
3120 |
msgstr ""
|
3121 |
|
3458 |
#: includes/elementor/widgets/recent-posts-timeline.php:598
|
3459 |
#: includes/elementor/widgets/recent-products.php:384
|
3460 |
#: includes/elementor/widgets/recent-products.php:543
|
3461 |
+
#: includes/elementor/widgets/staff.php:452
|
3462 |
#: includes/elementor/widgets/tabs.php:373
|
3463 |
#: includes/elementor/widgets/text.php:232
|
3464 |
#: includes/elementor/widgets/text.php:680
|
3675 |
msgstr ""
|
3676 |
|
3677 |
#: includes/elementor/modules/dynamic-tags/post-terms.php:71
|
3678 |
+
#: includes/elementor/widgets/staff.php:802
|
3679 |
#: includes/elementor/widgets/theme-elements/breadcrumbs.php:365
|
3680 |
msgid "Separator"
|
3681 |
msgstr ""
|
4136 |
#: includes/elementor/widgets/quote.php:105
|
4137 |
#: includes/elementor/widgets/staff.php:100
|
4138 |
#: includes/elementor/widgets/staff.php:140
|
4139 |
+
#: includes/elementor/widgets/staff.php:637
|
4140 |
#: includes/elementor/widgets/tabs.php:100
|
4141 |
#: includes/elementor/widgets/tabs.php:136
|
4142 |
#: includes/elementor/widgets/tabs.php:439
|
4344 |
#: includes/elementor/widgets/recent-posts-timeline.php:715
|
4345 |
#: includes/elementor/widgets/recent-posts-timeline.php:898
|
4346 |
#: includes/elementor/widgets/recent-products.php:618
|
4347 |
+
#: includes/elementor/widgets/staff.php:465
|
4348 |
+
#: includes/elementor/widgets/staff.php:712
|
4349 |
#: includes/elementor/widgets/svg.php:320
|
4350 |
#: includes/elementor/widgets/tabs.php:251
|
4351 |
#: includes/elementor/widgets/tabs.php:383
|
4456 |
#: includes/elementor/widgets/modern-button.php:987
|
4457 |
#: includes/elementor/widgets/quote.php:333
|
4458 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1403
|
4459 |
+
#: includes/elementor/widgets/staff.php:810
|
4460 |
#: includes/elementor/widgets/tabs.php:210
|
4461 |
#: includes/elementor/widgets/tabs.php:467
|
4462 |
#: includes/elementor/widgets/testimonial.php:695
|
4583 |
#: includes/elementor/widgets/responsive-table.php:246
|
4584 |
#: includes/elementor/widgets/responsive-table.php:276
|
4585 |
#: includes/elementor/widgets/responsive-table.php:306
|
4586 |
+
#: includes/elementor/widgets/staff.php:475
|
4587 |
+
#: includes/elementor/widgets/staff.php:501
|
4588 |
+
#: includes/elementor/widgets/staff.php:586
|
4589 |
+
#: includes/elementor/widgets/staff.php:648
|
4590 |
+
#: includes/elementor/widgets/staff.php:722
|
4591 |
+
#: includes/elementor/widgets/staff.php:748
|
4592 |
#: includes/elementor/widgets/tabs.php:390
|
4593 |
#: includes/elementor/widgets/tabs.php:410
|
4594 |
#: includes/elementor/widgets/tabs.php:447
|
5789 |
#: includes/elementor/widgets/recent-posts-tiles.php:117
|
5790 |
#: includes/elementor/widgets/recent-posts-timeline.php:117
|
5791 |
#: includes/elementor/widgets/recent-products.php:129
|
5792 |
+
#: includes/elementor/widgets/staff.php:842 includes/elements/gallery.php:228
|
5793 |
#: includes/elements/gallery.php:250 includes/elements/gallery.php:270
|
5794 |
#: includes/elements/recent-posts-grid-carousel.php:489
|
5795 |
#: includes/elements/recent-posts-grid-carousel.php:508
|
5808 |
msgstr ""
|
5809 |
|
5810 |
#: includes/elementor/widgets/custom-list.php:386
|
5811 |
+
#: includes/elementor/widgets/staff.php:770
|
5812 |
#: includes/elementor/widgets/theme-elements/menu.php:161
|
5813 |
#: includes/elements/socials-list.php:84 includes/elements/staff.php:486
|
5814 |
msgid "Vertical"
|
5815 |
msgstr ""
|
5816 |
|
5817 |
#: includes/elementor/widgets/custom-list.php:387
|
5818 |
+
#: includes/elementor/widgets/staff.php:771
|
5819 |
#: includes/elementor/widgets/theme-elements/menu.php:160
|
5820 |
#: includes/elements/socials-list.php:83 includes/elements/staff.php:487
|
5821 |
msgid "Horizontal"
|
6729 |
#: includes/elementor/widgets/recent-posts-timeline.php:863
|
6730 |
#: includes/elementor/widgets/recent-posts-timeline.php:949
|
6731 |
#: includes/elementor/widgets/recent-products.php:684
|
6732 |
+
#: includes/elementor/widgets/staff.php:550
|
6733 |
+
#: includes/elementor/widgets/staff.php:612
|
6734 |
+
#: includes/elementor/widgets/staff.php:674
|
6735 |
#: includes/elementor/widgets/testimonial.php:553
|
6736 |
#: includes/elementor/widgets/testimonial.php:774
|
6737 |
#: includes/elementor/widgets/text.php:754
|
7767 |
|
7768 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1540
|
7769 |
#: includes/elementor/widgets/recent-posts-masonry.php:1178
|
7770 |
+
#: includes/elementor/widgets/staff.php:894
|
7771 |
msgid "Padding for main wrapper"
|
7772 |
msgstr ""
|
7773 |
|
7774 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1552
|
7775 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1792
|
7776 |
#: includes/elementor/widgets/recent-posts-masonry.php:1190
|
7777 |
+
#: includes/elementor/widgets/staff.php:906
|
7778 |
msgid "Padding for content wrapper"
|
7779 |
msgstr ""
|
7780 |
|
8104 |
msgid "Instagram Address"
|
8105 |
msgstr ""
|
8106 |
|
8107 |
+
#: includes/elementor/widgets/staff.php:414
|
8108 |
+
msgid "Dribbble Address"
|
8109 |
+
msgstr ""
|
8110 |
+
|
8111 |
+
#: includes/elementor/widgets/staff.php:430
|
8112 |
+
msgid "LinkedIn Address"
|
8113 |
+
msgstr ""
|
8114 |
+
|
8115 |
+
#: includes/elementor/widgets/staff.php:531
|
8116 |
#: includes/elementor/widgets/text.php:850
|
8117 |
#: includes/elementor/widgets/text.php:973
|
8118 |
msgid "Top space"
|
8119 |
msgstr ""
|
8120 |
|
8121 |
+
#: includes/elementor/widgets/staff.php:575
|
8122 |
#: includes/elementor/widgets/text.php:242
|
8123 |
#: includes/elementor/widgets/text.php:776
|
8124 |
#: includes/elements/recent-posts-grid-carousel.php:70
|
8126 |
msgid "Subtitle"
|
8127 |
msgstr ""
|
8128 |
|
8129 |
+
#: includes/elementor/widgets/staff.php:699
|
8130 |
#: includes/elements/socials-list.php:15 includes/elements/staff.php:325
|
8131 |
#: includes/elements/staff.php:341 includes/elements/staff.php:357
|
8132 |
#: includes/elements/staff.php:373 includes/elements/staff.php:389
|
8136 |
msgid "Socials"
|
8137 |
msgstr ""
|
8138 |
|
8139 |
+
#: includes/elementor/widgets/staff.php:766 includes/elements/staff.php:480
|
8140 |
msgid "Icon Direction"
|
8141 |
msgstr ""
|
8142 |
|
8143 |
+
#: includes/elementor/widgets/staff.php:783 includes/elements/staff.php:457
|
8144 |
msgid "Socials Icon size"
|
8145 |
msgstr ""
|
8146 |
|
8147 |
+
#: includes/elementor/widgets/staff.php:790 includes/elements/staff.php:466
|
8148 |
#: includes/elements/text.php:472
|
8149 |
msgid "X-Large"
|
8150 |
msgstr ""
|
8151 |
|
8152 |
+
#: includes/elementor/widgets/staff.php:831
|
8153 |
msgid "Wrappers"
|
8154 |
msgstr ""
|
8155 |
|
8156 |
+
#: includes/elementor/widgets/staff.php:870
|
8157 |
#: includes/elementor/widgets/text.php:1429
|
8158 |
#: includes/elementor/widgets/theme-elements/menu.php:324
|
8159 |
#: includes/elementor/widgets/theme-elements/menu.php:1341
|
8765 |
msgstr ""
|
8766 |
|
8767 |
#: includes/elementor/widgets/theme-elements/menu.php:1521
|
8768 |
+
msgid "Please choose a menu."
|
8769 |
+
msgstr ""
|
8770 |
+
|
8771 |
+
#: includes/elementor/widgets/theme-elements/menu.php:1525
|
8772 |
+
msgid "There are no menu items in this menu."
|
8773 |
msgstr ""
|
8774 |
|
8775 |
#: includes/elementor/widgets/theme-elements/modern-search.php:52
|
11842 |
msgid "Page %s"
|
11843 |
msgstr ""
|
11844 |
|
11845 |
+
#: includes/general-hooks.php:3604
|
11846 |
+
msgid "current "
|
11847 |
+
msgstr ""
|
11848 |
+
|
11849 |
+
#: includes/general-hooks.php:3634
|
11850 |
+
msgid "Edit Header & Footer"
|
11851 |
+
msgstr ""
|
11852 |
+
|
11853 |
#: public/includes/frontend-ajax.php:17
|
11854 |
msgid "Ajax action not found."
|
11855 |
msgstr ""
|
public/assets/js/plugins.js
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
/*! Phlox Core Plugin - v2.
|
2 |
* All required plugins
|
3 |
* http://phlox.pro/
|
4 |
*/
|
1 |
+
/*! Phlox Core Plugin - v2.7.0 (2020-10)
|
2 |
* All required plugins
|
3 |
* http://phlox.pro/
|
4 |
*/
|