Version Description
Download this release
Release Info
Developer | averta |
Plugin | Shortcodes and extra features for Phlox theme |
Version | 2.6.14 |
Comparing to | |
See all releases |
Code changes from version 2.6.13 to 2.6.14
- README.txt +6 -2
- admin/assets/js/plugins.js +1 -1
- auxin-elements.php +1 -1
- includes/classes/class-auxin-walker-nav-menu-back.php +14 -1
- includes/define.php +1 -1
- includes/elementor/widgets/recent-posts-grid-carousel.php +43 -25
- includes/elementor/widgets/recent-posts-land-style.php +19 -6
- includes/elementor/widgets/theme-elements/menu.php +90 -17
- includes/elementor/widgets/theme-elements/modern-search.php +158 -41
- includes/elementor/widgets/theme-elements/shopping-cart.php +11 -1
- includes/general-hooks.php +10 -7
- languages/auxin-elements-fa_IR.po +350 -259
- languages/auxin-elements.pot +341 -258
- 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.6.
|
11 |
License: GPLv3
|
12 |
License URI: http://www.gnu.org/licenses/gpl.html
|
13 |
|
@@ -155,6 +155,10 @@ Bugs can be reported in our [support forums](https://docs.phlox.pro).
|
|
155 |
|
156 |
== Changelog ==
|
157 |
|
|
|
|
|
|
|
|
|
158 |
= Version 2.6.0 / (11.05.2020) =
|
159 |
- [New]: New option for changing the character limit of last breadcrumb text added.
|
160 |
- [Improvement]: Improvements for ajax add to cart applied.
|
@@ -436,5 +440,5 @@ Bugs can be reported in our [support forums](https://docs.phlox.pro).
|
|
436 |
|
437 |
== Upgrade Notice ==
|
438 |
|
439 |
-
= 2.6.
|
440 |
- Minor bugs fixed.
|
7 |
Requires PHP: 5.4
|
8 |
Requires at least: 4.6
|
9 |
Tested up to: 5.5.0
|
10 |
+
Stable tag: 2.6.14
|
11 |
License: GPLv3
|
12 |
License URI: http://www.gnu.org/licenses/gpl.html
|
13 |
|
155 |
|
156 |
== Changelog ==
|
157 |
|
158 |
+
= Version 2.6.14 / (09.09.2020) =
|
159 |
+
- [New]: New options for recent post elements added.
|
160 |
+
- [Fix]: Minor bug fixes and performance improvements.
|
161 |
+
|
162 |
= Version 2.6.0 / (11.05.2020) =
|
163 |
- [New]: New option for changing the character limit of last breadcrumb text added.
|
164 |
- [Improvement]: Improvements for ajax add to cart applied.
|
440 |
|
441 |
== Upgrade Notice ==
|
442 |
|
443 |
+
= 2.6.14 =
|
444 |
- Minor bugs fixed.
|
admin/assets/js/plugins.js
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
/*! Phlox Core Plugin - v2.6.
|
2 |
* All required javascript plugins for admin
|
3 |
* http://phlox.pro/
|
4 |
* Place any jQuery/helper plugins in here, instead of separate, slower script files!
|
1 |
+
/*! Phlox Core Plugin - v2.6.14 (2020-09)
|
2 |
* All required javascript plugins for admin
|
3 |
* http://phlox.pro/
|
4 |
* Place any jQuery/helper plugins in here, instead of separate, slower script files!
|
auxin-elements.php
CHANGED
@@ -12,7 +12,7 @@
|
|
12 |
* Plugin Name: Phlox Core Elements
|
13 |
* Plugin URI: https://wordpress.org/plugins/auxin-elements/
|
14 |
* Description: Exclusive and comprehensive plugin that extends the functionality of Phlox theme by adding new Elements, widgets and options.
|
15 |
-
* Version: 2.6.
|
16 |
* Author: averta
|
17 |
* Author URI: http://averta.net
|
18 |
* Text Domain: auxin-elements
|
12 |
* Plugin Name: Phlox Core Elements
|
13 |
* Plugin URI: https://wordpress.org/plugins/auxin-elements/
|
14 |
* Description: Exclusive and comprehensive plugin that extends the functionality of Phlox theme by adding new Elements, widgets and options.
|
15 |
+
* Version: 2.6.14
|
16 |
* Author: averta
|
17 |
* Author URI: http://averta.net
|
18 |
* Text Domain: auxin-elements
|
includes/classes/class-auxin-walker-nav-menu-back.php
CHANGED
@@ -338,7 +338,20 @@ class Auxin_Walker_Nav_Menu_Back extends Walker_Nav_Menu {
|
|
338 |
?>
|
339 |
</div>
|
340 |
|
341 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
342 |
|
343 |
<p class="field-move hide-if-no-js description description-wide">
|
344 |
<label>
|
338 |
?>
|
339 |
</div>
|
340 |
|
341 |
+
<?php
|
342 |
+
/**
|
343 |
+
* Fires just before the move buttons of a nav menu item in the menu editor.
|
344 |
+
*
|
345 |
+
* @since 5.4.0
|
346 |
+
*
|
347 |
+
* @param int $item_id Menu item ID.
|
348 |
+
* @param WP_Post $item Menu item data object.
|
349 |
+
* @param int $depth Depth of menu item. Used for padding.
|
350 |
+
* @param stdClass $args An object of menu item arguments.
|
351 |
+
* @param int $id Nav menu ID.
|
352 |
+
*/
|
353 |
+
do_action( 'wp_nav_menu_item_custom_fields', $item_id, $item, $depth, $args, $id );
|
354 |
+
?>
|
355 |
|
356 |
<p class="field-move hide-if-no-js description description-wide">
|
357 |
<label>
|
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.14' );
|
16 |
|
17 |
define( 'AUXELS_SLUG' , 'auxin-elements' );
|
18 |
|
includes/elementor/widgets/recent-posts-grid-carousel.php
CHANGED
@@ -1534,6 +1534,30 @@ class RecentPostsGridCarousel extends Widget_Base {
|
|
1534 |
)
|
1535 |
);
|
1536 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1537 |
$this->start_controls_tabs( 'button_background' );
|
1538 |
|
1539 |
$this->start_controls_tab(
|
@@ -1599,6 +1623,24 @@ class RecentPostsGridCarousel extends Widget_Base {
|
|
1599 |
)
|
1600 |
);
|
1601 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1602 |
$this->end_controls_tab();
|
1603 |
|
1604 |
$this->end_controls_tabs();
|
@@ -1631,30 +1673,6 @@ class RecentPostsGridCarousel extends Widget_Base {
|
|
1631 |
)
|
1632 |
);
|
1633 |
|
1634 |
-
$this->add_responsive_control(
|
1635 |
-
'wrapper_main_padding',
|
1636 |
-
array(
|
1637 |
-
'label' => __( 'Padding for main wrapper', 'auxin-elements' ),
|
1638 |
-
'type' => Controls_Manager::DIMENSIONS,
|
1639 |
-
'size_units' => array( 'px', '%' ),
|
1640 |
-
'selectors' => array(
|
1641 |
-
'{{WRAPPER}} .column-entry' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
|
1642 |
-
)
|
1643 |
-
)
|
1644 |
-
);
|
1645 |
-
|
1646 |
-
$this->add_responsive_control(
|
1647 |
-
'wrapper_content_padding',
|
1648 |
-
array(
|
1649 |
-
'label' => __( 'Padding for content wrapper', 'auxin-elements' ),
|
1650 |
-
'type' => Controls_Manager::DIMENSIONS,
|
1651 |
-
'size_units' => array( 'px', '%' ),
|
1652 |
-
'selectors' => array(
|
1653 |
-
'{{WRAPPER}} .type-post .entry-main' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
|
1654 |
-
)
|
1655 |
-
)
|
1656 |
-
);
|
1657 |
-
|
1658 |
$this->end_controls_section();
|
1659 |
|
1660 |
/* flip_wrapper_style_section
|
@@ -1938,7 +1956,7 @@ class RecentPostsGridCarousel extends Widget_Base {
|
|
1938 |
|
1939 |
$settings = $this->get_settings_for_display();
|
1940 |
$settings['post_media_size'] = $settings['post_media_size'] == 'auto' ? '' : $settings['post_media_size'];
|
1941 |
-
|
1942 |
$args = array(
|
1943 |
// Display section
|
1944 |
'show_media' => $settings['show_media'],
|
1534 |
)
|
1535 |
);
|
1536 |
|
1537 |
+
$this->add_responsive_control(
|
1538 |
+
'wrapper_main_padding',
|
1539 |
+
array(
|
1540 |
+
'label' => __( 'Padding for main wrapper', 'auxin-elements' ),
|
1541 |
+
'type' => Controls_Manager::DIMENSIONS,
|
1542 |
+
'size_units' => array( 'px', '%' ),
|
1543 |
+
'selectors' => array(
|
1544 |
+
'{{WRAPPER}} .column-entry' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
|
1545 |
+
)
|
1546 |
+
)
|
1547 |
+
);
|
1548 |
+
|
1549 |
+
$this->add_responsive_control(
|
1550 |
+
'wrapper_content_padding',
|
1551 |
+
array(
|
1552 |
+
'label' => __( 'Padding for content wrapper', 'auxin-elements' ),
|
1553 |
+
'type' => Controls_Manager::DIMENSIONS,
|
1554 |
+
'size_units' => array( 'px', '%' ),
|
1555 |
+
'selectors' => array(
|
1556 |
+
'{{WRAPPER}} .type-post .entry-main' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
|
1557 |
+
)
|
1558 |
+
)
|
1559 |
+
);
|
1560 |
+
|
1561 |
$this->start_controls_tabs( 'button_background' );
|
1562 |
|
1563 |
$this->start_controls_tab(
|
1623 |
)
|
1624 |
);
|
1625 |
|
1626 |
+
$this->add_control(
|
1627 |
+
'hover_wrapper_transition_duration',
|
1628 |
+
array(
|
1629 |
+
'label' => __( 'Transition duration', 'auxin-elements' ),
|
1630 |
+
'type' => Controls_Manager::SLIDER,
|
1631 |
+
'range' => array(
|
1632 |
+
'px' => array(
|
1633 |
+
'min' => 0,
|
1634 |
+
'max' => 2000,
|
1635 |
+
'step' => 50
|
1636 |
+
)
|
1637 |
+
),
|
1638 |
+
'selectors' => array(
|
1639 |
+
'{{WRAPPER}} .aux-col:hover .column-entry' => 'transition-duration:{{SIZE}}ms;'
|
1640 |
+
)
|
1641 |
+
)
|
1642 |
+
);
|
1643 |
+
|
1644 |
$this->end_controls_tab();
|
1645 |
|
1646 |
$this->end_controls_tabs();
|
1673 |
)
|
1674 |
);
|
1675 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1676 |
$this->end_controls_section();
|
1677 |
|
1678 |
/* flip_wrapper_style_section
|
1956 |
|
1957 |
$settings = $this->get_settings_for_display();
|
1958 |
$settings['post_media_size'] = $settings['post_media_size'] == 'auto' ? '' : $settings['post_media_size'];
|
1959 |
+
|
1960 |
$args = array(
|
1961 |
// Display section
|
1962 |
'show_media' => $settings['show_media'],
|
includes/elementor/widgets/recent-posts-land-style.php
CHANGED
@@ -6,6 +6,7 @@ use Elementor\Widget_Base;
|
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
use Elementor\Scheme_Typography;
|
|
|
9 |
|
10 |
if ( ! defined( 'ABSPATH' ) ) {
|
11 |
exit; // Exit if accessed directly.
|
@@ -522,8 +523,8 @@ class RecentPostsLand extends Widget_Base {
|
|
522 |
'label' => __( 'Image', 'auxin-elements' ),
|
523 |
'tab' => Controls_Manager::TAB_STYLE,
|
524 |
'condition' => array(
|
525 |
-
'show_media' => 'yes'
|
526 |
-
)
|
527 |
)
|
528 |
);
|
529 |
|
@@ -540,8 +541,8 @@ class RecentPostsLand extends Widget_Base {
|
|
540 |
'1.33' => __('Vertical 3:4' , 'auxin-elements')
|
541 |
),
|
542 |
'condition' => array(
|
543 |
-
'show_media' => 'yes'
|
544 |
-
)
|
545 |
)
|
546 |
);
|
547 |
|
@@ -555,8 +556,20 @@ class RecentPostsLand extends Widget_Base {
|
|
555 |
'{{WRAPPER}} .entry-media img' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}} !important;',
|
556 |
),
|
557 |
'condition' => array(
|
558 |
-
'show_media' => 'yes'
|
559 |
-
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
560 |
)
|
561 |
);
|
562 |
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
use Elementor\Scheme_Typography;
|
9 |
+
use Elementor\Group_Control_Box_Shadow;
|
10 |
|
11 |
if ( ! defined( 'ABSPATH' ) ) {
|
12 |
exit; // Exit if accessed directly.
|
523 |
'label' => __( 'Image', 'auxin-elements' ),
|
524 |
'tab' => Controls_Manager::TAB_STYLE,
|
525 |
'condition' => array(
|
526 |
+
'show_media' => 'yes'
|
527 |
+
)
|
528 |
)
|
529 |
);
|
530 |
|
541 |
'1.33' => __('Vertical 3:4' , 'auxin-elements')
|
542 |
),
|
543 |
'condition' => array(
|
544 |
+
'show_media' => 'yes'
|
545 |
+
)
|
546 |
)
|
547 |
);
|
548 |
|
556 |
'{{WRAPPER}} .entry-media img' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}} !important;',
|
557 |
),
|
558 |
'condition' => array(
|
559 |
+
'show_media' => 'yes'
|
560 |
+
)
|
561 |
+
)
|
562 |
+
);
|
563 |
+
|
564 |
+
$this->add_group_control(
|
565 |
+
Group_Control_Box_Shadow::get_type(),
|
566 |
+
array(
|
567 |
+
'name' => 'img_boxshadow_normal',
|
568 |
+
'label' => __( 'Box Shadow', 'auxin-elements' ),
|
569 |
+
'selector' => '{{WRAPPER}} .aux-media-frame',
|
570 |
+
'condition' => array(
|
571 |
+
'show_media' => 'yes'
|
572 |
+
)
|
573 |
)
|
574 |
);
|
575 |
|
includes/elementor/widgets/theme-elements/menu.php
CHANGED
@@ -1148,16 +1148,6 @@ class MenuBox extends Widget_Base {
|
|
1148 |
)
|
1149 |
);
|
1150 |
|
1151 |
-
$this->add_group_control(
|
1152 |
-
Group_Control_Background::get_type(),
|
1153 |
-
array(
|
1154 |
-
'name' => 'fullscr_bg',
|
1155 |
-
'label' => __( 'Background', 'auxin-elements' ),
|
1156 |
-
'types' => array( 'classic', 'gradient' ),
|
1157 |
-
'selector' => '{{WRAPPER}} .aux-fs-popup'
|
1158 |
-
)
|
1159 |
-
);
|
1160 |
-
|
1161 |
$this->start_controls_tabs( 'fullscr_item_colors' );
|
1162 |
|
1163 |
$this->start_controls_tab(
|
@@ -1377,7 +1367,7 @@ class MenuBox extends Widget_Base {
|
|
1377 |
$this->add_control(
|
1378 |
'fullscr_current_item_color',
|
1379 |
array(
|
1380 |
-
'label' => __( 'Color', 'auxin-elements' ),
|
1381 |
'type' => Controls_Manager::COLOR,
|
1382 |
'selectors' => array(
|
1383 |
'{{WRAPPER}} .aux-fs-menu .aux-menu-depth-0.current-menu-item > a' => 'color: {{VALUE}};'
|
@@ -1403,18 +1393,46 @@ class MenuBox extends Widget_Base {
|
|
1403 |
]
|
1404 |
);
|
1405 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1406 |
$this->add_control(
|
1407 |
'fullscr_close_btn_heading',
|
1408 |
[
|
1409 |
'label' => __( 'Close Button', 'auxin-elements' ),
|
1410 |
-
'type' => Controls_Manager::HEADING
|
|
|
1411 |
]
|
1412 |
);
|
1413 |
|
1414 |
$this->add_control(
|
1415 |
'fullscr_close_btn_border_color',
|
1416 |
[
|
1417 |
-
'label' => __( '
|
1418 |
'type' => Controls_Manager::COLOR,
|
1419 |
'selectors' => [
|
1420 |
'{{WRAPPER}} .aux-fs-popup .aux-panel-close' => 'border-color: {{VALUE}};'
|
@@ -1425,12 +1443,62 @@ class MenuBox extends Widget_Base {
|
|
1425 |
$this->add_control(
|
1426 |
'fullscr_close_btn_symbol_color',
|
1427 |
[
|
1428 |
-
'label' => __( '
|
1429 |
'type' => Controls_Manager::COLOR,
|
1430 |
'selectors' => [
|
1431 |
'{{WRAPPER}} .aux-fs-popup .aux-panel-close .aux-close:before' => 'background-color: {{VALUE}};',
|
1432 |
'{{WRAPPER}} .aux-fs-popup .aux-panel-close .aux-close:after' => 'background-color: {{VALUE}};'
|
1433 |
-
]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1434 |
]
|
1435 |
);
|
1436 |
|
@@ -1473,9 +1541,14 @@ class MenuBox extends Widget_Base {
|
|
1473 |
|
1474 |
switch( $settings['burger_menu_location'] ) {
|
1475 |
case 'overlay':
|
1476 |
-
$
|
|
|
|
|
|
|
|
|
|
|
1477 |
$fullscreen_output .= '<div class="aux-panel-close"><div class="aux-close aux-cross-symbol aux-thick-medium"></div></div>';
|
1478 |
-
$fullscreen_output .= '<div class="aux-fs-menu"></div>';
|
1479 |
$fullscreen_output .= '</section>';
|
1480 |
$mobile_menu_target .= ' .aux-fs-popup .aux-fs-menu';
|
1481 |
break;
|
1148 |
)
|
1149 |
);
|
1150 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1151 |
$this->start_controls_tabs( 'fullscr_item_colors' );
|
1152 |
|
1153 |
$this->start_controls_tab(
|
1367 |
$this->add_control(
|
1368 |
'fullscr_current_item_color',
|
1369 |
array(
|
1370 |
+
'label' => __( 'Main Menu Color', 'auxin-elements' ),
|
1371 |
'type' => Controls_Manager::COLOR,
|
1372 |
'selectors' => array(
|
1373 |
'{{WRAPPER}} .aux-fs-menu .aux-menu-depth-0.current-menu-item > a' => 'color: {{VALUE}};'
|
1393 |
]
|
1394 |
);
|
1395 |
|
1396 |
+
$this->end_controls_section();
|
1397 |
+
|
1398 |
+
|
1399 |
+
/* Full Screen Window
|
1400 |
+
/*-------------------------------------*/
|
1401 |
+
|
1402 |
+
$this->start_controls_section(
|
1403 |
+
'fullscr_window',
|
1404 |
+
array(
|
1405 |
+
'label' => __( 'Fullscreen Window', 'auxin-elements' ),
|
1406 |
+
'tab' => Controls_Manager::TAB_STYLE,
|
1407 |
+
'condition' => array(
|
1408 |
+
'burger_menu_location' => 'overlay'
|
1409 |
+
)
|
1410 |
+
)
|
1411 |
+
);
|
1412 |
+
|
1413 |
+
$this->add_group_control(
|
1414 |
+
Group_Control_Background::get_type(),
|
1415 |
+
array(
|
1416 |
+
'name' => 'fullscr_bg',
|
1417 |
+
'label' => __( 'Background', 'auxin-elements' ),
|
1418 |
+
'types' => array( 'classic', 'gradient' ),
|
1419 |
+
'selector' => '{{WRAPPER}} .aux-fs-popup'
|
1420 |
+
)
|
1421 |
+
);
|
1422 |
+
|
1423 |
$this->add_control(
|
1424 |
'fullscr_close_btn_heading',
|
1425 |
[
|
1426 |
'label' => __( 'Close Button', 'auxin-elements' ),
|
1427 |
+
'type' => Controls_Manager::HEADING,
|
1428 |
+
'separator'=> 'before'
|
1429 |
]
|
1430 |
);
|
1431 |
|
1432 |
$this->add_control(
|
1433 |
'fullscr_close_btn_border_color',
|
1434 |
[
|
1435 |
+
'label' => __( 'Close button outline color', 'auxin-elements' ),
|
1436 |
'type' => Controls_Manager::COLOR,
|
1437 |
'selectors' => [
|
1438 |
'{{WRAPPER}} .aux-fs-popup .aux-panel-close' => 'border-color: {{VALUE}};'
|
1443 |
$this->add_control(
|
1444 |
'fullscr_close_btn_symbol_color',
|
1445 |
[
|
1446 |
+
'label' => __( 'Close button symbol color', 'auxin-elements' ),
|
1447 |
'type' => Controls_Manager::COLOR,
|
1448 |
'selectors' => [
|
1449 |
'{{WRAPPER}} .aux-fs-popup .aux-panel-close .aux-close:before' => 'background-color: {{VALUE}};',
|
1450 |
'{{WRAPPER}} .aux-fs-popup .aux-panel-close .aux-close:after' => 'background-color: {{VALUE}};'
|
1451 |
+
],
|
1452 |
+
'separator'=> 'after'
|
1453 |
+
]
|
1454 |
+
);
|
1455 |
+
|
1456 |
+
$this->add_control(
|
1457 |
+
'fullscr_window_has_title',
|
1458 |
+
array(
|
1459 |
+
'label' => __( 'Display Menu Title', 'auxin-elements' ),
|
1460 |
+
'type' => Controls_Manager::SWITCHER,
|
1461 |
+
'label_on' => __( 'Show', 'auxin-elements' ),
|
1462 |
+
'label_off' => __( 'Hide', 'auxin-elements' ),
|
1463 |
+
)
|
1464 |
+
);
|
1465 |
+
|
1466 |
+
$this->add_control(
|
1467 |
+
'fullscr_window_title_text',
|
1468 |
+
array(
|
1469 |
+
'label' => __('Menu Title Text','auxin-elements' ),
|
1470 |
+
'type' => Controls_Manager::TEXT,
|
1471 |
+
'default' => '',
|
1472 |
+
'condition' => array(
|
1473 |
+
'fullscr_window_has_title' => 'yes'
|
1474 |
+
)
|
1475 |
+
)
|
1476 |
+
);
|
1477 |
+
|
1478 |
+
$this->add_group_control(
|
1479 |
+
Group_Control_Typography::get_type(),
|
1480 |
+
array(
|
1481 |
+
'name' => 'fullscr_window_title_typo',
|
1482 |
+
'label' => __( 'Menu Title Typography', 'auxin-elements' ),
|
1483 |
+
'scheme' => Scheme_Typography::TYPOGRAPHY_1,
|
1484 |
+
'selector' => '{{WRAPPER}} .aux-has-menu-title .aux-fs-menu:before',
|
1485 |
+
'condition' => array(
|
1486 |
+
'fullscr_window_has_title' => 'yes'
|
1487 |
+
)
|
1488 |
+
)
|
1489 |
+
);
|
1490 |
+
|
1491 |
+
$this->add_control(
|
1492 |
+
'fullscr_window_title_color',
|
1493 |
+
[
|
1494 |
+
'label' => __( 'Menu Title Color', 'auxin-elements' ),
|
1495 |
+
'type' => Controls_Manager::COLOR,
|
1496 |
+
'selectors' => [
|
1497 |
+
'{{WRAPPER}} .aux-has-menu-title .aux-fs-menu:before' => 'color: {{VALUE}};'
|
1498 |
+
],
|
1499 |
+
'condition' => array(
|
1500 |
+
'fullscr_window_has_title' => 'yes'
|
1501 |
+
)
|
1502 |
]
|
1503 |
);
|
1504 |
|
1541 |
|
1542 |
switch( $settings['burger_menu_location'] ) {
|
1543 |
case 'overlay':
|
1544 |
+
$fullscreen_menu_title = auxin_is_true( $settings['fullscr_window_has_title'] ) &&
|
1545 |
+
! empty( $settings['fullscr_window_title_text'] ) ? $settings['fullscr_window_title_text'] : '';
|
1546 |
+
$fullscreen_popup_classes = 'aux-fs-popup aux-fs-menu-layout-center aux-indicator';
|
1547 |
+
$fullscreen_popup_classes .= ! empty( $fullscreen_menu_title ) ? ' aux-has-menu-title' : '';
|
1548 |
+
|
1549 |
+
$fullscreen_output = '<section class="'.esc_attr( $fullscreen_popup_classes ).'">';
|
1550 |
$fullscreen_output .= '<div class="aux-panel-close"><div class="aux-close aux-cross-symbol aux-thick-medium"></div></div>';
|
1551 |
+
$fullscreen_output .= '<div class="aux-fs-menu" data-menu-title="'.esc_attr( $fullscreen_menu_title ).'"></div>';
|
1552 |
$fullscreen_output .= '</section>';
|
1553 |
$mobile_menu_target .= ' .aux-fs-popup .aux-fs-menu';
|
1554 |
break;
|
includes/elementor/widgets/theme-elements/modern-search.php
CHANGED
@@ -120,7 +120,7 @@ class ModernSearch extends Widget_Base {
|
|
120 |
'dynamic' => [
|
121 |
'active' => true,
|
122 |
],
|
123 |
-
'default' =>
|
124 |
'placeholder' => __( 'Submit', 'auxin-elements' ),
|
125 |
]
|
126 |
);
|
@@ -204,6 +204,27 @@ class ModernSearch extends Widget_Base {
|
|
204 |
]
|
205 |
);
|
206 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
207 |
$this->end_controls_section();
|
208 |
|
209 |
/* Icon Style Section
|
@@ -587,6 +608,17 @@ class ModernSearch extends Widget_Base {
|
|
587 |
'type' => Controls_Manager::COLOR,
|
588 |
'selectors' => [
|
589 |
'{{WRAPPER}} .aux-search-popup .aux-search-field' => 'color: {{VALUE}};'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
590 |
],
|
591 |
'separator' => 'after'
|
592 |
]
|
@@ -651,10 +683,22 @@ class ModernSearch extends Widget_Base {
|
|
651 |
]
|
652 |
);
|
653 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
654 |
$this->add_responsive_control(
|
655 |
'input_icon_size',
|
656 |
[
|
657 |
-
'label' => __( 'Icon Size', 'auxin-elements' ),
|
658 |
'type' => Controls_Manager::SLIDER,
|
659 |
'size_units' => [ 'px', '%' ],
|
660 |
'range' => [
|
@@ -675,34 +719,38 @@ class ModernSearch extends Widget_Base {
|
|
675 |
'selectors' => [
|
676 |
'{{WRAPPER}} .aux-search-popup .aux-submit-icon-container:before' => 'font-size: {{SIZE}}{{UNIT}};',
|
677 |
],
|
678 |
-
'
|
|
|
|
|
679 |
]
|
680 |
);
|
681 |
|
682 |
$this->add_control(
|
683 |
'input_icon_color',
|
684 |
[
|
685 |
-
'label' => __( 'Icon Color', 'auxin-elements' ),
|
686 |
'type' => Controls_Manager::COLOR,
|
687 |
'selectors' => [
|
688 |
'{{WRAPPER}} .aux-search-popup .aux-submit-icon-container:before' => 'color: {{VALUE}} !important;'
|
689 |
],
|
690 |
-
'
|
|
|
|
|
691 |
]
|
692 |
);
|
693 |
|
694 |
$this->add_group_control(
|
695 |
Group_Control_Background::get_type(),
|
696 |
[
|
697 |
-
'name'
|
698 |
'selector' => '{{WRAPPER}} .aux-search-popup',
|
699 |
-
'types'
|
700 |
'separator' => 'before',
|
701 |
'fields_options' => [
|
702 |
'background' => [
|
703 |
-
'label' => __( 'Overlay
|
704 |
-
]
|
705 |
-
]
|
706 |
]
|
707 |
);
|
708 |
|
@@ -773,7 +821,67 @@ class ModernSearch extends Widget_Base {
|
|
773 |
],
|
774 |
'selectors' => [
|
775 |
'{{WRAPPER}} .aux-search-popup .aux-panel-close' => 'right:{{SIZE}}{{UNIT}};'
|
776 |
-
]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
777 |
]
|
778 |
);
|
779 |
|
@@ -833,19 +941,23 @@ class ModernSearch extends Widget_Base {
|
|
833 |
protected function render_search_overlay( $args = [] ) { ;
|
834 |
|
835 |
$defaults = [
|
836 |
-
'wrapper_class'
|
837 |
-
'use_ajax'
|
838 |
-
'post_types'
|
|
|
|
|
839 |
];
|
840 |
|
841 |
$args = wp_parse_args( $args, $defaults );
|
842 |
|
843 |
$form_args = [
|
844 |
-
'use_ajax'
|
845 |
-
'display_submit'
|
846 |
-
'display_fill'
|
847 |
-
'display_cats'
|
848 |
-
'post_types'
|
|
|
|
|
849 |
];
|
850 |
|
851 |
$this->add_render_attribute( 'overlay_wrapper', 'class', $args['wrapper_class'] );
|
@@ -885,12 +997,14 @@ class ModernSearch extends Widget_Base {
|
|
885 |
protected function render_search_form( $args = [] ) { ;
|
886 |
|
887 |
$defaults = [
|
888 |
-
'wrapper_class'
|
889 |
-
'use_ajax'
|
890 |
-
'display_submit'
|
891 |
-
'display_fill'
|
892 |
-
'display_cats'
|
893 |
-
'post_types'
|
|
|
|
|
894 |
];
|
895 |
|
896 |
$args = wp_parse_args( $args, $defaults );
|
@@ -900,12 +1014,14 @@ class ModernSearch extends Widget_Base {
|
|
900 |
if ( $args['use_ajax'] ) {
|
901 |
$this->add_render_attribute( 'form_wrapper', 'class', 'aux-search-ajax' );
|
902 |
}
|
903 |
-
|
904 |
?>
|
905 |
<div <?php echo $this->get_render_attribute_string( 'form_wrapper' );?>>
|
|
|
|
|
|
|
906 |
<form action="<?php echo esc_url( home_url( '/' ) ); ?>" method="get" >
|
907 |
<div class="aux-search-input-form">
|
908 |
-
<input type="text" class="aux-search-field"
|
909 |
<input type="hidden" name='post_type' value="<?php echo implode( ',', $args['post_types'] );?>">
|
910 |
<?php if ( $args['display_cats'] ) { ;?>
|
911 |
<?php $this->render_category( ['post_types' => $args['post_types'] ] );?>
|
@@ -938,7 +1054,7 @@ class ModernSearch extends Widget_Base {
|
|
938 |
$post_types = [];
|
939 |
$options_output = '';
|
940 |
|
941 |
-
foreach
|
942 |
|
943 |
$terms = get_terms( $taxonomy );
|
944 |
$post_type = get_taxonomy( $taxonomy )->object_type;
|
@@ -982,19 +1098,20 @@ class ModernSearch extends Widget_Base {
|
|
982 |
|
983 |
echo '<div class="aux-modern-search">';
|
984 |
|
985 |
-
|
986 |
-
|
987 |
-
|
988 |
-
|
989 |
-
|
990 |
-
|
991 |
-
|
992 |
-
|
993 |
-
|
994 |
-
|
995 |
-
|
996 |
-
]
|
997 |
-
|
|
|
998 |
|
999 |
echo '</div>';
|
1000 |
}
|
120 |
'dynamic' => [
|
121 |
'active' => true,
|
122 |
],
|
123 |
+
'default' => '',
|
124 |
'placeholder' => __( 'Submit', 'auxin-elements' ),
|
125 |
]
|
126 |
);
|
204 |
]
|
205 |
);
|
206 |
|
207 |
+
$this->add_control(
|
208 |
+
'search_field_placeholder_text',
|
209 |
+
[
|
210 |
+
'label' => __( 'Custom Placeholder Text', 'auxin-elements' ),
|
211 |
+
'type' => Controls_Manager::TEXT,
|
212 |
+
'default' => '',
|
213 |
+
'placeholder' => __( 'Search ...', 'auxin-elements' ),
|
214 |
+
]
|
215 |
+
);
|
216 |
+
|
217 |
+
$this->add_control(
|
218 |
+
'search_field_title',
|
219 |
+
[
|
220 |
+
'label' => __( 'Search Title', 'auxin-elements' ),
|
221 |
+
'type' => Controls_Manager::TEXT,
|
222 |
+
'default' => '',
|
223 |
+
'placeholder' => __( 'Type to Search', 'auxin-elements' ),
|
224 |
+
]
|
225 |
+
);
|
226 |
+
|
227 |
+
|
228 |
$this->end_controls_section();
|
229 |
|
230 |
/* Icon Style Section
|
608 |
'type' => Controls_Manager::COLOR,
|
609 |
'selectors' => [
|
610 |
'{{WRAPPER}} .aux-search-popup .aux-search-field' => 'color: {{VALUE}};'
|
611 |
+
]
|
612 |
+
]
|
613 |
+
);
|
614 |
+
|
615 |
+
$this->add_control(
|
616 |
+
'input_placeholder_color',
|
617 |
+
[
|
618 |
+
'label' => __( 'Placeholder Text Color', 'auxin-elements' ),
|
619 |
+
'type' => Controls_Manager::COLOR,
|
620 |
+
'selectors' => [
|
621 |
+
'{{WRAPPER}} .aux-search-popup .aux-search-field::placeholder' => 'color:{{VALUE}};'
|
622 |
],
|
623 |
'separator' => 'after'
|
624 |
]
|
683 |
]
|
684 |
);
|
685 |
|
686 |
+
$this->add_control(
|
687 |
+
'input_icon_enabled',
|
688 |
+
array(
|
689 |
+
'label' => __( 'Display Search Icon', 'auxin-elements' ),
|
690 |
+
'type' => Controls_Manager::SWITCHER,
|
691 |
+
'label_on' => __( 'Show', 'auxin-elements' ),
|
692 |
+
'label_off' => __( 'Hide', 'auxin-elements' ),
|
693 |
+
'default' => 'yes',
|
694 |
+
'separator' => 'before'
|
695 |
+
)
|
696 |
+
);
|
697 |
+
|
698 |
$this->add_responsive_control(
|
699 |
'input_icon_size',
|
700 |
[
|
701 |
+
'label' => __( 'Search Icon Size', 'auxin-elements' ),
|
702 |
'type' => Controls_Manager::SLIDER,
|
703 |
'size_units' => [ 'px', '%' ],
|
704 |
'range' => [
|
719 |
'selectors' => [
|
720 |
'{{WRAPPER}} .aux-search-popup .aux-submit-icon-container:before' => 'font-size: {{SIZE}}{{UNIT}};',
|
721 |
],
|
722 |
+
'condition' => [
|
723 |
+
'input_icon_enabled' => 'yes'
|
724 |
+
]
|
725 |
]
|
726 |
);
|
727 |
|
728 |
$this->add_control(
|
729 |
'input_icon_color',
|
730 |
[
|
731 |
+
'label' => __( 'Search Icon Color', 'auxin-elements' ),
|
732 |
'type' => Controls_Manager::COLOR,
|
733 |
'selectors' => [
|
734 |
'{{WRAPPER}} .aux-search-popup .aux-submit-icon-container:before' => 'color: {{VALUE}} !important;'
|
735 |
],
|
736 |
+
'condition' => [
|
737 |
+
'input_icon_enabled' => 'yes'
|
738 |
+
]
|
739 |
]
|
740 |
);
|
741 |
|
742 |
$this->add_group_control(
|
743 |
Group_Control_Background::get_type(),
|
744 |
[
|
745 |
+
'name' => 'input_bg',
|
746 |
'selector' => '{{WRAPPER}} .aux-search-popup',
|
747 |
+
'types' => [ 'classic', 'gradient'],
|
748 |
'separator' => 'before',
|
749 |
'fields_options' => [
|
750 |
'background' => [
|
751 |
+
'label' => __( 'Overlay Background', 'auxin-elements' ),
|
752 |
+
]
|
753 |
+
]
|
754 |
]
|
755 |
);
|
756 |
|
821 |
],
|
822 |
'selectors' => [
|
823 |
'{{WRAPPER}} .aux-search-popup .aux-panel-close' => 'right:{{SIZE}}{{UNIT}};'
|
824 |
+
]
|
825 |
+
]
|
826 |
+
);
|
827 |
+
|
828 |
+
$this->end_controls_section();
|
829 |
+
|
830 |
+
|
831 |
+
/* Search Title Style
|
832 |
+
/*-------------------------------------*/
|
833 |
+
|
834 |
+
$this->start_controls_section(
|
835 |
+
'title_style_section',
|
836 |
+
[
|
837 |
+
'label' => __( 'Search Title', 'auxin-elements' ),
|
838 |
+
'tab' => Controls_Manager::TAB_STYLE,
|
839 |
+
'condition' => [
|
840 |
+
'search_field_title!' => ''
|
841 |
+
]
|
842 |
+
]
|
843 |
+
);
|
844 |
+
|
845 |
+
|
846 |
+
$this->add_control(
|
847 |
+
'title_color',
|
848 |
+
[
|
849 |
+
'label' => __( 'Title Color', 'auxin-elements' ),
|
850 |
+
'type' => Controls_Manager::COLOR,
|
851 |
+
'selectors' => [
|
852 |
+
'{{WRAPPER}} .aux-search-form-legend' => 'color:{{VALUE}};'
|
853 |
+
]
|
854 |
+
]
|
855 |
+
);
|
856 |
+
|
857 |
+
$this->add_group_control(
|
858 |
+
Group_Control_Typography::get_type(),
|
859 |
+
[
|
860 |
+
'name' => 'title_typo',
|
861 |
+
'scheme' => Scheme_Typography::TYPOGRAPHY_1,
|
862 |
+
'selector' => '{{WRAPPER}} .aux-search-form-legend'
|
863 |
+
]
|
864 |
+
);
|
865 |
+
|
866 |
+
$this->add_responsive_control(
|
867 |
+
'title_margin',
|
868 |
+
[
|
869 |
+
'label' => __( 'Margin', 'auxin-elements' ),
|
870 |
+
'type' => Controls_Manager::DIMENSIONS,
|
871 |
+
'size_units' => [ 'px', '%' ],
|
872 |
+
'selectors' => [
|
873 |
+
'{{WRAPPER}} .aux-search-form-legend' => 'margin:{{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
|
874 |
+
]
|
875 |
+
]
|
876 |
+
);
|
877 |
+
|
878 |
+
$this->add_group_control(
|
879 |
+
Group_Control_Background::get_type(),
|
880 |
+
[
|
881 |
+
'name' => 'title_bg',
|
882 |
+
'selector' => '{{WRAPPER}} .aux-search-form-legend',
|
883 |
+
'types' => [ 'classic', 'gradient'],
|
884 |
+
'separator' => 'before'
|
885 |
]
|
886 |
);
|
887 |
|
941 |
protected function render_search_overlay( $args = [] ) { ;
|
942 |
|
943 |
$defaults = [
|
944 |
+
'wrapper_class' => 'aux-search-popup aux-search-popup-' . $this->get_id(),
|
945 |
+
'use_ajax' => false,
|
946 |
+
'post_types' => [],
|
947 |
+
'placeholder_text' => __('Search...', 'auxin-elements' ),
|
948 |
+
'search_title' => ''
|
949 |
];
|
950 |
|
951 |
$args = wp_parse_args( $args, $defaults );
|
952 |
|
953 |
$form_args = [
|
954 |
+
'use_ajax' => $args['use_ajax'],
|
955 |
+
'display_submit' => $args['display_submit'],
|
956 |
+
'display_fill' => $args['display_fill'],
|
957 |
+
'display_cats' => $args['display_cats'],
|
958 |
+
'post_types' => $args['post_types'],
|
959 |
+
'placeholder_text' => $args['placeholder_text'],
|
960 |
+
'search_title' => $args['search_title']
|
961 |
];
|
962 |
|
963 |
$this->add_render_attribute( 'overlay_wrapper', 'class', $args['wrapper_class'] );
|
997 |
protected function render_search_form( $args = [] ) { ;
|
998 |
|
999 |
$defaults = [
|
1000 |
+
'wrapper_class' => 'aux-search-form',
|
1001 |
+
'use_ajax' => false,
|
1002 |
+
'display_submit' => true,
|
1003 |
+
'display_fill' => false,
|
1004 |
+
'display_cats' => false,
|
1005 |
+
'post_types' => [],
|
1006 |
+
'placeholder_text' => __('Search...', 'auxin-elements' ),
|
1007 |
+
'search_title' => ''
|
1008 |
];
|
1009 |
|
1010 |
$args = wp_parse_args( $args, $defaults );
|
1014 |
if ( $args['use_ajax'] ) {
|
1015 |
$this->add_render_attribute( 'form_wrapper', 'class', 'aux-search-ajax' );
|
1016 |
}
|
|
|
1017 |
?>
|
1018 |
<div <?php echo $this->get_render_attribute_string( 'form_wrapper' );?>>
|
1019 |
+
<?php if( ! empty( $args['search_title'] ) ){
|
1020 |
+
echo '<h5 class="aux-search-form-legend">'. esc_html( $args['search_title'] ) .'</h5>';
|
1021 |
+
} ?>
|
1022 |
<form action="<?php echo esc_url( home_url( '/' ) ); ?>" method="get" >
|
1023 |
<div class="aux-search-input-form">
|
1024 |
+
<input type="text" class="aux-search-field" placeholder="<?php echo esc_attr( $args['placeholder_text'] ); ?>" name="s" autocomplete="off" data-post-types="<?php echo esc_attr ( wp_json_encode( $args['post_types'] ) ) ;?>" />
|
1025 |
<input type="hidden" name='post_type' value="<?php echo implode( ',', $args['post_types'] );?>">
|
1026 |
<?php if ( $args['display_cats'] ) { ;?>
|
1027 |
<?php $this->render_category( ['post_types' => $args['post_types'] ] );?>
|
1054 |
$post_types = [];
|
1055 |
$options_output = '';
|
1056 |
|
1057 |
+
foreach( $taxonomies as $taxonomy ) {
|
1058 |
|
1059 |
$terms = get_terms( $taxonomy );
|
1060 |
$post_type = get_taxonomy( $taxonomy )->object_type;
|
1098 |
|
1099 |
echo '<div class="aux-modern-search">';
|
1100 |
|
1101 |
+
$this->render_search_button([
|
1102 |
+
'submit_text' => $settings['text'],
|
1103 |
+
'icon' => $settings['icon']
|
1104 |
+
]);
|
1105 |
+
|
1106 |
+
$this->render_search_overlay([
|
1107 |
+
'use_ajax' => auxin_is_true( $settings['use_ajax'] ),
|
1108 |
+
'display_submit' => auxin_is_true( $settings['fullscreen_display_submit'] ),
|
1109 |
+
'display_cats' => auxin_is_true( $settings['fullscreen_display_cats']),
|
1110 |
+
'display_fill' => auxin_is_true( $settings['fullscreen_display_fill_submit'] ),
|
1111 |
+
'post_types' => $settings['post_types'],
|
1112 |
+
'placeholder_text' => $settings['search_field_placeholder_text'],
|
1113 |
+
'search_title' => $settings['search_field_title']
|
1114 |
+
]);
|
1115 |
|
1116 |
echo '</div>';
|
1117 |
}
|
includes/elementor/widgets/theme-elements/shopping-cart.php
CHANGED
@@ -220,6 +220,15 @@ class Shopping_Cart extends Widget_Base {
|
|
220 |
]
|
221 |
);
|
222 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
223 |
|
224 |
$this->end_controls_section();
|
225 |
|
@@ -588,7 +597,8 @@ class Shopping_Cart extends Widget_Base {
|
|
588 |
'simple_mode' => $settings['simple_cart_mode'],
|
589 |
'basket_animation' => auxin_is_true( $settings['basket_animation'] ),
|
590 |
'cart_header_text' => $settings['cart_header_text'],
|
591 |
-
'total_price_text_in_dropdown' => $settings['total_price_text_in_dropdown']
|
|
|
592 |
)
|
593 |
);
|
594 |
echo '</div>';
|
220 |
]
|
221 |
);
|
222 |
|
223 |
+
$this->add_control(
|
224 |
+
'checkout_text',
|
225 |
+
[
|
226 |
+
'label' => __( 'Checkout Text', 'auxin-elements' ),
|
227 |
+
'type' => \Elementor\Controls_Manager::TEXT,
|
228 |
+
'placeholder' => __( 'Checkout', 'auxin-elements' )
|
229 |
+
]
|
230 |
+
);
|
231 |
+
|
232 |
|
233 |
$this->end_controls_section();
|
234 |
|
597 |
'simple_mode' => $settings['simple_cart_mode'],
|
598 |
'basket_animation' => auxin_is_true( $settings['basket_animation'] ),
|
599 |
'cart_header_text' => $settings['cart_header_text'],
|
600 |
+
'total_price_text_in_dropdown' => $settings['total_price_text_in_dropdown'],
|
601 |
+
'checkout_text' => $settings['checkout_text']
|
602 |
)
|
603 |
);
|
604 |
echo '</div>';
|
includes/general-hooks.php
CHANGED
@@ -2140,6 +2140,9 @@ function auxin_ele_add_js_to_head() {
|
|
2140 |
if( $inline_js = auxin_get_option( 'auxin_user_custom_js_head' ) ){
|
2141 |
echo '<script>'. $inline_js .'</script>';
|
2142 |
}
|
|
|
|
|
|
|
2143 |
}
|
2144 |
add_action( 'wp_head','auxin_ele_add_js_to_head' );
|
2145 |
|
@@ -2476,7 +2479,7 @@ function auxin_on_auxin_fw_admin_loaded(){
|
|
2476 |
if ( ! auxin_get_theme_mod( 'initial_version_' . $slug, 0 ) ) {
|
2477 |
set_theme_mod( 'initial_version_' . $slug, THEME_VERSION );
|
2478 |
}
|
2479 |
-
|
2480 |
if ( ! auxin_get_theme_mod( 'initial_date_' . $slug, 0 ) ) {
|
2481 |
set_theme_mod( 'initial_date_' . $slug, current_time( 'mysql' ) );
|
2482 |
}
|
@@ -3366,7 +3369,7 @@ function auxin_override_inner_body_sections(){
|
|
3366 |
if ( 'default' === $use_legacy_header = auxin_get_post_meta( $post, 'page_header_use_legacy', 'default' ) ) {
|
3367 |
$use_legacy_header = auxin_get_option('site_header_use_legacy');
|
3368 |
}
|
3369 |
-
|
3370 |
if( ! auxin_is_true( $use_legacy_header ) ) {
|
3371 |
remove_action( 'auxin_after_inner_body_open', 'auxin_the_top_header_section', 4 );
|
3372 |
remove_action( 'auxin_after_inner_body_open', 'auxin_the_main_header_section', 4 );
|
@@ -3451,13 +3454,13 @@ function auxels_improve_usage_feedback( $args ) {
|
|
3451 |
// collect theme name and version
|
3452 |
if ( false == $transient = auxin_get_transient( 'auxels_usage_trac' ) ) {
|
3453 |
$migrated = ( THEME_ID == 'phlox-pro' && ! empty( get_option( 'theme_mods_phlox' ) ) ) ? true : false;
|
3454 |
-
$args['body']['client_meta']['migrated'] = $migrated;
|
3455 |
|
3456 |
$last_imported_demo = get_option( 'auxin_last_imported_demo', '' );
|
3457 |
if ( ! empty( $last_imported_demo ) && $last_imported_demo['id'] ) {
|
3458 |
-
$args['body']['client_meta'][ THEME_ID . '_imported_demo_id' ] = $last_imported_demo['id'];
|
3459 |
}
|
3460 |
-
|
3461 |
// plugins usage
|
3462 |
$plugins = [
|
3463 |
'Auxin Portfolio' => 'auxin-portfolio/auxin-portfolio.php',
|
@@ -3488,7 +3491,7 @@ function auxels_improve_usage_feedback( $args ) {
|
|
3488 |
$args['body']['client_meta'][ 'has_dep_' . $key ] = auxin_is_true( auxin_get_option( $option ) ) ? 1 : 0;
|
3489 |
}
|
3490 |
|
3491 |
-
// post-types and title bar settings usage
|
3492 |
$args['body']['client_meta']['post-types'] = [
|
3493 |
'post' => [ 'num' => 0, 'title-bar' => 0 ],
|
3494 |
'page' => [ 'num' => 0, 'title-bar' => 0 ],
|
@@ -3507,7 +3510,7 @@ function auxels_improve_usage_feedback( $args ) {
|
|
3507 |
|
3508 |
$title_bar_usage = 0;
|
3509 |
$title_bar_show = auxin_get_option( $post_type . '_show_title_bar' );
|
3510 |
-
|
3511 |
if ( $query->have_posts() ) {
|
3512 |
while( $query->have_posts() ) {
|
3513 |
$query->the_post();
|
2140 |
if( $inline_js = auxin_get_option( 'auxin_user_custom_js_head' ) ){
|
2141 |
echo '<script>'. $inline_js .'</script>';
|
2142 |
}
|
2143 |
+
if( isset( $_GET['helper'] ) ){
|
2144 |
+
echo '<style>.elementor-section.elementor-section-boxed>.elementor-container{box-shadow:0 0 0 1px #2b83eb;}</style>';
|
2145 |
+
}
|
2146 |
}
|
2147 |
add_action( 'wp_head','auxin_ele_add_js_to_head' );
|
2148 |
|
2479 |
if ( ! auxin_get_theme_mod( 'initial_version_' . $slug, 0 ) ) {
|
2480 |
set_theme_mod( 'initial_version_' . $slug, THEME_VERSION );
|
2481 |
}
|
2482 |
+
|
2483 |
if ( ! auxin_get_theme_mod( 'initial_date_' . $slug, 0 ) ) {
|
2484 |
set_theme_mod( 'initial_date_' . $slug, current_time( 'mysql' ) );
|
2485 |
}
|
3369 |
if ( 'default' === $use_legacy_header = auxin_get_post_meta( $post, 'page_header_use_legacy', 'default' ) ) {
|
3370 |
$use_legacy_header = auxin_get_option('site_header_use_legacy');
|
3371 |
}
|
3372 |
+
|
3373 |
if( ! auxin_is_true( $use_legacy_header ) ) {
|
3374 |
remove_action( 'auxin_after_inner_body_open', 'auxin_the_top_header_section', 4 );
|
3375 |
remove_action( 'auxin_after_inner_body_open', 'auxin_the_main_header_section', 4 );
|
3454 |
// collect theme name and version
|
3455 |
if ( false == $transient = auxin_get_transient( 'auxels_usage_trac' ) ) {
|
3456 |
$migrated = ( THEME_ID == 'phlox-pro' && ! empty( get_option( 'theme_mods_phlox' ) ) ) ? true : false;
|
3457 |
+
$args['body']['client_meta']['migrated'] = $migrated;
|
3458 |
|
3459 |
$last_imported_demo = get_option( 'auxin_last_imported_demo', '' );
|
3460 |
if ( ! empty( $last_imported_demo ) && $last_imported_demo['id'] ) {
|
3461 |
+
$args['body']['client_meta'][ THEME_ID . '_imported_demo_id' ] = $last_imported_demo['id'];
|
3462 |
}
|
3463 |
+
|
3464 |
// plugins usage
|
3465 |
$plugins = [
|
3466 |
'Auxin Portfolio' => 'auxin-portfolio/auxin-portfolio.php',
|
3491 |
$args['body']['client_meta'][ 'has_dep_' . $key ] = auxin_is_true( auxin_get_option( $option ) ) ? 1 : 0;
|
3492 |
}
|
3493 |
|
3494 |
+
// post-types and title bar settings usage
|
3495 |
$args['body']['client_meta']['post-types'] = [
|
3496 |
'post' => [ 'num' => 0, 'title-bar' => 0 ],
|
3497 |
'page' => [ 'num' => 0, 'title-bar' => 0 ],
|
3510 |
|
3511 |
$title_bar_usage = 0;
|
3512 |
$title_bar_show = auxin_get_option( $post_type . '_show_title_bar' );
|
3513 |
+
|
3514 |
if ( $query->have_posts() ) {
|
3515 |
while( $query->have_posts() ) {
|
3516 |
$query->the_post();
|
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-09-
|
6 |
"PO-Revision-Date: 2016-11-09 12:50+0330\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: \n"
|
@@ -1091,7 +1091,7 @@ msgstr ""
|
|
1091 |
|
1092 |
#: admin/includes/metaboxes/metabox-fields-general-header.php:202
|
1093 |
#: includes/elements/staff.php:207 includes/elements/text.php:105
|
1094 |
-
#: includes/general-hooks.php:
|
1095 |
msgid "Boxed"
|
1096 |
msgstr "جعبه ای"
|
1097 |
|
@@ -1142,7 +1142,7 @@ msgstr ""
|
|
1142 |
|
1143 |
#: admin/includes/metaboxes/metabox-fields-general-header.php:325
|
1144 |
#: includes/elementor/widgets/image.php:639
|
1145 |
-
#: includes/elementor/widgets/theme-elements/modern-search.php:
|
1146 |
#, fuzzy
|
1147 |
msgid "Border Color"
|
1148 |
msgstr "رنگ پس زمینه"
|
@@ -1289,8 +1289,8 @@ msgstr ""
|
|
1289 |
#: includes/elementor/widgets/modern-button.php:188
|
1290 |
#: includes/elementor/widgets/quote.php:169
|
1291 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:252
|
1292 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
1293 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
1294 |
#: includes/elementor/widgets/recent-posts-masonry.php:1159
|
1295 |
#: includes/elementor/widgets/recent-posts-timeline.php:130
|
1296 |
#: includes/elementor/widgets/staff.php:846
|
@@ -1302,7 +1302,7 @@ msgstr ""
|
|
1302 |
#: includes/elementor/widgets/theme-elements/current-time.php:139
|
1303 |
#: includes/elementor/widgets/theme-elements/logo.php:165
|
1304 |
#: includes/elementor/widgets/theme-elements/menu.php:332
|
1305 |
-
#: includes/elementor/widgets/theme-elements/menu.php:
|
1306 |
#: includes/elementor/widgets/theme-elements/shopping-cart.php:199
|
1307 |
#: includes/elementor/widgets/theme-elements/site-title.php:192
|
1308 |
#: includes/elements/quote.php:112
|
@@ -1327,8 +1327,8 @@ msgstr "وسط"
|
|
1327 |
#: includes/elementor/widgets/modern-button.php:184
|
1328 |
#: includes/elementor/widgets/modern-button.php:806
|
1329 |
#: includes/elementor/widgets/quote.php:165
|
1330 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
1331 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
1332 |
#: includes/elementor/widgets/recent-posts-masonry.php:1155
|
1333 |
#: includes/elementor/widgets/recent-posts-timeline.php:134
|
1334 |
#: includes/elementor/widgets/staff.php:827
|
@@ -1344,7 +1344,7 @@ msgstr "وسط"
|
|
1344 |
#: includes/elementor/widgets/theme-elements/logo.php:161
|
1345 |
#: includes/elementor/widgets/theme-elements/menu.php:281
|
1346 |
#: includes/elementor/widgets/theme-elements/menu.php:328
|
1347 |
-
#: includes/elementor/widgets/theme-elements/menu.php:
|
1348 |
#: includes/elementor/widgets/theme-elements/shopping-cart.php:195
|
1349 |
#: includes/elementor/widgets/theme-elements/site-title.php:188
|
1350 |
#: includes/elements/button.php:183 includes/elements/image.php:151
|
@@ -1503,7 +1503,7 @@ msgstr ""
|
|
1503 |
#: includes/elementor/widgets/tabs.php:195
|
1504 |
#: includes/elementor/widgets/text.php:1133
|
1505 |
#: includes/elementor/widgets/theme-elements/menu.php:999
|
1506 |
-
#: includes/elementor/widgets/theme-elements/modern-search.php:
|
1507 |
#: includes/elements/button.php:179 includes/elements/code.php:99
|
1508 |
#: includes/elements/gallery.php:120 includes/elements/quote.php:109
|
1509 |
#: includes/elements/recent-posts-tiles-carousel.php:298
|
@@ -1548,12 +1548,12 @@ msgstr "پیش فرض"
|
|
1548 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1171
|
1549 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1362
|
1550 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1467
|
1551 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
1552 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
1553 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
1554 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
1555 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
1556 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
1557 |
#: includes/elementor/widgets/recent-posts-masonry.php:670
|
1558 |
#: includes/elementor/widgets/recent-posts-masonry.php:740
|
1559 |
#: includes/elementor/widgets/recent-posts-masonry.php:844
|
@@ -1592,10 +1592,10 @@ msgstr "پیش فرض"
|
|
1592 |
#: includes/elementor/widgets/theme-elements/menu.php:729
|
1593 |
#: includes/elementor/widgets/theme-elements/menu.php:875
|
1594 |
#: includes/elementor/widgets/theme-elements/menu.php:1038
|
1595 |
-
#: includes/elementor/widgets/theme-elements/menu.php:
|
1596 |
-
#: includes/elementor/widgets/theme-elements/modern-search.php:
|
1597 |
-
#: includes/elementor/widgets/theme-elements/modern-search.php:
|
1598 |
-
#: includes/elementor/widgets/theme-elements/modern-search.php:
|
1599 |
#, fuzzy
|
1600 |
msgid "Hover"
|
1601 |
msgstr "پوشاننده"
|
@@ -2342,33 +2342,33 @@ msgstr ""
|
|
2342 |
msgid "Choose"
|
2343 |
msgstr "انتخاب .."
|
2344 |
|
2345 |
-
#: includes/classes/class-auxin-walker-nav-menu-back.php:
|
2346 |
msgid "Move"
|
2347 |
msgstr ""
|
2348 |
|
2349 |
-
#: includes/classes/class-auxin-walker-nav-menu-back.php:
|
2350 |
msgid "Up one"
|
2351 |
msgstr ""
|
2352 |
|
2353 |
-
#: includes/classes/class-auxin-walker-nav-menu-back.php:
|
2354 |
msgid "Down one"
|
2355 |
msgstr ""
|
2356 |
|
2357 |
-
#: includes/classes/class-auxin-walker-nav-menu-back.php:
|
2358 |
#, fuzzy
|
2359 |
msgid "To the top"
|
2360 |
msgstr "وسط بالا"
|
2361 |
|
2362 |
-
#: includes/classes/class-auxin-walker-nav-menu-back.php:
|
2363 |
#, fuzzy
|
2364 |
msgid "Original: %s"
|
2365 |
msgstr "اصلی"
|
2366 |
|
2367 |
-
#: includes/classes/class-auxin-walker-nav-menu-back.php:
|
2368 |
msgid "Remove"
|
2369 |
msgstr ""
|
2370 |
|
2371 |
-
#: includes/classes/class-auxin-walker-nav-menu-back.php:
|
2372 |
#: includes/classes/class-auxin-welcome.php:1313
|
2373 |
#: includes/classes/class-auxin-welcome.php:1341
|
2374 |
#: includes/classes/class-auxin-welcome.php:1436
|
@@ -2897,13 +2897,13 @@ msgstr "تنظیمات طراحی"
|
|
2897 |
|
2898 |
#: includes/classes/class-auxin-widget.php:112
|
2899 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:95
|
2900 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
2901 |
#: includes/elementor/widgets/recent-posts-masonry.php:95
|
2902 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:92
|
2903 |
#: includes/elementor/widgets/recent-posts-tiles.php:92
|
2904 |
#: includes/elementor/widgets/recent-posts-timeline.php:92
|
2905 |
#: includes/elementor/widgets/recent-products.php:101
|
2906 |
-
#: includes/elementor/widgets/theme-elements/modern-search.php:
|
2907 |
#: includes/elements/popular-posts-widget.php:16
|
2908 |
#: includes/elements/recent-posts-grid-carousel.php:16
|
2909 |
#: includes/elements/recent-posts-land-style.php:16
|
@@ -3150,8 +3150,8 @@ msgstr "بالا"
|
|
3150 |
#: includes/elementor/widgets/modern-button.php:192
|
3151 |
#: includes/elementor/widgets/modern-button.php:807
|
3152 |
#: includes/elementor/widgets/quote.php:173
|
3153 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
3154 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
3155 |
#: includes/elementor/widgets/recent-posts-masonry.php:1163
|
3156 |
#: includes/elementor/widgets/recent-posts-timeline.php:138
|
3157 |
#: includes/elementor/widgets/staff.php:819
|
@@ -3167,7 +3167,7 @@ msgstr "بالا"
|
|
3167 |
#: includes/elementor/widgets/theme-elements/logo.php:169
|
3168 |
#: includes/elementor/widgets/theme-elements/menu.php:282
|
3169 |
#: includes/elementor/widgets/theme-elements/menu.php:336
|
3170 |
-
#: includes/elementor/widgets/theme-elements/menu.php:
|
3171 |
#: includes/elementor/widgets/theme-elements/shopping-cart.php:203
|
3172 |
#: includes/elementor/widgets/theme-elements/site-title.php:196
|
3173 |
#: includes/elements/button.php:187 includes/elements/image.php:152
|
@@ -3220,7 +3220,7 @@ msgstr ""
|
|
3220 |
#: includes/elementor/widgets/theme-elements/logo.php:257
|
3221 |
#: includes/elementor/widgets/theme-elements/logo.php:515
|
3222 |
#: includes/elementor/widgets/theme-elements/logo.php:607
|
3223 |
-
#: includes/elementor/widgets/theme-elements/shopping-cart.php:
|
3224 |
#, fuzzy
|
3225 |
msgid "Max Width"
|
3226 |
msgstr "عرض"
|
@@ -3358,7 +3358,7 @@ msgstr "نام نویسنده"
|
|
3358 |
|
3359 |
#: includes/elementor/modules/dynamic-tags/author-name.php:18
|
3360 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:612
|
3361 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
3362 |
#: includes/elementor/widgets/recent-posts-masonry.php:386
|
3363 |
#: includes/elementor/widgets/recent-posts-timeline.php:315
|
3364 |
#: includes/elements/recent-posts-grid-carousel.php:448
|
@@ -3445,8 +3445,8 @@ msgstr "پیوند"
|
|
3445 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:235
|
3446 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:613
|
3447 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:879
|
3448 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
3449 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
3450 |
#: includes/elementor/widgets/recent-posts-masonry.php:387
|
3451 |
#: includes/elementor/widgets/recent-posts-masonry.php:590
|
3452 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:205
|
@@ -3623,8 +3623,8 @@ msgstr "بخش"
|
|
3623 |
#: includes/elementor/widgets/recent-comments.php:171
|
3624 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:781
|
3625 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1028
|
3626 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
3627 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
3628 |
#: includes/elementor/widgets/recent-posts-masonry.php:510
|
3629 |
#: includes/elementor/widgets/recent-posts-masonry.php:701
|
3630 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:405
|
@@ -3948,7 +3948,7 @@ msgstr "شناسه کاربر"
|
|
3948 |
#: includes/elementor/modules/dynamic-tags/user-info.php:76
|
3949 |
#: includes/elementor/widgets/gallery.php:304
|
3950 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:782
|
3951 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
3952 |
#: includes/elementor/widgets/recent-posts-masonry.php:511
|
3953 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:406
|
3954 |
#: includes/elementor/widgets/recent-posts-tiles.php:308
|
@@ -4009,7 +4009,7 @@ msgstr ""
|
|
4009 |
#: includes/elementor/modules/query-control/controls/group-control-query.php:169
|
4010 |
#: includes/elementor/modules/query-control/controls/group-control-query.php:225
|
4011 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:786
|
4012 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
4013 |
#: includes/elementor/widgets/recent-posts-masonry.php:515
|
4014 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:410
|
4015 |
#: includes/elementor/widgets/recent-posts-tiles.php:312
|
@@ -4103,7 +4103,7 @@ msgstr ""
|
|
4103 |
#: includes/elementor/modules/query-control/controls/group-control-query.php:276
|
4104 |
#: includes/elementor/modules/query-control/controls/group-control-query.php:345
|
4105 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:779
|
4106 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
4107 |
#: includes/elementor/widgets/recent-posts-masonry.php:508
|
4108 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:403
|
4109 |
#: includes/elementor/widgets/recent-posts-tiles.php:305
|
@@ -4179,7 +4179,7 @@ msgstr "مرتب سازی بر اساس"
|
|
4179 |
#: includes/elementor/modules/query-control/controls/group-control-query.php:347
|
4180 |
#: includes/elementor/widgets/gallery.php:302
|
4181 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:780
|
4182 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
4183 |
#: includes/elementor/widgets/recent-posts-masonry.php:509
|
4184 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:404
|
4185 |
#: includes/elementor/widgets/recent-posts-tiles.php:306
|
@@ -4203,7 +4203,7 @@ msgstr "ترتیب فهرست"
|
|
4203 |
|
4204 |
#: includes/elementor/modules/query-control/controls/group-control-query.php:348
|
4205 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:783
|
4206 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
4207 |
#: includes/elementor/widgets/recent-posts-masonry.php:512
|
4208 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:407
|
4209 |
#: includes/elementor/widgets/recent-posts-tiles.php:309
|
@@ -4227,7 +4227,7 @@ msgstr "تصادفی"
|
|
4227 |
#: includes/elementor/modules/query-control/controls/group-control-query.php:356
|
4228 |
#: includes/elementor/widgets/gallery.php:282
|
4229 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:798
|
4230 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
4231 |
#: includes/elementor/widgets/recent-posts-masonry.php:524
|
4232 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:419
|
4233 |
#: includes/elementor/widgets/recent-posts-tiles.php:321
|
@@ -4472,7 +4472,8 @@ msgstr ""
|
|
4472 |
#: includes/elementor/widgets/theme-elements/logo.php:585
|
4473 |
#: includes/elementor/widgets/theme-elements/menu.php:530
|
4474 |
#: includes/elementor/widgets/theme-elements/menu.php:969
|
4475 |
-
#: includes/elementor/widgets/theme-elements/menu.php:
|
|
|
4476 |
#: includes/elementor/widgets/theme-elements/search.php:318
|
4477 |
#: includes/elementor/widgets/theme-elements/search.php:428
|
4478 |
#: includes/elementor/widgets/theme-elements/site-title.php:334
|
@@ -4501,7 +4502,7 @@ msgstr ""
|
|
4501 |
#: includes/elementor/widgets/modern-button.php:900
|
4502 |
#: includes/elementor/widgets/modern-button.php:999
|
4503 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:957
|
4504 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
4505 |
#: includes/elementor/widgets/recent-posts-masonry.php:630
|
4506 |
#: includes/elementor/widgets/recent-posts-timeline.php:577
|
4507 |
#: includes/elementor/widgets/recent-products.php:522
|
@@ -4516,10 +4517,10 @@ msgstr ""
|
|
4516 |
#: includes/elementor/widgets/theme-elements/menu.php:754
|
4517 |
#: includes/elementor/widgets/theme-elements/menu.php:851
|
4518 |
#: includes/elementor/widgets/theme-elements/menu.php:929
|
4519 |
-
#: includes/elementor/widgets/theme-elements/menu.php:
|
4520 |
-
#: includes/elementor/widgets/theme-elements/menu.php:
|
4521 |
-
#: includes/elementor/widgets/theme-elements/modern-search.php:
|
4522 |
-
#: includes/elementor/widgets/theme-elements/modern-search.php:
|
4523 |
#: includes/elementor/widgets/theme-elements/search.php:363
|
4524 |
#, fuzzy
|
4525 |
msgid "Border Radius"
|
@@ -4561,12 +4562,12 @@ msgstr "کادربندی شده"
|
|
4561 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1145
|
4562 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1332
|
4563 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1447
|
4564 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
4565 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
4566 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
4567 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
4568 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
4569 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
4570 |
#: includes/elementor/widgets/recent-posts-masonry.php:647
|
4571 |
#: includes/elementor/widgets/recent-posts-masonry.php:714
|
4572 |
#: includes/elementor/widgets/recent-posts-masonry.php:818
|
@@ -4606,10 +4607,10 @@ msgstr "کادربندی شده"
|
|
4606 |
#: includes/elementor/widgets/theme-elements/menu.php:680
|
4607 |
#: includes/elementor/widgets/theme-elements/menu.php:796
|
4608 |
#: includes/elementor/widgets/theme-elements/menu.php:1017
|
4609 |
-
#: includes/elementor/widgets/theme-elements/menu.php:
|
4610 |
-
#: includes/elementor/widgets/theme-elements/modern-search.php:
|
4611 |
-
#: includes/elementor/widgets/theme-elements/modern-search.php:
|
4612 |
-
#: includes/elementor/widgets/theme-elements/modern-search.php:
|
4613 |
#: includes/elements/button.php:118 includes/elements/text.php:738
|
4614 |
#: includes/general-hooks.php:754 includes/general-hooks.php:1159
|
4615 |
msgid "Normal"
|
@@ -4622,9 +4623,10 @@ msgstr "معمولی"
|
|
4622 |
#: includes/elementor/widgets/accordion.php:458
|
4623 |
#: includes/elementor/widgets/accordion.php:496
|
4624 |
#: includes/elementor/widgets/image.php:653
|
|
|
4625 |
#: includes/elementor/widgets/tabs.php:259
|
4626 |
-
#: includes/elementor/widgets/theme-elements/shopping-cart.php:
|
4627 |
-
#: includes/elementor/widgets/theme-elements/shopping-cart.php:
|
4628 |
msgid "Box Shadow"
|
4629 |
msgstr ""
|
4630 |
|
@@ -4647,7 +4649,7 @@ msgstr ""
|
|
4647 |
|
4648 |
#: includes/elementor/widgets/accordion.php:357
|
4649 |
#: includes/elementor/widgets/tabs.php:196
|
4650 |
-
#: includes/elementor/widgets/theme-elements/modern-search.php:
|
4651 |
#, fuzzy
|
4652 |
msgid "Pointer"
|
4653 |
msgstr "وسط"
|
@@ -4656,14 +4658,14 @@ msgstr "وسط"
|
|
4656 |
#: includes/elementor/widgets/contact-box.php:322
|
4657 |
#: includes/elementor/widgets/gmap.php:203
|
4658 |
#: includes/elementor/widgets/tabs.php:197
|
4659 |
-
#: includes/elementor/widgets/theme-elements/modern-search.php:
|
4660 |
#: includes/elements/contact-box.php:276 includes/elements/gmap.php:169
|
4661 |
msgid "Zoom"
|
4662 |
msgstr "بزرگنمایی"
|
4663 |
|
4664 |
#: includes/elementor/widgets/accordion.php:359
|
4665 |
#: includes/elementor/widgets/tabs.php:198
|
4666 |
-
#: includes/elementor/widgets/theme-elements/modern-search.php:
|
4667 |
msgid "Help"
|
4668 |
msgstr ""
|
4669 |
|
@@ -4707,15 +4709,15 @@ msgstr ""
|
|
4707 |
#: includes/elementor/widgets/theme-elements/breadcrumbs.php:475
|
4708 |
#: includes/elementor/widgets/theme-elements/menu.php:517
|
4709 |
#: includes/elementor/widgets/theme-elements/menu.php:956
|
4710 |
-
#: includes/elementor/widgets/theme-elements/menu.php:
|
4711 |
-
#: includes/elementor/widgets/theme-elements/modern-search.php:
|
4712 |
-
#: includes/elementor/widgets/theme-elements/modern-search.php:
|
4713 |
-
#: includes/elementor/widgets/theme-elements/modern-search.php:
|
4714 |
#: includes/elementor/widgets/theme-elements/search.php:330
|
4715 |
#: includes/elementor/widgets/theme-elements/search.php:416
|
4716 |
-
#: includes/elementor/widgets/theme-elements/shopping-cart.php:
|
4717 |
-
#: includes/elementor/widgets/theme-elements/shopping-cart.php:
|
4718 |
-
#: includes/elementor/widgets/theme-elements/shopping-cart.php:
|
4719 |
#: includes/elementor/widgets/touch-slider.php:314
|
4720 |
#: includes/elementor/widgets/touch-slider.php:369
|
4721 |
#: includes/elementor/widgets/touch-slider.php:427
|
@@ -4782,15 +4784,15 @@ msgstr "تیتر گذاری"
|
|
4782 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1267
|
4783 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1454
|
4784 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1474
|
4785 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
4786 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
4787 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
4788 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
4789 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
4790 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
4791 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
4792 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
4793 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
4794 |
#: includes/elementor/widgets/recent-posts-masonry.php:724
|
4795 |
#: includes/elementor/widgets/recent-posts-masonry.php:750
|
4796 |
#: includes/elementor/widgets/recent-posts-masonry.php:828
|
@@ -4855,13 +4857,12 @@ msgstr "تیتر گذاری"
|
|
4855 |
#: includes/elementor/widgets/theme-elements/menu.php:882
|
4856 |
#: includes/elementor/widgets/theme-elements/menu.php:1024
|
4857 |
#: includes/elementor/widgets/theme-elements/menu.php:1045
|
4858 |
-
#: includes/elementor/widgets/theme-elements/menu.php:
|
4859 |
-
#: includes/elementor/widgets/theme-elements/menu.php:
|
4860 |
-
#: includes/elementor/widgets/theme-elements/
|
4861 |
-
#: includes/elementor/widgets/theme-elements/modern-search.php:
|
4862 |
-
#: includes/elementor/widgets/theme-elements/modern-search.php:
|
4863 |
-
#: includes/elementor/widgets/theme-elements/modern-search.php:
|
4864 |
-
#: includes/elementor/widgets/theme-elements/modern-search.php:376
|
4865 |
#: includes/elementor/widgets/theme-elements/site-title.php:303
|
4866 |
#: includes/elementor/widgets/theme-elements/site-title.php:369
|
4867 |
#: includes/elementor/widgets/theme-elements/site-title.php:435
|
@@ -4943,20 +4944,20 @@ msgstr "فایل صوتی را به صورت خودکار پخش کن."
|
|
4943 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:708
|
4944 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:723
|
4945 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:760
|
4946 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
4947 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
4948 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
4949 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
4950 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
4951 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
4952 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
4953 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
4954 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
4955 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
4956 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
4957 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
4958 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
4959 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
4960 |
#: includes/elementor/widgets/recent-posts-masonry.php:179
|
4961 |
#: includes/elementor/widgets/recent-posts-masonry.php:192
|
4962 |
#: includes/elementor/widgets/recent-posts-masonry.php:207
|
@@ -5089,20 +5090,20 @@ msgstr ""
|
|
5089 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:709
|
5090 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:724
|
5091 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:761
|
5092 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
5093 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
5094 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
5095 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
5096 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
5097 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
5098 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
5099 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
5100 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
5101 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
5102 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
5103 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
5104 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
5105 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
5106 |
#: includes/elementor/widgets/recent-posts-masonry.php:180
|
5107 |
#: includes/elementor/widgets/recent-posts-masonry.php:193
|
5108 |
#: includes/elementor/widgets/recent-posts-masonry.php:208
|
@@ -5257,7 +5258,7 @@ msgstr "ظاهر"
|
|
5257 |
|
5258 |
#: includes/elementor/widgets/before-after.php:155
|
5259 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:850
|
5260 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
5261 |
#: includes/elementor/widgets/recent-posts-masonry.php:564
|
5262 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:459
|
5263 |
#: includes/elementor/widgets/recent-posts-tiles.php:361
|
@@ -5313,7 +5314,7 @@ msgstr "عرض"
|
|
5313 |
#: includes/elementor/widgets/text.php:278
|
5314 |
#: includes/elementor/widgets/text.php:1012
|
5315 |
#: includes/elementor/widgets/theme-elements/modern-search.php:99
|
5316 |
-
#: includes/elementor/widgets/theme-elements/modern-search.php:
|
5317 |
#: includes/elementor/widgets/theme-elements/search.php:120
|
5318 |
#: includes/elementor/widgets/theme-elements/search.php:381
|
5319 |
#: includes/elements/button.php:16 includes/elements/button.php:47
|
@@ -5431,8 +5432,8 @@ msgstr "خط بیرونی"
|
|
5431 |
|
5432 |
#: includes/elementor/widgets/button.php:230
|
5433 |
#: includes/elementor/widgets/carousel-navigation.php:164
|
5434 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
5435 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
5436 |
#: includes/elementor/widgets/recent-posts-masonry.php:1150
|
5437 |
#: includes/elementor/widgets/theme-elements/current-time.php:131
|
5438 |
#, fuzzy
|
@@ -5450,12 +5451,12 @@ msgstr "تراز"
|
|
5450 |
#: includes/elementor/widgets/modern-button.php:958
|
5451 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1340
|
5452 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1370
|
5453 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
5454 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
5455 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
5456 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
5457 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
5458 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
5459 |
#: includes/elementor/widgets/recent-posts-masonry.php:1091
|
5460 |
#: includes/elementor/widgets/recent-posts-masonry.php:1129
|
5461 |
#: includes/elementor/widgets/recent-posts-masonry.php:1226
|
@@ -5474,11 +5475,11 @@ msgstr "تراز"
|
|
5474 |
#: includes/elementor/widgets/theme-elements/menu.php:737
|
5475 |
#: includes/elementor/widgets/theme-elements/menu.php:841
|
5476 |
#: includes/elementor/widgets/theme-elements/menu.php:920
|
5477 |
-
#: includes/elementor/widgets/theme-elements/menu.php:
|
5478 |
-
#: includes/elementor/widgets/theme-elements/menu.php:
|
5479 |
-
#: includes/elementor/widgets/theme-elements/menu.php:
|
5480 |
-
#: includes/elementor/widgets/theme-elements/shopping-cart.php:
|
5481 |
-
#: includes/elementor/widgets/theme-elements/shopping-cart.php:
|
5482 |
#, fuzzy
|
5483 |
msgid "Background"
|
5484 |
msgstr "اندازه پس زمینه"
|
@@ -5494,7 +5495,7 @@ msgstr "اندازه پس زمینه"
|
|
5494 |
#: includes/elementor/widgets/text.php:116
|
5495 |
#: includes/elementor/widgets/text.php:126
|
5496 |
#: includes/elementor/widgets/theme-elements/modern-search.php:106
|
5497 |
-
#: includes/elementor/widgets/theme-elements/modern-search.php:
|
5498 |
#: includes/elementor/widgets/theme-elements/search.php:106
|
5499 |
#: includes/elementor/widgets/theme-elements/search.php:119
|
5500 |
#: includes/elementor/widgets/theme-elements/search.php:131
|
@@ -5543,7 +5544,6 @@ msgstr "متحرک سازی از راست"
|
|
5543 |
#: includes/elementor/widgets/button.php:390
|
5544 |
#: includes/elementor/widgets/text.php:429
|
5545 |
#: includes/elementor/widgets/text.php:1150
|
5546 |
-
#: includes/elementor/widgets/theme-elements/modern-search.php:657
|
5547 |
#, fuzzy
|
5548 |
msgid "Icon Size"
|
5549 |
msgstr "اندازه شکلک"
|
@@ -5569,7 +5569,7 @@ msgstr "تراز شکلک"
|
|
5569 |
#: includes/elementor/widgets/theme-elements/breadcrumbs.php:287
|
5570 |
#: includes/elementor/widgets/theme-elements/current-time.php:163
|
5571 |
#: includes/elementor/widgets/theme-elements/modern-search.php:118
|
5572 |
-
#: includes/elementor/widgets/theme-elements/modern-search.php:
|
5573 |
#: includes/elements/custom-list.php:58 includes/elements/image.php:302
|
5574 |
msgid "Text"
|
5575 |
msgstr ""
|
@@ -5589,8 +5589,8 @@ msgstr ""
|
|
5589 |
#: includes/elementor/widgets/modern-button.php:646
|
5590 |
#: includes/elementor/widgets/modern-button.php:720
|
5591 |
#: includes/elementor/widgets/modern-button.php:758
|
5592 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
5593 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
5594 |
#: includes/elementor/widgets/recent-posts-masonry.php:1255
|
5595 |
#: includes/elementor/widgets/recent-posts-masonry.php:1311
|
5596 |
#: includes/elementor/widgets/text.php:746
|
@@ -5642,7 +5642,7 @@ msgstr "قبلی و بعدی"
|
|
5642 |
|
5643 |
#: includes/elementor/widgets/carousel-navigation.php:128
|
5644 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:887
|
5645 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
5646 |
#: includes/elementor/widgets/recent-posts-masonry.php:598
|
5647 |
#: includes/elementor/widgets/recent-posts-tiles.php:395
|
5648 |
#: includes/elementor/widgets/recent-posts-timeline.php:527
|
@@ -5693,8 +5693,8 @@ msgstr "فاصله بین اسلایدها"
|
|
5693 |
#: includes/elementor/widgets/text.php:1023
|
5694 |
#: includes/elementor/widgets/theme-elements/breadcrumbs.php:268
|
5695 |
#: includes/elementor/widgets/theme-elements/breadcrumbs.php:400
|
5696 |
-
#: includes/elementor/widgets/theme-elements/modern-search.php:
|
5697 |
-
#: includes/elementor/widgets/theme-elements/modern-search.php:
|
5698 |
#: includes/elementor/widgets/theme-elements/search.php:213
|
5699 |
#: includes/elements/image.php:87
|
5700 |
msgid "Size"
|
@@ -5987,7 +5987,7 @@ msgid "Email Inputs"
|
|
5987 |
msgstr ""
|
5988 |
|
5989 |
#: includes/elementor/widgets/contact-form.php:920
|
5990 |
-
#: includes/elementor/widgets/theme-elements/shopping-cart.php:
|
5991 |
msgid "Dropdown"
|
5992 |
msgstr ""
|
5993 |
|
@@ -6414,7 +6414,7 @@ msgstr "اندازه تصویر"
|
|
6414 |
|
6415 |
#: includes/elementor/widgets/gallery.php:188
|
6416 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:919
|
6417 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
6418 |
#: includes/elementor/widgets/recent-posts-timeline.php:559
|
6419 |
#: includes/elementor/widgets/recent-products.php:504
|
6420 |
#: includes/elements/gallery.php:292
|
@@ -6692,7 +6692,7 @@ msgstr "تصویر پس زمینه"
|
|
6692 |
#: includes/elementor/widgets/image.php:418
|
6693 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:742
|
6694 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:908
|
6695 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
6696 |
#: includes/elementor/widgets/recent-posts-masonry.php:619
|
6697 |
#: includes/elementor/widgets/recent-posts-timeline.php:548
|
6698 |
#: includes/elementor/widgets/recent-products.php:493
|
@@ -6806,7 +6806,7 @@ msgstr "تراز تصویر در محتوا."
|
|
6806 |
|
6807 |
#: includes/elementor/widgets/image.php:343
|
6808 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:381
|
6809 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
6810 |
#: includes/elementor/widgets/recent-posts-masonry.php:205
|
6811 |
#: includes/elementor/widgets/recent-posts-timeline.php:192
|
6812 |
#: includes/elementor/widgets/recent-products.php:224
|
@@ -6818,7 +6818,7 @@ msgstr "تصویر شاخص"
|
|
6818 |
|
6819 |
#: includes/elementor/widgets/image.php:355
|
6820 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:396
|
6821 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
6822 |
#: includes/elementor/widgets/recent-posts-masonry.php:220
|
6823 |
#: includes/elementor/widgets/recent-posts-timeline.php:207
|
6824 |
#: includes/elementor/widgets/recent-products.php:239
|
@@ -6829,7 +6829,7 @@ msgstr ""
|
|
6829 |
|
6830 |
#: includes/elementor/widgets/image.php:370
|
6831 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:411
|
6832 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
6833 |
#: includes/elementor/widgets/recent-posts-masonry.php:235
|
6834 |
#: includes/elementor/widgets/recent-posts-timeline.php:222
|
6835 |
#: includes/elementor/widgets/recent-products.php:254
|
@@ -6863,12 +6863,12 @@ msgstr "عمودی"
|
|
6863 |
|
6864 |
#: includes/elementor/widgets/image.php:662
|
6865 |
#: includes/elementor/widgets/quote.php:186
|
6866 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
6867 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
6868 |
#: includes/elementor/widgets/recent-posts-masonry.php:1117
|
6869 |
#: includes/elementor/widgets/theme-elements/breadcrumbs.php:325
|
6870 |
-
#: includes/elementor/widgets/theme-elements/modern-search.php:
|
6871 |
-
#: includes/elementor/widgets/theme-elements/shopping-cart.php:
|
6872 |
#, fuzzy
|
6873 |
msgid "Text Color"
|
6874 |
msgstr "شمای رنگ متن"
|
@@ -7064,10 +7064,10 @@ msgstr "نمایش تصویر"
|
|
7064 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1293
|
7065 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1415
|
7066 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1510
|
7067 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
7068 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
7069 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
7070 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
7071 |
#: includes/elementor/widgets/recent-posts-masonry.php:780
|
7072 |
#: includes/elementor/widgets/recent-posts-masonry.php:884
|
7073 |
#: includes/elementor/widgets/recent-posts-masonry.php:966
|
@@ -7100,7 +7100,7 @@ msgstr "اطلاعات"
|
|
7100 |
|
7101 |
#: includes/elementor/widgets/recent-comments.php:331
|
7102 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1230
|
7103 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
7104 |
#: includes/elementor/widgets/recent-posts-masonry.php:903
|
7105 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:677
|
7106 |
#: includes/elementor/widgets/recent-posts-tiles.php:618
|
@@ -7325,7 +7325,7 @@ msgid "Specifies the delay between auto-forwarding in seconds."
|
|
7325 |
msgstr "تاخیر بین حرکت های رو به جلو را بر حسب ثانیه مشخص می کند."
|
7326 |
|
7327 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:329
|
7328 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
7329 |
#: includes/elementor/widgets/recent-posts-masonry.php:168
|
7330 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:291
|
7331 |
#: includes/elementor/widgets/recent-posts-tiles.php:193
|
@@ -7338,7 +7338,7 @@ msgid "Display"
|
|
7338 |
msgstr "نوع نمایش"
|
7339 |
|
7340 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:337
|
7341 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
7342 |
#: includes/elementor/widgets/recent-posts-masonry.php:176
|
7343 |
#: includes/elementor/widgets/recent-posts-timeline.php:163
|
7344 |
#: includes/elementor/widgets/recent-products.php:209
|
@@ -7359,7 +7359,7 @@ msgid "Ignore post formats media"
|
|
7359 |
msgstr ""
|
7360 |
|
7361 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:423
|
7362 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
7363 |
#: includes/elementor/widgets/recent-posts-masonry.php:247
|
7364 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:299
|
7365 |
#: includes/elementor/widgets/recent-posts-tiles.php:201
|
@@ -7377,7 +7377,7 @@ msgid "Title Trim"
|
|
7377 |
msgstr "لینک عنوان"
|
7378 |
|
7379 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:447
|
7380 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
7381 |
#: includes/elementor/widgets/recent-posts-masonry.php:259
|
7382 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:311
|
7383 |
#: includes/elementor/widgets/recent-posts-tiles.php:213
|
@@ -7399,7 +7399,7 @@ msgid "Post info position"
|
|
7399 |
msgstr "موقعیت تصویر یا شکلک"
|
7400 |
|
7401 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:488
|
7402 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
7403 |
#: includes/elementor/widgets/recent-posts-masonry.php:287
|
7404 |
#: includes/elementor/widgets/recent-products.php:278
|
7405 |
#: includes/elementor/widgets/theme-elements/modern-search.php:197
|
@@ -7415,7 +7415,7 @@ msgid "Display Category Badge"
|
|
7415 |
msgstr "نمایش نویسنده یا ادامه نوشته"
|
7416 |
|
7417 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:515
|
7418 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
7419 |
#: includes/elementor/widgets/recent-posts-masonry.php:302
|
7420 |
#: includes/elements/recent-posts-grid-carousel.php:363
|
7421 |
#, fuzzy
|
@@ -7423,7 +7423,7 @@ msgid "Display Date"
|
|
7423 |
msgstr "نمایش تصویر"
|
7424 |
|
7425 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:530
|
7426 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
7427 |
#: includes/elementor/widgets/recent-posts-masonry.php:396
|
7428 |
#: includes/elementor/widgets/recent-posts-timeline.php:325
|
7429 |
#, fuzzy
|
@@ -7431,7 +7431,7 @@ msgid "Display Author in Header"
|
|
7431 |
msgstr "نمایش نویسنده یا ادامه نوشته"
|
7432 |
|
7433 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:531
|
7434 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
7435 |
#: includes/elementor/widgets/recent-posts-masonry.php:397
|
7436 |
#: includes/elementor/widgets/recent-posts-timeline.php:326
|
7437 |
#, fuzzy
|
@@ -7446,13 +7446,13 @@ msgid "Display post content"
|
|
7446 |
msgstr "نمایش تاریخ نوشته"
|
7447 |
|
7448 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:555
|
7449 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
7450 |
#, fuzzy
|
7451 |
msgid "Display Comments Number"
|
7452 |
msgstr "نمایش زبانه دیدگاه ها"
|
7453 |
|
7454 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:567
|
7455 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
7456 |
#: includes/elementor/widgets/recent-posts-masonry.php:329
|
7457 |
#: includes/elementor/widgets/recent-posts-timeline.php:258
|
7458 |
#: includes/elements/recent-posts-grid-carousel.php:380
|
@@ -7462,7 +7462,7 @@ msgid "Display like button"
|
|
7462 |
msgstr "نمایش دکمه لایک"
|
7463 |
|
7464 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:579
|
7465 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
7466 |
#: includes/elementor/widgets/recent-posts-masonry.php:353
|
7467 |
#: includes/elementor/widgets/recent-posts-timeline.php:282
|
7468 |
#: includes/elements/popular-posts-widget.php:146
|
@@ -7472,7 +7472,7 @@ msgid "Display excerpt"
|
|
7472 |
msgstr "نمایش خلاصه"
|
7473 |
|
7474 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:580
|
7475 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
7476 |
#: includes/elementor/widgets/recent-posts-masonry.php:354
|
7477 |
#: includes/elementor/widgets/recent-posts-timeline.php:283
|
7478 |
#: includes/elements/popular-posts-widget.php:147
|
@@ -7482,7 +7482,7 @@ msgid "Enable it to display post summary instead of full content."
|
|
7482 |
msgstr "برای نمایش خلاصه نوشته به جای محتوای کامل این گزینه را فعال کنید."
|
7483 |
|
7484 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:592
|
7485 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
7486 |
#: includes/elementor/widgets/recent-posts-masonry.php:366
|
7487 |
#: includes/elementor/widgets/recent-posts-timeline.php:295
|
7488 |
#: includes/elements/popular-posts-widget.php:175
|
@@ -7495,7 +7495,7 @@ msgid "Excerpt length"
|
|
7495 |
msgstr "طول خلاصه"
|
7496 |
|
7497 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:593
|
7498 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
7499 |
#: includes/elementor/widgets/recent-posts-masonry.php:367
|
7500 |
#: includes/elementor/widgets/recent-posts-timeline.php:296
|
7501 |
#: includes/elements/recent-posts-grid-carousel.php:426
|
@@ -7506,7 +7506,7 @@ msgid "Specify summary content in character."
|
|
7506 |
msgstr "خلاصه نوشته را برحسب کاراکتر مشخص می کند."
|
7507 |
|
7508 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:605
|
7509 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
7510 |
#: includes/elementor/widgets/recent-posts-masonry.php:379
|
7511 |
#: includes/elementor/widgets/recent-posts-timeline.php:308
|
7512 |
#: includes/elements/recent-posts-grid-carousel.php:439
|
@@ -7517,7 +7517,7 @@ msgid "Display author or read more"
|
|
7517 |
msgstr "نمایش نویسنده یا ادامه نوشته"
|
7518 |
|
7519 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:607
|
7520 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
7521 |
#: includes/elementor/widgets/recent-posts-masonry.php:381
|
7522 |
#: includes/elementor/widgets/recent-posts-timeline.php:310
|
7523 |
#: includes/elements/recent-posts-grid-carousel.php:440
|
@@ -7528,8 +7528,8 @@ msgid "Specifies whether to show author or read more on each post."
|
|
7528 |
msgstr "مشخص می کند نویسنده یا بیشتر بخوانید در هر نوشته نشان داده شود یا خیر."
|
7529 |
|
7530 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:611
|
7531 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
7532 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
7533 |
#: includes/elementor/widgets/recent-posts-masonry.php:385
|
7534 |
#: includes/elementor/widgets/recent-posts-masonry.php:1208
|
7535 |
#: includes/elementor/widgets/recent-posts-timeline.php:314
|
@@ -7542,7 +7542,7 @@ msgid "Read More"
|
|
7542 |
msgstr "بیشتر بخوانید"
|
7543 |
|
7544 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:622
|
7545 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
7546 |
#: includes/elementor/widgets/recent-posts-masonry.php:412
|
7547 |
#: includes/elementor/widgets/recent-posts-timeline.php:341
|
7548 |
#, fuzzy
|
@@ -7550,7 +7550,7 @@ msgid "Display Author in Footer"
|
|
7550 |
msgstr "نمایش نویسنده یا ادامه نوشته"
|
7551 |
|
7552 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:623
|
7553 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
7554 |
#: includes/elementor/widgets/recent-posts-masonry.php:413
|
7555 |
#: includes/elementor/widgets/recent-posts-timeline.php:342
|
7556 |
#, fuzzy
|
@@ -7563,7 +7563,7 @@ msgid "Meta info position"
|
|
7563 |
msgstr "موقعیت تصویر یا شکلک"
|
7564 |
|
7565 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:660
|
7566 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
7567 |
#: includes/elementor/widgets/recent-posts-masonry.php:434
|
7568 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:329
|
7569 |
#: includes/elementor/widgets/recent-posts-tiles.php:231
|
@@ -7654,7 +7654,7 @@ msgid "Use wp query"
|
|
7654 |
msgstr ""
|
7655 |
|
7656 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:679
|
7657 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
7658 |
#: includes/elementor/widgets/recent-posts-masonry.php:441
|
7659 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:336
|
7660 |
#: includes/elementor/widgets/recent-posts-tiles.php:238
|
@@ -7673,7 +7673,7 @@ msgid "Categories"
|
|
7673 |
msgstr "دسته ها"
|
7674 |
|
7675 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:680
|
7676 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
7677 |
#: includes/elementor/widgets/recent-posts-masonry.php:442
|
7678 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:337
|
7679 |
#: includes/elementor/widgets/recent-posts-tiles.php:239
|
@@ -7691,7 +7691,7 @@ msgid "Specifies a category that you want to show posts from it."
|
|
7691 |
msgstr "دسته ای که می خواهید نوشته ها از آن نشان داده شوند را مشخص کنید."
|
7692 |
|
7693 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:694
|
7694 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
7695 |
#: includes/elementor/widgets/recent-posts-masonry.php:453
|
7696 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:348
|
7697 |
#: includes/elementor/widgets/recent-posts-tiles.php:250
|
@@ -7708,7 +7708,7 @@ msgid "Number of posts to show"
|
|
7708 |
msgstr "تعداد نوشته ها برای نمایش"
|
7709 |
|
7710 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:706
|
7711 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
7712 |
#: includes/elementor/widgets/recent-posts-masonry.php:465
|
7713 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:360
|
7714 |
#: includes/elementor/widgets/recent-posts-tiles.php:262
|
@@ -7758,7 +7758,7 @@ msgid "Video"
|
|
7758 |
msgstr "فایل ویدیو"
|
7759 |
|
7760 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:758
|
7761 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
7762 |
#: includes/elementor/widgets/recent-posts-masonry.php:489
|
7763 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:384
|
7764 |
#: includes/elementor/widgets/recent-posts-tiles.php:286
|
@@ -7775,7 +7775,7 @@ msgid "Exclude quote and link post formats"
|
|
7775 |
msgstr "نادیده گرفتن نوشته های سبک نقل قول و لینک"
|
7776 |
|
7777 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:775
|
7778 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
7779 |
#: includes/elementor/widgets/recent-posts-masonry.php:504
|
7780 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:399
|
7781 |
#: includes/elementor/widgets/recent-posts-tiles.php:301
|
@@ -7797,7 +7797,7 @@ msgid "Order by"
|
|
7797 |
msgstr "مرتب سازی بر اساس"
|
7798 |
|
7799 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:784
|
7800 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
7801 |
#: includes/elementor/widgets/recent-posts-masonry.php:513
|
7802 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:408
|
7803 |
#: includes/elementor/widgets/recent-posts-tiles.php:310
|
@@ -7819,7 +7819,7 @@ msgid "Comments"
|
|
7819 |
msgstr "دیدگاه ها"
|
7820 |
|
7821 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:785
|
7822 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
7823 |
#: includes/elementor/widgets/recent-posts-masonry.php:514
|
7824 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:409
|
7825 |
#: includes/elementor/widgets/recent-posts-tiles.php:311
|
@@ -7841,7 +7841,7 @@ msgid "Date Modified"
|
|
7841 |
msgstr "تاریخ ویرایش"
|
7842 |
|
7843 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:787
|
7844 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
7845 |
#: includes/elementor/widgets/recent-posts-masonry.php:516
|
7846 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:411
|
7847 |
#: includes/elementor/widgets/recent-posts-tiles.php:313
|
@@ -7861,7 +7861,7 @@ msgid "Inserted Post IDs"
|
|
7861 |
msgstr "افزودن متای نوشته"
|
7862 |
|
7863 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:802
|
7864 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
7865 |
#: includes/elementor/widgets/recent-posts-masonry.php:528
|
7866 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:423
|
7867 |
#: includes/elementor/widgets/recent-posts-tiles.php:325
|
@@ -7883,7 +7883,7 @@ msgid "Descending"
|
|
7883 |
msgstr "نزولی"
|
7884 |
|
7885 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:803
|
7886 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
7887 |
#: includes/elementor/widgets/recent-posts-masonry.php:529
|
7888 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:424
|
7889 |
#: includes/elementor/widgets/recent-posts-tiles.php:326
|
@@ -7905,7 +7905,7 @@ msgid "Ascending"
|
|
7905 |
msgstr "صعودی"
|
7906 |
|
7907 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:814
|
7908 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
7909 |
#: includes/elementor/widgets/recent-posts-masonry.php:537
|
7910 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:432
|
7911 |
#: includes/elementor/widgets/recent-posts-tiles.php:334
|
@@ -7921,7 +7921,7 @@ msgid "Only posts"
|
|
7921 |
msgstr "شامل شدن این نوشته ها"
|
7922 |
|
7923 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:815
|
7924 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
7925 |
#: includes/elementor/widgets/recent-posts-masonry.php:538
|
7926 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:433
|
7927 |
#: includes/elementor/widgets/recent-posts-tiles.php:335
|
@@ -7939,7 +7939,7 @@ msgid ""
|
|
7939 |
msgstr ""
|
7940 |
|
7941 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:826
|
7942 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
7943 |
#: includes/elementor/widgets/recent-posts-masonry.php:546
|
7944 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:441
|
7945 |
#: includes/elementor/widgets/recent-posts-tiles.php:343
|
@@ -7956,7 +7956,7 @@ msgid "Include posts"
|
|
7956 |
msgstr "شامل شدن این نوشته ها"
|
7957 |
|
7958 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:827
|
7959 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
7960 |
#: includes/elementor/widgets/recent-posts-masonry.php:547
|
7961 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:442
|
7962 |
#: includes/elementor/widgets/recent-posts-tiles.php:344
|
@@ -7974,7 +7974,7 @@ msgid ""
|
|
7974 |
msgstr ""
|
7975 |
|
7976 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:838
|
7977 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
7978 |
#: includes/elementor/widgets/recent-posts-masonry.php:555
|
7979 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:450
|
7980 |
#: includes/elementor/widgets/recent-posts-tiles.php:352
|
@@ -7990,7 +7990,7 @@ msgid "Exclude posts"
|
|
7990 |
msgstr "نادیده گرفتن این نوشته ها"
|
7991 |
|
7992 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:839
|
7993 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
7994 |
#: includes/elementor/widgets/recent-posts-masonry.php:556
|
7995 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:451
|
7996 |
#: includes/elementor/widgets/recent-posts-tiles.php:353
|
@@ -8008,7 +8008,7 @@ msgid ""
|
|
8008 |
msgstr ""
|
8009 |
|
8010 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:851
|
8011 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
8012 |
#: includes/elementor/widgets/recent-posts-masonry.php:565
|
8013 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:460
|
8014 |
#: includes/elementor/widgets/recent-posts-tiles.php:362
|
@@ -8025,7 +8025,7 @@ msgid "Number of post to displace or pass over."
|
|
8025 |
msgstr "تعداد نوشته هایی که باید از آن ها عبور کرد یا آن ها را نادیده گرفت."
|
8026 |
|
8027 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:868
|
8028 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
8029 |
#: includes/elementor/widgets/recent-posts-masonry.php:579
|
8030 |
#: includes/elementor/widgets/recent-posts-tiles.php:376
|
8031 |
#: includes/elementor/widgets/recent-posts-timeline.php:508
|
@@ -8034,7 +8034,7 @@ msgid "Paginate"
|
|
8034 |
msgstr "صفحه بندی"
|
8035 |
|
8036 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:875
|
8037 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
8038 |
#: includes/elementor/widgets/recent-posts-masonry.php:586
|
8039 |
#: includes/elementor/widgets/recent-posts-tiles.php:383
|
8040 |
#: includes/elementor/widgets/recent-posts-timeline.php:515
|
@@ -8048,7 +8048,7 @@ msgid "Load More Type"
|
|
8048 |
msgstr "بیشتر بخوانید"
|
8049 |
|
8050 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:883
|
8051 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
8052 |
#: includes/elementor/widgets/recent-posts-masonry.php:594
|
8053 |
#: includes/elementor/widgets/recent-posts-tiles.php:391
|
8054 |
#: includes/elementor/widgets/recent-posts-timeline.php:523
|
@@ -8061,7 +8061,7 @@ msgid "Infinite Scroll"
|
|
8061 |
msgstr ""
|
8062 |
|
8063 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:891
|
8064 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
8065 |
#: includes/elementor/widgets/recent-posts-masonry.php:602
|
8066 |
#: includes/elementor/widgets/recent-posts-tiles.php:399
|
8067 |
#: includes/elementor/widgets/recent-posts-timeline.php:531
|
@@ -8074,7 +8074,7 @@ msgid "Next Prev"
|
|
8074 |
msgstr ""
|
8075 |
|
8076 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:923
|
8077 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
8078 |
#: includes/elementor/widgets/recent-posts-timeline.php:563
|
8079 |
#: includes/elementor/widgets/recent-products.php:508
|
8080 |
#: includes/elements/gallery.php:300
|
@@ -8086,7 +8086,7 @@ msgid "Horizontal 4:3"
|
|
8086 |
msgstr "افقی 4:3"
|
8087 |
|
8088 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:924
|
8089 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
8090 |
#: includes/elementor/widgets/recent-posts-timeline.php:564
|
8091 |
#: includes/elementor/widgets/recent-products.php:509
|
8092 |
#: includes/elements/gallery.php:301
|
@@ -8098,7 +8098,7 @@ msgid "Horizontal 16:9"
|
|
8098 |
msgstr "افقی 16:9"
|
8099 |
|
8100 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:925
|
8101 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
8102 |
#: includes/elementor/widgets/recent-posts-timeline.php:565
|
8103 |
#: includes/elementor/widgets/recent-products.php:510
|
8104 |
#: includes/elements/gallery.php:302
|
@@ -8110,7 +8110,7 @@ msgid "Square 1:1"
|
|
8110 |
msgstr "مربع 1:1"
|
8111 |
|
8112 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:926
|
8113 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
8114 |
#: includes/elementor/widgets/recent-posts-timeline.php:566
|
8115 |
#: includes/elementor/widgets/recent-products.php:511
|
8116 |
#: includes/elements/gallery.php:303
|
@@ -8127,7 +8127,7 @@ msgid "Custom Aspect Ratio"
|
|
8127 |
msgstr "نسبت ابعاد تصویر"
|
8128 |
|
8129 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1132
|
8130 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
8131 |
#: includes/elementor/widgets/recent-posts-masonry.php:805
|
8132 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:579
|
8133 |
#: includes/elementor/widgets/recent-posts-tiles.php:520
|
@@ -8137,7 +8137,7 @@ msgid "Post Info"
|
|
8137 |
msgstr "اطلاعات"
|
8138 |
|
8139 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1256
|
8140 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
8141 |
#: includes/elementor/widgets/recent-posts-masonry.php:929
|
8142 |
#: includes/elementor/widgets/recent-posts-timeline.php:826
|
8143 |
#, fuzzy
|
@@ -8149,7 +8149,7 @@ msgid "Badge"
|
|
8149 |
msgstr ""
|
8150 |
|
8151 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1437
|
8152 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
8153 |
#: includes/elementor/widgets/recent-posts-masonry.php:991
|
8154 |
#: includes/elementor/widgets/recent-posts-timeline.php:888
|
8155 |
msgid "Meta"
|
@@ -8159,35 +8159,41 @@ msgstr ""
|
|
8159 |
msgid "Padding for meta wrapper"
|
8160 |
msgstr ""
|
8161 |
|
8162 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
8163 |
#: includes/elementor/widgets/recent-posts-masonry.php:1178
|
8164 |
#: includes/elementor/widgets/staff.php:862
|
8165 |
msgid "Padding for main wrapper"
|
8166 |
msgstr ""
|
8167 |
|
8168 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
8169 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
8170 |
#: includes/elementor/widgets/recent-posts-masonry.php:1190
|
8171 |
#: includes/elementor/widgets/staff.php:874
|
8172 |
msgid "Padding for content wrapper"
|
8173 |
msgstr ""
|
8174 |
|
8175 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
8176 |
msgid "Flip Wrapper"
|
8177 |
msgstr ""
|
8178 |
|
8179 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
8180 |
#: includes/elementor/widgets/recent-posts-masonry.php:1332
|
8181 |
#, fuzzy
|
8182 |
msgid "Button Padding"
|
8183 |
msgstr "اندازه دکمه"
|
8184 |
|
8185 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
8186 |
#, fuzzy
|
8187 |
msgid "Land Style Posts"
|
8188 |
msgstr "[فلوکس] مطالب اخیر سبک زمین"
|
8189 |
|
8190 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
8191 |
#: includes/elementor/widgets/recent-posts-masonry.php:477
|
8192 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:372
|
8193 |
#: includes/elementor/widgets/recent-posts-tiles.php:274
|
@@ -8386,8 +8392,8 @@ msgid "Table Even Rows"
|
|
8386 |
msgstr ""
|
8387 |
|
8388 |
#: includes/elementor/widgets/search.php:47
|
8389 |
-
#: includes/elementor/widgets/theme-elements/modern-search.php:
|
8390 |
-
#: includes/elementor/widgets/theme-elements/modern-search.php:
|
8391 |
#: includes/elements/search.php:14
|
8392 |
#, fuzzy
|
8393 |
msgid "Search"
|
@@ -8573,7 +8579,7 @@ msgstr "ظاهر Wrapper"
|
|
8573 |
#: includes/elementor/widgets/staff.php:838
|
8574 |
#: includes/elementor/widgets/text.php:1429
|
8575 |
#: includes/elementor/widgets/theme-elements/menu.php:324
|
8576 |
-
#: includes/elementor/widgets/theme-elements/menu.php:
|
8577 |
#: includes/elements/text.php:118
|
8578 |
#, fuzzy
|
8579 |
msgid "Text Align"
|
@@ -8818,11 +8824,6 @@ msgstr "رنگ شکلک"
|
|
8818 |
msgid "Icon background color"
|
8819 |
msgstr "رنگ پس زمینه شکلک"
|
8820 |
|
8821 |
-
#: includes/elementor/widgets/text.php:616
|
8822 |
-
#: includes/elementor/widgets/text.php:1537
|
8823 |
-
msgid "Transition duration"
|
8824 |
-
msgstr ""
|
8825 |
-
|
8826 |
#: includes/elementor/widgets/text.php:645 includes/elements/text.php:577
|
8827 |
#, fuzzy
|
8828 |
msgid "Default Aspect"
|
@@ -8921,7 +8922,6 @@ msgstr "موقعیت"
|
|
8921 |
|
8922 |
#: includes/elementor/widgets/theme-elements/breadcrumbs.php:253
|
8923 |
#: includes/elementor/widgets/theme-elements/breadcrumbs.php:385
|
8924 |
-
#: includes/elementor/widgets/theme-elements/modern-search.php:685
|
8925 |
msgid "Icon Color"
|
8926 |
msgstr "رنگ شکلک"
|
8927 |
|
@@ -9194,18 +9194,57 @@ msgstr "رنگ پس زمینه شکلک"
|
|
9194 |
msgid "Fullscreen Menu"
|
9195 |
msgstr ""
|
9196 |
|
9197 |
-
#: includes/elementor/widgets/theme-elements/menu.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9198 |
#, fuzzy
|
9199 |
msgid "Close Button"
|
9200 |
msgstr "[فلوکس] دکمه"
|
9201 |
|
9202 |
-
#: includes/elementor/widgets/theme-elements/menu.php:
|
9203 |
-
#: includes/elementor/widgets/theme-elements/menu.php:1428
|
9204 |
#, fuzzy
|
9205 |
-
msgid "
|
9206 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9207 |
|
9208 |
-
#: includes/elementor/widgets/theme-elements/menu.php:
|
9209 |
#, fuzzy
|
9210 |
msgid "There are no menus in your site."
|
9211 |
msgstr "آدرس ریشه سایت شما"
|
@@ -9216,7 +9255,7 @@ msgid "Modern Search"
|
|
9216 |
msgstr "مدرن"
|
9217 |
|
9218 |
#: includes/elementor/widgets/theme-elements/modern-search.php:136
|
9219 |
-
#: includes/elementor/widgets/theme-elements/modern-search.php:
|
9220 |
msgid "Fullscreen Search Input"
|
9221 |
msgstr ""
|
9222 |
|
@@ -9239,34 +9278,78 @@ msgstr "نمایش دکمه لایک"
|
|
9239 |
msgid "Display Fill Submit Button"
|
9240 |
msgstr "نمایش دکمه لایک"
|
9241 |
|
9242 |
-
#: includes/elementor/widgets/theme-elements/modern-search.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9243 |
msgid "Cursor"
|
9244 |
msgstr ""
|
9245 |
|
9246 |
-
#: includes/elementor/widgets/theme-elements/modern-search.php:
|
|
|
|
|
|
|
|
|
9247 |
#, fuzzy
|
9248 |
msgid "Border Size"
|
9249 |
msgstr "کادربندی شده"
|
9250 |
|
9251 |
-
#: includes/elementor/widgets/theme-elements/modern-search.php:
|
9252 |
-
|
9253 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9254 |
|
9255 |
-
#: includes/elementor/widgets/theme-elements/modern-search.php:
|
|
|
|
|
|
|
|
|
|
|
9256 |
msgid "Fullscreen Close Button"
|
9257 |
msgstr ""
|
9258 |
|
9259 |
-
#: includes/elementor/widgets/theme-elements/modern-search.php:
|
9260 |
#, fuzzy
|
9261 |
msgid "Top Position"
|
9262 |
msgstr "موقعیت"
|
9263 |
|
9264 |
-
#: includes/elementor/widgets/theme-elements/modern-search.php:
|
9265 |
#, fuzzy
|
9266 |
msgid "Right Position"
|
9267 |
msgstr "موقعیت"
|
9268 |
|
9269 |
-
#: includes/elementor/widgets/theme-elements/modern-search.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
9270 |
msgid "Search..."
|
9271 |
msgstr ""
|
9272 |
|
@@ -9343,44 +9426,52 @@ msgstr ""
|
|
9343 |
msgid "Sub Total"
|
9344 |
msgstr ""
|
9345 |
|
9346 |
-
#: includes/elementor/widgets/theme-elements/shopping-cart.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9347 |
msgid "Counter Bubble"
|
9348 |
msgstr ""
|
9349 |
|
9350 |
-
#: includes/elementor/widgets/theme-elements/shopping-cart.php:
|
9351 |
-
#: includes/elementor/widgets/theme-elements/shopping-cart.php:
|
9352 |
msgid "Position from Bottom"
|
9353 |
msgstr ""
|
9354 |
|
9355 |
-
#: includes/elementor/widgets/theme-elements/shopping-cart.php:
|
9356 |
#, fuzzy
|
9357 |
msgid "Position from right"
|
9358 |
msgstr "متحرک سازی از راست"
|
9359 |
|
9360 |
-
#: includes/elementor/widgets/theme-elements/shopping-cart.php:
|
9361 |
#, fuzzy
|
9362 |
msgid "Position from Left"
|
9363 |
msgstr "متحرک سازی از چپ"
|
9364 |
|
9365 |
-
#: includes/elementor/widgets/theme-elements/shopping-cart.php:
|
9366 |
msgid "Item"
|
9367 |
msgstr ""
|
9368 |
|
9369 |
-
#: includes/elementor/widgets/theme-elements/shopping-cart.php:
|
9370 |
#, fuzzy
|
9371 |
msgid "Title color"
|
9372 |
msgstr "لینک عنوان"
|
9373 |
|
9374 |
-
#: includes/elementor/widgets/theme-elements/shopping-cart.php:
|
9375 |
msgid "Title Typography"
|
9376 |
msgstr ""
|
9377 |
|
9378 |
-
#: includes/elementor/widgets/theme-elements/shopping-cart.php:
|
9379 |
#, fuzzy
|
9380 |
msgid "Price color"
|
9381 |
msgstr "رنگ شکلک"
|
9382 |
|
9383 |
-
#: includes/elementor/widgets/theme-elements/shopping-cart.php:
|
9384 |
msgid "Price Typography"
|
9385 |
msgstr ""
|
9386 |
|
@@ -9541,7 +9632,7 @@ msgstr "یک المان درباره نویسنده اضافه می کند."
|
|
9541 |
msgid "The name which appears in about widget."
|
9542 |
msgstr "نامی که در ابزارک درباره ما نشان داده می شود."
|
9543 |
|
9544 |
-
#: includes/elements/about-widget.php:72 includes/general-hooks.php:
|
9545 |
msgid "Skills"
|
9546 |
msgstr "مهارت ها"
|
9547 |
|
@@ -12425,45 +12516,45 @@ msgstr "بخش زبانه ها"
|
|
12425 |
msgid "Hide Feedback Section"
|
12426 |
msgstr "افزودن بخش"
|
12427 |
|
12428 |
-
#: includes/general-hooks.php:
|
12429 |
msgid "Twitter"
|
12430 |
msgstr ""
|
12431 |
|
12432 |
-
#: includes/general-hooks.php:
|
12433 |
msgid "Facebook"
|
12434 |
msgstr ""
|
12435 |
|
12436 |
-
#: includes/general-hooks.php:
|
12437 |
msgid "Google Plus"
|
12438 |
msgstr ""
|
12439 |
|
12440 |
-
#: includes/general-hooks.php:
|
12441 |
msgid "Flickr"
|
12442 |
msgstr ""
|
12443 |
|
12444 |
-
#: includes/general-hooks.php:
|
12445 |
msgid "Delicious"
|
12446 |
msgstr ""
|
12447 |
|
12448 |
-
#: includes/general-hooks.php:
|
12449 |
msgid "Pinterest"
|
12450 |
msgstr ""
|
12451 |
|
12452 |
-
#: includes/general-hooks.php:
|
12453 |
msgid "GitHub"
|
12454 |
msgstr ""
|
12455 |
|
12456 |
-
#: includes/general-hooks.php:
|
12457 |
#, fuzzy
|
12458 |
msgid "Page Options"
|
12459 |
msgstr "تنظیمات طراحی"
|
12460 |
|
12461 |
-
#: includes/general-hooks.php:
|
12462 |
#, fuzzy
|
12463 |
msgid "Post Options"
|
12464 |
msgstr "تنظیمات نوشته صوتی"
|
12465 |
|
12466 |
-
#: includes/general-hooks.php:
|
12467 |
#, fuzzy
|
12468 |
msgid "Page %s"
|
12469 |
msgstr "برگه ها"
|
@@ -12713,13 +12804,13 @@ msgid "Chats"
|
|
12713 |
msgstr ""
|
12714 |
|
12715 |
#. translators: playlist item title
|
12716 |
-
#: includes/general-hooks.php:
|
12717 |
msgctxt "playlist item title"
|
12718 |
msgid "“%s”"
|
12719 |
msgstr ""
|
12720 |
|
12721 |
#. translators: playlist item title
|
12722 |
-
#: includes/general-hooks.php:
|
12723 |
msgctxt "playlist item title"
|
12724 |
msgid "%s"
|
12725 |
msgstr ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Auxin Essential Elements\n"
|
4 |
"Report-Msgid-Bugs-To: http://averta.net/phlox/wordpress-theme/\n"
|
5 |
+
"POT-Creation-Date: 2020-09-09 10:12:18+00:00\n"
|
6 |
"PO-Revision-Date: 2016-11-09 12:50+0330\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: \n"
|
1091 |
|
1092 |
#: admin/includes/metaboxes/metabox-fields-general-header.php:202
|
1093 |
#: includes/elements/staff.php:207 includes/elements/text.php:105
|
1094 |
+
#: includes/general-hooks.php:3000
|
1095 |
msgid "Boxed"
|
1096 |
msgstr "جعبه ای"
|
1097 |
|
1142 |
|
1143 |
#: admin/includes/metaboxes/metabox-fields-general-header.php:325
|
1144 |
#: includes/elementor/widgets/image.php:639
|
1145 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:677
|
1146 |
#, fuzzy
|
1147 |
msgid "Border Color"
|
1148 |
msgstr "رنگ پس زمینه"
|
1289 |
#: includes/elementor/widgets/modern-button.php:188
|
1290 |
#: includes/elementor/widgets/quote.php:169
|
1291 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:252
|
1292 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1660
|
1293 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1773
|
1294 |
#: includes/elementor/widgets/recent-posts-masonry.php:1159
|
1295 |
#: includes/elementor/widgets/recent-posts-timeline.php:130
|
1296 |
#: includes/elementor/widgets/staff.php:846
|
1302 |
#: includes/elementor/widgets/theme-elements/current-time.php:139
|
1303 |
#: includes/elementor/widgets/theme-elements/logo.php:165
|
1304 |
#: includes/elementor/widgets/theme-elements/menu.php:332
|
1305 |
+
#: includes/elementor/widgets/theme-elements/menu.php:1350
|
1306 |
#: includes/elementor/widgets/theme-elements/shopping-cart.php:199
|
1307 |
#: includes/elementor/widgets/theme-elements/site-title.php:192
|
1308 |
#: includes/elements/quote.php:112
|
1327 |
#: includes/elementor/widgets/modern-button.php:184
|
1328 |
#: includes/elementor/widgets/modern-button.php:806
|
1329 |
#: includes/elementor/widgets/quote.php:165
|
1330 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1656
|
1331 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1769
|
1332 |
#: includes/elementor/widgets/recent-posts-masonry.php:1155
|
1333 |
#: includes/elementor/widgets/recent-posts-timeline.php:134
|
1334 |
#: includes/elementor/widgets/staff.php:827
|
1344 |
#: includes/elementor/widgets/theme-elements/logo.php:161
|
1345 |
#: includes/elementor/widgets/theme-elements/menu.php:281
|
1346 |
#: includes/elementor/widgets/theme-elements/menu.php:328
|
1347 |
+
#: includes/elementor/widgets/theme-elements/menu.php:1346
|
1348 |
#: includes/elementor/widgets/theme-elements/shopping-cart.php:195
|
1349 |
#: includes/elementor/widgets/theme-elements/site-title.php:188
|
1350 |
#: includes/elements/button.php:183 includes/elements/image.php:151
|
1503 |
#: includes/elementor/widgets/tabs.php:195
|
1504 |
#: includes/elementor/widgets/text.php:1133
|
1505 |
#: includes/elementor/widgets/theme-elements/menu.php:999
|
1506 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:577
|
1507 |
#: includes/elements/button.php:179 includes/elements/code.php:99
|
1508 |
#: includes/elements/gallery.php:120 includes/elements/quote.php:109
|
1509 |
#: includes/elements/recent-posts-tiles-carousel.php:298
|
1548 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1171
|
1549 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1362
|
1550 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1467
|
1551 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1593
|
1552 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1724
|
1553 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1876
|
1554 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:624
|
1555 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:728
|
1556 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:905
|
1557 |
#: includes/elementor/widgets/recent-posts-masonry.php:670
|
1558 |
#: includes/elementor/widgets/recent-posts-masonry.php:740
|
1559 |
#: includes/elementor/widgets/recent-posts-masonry.php:844
|
1592 |
#: includes/elementor/widgets/theme-elements/menu.php:729
|
1593 |
#: includes/elementor/widgets/theme-elements/menu.php:875
|
1594 |
#: includes/elementor/widgets/theme-elements/menu.php:1038
|
1595 |
+
#: includes/elementor/widgets/theme-elements/menu.php:1234
|
1596 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:293
|
1597 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:390
|
1598 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:509
|
1599 |
#, fuzzy
|
1600 |
msgid "Hover"
|
1601 |
msgstr "پوشاننده"
|
2342 |
msgid "Choose"
|
2343 |
msgstr "انتخاب .."
|
2344 |
|
2345 |
+
#: includes/classes/class-auxin-walker-nav-menu-back.php:358
|
2346 |
msgid "Move"
|
2347 |
msgstr ""
|
2348 |
|
2349 |
+
#: includes/classes/class-auxin-walker-nav-menu-back.php:359
|
2350 |
msgid "Up one"
|
2351 |
msgstr ""
|
2352 |
|
2353 |
+
#: includes/classes/class-auxin-walker-nav-menu-back.php:360
|
2354 |
msgid "Down one"
|
2355 |
msgstr ""
|
2356 |
|
2357 |
+
#: includes/classes/class-auxin-walker-nav-menu-back.php:363
|
2358 |
#, fuzzy
|
2359 |
msgid "To the top"
|
2360 |
msgstr "وسط بالا"
|
2361 |
|
2362 |
+
#: includes/classes/class-auxin-walker-nav-menu-back.php:370
|
2363 |
#, fuzzy
|
2364 |
msgid "Original: %s"
|
2365 |
msgstr "اصلی"
|
2366 |
|
2367 |
+
#: includes/classes/class-auxin-walker-nav-menu-back.php:383
|
2368 |
msgid "Remove"
|
2369 |
msgstr ""
|
2370 |
|
2371 |
+
#: includes/classes/class-auxin-walker-nav-menu-back.php:384
|
2372 |
#: includes/classes/class-auxin-welcome.php:1313
|
2373 |
#: includes/classes/class-auxin-welcome.php:1341
|
2374 |
#: includes/classes/class-auxin-welcome.php:1436
|
2897 |
|
2898 |
#: includes/classes/class-auxin-widget.php:112
|
2899 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:95
|
2900 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:92
|
2901 |
#: includes/elementor/widgets/recent-posts-masonry.php:95
|
2902 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:92
|
2903 |
#: includes/elementor/widgets/recent-posts-tiles.php:92
|
2904 |
#: includes/elementor/widgets/recent-posts-timeline.php:92
|
2905 |
#: includes/elementor/widgets/recent-products.php:101
|
2906 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:1069
|
2907 |
#: includes/elements/popular-posts-widget.php:16
|
2908 |
#: includes/elements/recent-posts-grid-carousel.php:16
|
2909 |
#: includes/elements/recent-posts-land-style.php:16
|
3150 |
#: includes/elementor/widgets/modern-button.php:192
|
3151 |
#: includes/elementor/widgets/modern-button.php:807
|
3152 |
#: includes/elementor/widgets/quote.php:173
|
3153 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1664
|
3154 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1777
|
3155 |
#: includes/elementor/widgets/recent-posts-masonry.php:1163
|
3156 |
#: includes/elementor/widgets/recent-posts-timeline.php:138
|
3157 |
#: includes/elementor/widgets/staff.php:819
|
3167 |
#: includes/elementor/widgets/theme-elements/logo.php:169
|
3168 |
#: includes/elementor/widgets/theme-elements/menu.php:282
|
3169 |
#: includes/elementor/widgets/theme-elements/menu.php:336
|
3170 |
+
#: includes/elementor/widgets/theme-elements/menu.php:1354
|
3171 |
#: includes/elementor/widgets/theme-elements/shopping-cart.php:203
|
3172 |
#: includes/elementor/widgets/theme-elements/site-title.php:196
|
3173 |
#: includes/elements/button.php:187 includes/elements/image.php:152
|
3220 |
#: includes/elementor/widgets/theme-elements/logo.php:257
|
3221 |
#: includes/elementor/widgets/theme-elements/logo.php:515
|
3222 |
#: includes/elementor/widgets/theme-elements/logo.php:607
|
3223 |
+
#: includes/elementor/widgets/theme-elements/shopping-cart.php:419
|
3224 |
#, fuzzy
|
3225 |
msgid "Max Width"
|
3226 |
msgstr "عرض"
|
3358 |
|
3359 |
#: includes/elementor/modules/dynamic-tags/author-name.php:18
|
3360 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:612
|
3361 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:307
|
3362 |
#: includes/elementor/widgets/recent-posts-masonry.php:386
|
3363 |
#: includes/elementor/widgets/recent-posts-timeline.php:315
|
3364 |
#: includes/elements/recent-posts-grid-carousel.php:448
|
3445 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:235
|
3446 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:613
|
3447 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:879
|
3448 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:308
|
3449 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:494
|
3450 |
#: includes/elementor/widgets/recent-posts-masonry.php:387
|
3451 |
#: includes/elementor/widgets/recent-posts-masonry.php:590
|
3452 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:205
|
3623 |
#: includes/elementor/widgets/recent-comments.php:171
|
3624 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:781
|
3625 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1028
|
3626 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:414
|
3627 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:585
|
3628 |
#: includes/elementor/widgets/recent-posts-masonry.php:510
|
3629 |
#: includes/elementor/widgets/recent-posts-masonry.php:701
|
3630 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:405
|
3948 |
#: includes/elementor/modules/dynamic-tags/user-info.php:76
|
3949 |
#: includes/elementor/widgets/gallery.php:304
|
3950 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:782
|
3951 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:415
|
3952 |
#: includes/elementor/widgets/recent-posts-masonry.php:511
|
3953 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:406
|
3954 |
#: includes/elementor/widgets/recent-posts-tiles.php:308
|
4009 |
#: includes/elementor/modules/query-control/controls/group-control-query.php:169
|
4010 |
#: includes/elementor/modules/query-control/controls/group-control-query.php:225
|
4011 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:786
|
4012 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:419
|
4013 |
#: includes/elementor/widgets/recent-posts-masonry.php:515
|
4014 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:410
|
4015 |
#: includes/elementor/widgets/recent-posts-tiles.php:312
|
4103 |
#: includes/elementor/modules/query-control/controls/group-control-query.php:276
|
4104 |
#: includes/elementor/modules/query-control/controls/group-control-query.php:345
|
4105 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:779
|
4106 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:412
|
4107 |
#: includes/elementor/widgets/recent-posts-masonry.php:508
|
4108 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:403
|
4109 |
#: includes/elementor/widgets/recent-posts-tiles.php:305
|
4179 |
#: includes/elementor/modules/query-control/controls/group-control-query.php:347
|
4180 |
#: includes/elementor/widgets/gallery.php:302
|
4181 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:780
|
4182 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:413
|
4183 |
#: includes/elementor/widgets/recent-posts-masonry.php:509
|
4184 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:404
|
4185 |
#: includes/elementor/widgets/recent-posts-tiles.php:306
|
4203 |
|
4204 |
#: includes/elementor/modules/query-control/controls/group-control-query.php:348
|
4205 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:783
|
4206 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:416
|
4207 |
#: includes/elementor/widgets/recent-posts-masonry.php:512
|
4208 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:407
|
4209 |
#: includes/elementor/widgets/recent-posts-tiles.php:309
|
4227 |
#: includes/elementor/modules/query-control/controls/group-control-query.php:356
|
4228 |
#: includes/elementor/widgets/gallery.php:282
|
4229 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:798
|
4230 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:428
|
4231 |
#: includes/elementor/widgets/recent-posts-masonry.php:524
|
4232 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:419
|
4233 |
#: includes/elementor/widgets/recent-posts-tiles.php:321
|
4472 |
#: includes/elementor/widgets/theme-elements/logo.php:585
|
4473 |
#: includes/elementor/widgets/theme-elements/menu.php:530
|
4474 |
#: includes/elementor/widgets/theme-elements/menu.php:969
|
4475 |
+
#: includes/elementor/widgets/theme-elements/menu.php:1328
|
4476 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:869
|
4477 |
#: includes/elementor/widgets/theme-elements/search.php:318
|
4478 |
#: includes/elementor/widgets/theme-elements/search.php:428
|
4479 |
#: includes/elementor/widgets/theme-elements/site-title.php:334
|
4502 |
#: includes/elementor/widgets/modern-button.php:900
|
4503 |
#: includes/elementor/widgets/modern-button.php:999
|
4504 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:957
|
4505 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:552
|
4506 |
#: includes/elementor/widgets/recent-posts-masonry.php:630
|
4507 |
#: includes/elementor/widgets/recent-posts-timeline.php:577
|
4508 |
#: includes/elementor/widgets/recent-products.php:522
|
4517 |
#: includes/elementor/widgets/theme-elements/menu.php:754
|
4518 |
#: includes/elementor/widgets/theme-elements/menu.php:851
|
4519 |
#: includes/elementor/widgets/theme-elements/menu.php:929
|
4520 |
+
#: includes/elementor/widgets/theme-elements/menu.php:1210
|
4521 |
+
#: includes/elementor/widgets/theme-elements/menu.php:1288
|
4522 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:484
|
4523 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:548
|
4524 |
#: includes/elementor/widgets/theme-elements/search.php:363
|
4525 |
#, fuzzy
|
4526 |
msgid "Border Radius"
|
4562 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1145
|
4563 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1332
|
4564 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1447
|
4565 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1566
|
4566 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1697
|
4567 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1820
|
4568 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:598
|
4569 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:702
|
4570 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:885
|
4571 |
#: includes/elementor/widgets/recent-posts-masonry.php:647
|
4572 |
#: includes/elementor/widgets/recent-posts-masonry.php:714
|
4573 |
#: includes/elementor/widgets/recent-posts-masonry.php:818
|
4607 |
#: includes/elementor/widgets/theme-elements/menu.php:680
|
4608 |
#: includes/elementor/widgets/theme-elements/menu.php:796
|
4609 |
#: includes/elementor/widgets/theme-elements/menu.php:1017
|
4610 |
+
#: includes/elementor/widgets/theme-elements/menu.php:1156
|
4611 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:246
|
4612 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:353
|
4613 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:444
|
4614 |
#: includes/elements/button.php:118 includes/elements/text.php:738
|
4615 |
#: includes/general-hooks.php:754 includes/general-hooks.php:1159
|
4616 |
msgid "Normal"
|
4623 |
#: includes/elementor/widgets/accordion.php:458
|
4624 |
#: includes/elementor/widgets/accordion.php:496
|
4625 |
#: includes/elementor/widgets/image.php:653
|
4626 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:568
|
4627 |
#: includes/elementor/widgets/tabs.php:259
|
4628 |
+
#: includes/elementor/widgets/theme-elements/shopping-cart.php:280
|
4629 |
+
#: includes/elementor/widgets/theme-elements/shopping-cart.php:470
|
4630 |
msgid "Box Shadow"
|
4631 |
msgstr ""
|
4632 |
|
4649 |
|
4650 |
#: includes/elementor/widgets/accordion.php:357
|
4651 |
#: includes/elementor/widgets/tabs.php:196
|
4652 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:578
|
4653 |
#, fuzzy
|
4654 |
msgid "Pointer"
|
4655 |
msgstr "وسط"
|
4658 |
#: includes/elementor/widgets/contact-box.php:322
|
4659 |
#: includes/elementor/widgets/gmap.php:203
|
4660 |
#: includes/elementor/widgets/tabs.php:197
|
4661 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:579
|
4662 |
#: includes/elements/contact-box.php:276 includes/elements/gmap.php:169
|
4663 |
msgid "Zoom"
|
4664 |
msgstr "بزرگنمایی"
|
4665 |
|
4666 |
#: includes/elementor/widgets/accordion.php:359
|
4667 |
#: includes/elementor/widgets/tabs.php:198
|
4668 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:580
|
4669 |
msgid "Help"
|
4670 |
msgstr ""
|
4671 |
|
4709 |
#: includes/elementor/widgets/theme-elements/breadcrumbs.php:475
|
4710 |
#: includes/elementor/widgets/theme-elements/menu.php:517
|
4711 |
#: includes/elementor/widgets/theme-elements/menu.php:956
|
4712 |
+
#: includes/elementor/widgets/theme-elements/menu.php:1315
|
4713 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:461
|
4714 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:526
|
4715 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:640
|
4716 |
#: includes/elementor/widgets/theme-elements/search.php:330
|
4717 |
#: includes/elementor/widgets/theme-elements/search.php:416
|
4718 |
+
#: includes/elementor/widgets/theme-elements/shopping-cart.php:336
|
4719 |
+
#: includes/elementor/widgets/theme-elements/shopping-cart.php:438
|
4720 |
+
#: includes/elementor/widgets/theme-elements/shopping-cart.php:503
|
4721 |
#: includes/elementor/widgets/touch-slider.php:314
|
4722 |
#: includes/elementor/widgets/touch-slider.php:369
|
4723 |
#: includes/elementor/widgets/touch-slider.php:427
|
4784 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1267
|
4785 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1454
|
4786 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1474
|
4787 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1845
|
4788 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1901
|
4789 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:608
|
4790 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:634
|
4791 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:712
|
4792 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:738
|
4793 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:824
|
4794 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:892
|
4795 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:912
|
4796 |
#: includes/elementor/widgets/recent-posts-masonry.php:724
|
4797 |
#: includes/elementor/widgets/recent-posts-masonry.php:750
|
4798 |
#: includes/elementor/widgets/recent-posts-masonry.php:828
|
4857 |
#: includes/elementor/widgets/theme-elements/menu.php:882
|
4858 |
#: includes/elementor/widgets/theme-elements/menu.php:1024
|
4859 |
#: includes/elementor/widgets/theme-elements/menu.php:1045
|
4860 |
+
#: includes/elementor/widgets/theme-elements/menu.php:1163
|
4861 |
+
#: includes/elementor/widgets/theme-elements/menu.php:1241
|
4862 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:253
|
4863 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:300
|
4864 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:360
|
4865 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:397
|
|
|
4866 |
#: includes/elementor/widgets/theme-elements/site-title.php:303
|
4867 |
#: includes/elementor/widgets/theme-elements/site-title.php:369
|
4868 |
#: includes/elementor/widgets/theme-elements/site-title.php:435
|
4944 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:708
|
4945 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:723
|
4946 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:760
|
4947 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:128
|
4948 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:140
|
4949 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:182
|
4950 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:194
|
4951 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:207
|
4952 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:222
|
4953 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:237
|
4954 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:252
|
4955 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:264
|
4956 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:277
|
4957 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:319
|
4958 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:371
|
4959 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:383
|
4960 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:395
|
4961 |
#: includes/elementor/widgets/recent-posts-masonry.php:179
|
4962 |
#: includes/elementor/widgets/recent-posts-masonry.php:192
|
4963 |
#: includes/elementor/widgets/recent-posts-masonry.php:207
|
5090 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:709
|
5091 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:724
|
5092 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:761
|
5093 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:129
|
5094 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:141
|
5095 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:183
|
5096 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:195
|
5097 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:208
|
5098 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:223
|
5099 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:238
|
5100 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:253
|
5101 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:265
|
5102 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:278
|
5103 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:320
|
5104 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:372
|
5105 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:384
|
5106 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:396
|
5107 |
#: includes/elementor/widgets/recent-posts-masonry.php:180
|
5108 |
#: includes/elementor/widgets/recent-posts-masonry.php:193
|
5109 |
#: includes/elementor/widgets/recent-posts-masonry.php:208
|
5258 |
|
5259 |
#: includes/elementor/widgets/before-after.php:155
|
5260 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:850
|
5261 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:468
|
5262 |
#: includes/elementor/widgets/recent-posts-masonry.php:564
|
5263 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:459
|
5264 |
#: includes/elementor/widgets/recent-posts-tiles.php:361
|
5314 |
#: includes/elementor/widgets/text.php:278
|
5315 |
#: includes/elementor/widgets/text.php:1012
|
5316 |
#: includes/elementor/widgets/theme-elements/modern-search.php:99
|
5317 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:434
|
5318 |
#: includes/elementor/widgets/theme-elements/search.php:120
|
5319 |
#: includes/elementor/widgets/theme-elements/search.php:381
|
5320 |
#: includes/elements/button.php:16 includes/elements/button.php:47
|
5432 |
|
5433 |
#: includes/elementor/widgets/button.php:230
|
5434 |
#: includes/elementor/widgets/carousel-navigation.php:164
|
5435 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1651
|
5436 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1764
|
5437 |
#: includes/elementor/widgets/recent-posts-masonry.php:1150
|
5438 |
#: includes/elementor/widgets/theme-elements/current-time.php:131
|
5439 |
#, fuzzy
|
5451 |
#: includes/elementor/widgets/modern-button.php:958
|
5452 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1340
|
5453 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1370
|
5454 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1574
|
5455 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1612
|
5456 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1705
|
5457 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1743
|
5458 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1828
|
5459 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1884
|
5460 |
#: includes/elementor/widgets/recent-posts-masonry.php:1091
|
5461 |
#: includes/elementor/widgets/recent-posts-masonry.php:1129
|
5462 |
#: includes/elementor/widgets/recent-posts-masonry.php:1226
|
5475 |
#: includes/elementor/widgets/theme-elements/menu.php:737
|
5476 |
#: includes/elementor/widgets/theme-elements/menu.php:841
|
5477 |
#: includes/elementor/widgets/theme-elements/menu.php:920
|
5478 |
+
#: includes/elementor/widgets/theme-elements/menu.php:1201
|
5479 |
+
#: includes/elementor/widgets/theme-elements/menu.php:1279
|
5480 |
+
#: includes/elementor/widgets/theme-elements/menu.php:1417
|
5481 |
+
#: includes/elementor/widgets/theme-elements/shopping-cart.php:249
|
5482 |
+
#: includes/elementor/widgets/theme-elements/shopping-cart.php:452
|
5483 |
#, fuzzy
|
5484 |
msgid "Background"
|
5485 |
msgstr "اندازه پس زمینه"
|
5495 |
#: includes/elementor/widgets/text.php:116
|
5496 |
#: includes/elementor/widgets/text.php:126
|
5497 |
#: includes/elementor/widgets/theme-elements/modern-search.php:106
|
5498 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:236
|
5499 |
#: includes/elementor/widgets/theme-elements/search.php:106
|
5500 |
#: includes/elementor/widgets/theme-elements/search.php:119
|
5501 |
#: includes/elementor/widgets/theme-elements/search.php:131
|
5544 |
#: includes/elementor/widgets/button.php:390
|
5545 |
#: includes/elementor/widgets/text.php:429
|
5546 |
#: includes/elementor/widgets/text.php:1150
|
|
|
5547 |
#, fuzzy
|
5548 |
msgid "Icon Size"
|
5549 |
msgstr "اندازه شکلک"
|
5569 |
#: includes/elementor/widgets/theme-elements/breadcrumbs.php:287
|
5570 |
#: includes/elementor/widgets/theme-elements/current-time.php:163
|
5571 |
#: includes/elementor/widgets/theme-elements/modern-search.php:118
|
5572 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:342
|
5573 |
#: includes/elements/custom-list.php:58 includes/elements/image.php:302
|
5574 |
msgid "Text"
|
5575 |
msgstr ""
|
5589 |
#: includes/elementor/widgets/modern-button.php:646
|
5590 |
#: includes/elementor/widgets/modern-button.php:720
|
5591 |
#: includes/elementor/widgets/modern-button.php:758
|
5592 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1857
|
5593 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1913
|
5594 |
#: includes/elementor/widgets/recent-posts-masonry.php:1255
|
5595 |
#: includes/elementor/widgets/recent-posts-masonry.php:1311
|
5596 |
#: includes/elementor/widgets/text.php:746
|
5642 |
|
5643 |
#: includes/elementor/widgets/carousel-navigation.php:128
|
5644 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:887
|
5645 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:502
|
5646 |
#: includes/elementor/widgets/recent-posts-masonry.php:598
|
5647 |
#: includes/elementor/widgets/recent-posts-tiles.php:395
|
5648 |
#: includes/elementor/widgets/recent-posts-timeline.php:527
|
5693 |
#: includes/elementor/widgets/text.php:1023
|
5694 |
#: includes/elementor/widgets/theme-elements/breadcrumbs.php:268
|
5695 |
#: includes/elementor/widgets/theme-elements/breadcrumbs.php:400
|
5696 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:264
|
5697 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:311
|
5698 |
#: includes/elementor/widgets/theme-elements/search.php:213
|
5699 |
#: includes/elements/image.php:87
|
5700 |
msgid "Size"
|
5987 |
msgstr ""
|
5988 |
|
5989 |
#: includes/elementor/widgets/contact-form.php:920
|
5990 |
+
#: includes/elementor/widgets/theme-elements/shopping-cart.php:354
|
5991 |
msgid "Dropdown"
|
5992 |
msgstr ""
|
5993 |
|
6414 |
|
6415 |
#: includes/elementor/widgets/gallery.php:188
|
6416 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:919
|
6417 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:534
|
6418 |
#: includes/elementor/widgets/recent-posts-timeline.php:559
|
6419 |
#: includes/elementor/widgets/recent-products.php:504
|
6420 |
#: includes/elements/gallery.php:292
|
6692 |
#: includes/elementor/widgets/image.php:418
|
6693 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:742
|
6694 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:908
|
6695 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:523
|
6696 |
#: includes/elementor/widgets/recent-posts-masonry.php:619
|
6697 |
#: includes/elementor/widgets/recent-posts-timeline.php:548
|
6698 |
#: includes/elementor/widgets/recent-products.php:493
|
6806 |
|
6807 |
#: includes/elementor/widgets/image.php:343
|
6808 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:381
|
6809 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:138
|
6810 |
#: includes/elementor/widgets/recent-posts-masonry.php:205
|
6811 |
#: includes/elementor/widgets/recent-posts-timeline.php:192
|
6812 |
#: includes/elementor/widgets/recent-products.php:224
|
6818 |
|
6819 |
#: includes/elementor/widgets/image.php:355
|
6820 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:396
|
6821 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:153
|
6822 |
#: includes/elementor/widgets/recent-posts-masonry.php:220
|
6823 |
#: includes/elementor/widgets/recent-posts-timeline.php:207
|
6824 |
#: includes/elementor/widgets/recent-products.php:239
|
6829 |
|
6830 |
#: includes/elementor/widgets/image.php:370
|
6831 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:411
|
6832 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:168
|
6833 |
#: includes/elementor/widgets/recent-posts-masonry.php:235
|
6834 |
#: includes/elementor/widgets/recent-posts-timeline.php:222
|
6835 |
#: includes/elementor/widgets/recent-products.php:254
|
6863 |
|
6864 |
#: includes/elementor/widgets/image.php:662
|
6865 |
#: includes/elementor/widgets/quote.php:186
|
6866 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1600
|
6867 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1731
|
6868 |
#: includes/elementor/widgets/recent-posts-masonry.php:1117
|
6869 |
#: includes/elementor/widgets/theme-elements/breadcrumbs.php:325
|
6870 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:607
|
6871 |
+
#: includes/elementor/widgets/theme-elements/shopping-cart.php:269
|
6872 |
#, fuzzy
|
6873 |
msgid "Text Color"
|
6874 |
msgstr "شمای رنگ متن"
|
7064 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1293
|
7065 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1415
|
7066 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1510
|
7067 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:664
|
7068 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:768
|
7069 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:850
|
7070 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:936
|
7071 |
#: includes/elementor/widgets/recent-posts-masonry.php:780
|
7072 |
#: includes/elementor/widgets/recent-posts-masonry.php:884
|
7073 |
#: includes/elementor/widgets/recent-posts-masonry.php:966
|
7100 |
|
7101 |
#: includes/elementor/widgets/recent-comments.php:331
|
7102 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1230
|
7103 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:787
|
7104 |
#: includes/elementor/widgets/recent-posts-masonry.php:903
|
7105 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:677
|
7106 |
#: includes/elementor/widgets/recent-posts-tiles.php:618
|
7325 |
msgstr "تاخیر بین حرکت های رو به جلو را بر حسب ثانیه مشخص می کند."
|
7326 |
|
7327 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:329
|
7328 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:117
|
7329 |
#: includes/elementor/widgets/recent-posts-masonry.php:168
|
7330 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:291
|
7331 |
#: includes/elementor/widgets/recent-posts-tiles.php:193
|
7338 |
msgstr "نوع نمایش"
|
7339 |
|
7340 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:337
|
7341 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:125
|
7342 |
#: includes/elementor/widgets/recent-posts-masonry.php:176
|
7343 |
#: includes/elementor/widgets/recent-posts-timeline.php:163
|
7344 |
#: includes/elementor/widgets/recent-products.php:209
|
7359 |
msgstr ""
|
7360 |
|
7361 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:423
|
7362 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:180
|
7363 |
#: includes/elementor/widgets/recent-posts-masonry.php:247
|
7364 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:299
|
7365 |
#: includes/elementor/widgets/recent-posts-tiles.php:201
|
7377 |
msgstr "لینک عنوان"
|
7378 |
|
7379 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:447
|
7380 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:192
|
7381 |
#: includes/elementor/widgets/recent-posts-masonry.php:259
|
7382 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:311
|
7383 |
#: includes/elementor/widgets/recent-posts-tiles.php:213
|
7399 |
msgstr "موقعیت تصویر یا شکلک"
|
7400 |
|
7401 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:488
|
7402 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:220
|
7403 |
#: includes/elementor/widgets/recent-posts-masonry.php:287
|
7404 |
#: includes/elementor/widgets/recent-products.php:278
|
7405 |
#: includes/elementor/widgets/theme-elements/modern-search.php:197
|
7415 |
msgstr "نمایش نویسنده یا ادامه نوشته"
|
7416 |
|
7417 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:515
|
7418 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:235
|
7419 |
#: includes/elementor/widgets/recent-posts-masonry.php:302
|
7420 |
#: includes/elements/recent-posts-grid-carousel.php:363
|
7421 |
#, fuzzy
|
7423 |
msgstr "نمایش تصویر"
|
7424 |
|
7425 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:530
|
7426 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:204
|
7427 |
#: includes/elementor/widgets/recent-posts-masonry.php:396
|
7428 |
#: includes/elementor/widgets/recent-posts-timeline.php:325
|
7429 |
#, fuzzy
|
7431 |
msgstr "نمایش نویسنده یا ادامه نوشته"
|
7432 |
|
7433 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:531
|
7434 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:205
|
7435 |
#: includes/elementor/widgets/recent-posts-masonry.php:397
|
7436 |
#: includes/elementor/widgets/recent-posts-timeline.php:326
|
7437 |
#, fuzzy
|
7446 |
msgstr "نمایش تاریخ نوشته"
|
7447 |
|
7448 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:555
|
7449 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:250
|
7450 |
#, fuzzy
|
7451 |
msgid "Display Comments Number"
|
7452 |
msgstr "نمایش زبانه دیدگاه ها"
|
7453 |
|
7454 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:567
|
7455 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:262
|
7456 |
#: includes/elementor/widgets/recent-posts-masonry.php:329
|
7457 |
#: includes/elementor/widgets/recent-posts-timeline.php:258
|
7458 |
#: includes/elements/recent-posts-grid-carousel.php:380
|
7462 |
msgstr "نمایش دکمه لایک"
|
7463 |
|
7464 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:579
|
7465 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:274
|
7466 |
#: includes/elementor/widgets/recent-posts-masonry.php:353
|
7467 |
#: includes/elementor/widgets/recent-posts-timeline.php:282
|
7468 |
#: includes/elements/popular-posts-widget.php:146
|
7472 |
msgstr "نمایش خلاصه"
|
7473 |
|
7474 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:580
|
7475 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:275
|
7476 |
#: includes/elementor/widgets/recent-posts-masonry.php:354
|
7477 |
#: includes/elementor/widgets/recent-posts-timeline.php:283
|
7478 |
#: includes/elements/popular-posts-widget.php:147
|
7482 |
msgstr "برای نمایش خلاصه نوشته به جای محتوای کامل این گزینه را فعال کنید."
|
7483 |
|
7484 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:592
|
7485 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:287
|
7486 |
#: includes/elementor/widgets/recent-posts-masonry.php:366
|
7487 |
#: includes/elementor/widgets/recent-posts-timeline.php:295
|
7488 |
#: includes/elements/popular-posts-widget.php:175
|
7495 |
msgstr "طول خلاصه"
|
7496 |
|
7497 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:593
|
7498 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:288
|
7499 |
#: includes/elementor/widgets/recent-posts-masonry.php:367
|
7500 |
#: includes/elementor/widgets/recent-posts-timeline.php:296
|
7501 |
#: includes/elements/recent-posts-grid-carousel.php:426
|
7506 |
msgstr "خلاصه نوشته را برحسب کاراکتر مشخص می کند."
|
7507 |
|
7508 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:605
|
7509 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:300
|
7510 |
#: includes/elementor/widgets/recent-posts-masonry.php:379
|
7511 |
#: includes/elementor/widgets/recent-posts-timeline.php:308
|
7512 |
#: includes/elements/recent-posts-grid-carousel.php:439
|
7517 |
msgstr "نمایش نویسنده یا ادامه نوشته"
|
7518 |
|
7519 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:607
|
7520 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:302
|
7521 |
#: includes/elementor/widgets/recent-posts-masonry.php:381
|
7522 |
#: includes/elementor/widgets/recent-posts-timeline.php:310
|
7523 |
#: includes/elements/recent-posts-grid-carousel.php:440
|
7528 |
msgstr "مشخص می کند نویسنده یا بیشتر بخوانید در هر نوشته نشان داده شود یا خیر."
|
7529 |
|
7530 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:611
|
7531 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1810
|
7532 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:306
|
7533 |
#: includes/elementor/widgets/recent-posts-masonry.php:385
|
7534 |
#: includes/elementor/widgets/recent-posts-masonry.php:1208
|
7535 |
#: includes/elementor/widgets/recent-posts-timeline.php:314
|
7542 |
msgstr "بیشتر بخوانید"
|
7543 |
|
7544 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:622
|
7545 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:316
|
7546 |
#: includes/elementor/widgets/recent-posts-masonry.php:412
|
7547 |
#: includes/elementor/widgets/recent-posts-timeline.php:341
|
7548 |
#, fuzzy
|
7550 |
msgstr "نمایش نویسنده یا ادامه نوشته"
|
7551 |
|
7552 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:623
|
7553 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:317
|
7554 |
#: includes/elementor/widgets/recent-posts-masonry.php:413
|
7555 |
#: includes/elementor/widgets/recent-posts-timeline.php:342
|
7556 |
#, fuzzy
|
7563 |
msgstr "موقعیت تصویر یا شکلک"
|
7564 |
|
7565 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:660
|
7566 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:338
|
7567 |
#: includes/elementor/widgets/recent-posts-masonry.php:434
|
7568 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:329
|
7569 |
#: includes/elementor/widgets/recent-posts-tiles.php:231
|
7654 |
msgstr ""
|
7655 |
|
7656 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:679
|
7657 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:345
|
7658 |
#: includes/elementor/widgets/recent-posts-masonry.php:441
|
7659 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:336
|
7660 |
#: includes/elementor/widgets/recent-posts-tiles.php:238
|
7673 |
msgstr "دسته ها"
|
7674 |
|
7675 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:680
|
7676 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:346
|
7677 |
#: includes/elementor/widgets/recent-posts-masonry.php:442
|
7678 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:337
|
7679 |
#: includes/elementor/widgets/recent-posts-tiles.php:239
|
7691 |
msgstr "دسته ای که می خواهید نوشته ها از آن نشان داده شوند را مشخص کنید."
|
7692 |
|
7693 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:694
|
7694 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:357
|
7695 |
#: includes/elementor/widgets/recent-posts-masonry.php:453
|
7696 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:348
|
7697 |
#: includes/elementor/widgets/recent-posts-tiles.php:250
|
7708 |
msgstr "تعداد نوشته ها برای نمایش"
|
7709 |
|
7710 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:706
|
7711 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:369
|
7712 |
#: includes/elementor/widgets/recent-posts-masonry.php:465
|
7713 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:360
|
7714 |
#: includes/elementor/widgets/recent-posts-tiles.php:262
|
7758 |
msgstr "فایل ویدیو"
|
7759 |
|
7760 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:758
|
7761 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:393
|
7762 |
#: includes/elementor/widgets/recent-posts-masonry.php:489
|
7763 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:384
|
7764 |
#: includes/elementor/widgets/recent-posts-tiles.php:286
|
7775 |
msgstr "نادیده گرفتن نوشته های سبک نقل قول و لینک"
|
7776 |
|
7777 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:775
|
7778 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:408
|
7779 |
#: includes/elementor/widgets/recent-posts-masonry.php:504
|
7780 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:399
|
7781 |
#: includes/elementor/widgets/recent-posts-tiles.php:301
|
7797 |
msgstr "مرتب سازی بر اساس"
|
7798 |
|
7799 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:784
|
7800 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:417
|
7801 |
#: includes/elementor/widgets/recent-posts-masonry.php:513
|
7802 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:408
|
7803 |
#: includes/elementor/widgets/recent-posts-tiles.php:310
|
7819 |
msgstr "دیدگاه ها"
|
7820 |
|
7821 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:785
|
7822 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:418
|
7823 |
#: includes/elementor/widgets/recent-posts-masonry.php:514
|
7824 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:409
|
7825 |
#: includes/elementor/widgets/recent-posts-tiles.php:311
|
7841 |
msgstr "تاریخ ویرایش"
|
7842 |
|
7843 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:787
|
7844 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:420
|
7845 |
#: includes/elementor/widgets/recent-posts-masonry.php:516
|
7846 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:411
|
7847 |
#: includes/elementor/widgets/recent-posts-tiles.php:313
|
7861 |
msgstr "افزودن متای نوشته"
|
7862 |
|
7863 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:802
|
7864 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:432
|
7865 |
#: includes/elementor/widgets/recent-posts-masonry.php:528
|
7866 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:423
|
7867 |
#: includes/elementor/widgets/recent-posts-tiles.php:325
|
7883 |
msgstr "نزولی"
|
7884 |
|
7885 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:803
|
7886 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:433
|
7887 |
#: includes/elementor/widgets/recent-posts-masonry.php:529
|
7888 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:424
|
7889 |
#: includes/elementor/widgets/recent-posts-tiles.php:326
|
7905 |
msgstr "صعودی"
|
7906 |
|
7907 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:814
|
7908 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:441
|
7909 |
#: includes/elementor/widgets/recent-posts-masonry.php:537
|
7910 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:432
|
7911 |
#: includes/elementor/widgets/recent-posts-tiles.php:334
|
7921 |
msgstr "شامل شدن این نوشته ها"
|
7922 |
|
7923 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:815
|
7924 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:442
|
7925 |
#: includes/elementor/widgets/recent-posts-masonry.php:538
|
7926 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:433
|
7927 |
#: includes/elementor/widgets/recent-posts-tiles.php:335
|
7939 |
msgstr ""
|
7940 |
|
7941 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:826
|
7942 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:450
|
7943 |
#: includes/elementor/widgets/recent-posts-masonry.php:546
|
7944 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:441
|
7945 |
#: includes/elementor/widgets/recent-posts-tiles.php:343
|
7956 |
msgstr "شامل شدن این نوشته ها"
|
7957 |
|
7958 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:827
|
7959 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:451
|
7960 |
#: includes/elementor/widgets/recent-posts-masonry.php:547
|
7961 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:442
|
7962 |
#: includes/elementor/widgets/recent-posts-tiles.php:344
|
7974 |
msgstr ""
|
7975 |
|
7976 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:838
|
7977 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:459
|
7978 |
#: includes/elementor/widgets/recent-posts-masonry.php:555
|
7979 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:450
|
7980 |
#: includes/elementor/widgets/recent-posts-tiles.php:352
|
7990 |
msgstr "نادیده گرفتن این نوشته ها"
|
7991 |
|
7992 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:839
|
7993 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:460
|
7994 |
#: includes/elementor/widgets/recent-posts-masonry.php:556
|
7995 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:451
|
7996 |
#: includes/elementor/widgets/recent-posts-tiles.php:353
|
8008 |
msgstr ""
|
8009 |
|
8010 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:851
|
8011 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:469
|
8012 |
#: includes/elementor/widgets/recent-posts-masonry.php:565
|
8013 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:460
|
8014 |
#: includes/elementor/widgets/recent-posts-tiles.php:362
|
8025 |
msgstr "تعداد نوشته هایی که باید از آن ها عبور کرد یا آن ها را نادیده گرفت."
|
8026 |
|
8027 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:868
|
8028 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:483
|
8029 |
#: includes/elementor/widgets/recent-posts-masonry.php:579
|
8030 |
#: includes/elementor/widgets/recent-posts-tiles.php:376
|
8031 |
#: includes/elementor/widgets/recent-posts-timeline.php:508
|
8034 |
msgstr "صفحه بندی"
|
8035 |
|
8036 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:875
|
8037 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:490
|
8038 |
#: includes/elementor/widgets/recent-posts-masonry.php:586
|
8039 |
#: includes/elementor/widgets/recent-posts-tiles.php:383
|
8040 |
#: includes/elementor/widgets/recent-posts-timeline.php:515
|
8048 |
msgstr "بیشتر بخوانید"
|
8049 |
|
8050 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:883
|
8051 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:498
|
8052 |
#: includes/elementor/widgets/recent-posts-masonry.php:594
|
8053 |
#: includes/elementor/widgets/recent-posts-tiles.php:391
|
8054 |
#: includes/elementor/widgets/recent-posts-timeline.php:523
|
8061 |
msgstr ""
|
8062 |
|
8063 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:891
|
8064 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:506
|
8065 |
#: includes/elementor/widgets/recent-posts-masonry.php:602
|
8066 |
#: includes/elementor/widgets/recent-posts-tiles.php:399
|
8067 |
#: includes/elementor/widgets/recent-posts-timeline.php:531
|
8074 |
msgstr ""
|
8075 |
|
8076 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:923
|
8077 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:538
|
8078 |
#: includes/elementor/widgets/recent-posts-timeline.php:563
|
8079 |
#: includes/elementor/widgets/recent-products.php:508
|
8080 |
#: includes/elements/gallery.php:300
|
8086 |
msgstr "افقی 4:3"
|
8087 |
|
8088 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:924
|
8089 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:539
|
8090 |
#: includes/elementor/widgets/recent-posts-timeline.php:564
|
8091 |
#: includes/elementor/widgets/recent-products.php:509
|
8092 |
#: includes/elements/gallery.php:301
|
8098 |
msgstr "افقی 16:9"
|
8099 |
|
8100 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:925
|
8101 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:540
|
8102 |
#: includes/elementor/widgets/recent-posts-timeline.php:565
|
8103 |
#: includes/elementor/widgets/recent-products.php:510
|
8104 |
#: includes/elements/gallery.php:302
|
8110 |
msgstr "مربع 1:1"
|
8111 |
|
8112 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:926
|
8113 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:541
|
8114 |
#: includes/elementor/widgets/recent-posts-timeline.php:566
|
8115 |
#: includes/elementor/widgets/recent-products.php:511
|
8116 |
#: includes/elements/gallery.php:303
|
8127 |
msgstr "نسبت ابعاد تصویر"
|
8128 |
|
8129 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1132
|
8130 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:689
|
8131 |
#: includes/elementor/widgets/recent-posts-masonry.php:805
|
8132 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:579
|
8133 |
#: includes/elementor/widgets/recent-posts-tiles.php:520
|
8137 |
msgstr "اطلاعات"
|
8138 |
|
8139 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1256
|
8140 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:813
|
8141 |
#: includes/elementor/widgets/recent-posts-masonry.php:929
|
8142 |
#: includes/elementor/widgets/recent-posts-timeline.php:826
|
8143 |
#, fuzzy
|
8149 |
msgstr ""
|
8150 |
|
8151 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1437
|
8152 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:875
|
8153 |
#: includes/elementor/widgets/recent-posts-masonry.php:991
|
8154 |
#: includes/elementor/widgets/recent-posts-timeline.php:888
|
8155 |
msgid "Meta"
|
8159 |
msgid "Padding for meta wrapper"
|
8160 |
msgstr ""
|
8161 |
|
8162 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1540
|
8163 |
#: includes/elementor/widgets/recent-posts-masonry.php:1178
|
8164 |
#: includes/elementor/widgets/staff.php:862
|
8165 |
msgid "Padding for main wrapper"
|
8166 |
msgstr ""
|
8167 |
|
8168 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1552
|
8169 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1792
|
8170 |
#: includes/elementor/widgets/recent-posts-masonry.php:1190
|
8171 |
#: includes/elementor/widgets/staff.php:874
|
8172 |
msgid "Padding for content wrapper"
|
8173 |
msgstr ""
|
8174 |
|
8175 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1629
|
8176 |
+
#: includes/elementor/widgets/text.php:616
|
8177 |
+
#: includes/elementor/widgets/text.php:1537
|
8178 |
+
msgid "Transition duration"
|
8179 |
+
msgstr ""
|
8180 |
+
|
8181 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1684
|
8182 |
msgid "Flip Wrapper"
|
8183 |
msgstr ""
|
8184 |
|
8185 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1934
|
8186 |
#: includes/elementor/widgets/recent-posts-masonry.php:1332
|
8187 |
#, fuzzy
|
8188 |
msgid "Button Padding"
|
8189 |
msgstr "اندازه دکمه"
|
8190 |
|
8191 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:49
|
8192 |
#, fuzzy
|
8193 |
msgid "Land Style Posts"
|
8194 |
msgstr "[فلوکس] مطالب اخیر سبک زمین"
|
8195 |
|
8196 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:381
|
8197 |
#: includes/elementor/widgets/recent-posts-masonry.php:477
|
8198 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:372
|
8199 |
#: includes/elementor/widgets/recent-posts-tiles.php:274
|
8392 |
msgstr ""
|
8393 |
|
8394 |
#: includes/elementor/widgets/search.php:47
|
8395 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:1031
|
8396 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:1034
|
8397 |
#: includes/elements/search.php:14
|
8398 |
#, fuzzy
|
8399 |
msgid "Search"
|
8579 |
#: includes/elementor/widgets/staff.php:838
|
8580 |
#: includes/elementor/widgets/text.php:1429
|
8581 |
#: includes/elementor/widgets/theme-elements/menu.php:324
|
8582 |
+
#: includes/elementor/widgets/theme-elements/menu.php:1341
|
8583 |
#: includes/elements/text.php:118
|
8584 |
#, fuzzy
|
8585 |
msgid "Text Align"
|
8824 |
msgid "Icon background color"
|
8825 |
msgstr "رنگ پس زمینه شکلک"
|
8826 |
|
|
|
|
|
|
|
|
|
|
|
8827 |
#: includes/elementor/widgets/text.php:645 includes/elements/text.php:577
|
8828 |
#, fuzzy
|
8829 |
msgid "Default Aspect"
|
8922 |
|
8923 |
#: includes/elementor/widgets/theme-elements/breadcrumbs.php:253
|
8924 |
#: includes/elementor/widgets/theme-elements/breadcrumbs.php:385
|
|
|
8925 |
msgid "Icon Color"
|
8926 |
msgstr "رنگ شکلک"
|
8927 |
|
9194 |
msgid "Fullscreen Menu"
|
9195 |
msgstr ""
|
9196 |
|
9197 |
+
#: includes/elementor/widgets/theme-elements/menu.php:1370
|
9198 |
+
msgid "Main Menu Color"
|
9199 |
+
msgstr ""
|
9200 |
+
|
9201 |
+
#: includes/elementor/widgets/theme-elements/menu.php:1405
|
9202 |
+
msgid "Fullscreen Window"
|
9203 |
+
msgstr ""
|
9204 |
+
|
9205 |
+
#: includes/elementor/widgets/theme-elements/menu.php:1426
|
9206 |
#, fuzzy
|
9207 |
msgid "Close Button"
|
9208 |
msgstr "[فلوکس] دکمه"
|
9209 |
|
9210 |
+
#: includes/elementor/widgets/theme-elements/menu.php:1435
|
|
|
9211 |
#, fuzzy
|
9212 |
+
msgid "Close button outline color"
|
9213 |
+
msgstr "رنگ خط بیرونی شکلک"
|
9214 |
+
|
9215 |
+
#: includes/elementor/widgets/theme-elements/menu.php:1446
|
9216 |
+
msgid "Close button symbol color"
|
9217 |
+
msgstr ""
|
9218 |
+
|
9219 |
+
#: includes/elementor/widgets/theme-elements/menu.php:1459
|
9220 |
+
#, fuzzy
|
9221 |
+
msgid "Display Menu Title"
|
9222 |
+
msgstr "نمایش عنوان؟"
|
9223 |
+
|
9224 |
+
#: includes/elementor/widgets/theme-elements/menu.php:1461
|
9225 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:691
|
9226 |
+
#, fuzzy
|
9227 |
+
msgid "Show"
|
9228 |
+
msgstr "نمایش نقشه"
|
9229 |
+
|
9230 |
+
#: includes/elementor/widgets/theme-elements/menu.php:1462
|
9231 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:692
|
9232 |
+
msgid "Hide"
|
9233 |
+
msgstr ""
|
9234 |
+
|
9235 |
+
#: includes/elementor/widgets/theme-elements/menu.php:1469
|
9236 |
+
msgid "Menu Title Text"
|
9237 |
+
msgstr ""
|
9238 |
+
|
9239 |
+
#: includes/elementor/widgets/theme-elements/menu.php:1482
|
9240 |
+
msgid "Menu Title Typography"
|
9241 |
+
msgstr ""
|
9242 |
+
|
9243 |
+
#: includes/elementor/widgets/theme-elements/menu.php:1494
|
9244 |
+
msgid "Menu Title Color"
|
9245 |
+
msgstr ""
|
9246 |
|
9247 |
+
#: includes/elementor/widgets/theme-elements/menu.php:1521
|
9248 |
#, fuzzy
|
9249 |
msgid "There are no menus in your site."
|
9250 |
msgstr "آدرس ریشه سایت شما"
|
9255 |
msgstr "مدرن"
|
9256 |
|
9257 |
#: includes/elementor/widgets/theme-elements/modern-search.php:136
|
9258 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:598
|
9259 |
msgid "Fullscreen Search Input"
|
9260 |
msgstr ""
|
9261 |
|
9278 |
msgid "Display Fill Submit Button"
|
9279 |
msgstr "نمایش دکمه لایک"
|
9280 |
|
9281 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:210
|
9282 |
+
#, fuzzy
|
9283 |
+
msgid "Custom Placeholder Text"
|
9284 |
+
msgstr "رنگ سفارشی"
|
9285 |
+
|
9286 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:213
|
9287 |
+
msgid "Search ..."
|
9288 |
+
msgstr ""
|
9289 |
+
|
9290 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:220
|
9291 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:837
|
9292 |
+
msgid "Search Title"
|
9293 |
+
msgstr ""
|
9294 |
+
|
9295 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:223
|
9296 |
+
msgid "Type to Search"
|
9297 |
+
msgstr ""
|
9298 |
+
|
9299 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:574
|
9300 |
msgid "Cursor"
|
9301 |
msgstr ""
|
9302 |
|
9303 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:618
|
9304 |
+
msgid "Placeholder Text Color"
|
9305 |
+
msgstr ""
|
9306 |
+
|
9307 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:653
|
9308 |
#, fuzzy
|
9309 |
msgid "Border Size"
|
9310 |
msgstr "کادربندی شده"
|
9311 |
|
9312 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:689
|
9313 |
+
#, fuzzy
|
9314 |
+
msgid "Display Search Icon"
|
9315 |
+
msgstr "نمایش دکمه لایک"
|
9316 |
+
|
9317 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:701
|
9318 |
+
#, fuzzy
|
9319 |
+
msgid "Search Icon Size"
|
9320 |
+
msgstr "اندازه شکلک"
|
9321 |
+
|
9322 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:731
|
9323 |
+
#, fuzzy
|
9324 |
+
msgid "Search Icon Color"
|
9325 |
+
msgstr "رنگ شکلک"
|
9326 |
|
9327 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:751
|
9328 |
+
#, fuzzy
|
9329 |
+
msgid "Overlay Background"
|
9330 |
+
msgstr "فعالسازی پس زمینه"
|
9331 |
+
|
9332 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:765
|
9333 |
msgid "Fullscreen Close Button"
|
9334 |
msgstr ""
|
9335 |
|
9336 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:773
|
9337 |
#, fuzzy
|
9338 |
msgid "Top Position"
|
9339 |
msgstr "موقعیت"
|
9340 |
|
9341 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:802
|
9342 |
#, fuzzy
|
9343 |
msgid "Right Position"
|
9344 |
msgstr "موقعیت"
|
9345 |
|
9346 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:849
|
9347 |
+
#, fuzzy
|
9348 |
+
msgid "Title Color"
|
9349 |
+
msgstr "لینک عنوان"
|
9350 |
+
|
9351 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:947
|
9352 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:1006
|
9353 |
msgid "Search..."
|
9354 |
msgstr ""
|
9355 |
|
9426 |
msgid "Sub Total"
|
9427 |
msgstr ""
|
9428 |
|
9429 |
+
#: includes/elementor/widgets/theme-elements/shopping-cart.php:226
|
9430 |
+
msgid "Checkout Text"
|
9431 |
+
msgstr ""
|
9432 |
+
|
9433 |
+
#: includes/elementor/widgets/theme-elements/shopping-cart.php:228
|
9434 |
+
msgid "Checkout"
|
9435 |
+
msgstr ""
|
9436 |
+
|
9437 |
+
#: includes/elementor/widgets/theme-elements/shopping-cart.php:241
|
9438 |
msgid "Counter Bubble"
|
9439 |
msgstr ""
|
9440 |
|
9441 |
+
#: includes/elementor/widgets/theme-elements/shopping-cart.php:289
|
9442 |
+
#: includes/elementor/widgets/theme-elements/shopping-cart.php:362
|
9443 |
msgid "Position from Bottom"
|
9444 |
msgstr ""
|
9445 |
|
9446 |
+
#: includes/elementor/widgets/theme-elements/shopping-cart.php:312
|
9447 |
#, fuzzy
|
9448 |
msgid "Position from right"
|
9449 |
msgstr "متحرک سازی از راست"
|
9450 |
|
9451 |
+
#: includes/elementor/widgets/theme-elements/shopping-cart.php:390
|
9452 |
#, fuzzy
|
9453 |
msgid "Position from Left"
|
9454 |
msgstr "متحرک سازی از چپ"
|
9455 |
|
9456 |
+
#: includes/elementor/widgets/theme-elements/shopping-cart.php:485
|
9457 |
msgid "Item"
|
9458 |
msgstr ""
|
9459 |
|
9460 |
+
#: includes/elementor/widgets/theme-elements/shopping-cart.php:516
|
9461 |
#, fuzzy
|
9462 |
msgid "Title color"
|
9463 |
msgstr "لینک عنوان"
|
9464 |
|
9465 |
+
#: includes/elementor/widgets/theme-elements/shopping-cart.php:529
|
9466 |
msgid "Title Typography"
|
9467 |
msgstr ""
|
9468 |
|
9469 |
+
#: includes/elementor/widgets/theme-elements/shopping-cart.php:539
|
9470 |
#, fuzzy
|
9471 |
msgid "Price color"
|
9472 |
msgstr "رنگ شکلک"
|
9473 |
|
9474 |
+
#: includes/elementor/widgets/theme-elements/shopping-cart.php:551
|
9475 |
msgid "Price Typography"
|
9476 |
msgstr ""
|
9477 |
|
9632 |
msgid "The name which appears in about widget."
|
9633 |
msgstr "نامی که در ابزارک درباره ما نشان داده می شود."
|
9634 |
|
9635 |
+
#: includes/elements/about-widget.php:72 includes/general-hooks.php:2377
|
9636 |
msgid "Skills"
|
9637 |
msgstr "مهارت ها"
|
9638 |
|
12516 |
msgid "Hide Feedback Section"
|
12517 |
msgstr "افزودن بخش"
|
12518 |
|
12519 |
+
#: includes/general-hooks.php:2370
|
12520 |
msgid "Twitter"
|
12521 |
msgstr ""
|
12522 |
|
12523 |
+
#: includes/general-hooks.php:2371
|
12524 |
msgid "Facebook"
|
12525 |
msgstr ""
|
12526 |
|
12527 |
+
#: includes/general-hooks.php:2372
|
12528 |
msgid "Google Plus"
|
12529 |
msgstr ""
|
12530 |
|
12531 |
+
#: includes/general-hooks.php:2373
|
12532 |
msgid "Flickr"
|
12533 |
msgstr ""
|
12534 |
|
12535 |
+
#: includes/general-hooks.php:2374
|
12536 |
msgid "Delicious"
|
12537 |
msgstr ""
|
12538 |
|
12539 |
+
#: includes/general-hooks.php:2375
|
12540 |
msgid "Pinterest"
|
12541 |
msgstr ""
|
12542 |
|
12543 |
+
#: includes/general-hooks.php:2376
|
12544 |
msgid "GitHub"
|
12545 |
msgstr ""
|
12546 |
|
12547 |
+
#: includes/general-hooks.php:2548
|
12548 |
#, fuzzy
|
12549 |
msgid "Page Options"
|
12550 |
msgstr "تنظیمات طراحی"
|
12551 |
|
12552 |
+
#: includes/general-hooks.php:2556
|
12553 |
#, fuzzy
|
12554 |
msgid "Post Options"
|
12555 |
msgstr "تنظیمات نوشته صوتی"
|
12556 |
|
12557 |
+
#: includes/general-hooks.php:3031
|
12558 |
#, fuzzy
|
12559 |
msgid "Page %s"
|
12560 |
msgstr "برگه ها"
|
12804 |
msgstr ""
|
12805 |
|
12806 |
#. translators: playlist item title
|
12807 |
+
#: includes/general-hooks.php:3052
|
12808 |
msgctxt "playlist item title"
|
12809 |
msgid "“%s”"
|
12810 |
msgstr ""
|
12811 |
|
12812 |
#. translators: playlist item title
|
12813 |
+
#: includes/general-hooks.php:3077 includes/general-hooks.php:3082
|
12814 |
msgctxt "playlist item title"
|
12815 |
msgid "%s"
|
12816 |
msgstr ""
|
languages/auxin-elements.pot
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
# Averta Copyright (c) {2020}
|
2 |
msgid ""
|
3 |
msgstr ""
|
4 |
-
"Project-Id-Version: Phlox Core Elements 2.6.
|
5 |
"Report-Msgid-Bugs-To: http://averta.net/phlox/wordpress-theme/\n"
|
6 |
-
"POT-Creation-Date: 2020-09-
|
7 |
"MIME-Version: 1.0\n"
|
8 |
"Content-Type: text/plain; charset=utf-8\n"
|
9 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -1012,7 +1012,7 @@ msgstr ""
|
|
1012 |
|
1013 |
#: admin/includes/metaboxes/metabox-fields-general-header.php:202
|
1014 |
#: includes/elements/staff.php:207 includes/elements/text.php:105
|
1015 |
-
#: includes/general-hooks.php:
|
1016 |
msgid "Boxed"
|
1017 |
msgstr ""
|
1018 |
|
@@ -1056,7 +1056,7 @@ msgstr ""
|
|
1056 |
|
1057 |
#: admin/includes/metaboxes/metabox-fields-general-header.php:325
|
1058 |
#: includes/elementor/widgets/image.php:639
|
1059 |
-
#: includes/elementor/widgets/theme-elements/modern-search.php:
|
1060 |
msgid "Border Color"
|
1061 |
msgstr ""
|
1062 |
|
@@ -1196,8 +1196,8 @@ msgstr ""
|
|
1196 |
#: includes/elementor/widgets/modern-button.php:188
|
1197 |
#: includes/elementor/widgets/quote.php:169
|
1198 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:252
|
1199 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
1200 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
1201 |
#: includes/elementor/widgets/recent-posts-masonry.php:1159
|
1202 |
#: includes/elementor/widgets/recent-posts-timeline.php:130
|
1203 |
#: includes/elementor/widgets/staff.php:846
|
@@ -1209,7 +1209,7 @@ msgstr ""
|
|
1209 |
#: includes/elementor/widgets/theme-elements/current-time.php:139
|
1210 |
#: includes/elementor/widgets/theme-elements/logo.php:165
|
1211 |
#: includes/elementor/widgets/theme-elements/menu.php:332
|
1212 |
-
#: includes/elementor/widgets/theme-elements/menu.php:
|
1213 |
#: includes/elementor/widgets/theme-elements/shopping-cart.php:199
|
1214 |
#: includes/elementor/widgets/theme-elements/site-title.php:192
|
1215 |
#: includes/elements/quote.php:112
|
@@ -1234,8 +1234,8 @@ msgstr ""
|
|
1234 |
#: includes/elementor/widgets/modern-button.php:184
|
1235 |
#: includes/elementor/widgets/modern-button.php:806
|
1236 |
#: includes/elementor/widgets/quote.php:165
|
1237 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
1238 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
1239 |
#: includes/elementor/widgets/recent-posts-masonry.php:1155
|
1240 |
#: includes/elementor/widgets/recent-posts-timeline.php:134
|
1241 |
#: includes/elementor/widgets/staff.php:827
|
@@ -1251,7 +1251,7 @@ msgstr ""
|
|
1251 |
#: includes/elementor/widgets/theme-elements/logo.php:161
|
1252 |
#: includes/elementor/widgets/theme-elements/menu.php:281
|
1253 |
#: includes/elementor/widgets/theme-elements/menu.php:328
|
1254 |
-
#: includes/elementor/widgets/theme-elements/menu.php:
|
1255 |
#: includes/elementor/widgets/theme-elements/shopping-cart.php:195
|
1256 |
#: includes/elementor/widgets/theme-elements/site-title.php:188
|
1257 |
#: includes/elements/button.php:183 includes/elements/image.php:151
|
@@ -1399,7 +1399,7 @@ msgstr ""
|
|
1399 |
#: includes/elementor/widgets/tabs.php:195
|
1400 |
#: includes/elementor/widgets/text.php:1133
|
1401 |
#: includes/elementor/widgets/theme-elements/menu.php:999
|
1402 |
-
#: includes/elementor/widgets/theme-elements/modern-search.php:
|
1403 |
#: includes/elements/button.php:179 includes/elements/code.php:99
|
1404 |
#: includes/elements/gallery.php:120 includes/elements/quote.php:109
|
1405 |
#: includes/elements/recent-posts-tiles-carousel.php:298
|
@@ -1444,12 +1444,12 @@ msgstr ""
|
|
1444 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1171
|
1445 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1362
|
1446 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1467
|
1447 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
1448 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
1449 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
1450 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
1451 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
1452 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
1453 |
#: includes/elementor/widgets/recent-posts-masonry.php:670
|
1454 |
#: includes/elementor/widgets/recent-posts-masonry.php:740
|
1455 |
#: includes/elementor/widgets/recent-posts-masonry.php:844
|
@@ -1488,10 +1488,10 @@ msgstr ""
|
|
1488 |
#: includes/elementor/widgets/theme-elements/menu.php:729
|
1489 |
#: includes/elementor/widgets/theme-elements/menu.php:875
|
1490 |
#: includes/elementor/widgets/theme-elements/menu.php:1038
|
1491 |
-
#: includes/elementor/widgets/theme-elements/menu.php:
|
1492 |
-
#: includes/elementor/widgets/theme-elements/modern-search.php:
|
1493 |
-
#: includes/elementor/widgets/theme-elements/modern-search.php:
|
1494 |
-
#: includes/elementor/widgets/theme-elements/modern-search.php:
|
1495 |
msgid "Hover"
|
1496 |
msgstr ""
|
1497 |
|
@@ -2191,31 +2191,31 @@ msgstr ""
|
|
2191 |
msgid "Choose"
|
2192 |
msgstr ""
|
2193 |
|
2194 |
-
#: includes/classes/class-auxin-walker-nav-menu-back.php:
|
2195 |
msgid "Move"
|
2196 |
msgstr ""
|
2197 |
|
2198 |
-
#: includes/classes/class-auxin-walker-nav-menu-back.php:
|
2199 |
msgid "Up one"
|
2200 |
msgstr ""
|
2201 |
|
2202 |
-
#: includes/classes/class-auxin-walker-nav-menu-back.php:
|
2203 |
msgid "Down one"
|
2204 |
msgstr ""
|
2205 |
|
2206 |
-
#: includes/classes/class-auxin-walker-nav-menu-back.php:
|
2207 |
msgid "To the top"
|
2208 |
msgstr ""
|
2209 |
|
2210 |
-
#: includes/classes/class-auxin-walker-nav-menu-back.php:
|
2211 |
msgid "Original: %s"
|
2212 |
msgstr ""
|
2213 |
|
2214 |
-
#: includes/classes/class-auxin-walker-nav-menu-back.php:
|
2215 |
msgid "Remove"
|
2216 |
msgstr ""
|
2217 |
|
2218 |
-
#: includes/classes/class-auxin-walker-nav-menu-back.php:
|
2219 |
#: includes/classes/class-auxin-welcome.php:1313
|
2220 |
#: includes/classes/class-auxin-welcome.php:1341
|
2221 |
#: includes/classes/class-auxin-welcome.php:1436
|
@@ -2717,13 +2717,13 @@ msgstr ""
|
|
2717 |
|
2718 |
#: includes/classes/class-auxin-widget.php:112
|
2719 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:95
|
2720 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
2721 |
#: includes/elementor/widgets/recent-posts-masonry.php:95
|
2722 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:92
|
2723 |
#: includes/elementor/widgets/recent-posts-tiles.php:92
|
2724 |
#: includes/elementor/widgets/recent-posts-timeline.php:92
|
2725 |
#: includes/elementor/widgets/recent-products.php:101
|
2726 |
-
#: includes/elementor/widgets/theme-elements/modern-search.php:
|
2727 |
#: includes/elements/popular-posts-widget.php:16
|
2728 |
#: includes/elements/recent-posts-grid-carousel.php:16
|
2729 |
#: includes/elements/recent-posts-land-style.php:16
|
@@ -2952,8 +2952,8 @@ msgstr ""
|
|
2952 |
#: includes/elementor/widgets/modern-button.php:192
|
2953 |
#: includes/elementor/widgets/modern-button.php:807
|
2954 |
#: includes/elementor/widgets/quote.php:173
|
2955 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
2956 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
2957 |
#: includes/elementor/widgets/recent-posts-masonry.php:1163
|
2958 |
#: includes/elementor/widgets/recent-posts-timeline.php:138
|
2959 |
#: includes/elementor/widgets/staff.php:819
|
@@ -2969,7 +2969,7 @@ msgstr ""
|
|
2969 |
#: includes/elementor/widgets/theme-elements/logo.php:169
|
2970 |
#: includes/elementor/widgets/theme-elements/menu.php:282
|
2971 |
#: includes/elementor/widgets/theme-elements/menu.php:336
|
2972 |
-
#: includes/elementor/widgets/theme-elements/menu.php:
|
2973 |
#: includes/elementor/widgets/theme-elements/shopping-cart.php:203
|
2974 |
#: includes/elementor/widgets/theme-elements/site-title.php:196
|
2975 |
#: includes/elements/button.php:187 includes/elements/image.php:152
|
@@ -3020,7 +3020,7 @@ msgstr ""
|
|
3020 |
#: includes/elementor/widgets/theme-elements/logo.php:257
|
3021 |
#: includes/elementor/widgets/theme-elements/logo.php:515
|
3022 |
#: includes/elementor/widgets/theme-elements/logo.php:607
|
3023 |
-
#: includes/elementor/widgets/theme-elements/shopping-cart.php:
|
3024 |
msgid "Max Width"
|
3025 |
msgstr ""
|
3026 |
|
@@ -3144,7 +3144,7 @@ msgstr ""
|
|
3144 |
|
3145 |
#: includes/elementor/modules/dynamic-tags/author-name.php:18
|
3146 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:612
|
3147 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
3148 |
#: includes/elementor/widgets/recent-posts-masonry.php:386
|
3149 |
#: includes/elementor/widgets/recent-posts-timeline.php:315
|
3150 |
#: includes/elements/recent-posts-grid-carousel.php:448
|
@@ -3224,8 +3224,8 @@ msgstr ""
|
|
3224 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:235
|
3225 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:613
|
3226 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:879
|
3227 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
3228 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
3229 |
#: includes/elementor/widgets/recent-posts-masonry.php:387
|
3230 |
#: includes/elementor/widgets/recent-posts-masonry.php:590
|
3231 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:205
|
@@ -3392,8 +3392,8 @@ msgstr ""
|
|
3392 |
#: includes/elementor/widgets/recent-comments.php:171
|
3393 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:781
|
3394 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1028
|
3395 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
3396 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
3397 |
#: includes/elementor/widgets/recent-posts-masonry.php:510
|
3398 |
#: includes/elementor/widgets/recent-posts-masonry.php:701
|
3399 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:405
|
@@ -3685,7 +3685,7 @@ msgstr ""
|
|
3685 |
#: includes/elementor/modules/dynamic-tags/user-info.php:76
|
3686 |
#: includes/elementor/widgets/gallery.php:304
|
3687 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:782
|
3688 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
3689 |
#: includes/elementor/widgets/recent-posts-masonry.php:511
|
3690 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:406
|
3691 |
#: includes/elementor/widgets/recent-posts-tiles.php:308
|
@@ -3742,7 +3742,7 @@ msgstr ""
|
|
3742 |
#: includes/elementor/modules/query-control/controls/group-control-query.php:169
|
3743 |
#: includes/elementor/modules/query-control/controls/group-control-query.php:225
|
3744 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:786
|
3745 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
3746 |
#: includes/elementor/widgets/recent-posts-masonry.php:515
|
3747 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:410
|
3748 |
#: includes/elementor/widgets/recent-posts-tiles.php:312
|
@@ -3829,7 +3829,7 @@ msgstr ""
|
|
3829 |
#: includes/elementor/modules/query-control/controls/group-control-query.php:276
|
3830 |
#: includes/elementor/modules/query-control/controls/group-control-query.php:345
|
3831 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:779
|
3832 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
3833 |
#: includes/elementor/widgets/recent-posts-masonry.php:508
|
3834 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:403
|
3835 |
#: includes/elementor/widgets/recent-posts-tiles.php:305
|
@@ -3903,7 +3903,7 @@ msgstr ""
|
|
3903 |
#: includes/elementor/modules/query-control/controls/group-control-query.php:347
|
3904 |
#: includes/elementor/widgets/gallery.php:302
|
3905 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:780
|
3906 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
3907 |
#: includes/elementor/widgets/recent-posts-masonry.php:509
|
3908 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:404
|
3909 |
#: includes/elementor/widgets/recent-posts-tiles.php:306
|
@@ -3927,7 +3927,7 @@ msgstr ""
|
|
3927 |
|
3928 |
#: includes/elementor/modules/query-control/controls/group-control-query.php:348
|
3929 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:783
|
3930 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
3931 |
#: includes/elementor/widgets/recent-posts-masonry.php:512
|
3932 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:407
|
3933 |
#: includes/elementor/widgets/recent-posts-tiles.php:309
|
@@ -3951,7 +3951,7 @@ msgstr ""
|
|
3951 |
#: includes/elementor/modules/query-control/controls/group-control-query.php:356
|
3952 |
#: includes/elementor/widgets/gallery.php:282
|
3953 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:798
|
3954 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
3955 |
#: includes/elementor/widgets/recent-posts-masonry.php:524
|
3956 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:419
|
3957 |
#: includes/elementor/widgets/recent-posts-tiles.php:321
|
@@ -4181,7 +4181,8 @@ msgstr ""
|
|
4181 |
#: includes/elementor/widgets/theme-elements/logo.php:585
|
4182 |
#: includes/elementor/widgets/theme-elements/menu.php:530
|
4183 |
#: includes/elementor/widgets/theme-elements/menu.php:969
|
4184 |
-
#: includes/elementor/widgets/theme-elements/menu.php:
|
|
|
4185 |
#: includes/elementor/widgets/theme-elements/search.php:318
|
4186 |
#: includes/elementor/widgets/theme-elements/search.php:428
|
4187 |
#: includes/elementor/widgets/theme-elements/site-title.php:334
|
@@ -4210,7 +4211,7 @@ msgstr ""
|
|
4210 |
#: includes/elementor/widgets/modern-button.php:900
|
4211 |
#: includes/elementor/widgets/modern-button.php:999
|
4212 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:957
|
4213 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
4214 |
#: includes/elementor/widgets/recent-posts-masonry.php:630
|
4215 |
#: includes/elementor/widgets/recent-posts-timeline.php:577
|
4216 |
#: includes/elementor/widgets/recent-products.php:522
|
@@ -4225,10 +4226,10 @@ msgstr ""
|
|
4225 |
#: includes/elementor/widgets/theme-elements/menu.php:754
|
4226 |
#: includes/elementor/widgets/theme-elements/menu.php:851
|
4227 |
#: includes/elementor/widgets/theme-elements/menu.php:929
|
4228 |
-
#: includes/elementor/widgets/theme-elements/menu.php:
|
4229 |
-
#: includes/elementor/widgets/theme-elements/menu.php:
|
4230 |
-
#: includes/elementor/widgets/theme-elements/modern-search.php:
|
4231 |
-
#: includes/elementor/widgets/theme-elements/modern-search.php:
|
4232 |
#: includes/elementor/widgets/theme-elements/search.php:363
|
4233 |
msgid "Border Radius"
|
4234 |
msgstr ""
|
@@ -4269,12 +4270,12 @@ msgstr ""
|
|
4269 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1145
|
4270 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1332
|
4271 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1447
|
4272 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
4273 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
4274 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
4275 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
4276 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
4277 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
4278 |
#: includes/elementor/widgets/recent-posts-masonry.php:647
|
4279 |
#: includes/elementor/widgets/recent-posts-masonry.php:714
|
4280 |
#: includes/elementor/widgets/recent-posts-masonry.php:818
|
@@ -4314,10 +4315,10 @@ msgstr ""
|
|
4314 |
#: includes/elementor/widgets/theme-elements/menu.php:680
|
4315 |
#: includes/elementor/widgets/theme-elements/menu.php:796
|
4316 |
#: includes/elementor/widgets/theme-elements/menu.php:1017
|
4317 |
-
#: includes/elementor/widgets/theme-elements/menu.php:
|
4318 |
-
#: includes/elementor/widgets/theme-elements/modern-search.php:
|
4319 |
-
#: includes/elementor/widgets/theme-elements/modern-search.php:
|
4320 |
-
#: includes/elementor/widgets/theme-elements/modern-search.php:
|
4321 |
#: includes/elements/button.php:118 includes/elements/text.php:738
|
4322 |
#: includes/general-hooks.php:754 includes/general-hooks.php:1159
|
4323 |
msgid "Normal"
|
@@ -4330,9 +4331,10 @@ msgstr ""
|
|
4330 |
#: includes/elementor/widgets/accordion.php:458
|
4331 |
#: includes/elementor/widgets/accordion.php:496
|
4332 |
#: includes/elementor/widgets/image.php:653
|
|
|
4333 |
#: includes/elementor/widgets/tabs.php:259
|
4334 |
-
#: includes/elementor/widgets/theme-elements/shopping-cart.php:
|
4335 |
-
#: includes/elementor/widgets/theme-elements/shopping-cart.php:
|
4336 |
msgid "Box Shadow"
|
4337 |
msgstr ""
|
4338 |
|
@@ -4354,7 +4356,7 @@ msgstr ""
|
|
4354 |
|
4355 |
#: includes/elementor/widgets/accordion.php:357
|
4356 |
#: includes/elementor/widgets/tabs.php:196
|
4357 |
-
#: includes/elementor/widgets/theme-elements/modern-search.php:
|
4358 |
msgid "Pointer"
|
4359 |
msgstr ""
|
4360 |
|
@@ -4362,14 +4364,14 @@ msgstr ""
|
|
4362 |
#: includes/elementor/widgets/contact-box.php:322
|
4363 |
#: includes/elementor/widgets/gmap.php:203
|
4364 |
#: includes/elementor/widgets/tabs.php:197
|
4365 |
-
#: includes/elementor/widgets/theme-elements/modern-search.php:
|
4366 |
#: includes/elements/contact-box.php:276 includes/elements/gmap.php:169
|
4367 |
msgid "Zoom"
|
4368 |
msgstr ""
|
4369 |
|
4370 |
#: includes/elementor/widgets/accordion.php:359
|
4371 |
#: includes/elementor/widgets/tabs.php:198
|
4372 |
-
#: includes/elementor/widgets/theme-elements/modern-search.php:
|
4373 |
msgid "Help"
|
4374 |
msgstr ""
|
4375 |
|
@@ -4413,15 +4415,15 @@ msgstr ""
|
|
4413 |
#: includes/elementor/widgets/theme-elements/breadcrumbs.php:475
|
4414 |
#: includes/elementor/widgets/theme-elements/menu.php:517
|
4415 |
#: includes/elementor/widgets/theme-elements/menu.php:956
|
4416 |
-
#: includes/elementor/widgets/theme-elements/menu.php:
|
4417 |
-
#: includes/elementor/widgets/theme-elements/modern-search.php:
|
4418 |
-
#: includes/elementor/widgets/theme-elements/modern-search.php:
|
4419 |
-
#: includes/elementor/widgets/theme-elements/modern-search.php:
|
4420 |
#: includes/elementor/widgets/theme-elements/search.php:330
|
4421 |
#: includes/elementor/widgets/theme-elements/search.php:416
|
4422 |
-
#: includes/elementor/widgets/theme-elements/shopping-cart.php:
|
4423 |
-
#: includes/elementor/widgets/theme-elements/shopping-cart.php:
|
4424 |
-
#: includes/elementor/widgets/theme-elements/shopping-cart.php:
|
4425 |
#: includes/elementor/widgets/touch-slider.php:314
|
4426 |
#: includes/elementor/widgets/touch-slider.php:369
|
4427 |
#: includes/elementor/widgets/touch-slider.php:427
|
@@ -4487,15 +4489,15 @@ msgstr ""
|
|
4487 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1267
|
4488 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1454
|
4489 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1474
|
4490 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
4491 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
4492 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
4493 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
4494 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
4495 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
4496 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
4497 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
4498 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
4499 |
#: includes/elementor/widgets/recent-posts-masonry.php:724
|
4500 |
#: includes/elementor/widgets/recent-posts-masonry.php:750
|
4501 |
#: includes/elementor/widgets/recent-posts-masonry.php:828
|
@@ -4560,13 +4562,12 @@ msgstr ""
|
|
4560 |
#: includes/elementor/widgets/theme-elements/menu.php:882
|
4561 |
#: includes/elementor/widgets/theme-elements/menu.php:1024
|
4562 |
#: includes/elementor/widgets/theme-elements/menu.php:1045
|
4563 |
-
#: includes/elementor/widgets/theme-elements/menu.php:
|
4564 |
-
#: includes/elementor/widgets/theme-elements/menu.php:
|
4565 |
-
#: includes/elementor/widgets/theme-elements/
|
4566 |
-
#: includes/elementor/widgets/theme-elements/modern-search.php:
|
4567 |
-
#: includes/elementor/widgets/theme-elements/modern-search.php:
|
4568 |
-
#: includes/elementor/widgets/theme-elements/modern-search.php:
|
4569 |
-
#: includes/elementor/widgets/theme-elements/modern-search.php:376
|
4570 |
#: includes/elementor/widgets/theme-elements/site-title.php:303
|
4571 |
#: includes/elementor/widgets/theme-elements/site-title.php:369
|
4572 |
#: includes/elementor/widgets/theme-elements/site-title.php:435
|
@@ -4646,20 +4647,20 @@ msgstr ""
|
|
4646 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:708
|
4647 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:723
|
4648 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:760
|
4649 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
4650 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
4651 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
4652 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
4653 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
4654 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
4655 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
4656 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
4657 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
4658 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
4659 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
4660 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
4661 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
4662 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
4663 |
#: includes/elementor/widgets/recent-posts-masonry.php:179
|
4664 |
#: includes/elementor/widgets/recent-posts-masonry.php:192
|
4665 |
#: includes/elementor/widgets/recent-posts-masonry.php:207
|
@@ -4792,20 +4793,20 @@ msgstr ""
|
|
4792 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:709
|
4793 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:724
|
4794 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:761
|
4795 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
4796 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
4797 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
4798 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
4799 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
4800 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
4801 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
4802 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
4803 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
4804 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
4805 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
4806 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
4807 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
4808 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
4809 |
#: includes/elementor/widgets/recent-posts-masonry.php:180
|
4810 |
#: includes/elementor/widgets/recent-posts-masonry.php:193
|
4811 |
#: includes/elementor/widgets/recent-posts-masonry.php:208
|
@@ -4958,7 +4959,7 @@ msgstr ""
|
|
4958 |
|
4959 |
#: includes/elementor/widgets/before-after.php:155
|
4960 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:850
|
4961 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
4962 |
#: includes/elementor/widgets/recent-posts-masonry.php:564
|
4963 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:459
|
4964 |
#: includes/elementor/widgets/recent-posts-tiles.php:361
|
@@ -5014,7 +5015,7 @@ msgstr ""
|
|
5014 |
#: includes/elementor/widgets/text.php:278
|
5015 |
#: includes/elementor/widgets/text.php:1012
|
5016 |
#: includes/elementor/widgets/theme-elements/modern-search.php:99
|
5017 |
-
#: includes/elementor/widgets/theme-elements/modern-search.php:
|
5018 |
#: includes/elementor/widgets/theme-elements/search.php:120
|
5019 |
#: includes/elementor/widgets/theme-elements/search.php:381
|
5020 |
#: includes/elements/button.php:16 includes/elements/button.php:47
|
@@ -5128,8 +5129,8 @@ msgstr ""
|
|
5128 |
|
5129 |
#: includes/elementor/widgets/button.php:230
|
5130 |
#: includes/elementor/widgets/carousel-navigation.php:164
|
5131 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
5132 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
5133 |
#: includes/elementor/widgets/recent-posts-masonry.php:1150
|
5134 |
#: includes/elementor/widgets/theme-elements/current-time.php:131
|
5135 |
msgid "Align"
|
@@ -5146,12 +5147,12 @@ msgstr ""
|
|
5146 |
#: includes/elementor/widgets/modern-button.php:958
|
5147 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1340
|
5148 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1370
|
5149 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
5150 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
5151 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
5152 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
5153 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
5154 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
5155 |
#: includes/elementor/widgets/recent-posts-masonry.php:1091
|
5156 |
#: includes/elementor/widgets/recent-posts-masonry.php:1129
|
5157 |
#: includes/elementor/widgets/recent-posts-masonry.php:1226
|
@@ -5170,11 +5171,11 @@ msgstr ""
|
|
5170 |
#: includes/elementor/widgets/theme-elements/menu.php:737
|
5171 |
#: includes/elementor/widgets/theme-elements/menu.php:841
|
5172 |
#: includes/elementor/widgets/theme-elements/menu.php:920
|
5173 |
-
#: includes/elementor/widgets/theme-elements/menu.php:
|
5174 |
-
#: includes/elementor/widgets/theme-elements/menu.php:
|
5175 |
-
#: includes/elementor/widgets/theme-elements/menu.php:
|
5176 |
-
#: includes/elementor/widgets/theme-elements/shopping-cart.php:
|
5177 |
-
#: includes/elementor/widgets/theme-elements/shopping-cart.php:
|
5178 |
msgid "Background"
|
5179 |
msgstr ""
|
5180 |
|
@@ -5189,7 +5190,7 @@ msgstr ""
|
|
5189 |
#: includes/elementor/widgets/text.php:116
|
5190 |
#: includes/elementor/widgets/text.php:126
|
5191 |
#: includes/elementor/widgets/theme-elements/modern-search.php:106
|
5192 |
-
#: includes/elementor/widgets/theme-elements/modern-search.php:
|
5193 |
#: includes/elementor/widgets/theme-elements/search.php:106
|
5194 |
#: includes/elementor/widgets/theme-elements/search.php:119
|
5195 |
#: includes/elementor/widgets/theme-elements/search.php:131
|
@@ -5238,7 +5239,6 @@ msgstr ""
|
|
5238 |
#: includes/elementor/widgets/button.php:390
|
5239 |
#: includes/elementor/widgets/text.php:429
|
5240 |
#: includes/elementor/widgets/text.php:1150
|
5241 |
-
#: includes/elementor/widgets/theme-elements/modern-search.php:657
|
5242 |
msgid "Icon Size"
|
5243 |
msgstr ""
|
5244 |
|
@@ -5262,7 +5262,7 @@ msgstr ""
|
|
5262 |
#: includes/elementor/widgets/theme-elements/breadcrumbs.php:287
|
5263 |
#: includes/elementor/widgets/theme-elements/current-time.php:163
|
5264 |
#: includes/elementor/widgets/theme-elements/modern-search.php:118
|
5265 |
-
#: includes/elementor/widgets/theme-elements/modern-search.php:
|
5266 |
#: includes/elements/custom-list.php:58 includes/elements/image.php:302
|
5267 |
msgid "Text"
|
5268 |
msgstr ""
|
@@ -5282,8 +5282,8 @@ msgstr ""
|
|
5282 |
#: includes/elementor/widgets/modern-button.php:646
|
5283 |
#: includes/elementor/widgets/modern-button.php:720
|
5284 |
#: includes/elementor/widgets/modern-button.php:758
|
5285 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
5286 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
5287 |
#: includes/elementor/widgets/recent-posts-masonry.php:1255
|
5288 |
#: includes/elementor/widgets/recent-posts-masonry.php:1311
|
5289 |
#: includes/elementor/widgets/text.php:746
|
@@ -5329,7 +5329,7 @@ msgstr ""
|
|
5329 |
|
5330 |
#: includes/elementor/widgets/carousel-navigation.php:128
|
5331 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:887
|
5332 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
5333 |
#: includes/elementor/widgets/recent-posts-masonry.php:598
|
5334 |
#: includes/elementor/widgets/recent-posts-tiles.php:395
|
5335 |
#: includes/elementor/widgets/recent-posts-timeline.php:527
|
@@ -5376,8 +5376,8 @@ msgstr ""
|
|
5376 |
#: includes/elementor/widgets/text.php:1023
|
5377 |
#: includes/elementor/widgets/theme-elements/breadcrumbs.php:268
|
5378 |
#: includes/elementor/widgets/theme-elements/breadcrumbs.php:400
|
5379 |
-
#: includes/elementor/widgets/theme-elements/modern-search.php:
|
5380 |
-
#: includes/elementor/widgets/theme-elements/modern-search.php:
|
5381 |
#: includes/elementor/widgets/theme-elements/search.php:213
|
5382 |
#: includes/elements/image.php:87
|
5383 |
msgid "Size"
|
@@ -5656,7 +5656,7 @@ msgid "Email Inputs"
|
|
5656 |
msgstr ""
|
5657 |
|
5658 |
#: includes/elementor/widgets/contact-form.php:920
|
5659 |
-
#: includes/elementor/widgets/theme-elements/shopping-cart.php:
|
5660 |
msgid "Dropdown"
|
5661 |
msgstr ""
|
5662 |
|
@@ -6055,7 +6055,7 @@ msgstr ""
|
|
6055 |
|
6056 |
#: includes/elementor/widgets/gallery.php:188
|
6057 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:919
|
6058 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
6059 |
#: includes/elementor/widgets/recent-posts-timeline.php:559
|
6060 |
#: includes/elementor/widgets/recent-products.php:504
|
6061 |
#: includes/elements/gallery.php:292
|
@@ -6311,7 +6311,7 @@ msgstr ""
|
|
6311 |
#: includes/elementor/widgets/image.php:418
|
6312 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:742
|
6313 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:908
|
6314 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
6315 |
#: includes/elementor/widgets/recent-posts-masonry.php:619
|
6316 |
#: includes/elementor/widgets/recent-posts-timeline.php:548
|
6317 |
#: includes/elementor/widgets/recent-products.php:493
|
@@ -6415,7 +6415,7 @@ msgstr ""
|
|
6415 |
|
6416 |
#: includes/elementor/widgets/image.php:343
|
6417 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:381
|
6418 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
6419 |
#: includes/elementor/widgets/recent-posts-masonry.php:205
|
6420 |
#: includes/elementor/widgets/recent-posts-timeline.php:192
|
6421 |
#: includes/elementor/widgets/recent-products.php:224
|
@@ -6426,7 +6426,7 @@ msgstr ""
|
|
6426 |
|
6427 |
#: includes/elementor/widgets/image.php:355
|
6428 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:396
|
6429 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
6430 |
#: includes/elementor/widgets/recent-posts-masonry.php:220
|
6431 |
#: includes/elementor/widgets/recent-posts-timeline.php:207
|
6432 |
#: includes/elementor/widgets/recent-products.php:239
|
@@ -6437,7 +6437,7 @@ msgstr ""
|
|
6437 |
|
6438 |
#: includes/elementor/widgets/image.php:370
|
6439 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:411
|
6440 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
6441 |
#: includes/elementor/widgets/recent-posts-masonry.php:235
|
6442 |
#: includes/elementor/widgets/recent-posts-timeline.php:222
|
6443 |
#: includes/elementor/widgets/recent-products.php:254
|
@@ -6470,12 +6470,12 @@ msgstr ""
|
|
6470 |
|
6471 |
#: includes/elementor/widgets/image.php:662
|
6472 |
#: includes/elementor/widgets/quote.php:186
|
6473 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
6474 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
6475 |
#: includes/elementor/widgets/recent-posts-masonry.php:1117
|
6476 |
#: includes/elementor/widgets/theme-elements/breadcrumbs.php:325
|
6477 |
-
#: includes/elementor/widgets/theme-elements/modern-search.php:
|
6478 |
-
#: includes/elementor/widgets/theme-elements/shopping-cart.php:
|
6479 |
msgid "Text Color"
|
6480 |
msgstr ""
|
6481 |
|
@@ -6650,10 +6650,10 @@ msgstr ""
|
|
6650 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1293
|
6651 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1415
|
6652 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1510
|
6653 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
6654 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
6655 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
6656 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
6657 |
#: includes/elementor/widgets/recent-posts-masonry.php:780
|
6658 |
#: includes/elementor/widgets/recent-posts-masonry.php:884
|
6659 |
#: includes/elementor/widgets/recent-posts-masonry.php:966
|
@@ -6684,7 +6684,7 @@ msgstr ""
|
|
6684 |
|
6685 |
#: includes/elementor/widgets/recent-comments.php:331
|
6686 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1230
|
6687 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
6688 |
#: includes/elementor/widgets/recent-posts-masonry.php:903
|
6689 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:677
|
6690 |
#: includes/elementor/widgets/recent-posts-tiles.php:618
|
@@ -6898,7 +6898,7 @@ msgid "Specifies the delay between auto-forwarding in seconds."
|
|
6898 |
msgstr ""
|
6899 |
|
6900 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:329
|
6901 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
6902 |
#: includes/elementor/widgets/recent-posts-masonry.php:168
|
6903 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:291
|
6904 |
#: includes/elementor/widgets/recent-posts-tiles.php:193
|
@@ -6910,7 +6910,7 @@ msgid "Display"
|
|
6910 |
msgstr ""
|
6911 |
|
6912 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:337
|
6913 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
6914 |
#: includes/elementor/widgets/recent-posts-masonry.php:176
|
6915 |
#: includes/elementor/widgets/recent-posts-timeline.php:163
|
6916 |
#: includes/elementor/widgets/recent-products.php:209
|
@@ -6930,7 +6930,7 @@ msgid "Ignore post formats media"
|
|
6930 |
msgstr ""
|
6931 |
|
6932 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:423
|
6933 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
6934 |
#: includes/elementor/widgets/recent-posts-masonry.php:247
|
6935 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:299
|
6936 |
#: includes/elementor/widgets/recent-posts-tiles.php:201
|
@@ -6947,7 +6947,7 @@ msgid "Title Trim"
|
|
6947 |
msgstr ""
|
6948 |
|
6949 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:447
|
6950 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
6951 |
#: includes/elementor/widgets/recent-posts-masonry.php:259
|
6952 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:311
|
6953 |
#: includes/elementor/widgets/recent-posts-tiles.php:213
|
@@ -6966,7 +6966,7 @@ msgid "Post info position"
|
|
6966 |
msgstr ""
|
6967 |
|
6968 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:488
|
6969 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
6970 |
#: includes/elementor/widgets/recent-posts-masonry.php:287
|
6971 |
#: includes/elementor/widgets/recent-products.php:278
|
6972 |
#: includes/elementor/widgets/theme-elements/modern-search.php:197
|
@@ -6980,21 +6980,21 @@ msgid "Display Category Badge"
|
|
6980 |
msgstr ""
|
6981 |
|
6982 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:515
|
6983 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
6984 |
#: includes/elementor/widgets/recent-posts-masonry.php:302
|
6985 |
#: includes/elements/recent-posts-grid-carousel.php:363
|
6986 |
msgid "Display Date"
|
6987 |
msgstr ""
|
6988 |
|
6989 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:530
|
6990 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
6991 |
#: includes/elementor/widgets/recent-posts-masonry.php:396
|
6992 |
#: includes/elementor/widgets/recent-posts-timeline.php:325
|
6993 |
msgid "Display Author in Header"
|
6994 |
msgstr ""
|
6995 |
|
6996 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:531
|
6997 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
6998 |
#: includes/elementor/widgets/recent-posts-masonry.php:397
|
6999 |
#: includes/elementor/widgets/recent-posts-timeline.php:326
|
7000 |
msgid "Enable it to display author name in header"
|
@@ -7007,12 +7007,12 @@ msgid "Display post content"
|
|
7007 |
msgstr ""
|
7008 |
|
7009 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:555
|
7010 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
7011 |
msgid "Display Comments Number"
|
7012 |
msgstr ""
|
7013 |
|
7014 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:567
|
7015 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
7016 |
#: includes/elementor/widgets/recent-posts-masonry.php:329
|
7017 |
#: includes/elementor/widgets/recent-posts-timeline.php:258
|
7018 |
#: includes/elements/recent-posts-grid-carousel.php:380
|
@@ -7022,7 +7022,7 @@ msgid "Display like button"
|
|
7022 |
msgstr ""
|
7023 |
|
7024 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:579
|
7025 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
7026 |
#: includes/elementor/widgets/recent-posts-masonry.php:353
|
7027 |
#: includes/elementor/widgets/recent-posts-timeline.php:282
|
7028 |
#: includes/elements/popular-posts-widget.php:146
|
@@ -7032,7 +7032,7 @@ msgid "Display excerpt"
|
|
7032 |
msgstr ""
|
7033 |
|
7034 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:580
|
7035 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
7036 |
#: includes/elementor/widgets/recent-posts-masonry.php:354
|
7037 |
#: includes/elementor/widgets/recent-posts-timeline.php:283
|
7038 |
#: includes/elements/popular-posts-widget.php:147
|
@@ -7042,7 +7042,7 @@ msgid "Enable it to display post summary instead of full content."
|
|
7042 |
msgstr ""
|
7043 |
|
7044 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:592
|
7045 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
7046 |
#: includes/elementor/widgets/recent-posts-masonry.php:366
|
7047 |
#: includes/elementor/widgets/recent-posts-timeline.php:295
|
7048 |
#: includes/elements/popular-posts-widget.php:175
|
@@ -7055,7 +7055,7 @@ msgid "Excerpt length"
|
|
7055 |
msgstr ""
|
7056 |
|
7057 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:593
|
7058 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
7059 |
#: includes/elementor/widgets/recent-posts-masonry.php:367
|
7060 |
#: includes/elementor/widgets/recent-posts-timeline.php:296
|
7061 |
#: includes/elements/recent-posts-grid-carousel.php:426
|
@@ -7066,7 +7066,7 @@ msgid "Specify summary content in character."
|
|
7066 |
msgstr ""
|
7067 |
|
7068 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:605
|
7069 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
7070 |
#: includes/elementor/widgets/recent-posts-masonry.php:379
|
7071 |
#: includes/elementor/widgets/recent-posts-timeline.php:308
|
7072 |
#: includes/elements/recent-posts-grid-carousel.php:439
|
@@ -7077,7 +7077,7 @@ msgid "Display author or read more"
|
|
7077 |
msgstr ""
|
7078 |
|
7079 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:607
|
7080 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
7081 |
#: includes/elementor/widgets/recent-posts-masonry.php:381
|
7082 |
#: includes/elementor/widgets/recent-posts-timeline.php:310
|
7083 |
#: includes/elements/recent-posts-grid-carousel.php:440
|
@@ -7088,8 +7088,8 @@ msgid "Specifies whether to show author or read more on each post."
|
|
7088 |
msgstr ""
|
7089 |
|
7090 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:611
|
7091 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
7092 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
7093 |
#: includes/elementor/widgets/recent-posts-masonry.php:385
|
7094 |
#: includes/elementor/widgets/recent-posts-masonry.php:1208
|
7095 |
#: includes/elementor/widgets/recent-posts-timeline.php:314
|
@@ -7102,14 +7102,14 @@ msgid "Read More"
|
|
7102 |
msgstr ""
|
7103 |
|
7104 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:622
|
7105 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
7106 |
#: includes/elementor/widgets/recent-posts-masonry.php:412
|
7107 |
#: includes/elementor/widgets/recent-posts-timeline.php:341
|
7108 |
msgid "Display Author in Footer"
|
7109 |
msgstr ""
|
7110 |
|
7111 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:623
|
7112 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
7113 |
#: includes/elementor/widgets/recent-posts-masonry.php:413
|
7114 |
#: includes/elementor/widgets/recent-posts-timeline.php:342
|
7115 |
msgid "Enable it to display author name in footer"
|
@@ -7120,7 +7120,7 @@ msgid "Meta info position"
|
|
7120 |
msgstr ""
|
7121 |
|
7122 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:660
|
7123 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
7124 |
#: includes/elementor/widgets/recent-posts-masonry.php:434
|
7125 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:329
|
7126 |
#: includes/elementor/widgets/recent-posts-tiles.php:231
|
@@ -7211,7 +7211,7 @@ msgid "Use wp query"
|
|
7211 |
msgstr ""
|
7212 |
|
7213 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:679
|
7214 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
7215 |
#: includes/elementor/widgets/recent-posts-masonry.php:441
|
7216 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:336
|
7217 |
#: includes/elementor/widgets/recent-posts-tiles.php:238
|
@@ -7230,7 +7230,7 @@ msgid "Categories"
|
|
7230 |
msgstr ""
|
7231 |
|
7232 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:680
|
7233 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
7234 |
#: includes/elementor/widgets/recent-posts-masonry.php:442
|
7235 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:337
|
7236 |
#: includes/elementor/widgets/recent-posts-tiles.php:239
|
@@ -7248,7 +7248,7 @@ msgid "Specifies a category that you want to show posts from it."
|
|
7248 |
msgstr ""
|
7249 |
|
7250 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:694
|
7251 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
7252 |
#: includes/elementor/widgets/recent-posts-masonry.php:453
|
7253 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:348
|
7254 |
#: includes/elementor/widgets/recent-posts-tiles.php:250
|
@@ -7265,7 +7265,7 @@ msgid "Number of posts to show"
|
|
7265 |
msgstr ""
|
7266 |
|
7267 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:706
|
7268 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
7269 |
#: includes/elementor/widgets/recent-posts-masonry.php:465
|
7270 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:360
|
7271 |
#: includes/elementor/widgets/recent-posts-tiles.php:262
|
@@ -7310,7 +7310,7 @@ msgid "Video"
|
|
7310 |
msgstr ""
|
7311 |
|
7312 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:758
|
7313 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
7314 |
#: includes/elementor/widgets/recent-posts-masonry.php:489
|
7315 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:384
|
7316 |
#: includes/elementor/widgets/recent-posts-tiles.php:286
|
@@ -7326,7 +7326,7 @@ msgid "Exclude quote and link post formats"
|
|
7326 |
msgstr ""
|
7327 |
|
7328 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:775
|
7329 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
7330 |
#: includes/elementor/widgets/recent-posts-masonry.php:504
|
7331 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:399
|
7332 |
#: includes/elementor/widgets/recent-posts-tiles.php:301
|
@@ -7348,7 +7348,7 @@ msgid "Order by"
|
|
7348 |
msgstr ""
|
7349 |
|
7350 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:784
|
7351 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
7352 |
#: includes/elementor/widgets/recent-posts-masonry.php:513
|
7353 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:408
|
7354 |
#: includes/elementor/widgets/recent-posts-tiles.php:310
|
@@ -7370,7 +7370,7 @@ msgid "Comments"
|
|
7370 |
msgstr ""
|
7371 |
|
7372 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:785
|
7373 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
7374 |
#: includes/elementor/widgets/recent-posts-masonry.php:514
|
7375 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:409
|
7376 |
#: includes/elementor/widgets/recent-posts-tiles.php:311
|
@@ -7392,7 +7392,7 @@ msgid "Date Modified"
|
|
7392 |
msgstr ""
|
7393 |
|
7394 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:787
|
7395 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
7396 |
#: includes/elementor/widgets/recent-posts-masonry.php:516
|
7397 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:411
|
7398 |
#: includes/elementor/widgets/recent-posts-tiles.php:313
|
@@ -7411,7 +7411,7 @@ msgid "Inserted Post IDs"
|
|
7411 |
msgstr ""
|
7412 |
|
7413 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:802
|
7414 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
7415 |
#: includes/elementor/widgets/recent-posts-masonry.php:528
|
7416 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:423
|
7417 |
#: includes/elementor/widgets/recent-posts-tiles.php:325
|
@@ -7433,7 +7433,7 @@ msgid "Descending"
|
|
7433 |
msgstr ""
|
7434 |
|
7435 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:803
|
7436 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
7437 |
#: includes/elementor/widgets/recent-posts-masonry.php:529
|
7438 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:424
|
7439 |
#: includes/elementor/widgets/recent-posts-tiles.php:326
|
@@ -7455,7 +7455,7 @@ msgid "Ascending"
|
|
7455 |
msgstr ""
|
7456 |
|
7457 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:814
|
7458 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
7459 |
#: includes/elementor/widgets/recent-posts-masonry.php:537
|
7460 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:432
|
7461 |
#: includes/elementor/widgets/recent-posts-tiles.php:334
|
@@ -7470,7 +7470,7 @@ msgid "Only posts"
|
|
7470 |
msgstr ""
|
7471 |
|
7472 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:815
|
7473 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
7474 |
#: includes/elementor/widgets/recent-posts-masonry.php:538
|
7475 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:433
|
7476 |
#: includes/elementor/widgets/recent-posts-tiles.php:335
|
@@ -7488,7 +7488,7 @@ msgid ""
|
|
7488 |
msgstr ""
|
7489 |
|
7490 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:826
|
7491 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
7492 |
#: includes/elementor/widgets/recent-posts-masonry.php:546
|
7493 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:441
|
7494 |
#: includes/elementor/widgets/recent-posts-tiles.php:343
|
@@ -7505,7 +7505,7 @@ msgid "Include posts"
|
|
7505 |
msgstr ""
|
7506 |
|
7507 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:827
|
7508 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
7509 |
#: includes/elementor/widgets/recent-posts-masonry.php:547
|
7510 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:442
|
7511 |
#: includes/elementor/widgets/recent-posts-tiles.php:344
|
@@ -7523,7 +7523,7 @@ msgid ""
|
|
7523 |
msgstr ""
|
7524 |
|
7525 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:838
|
7526 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
7527 |
#: includes/elementor/widgets/recent-posts-masonry.php:555
|
7528 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:450
|
7529 |
#: includes/elementor/widgets/recent-posts-tiles.php:352
|
@@ -7539,7 +7539,7 @@ msgid "Exclude posts"
|
|
7539 |
msgstr ""
|
7540 |
|
7541 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:839
|
7542 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
7543 |
#: includes/elementor/widgets/recent-posts-masonry.php:556
|
7544 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:451
|
7545 |
#: includes/elementor/widgets/recent-posts-tiles.php:353
|
@@ -7557,7 +7557,7 @@ msgid ""
|
|
7557 |
msgstr ""
|
7558 |
|
7559 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:851
|
7560 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
7561 |
#: includes/elementor/widgets/recent-posts-masonry.php:565
|
7562 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:460
|
7563 |
#: includes/elementor/widgets/recent-posts-tiles.php:362
|
@@ -7574,7 +7574,7 @@ msgid "Number of post to displace or pass over."
|
|
7574 |
msgstr ""
|
7575 |
|
7576 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:868
|
7577 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
7578 |
#: includes/elementor/widgets/recent-posts-masonry.php:579
|
7579 |
#: includes/elementor/widgets/recent-posts-tiles.php:376
|
7580 |
#: includes/elementor/widgets/recent-posts-timeline.php:508
|
@@ -7582,7 +7582,7 @@ msgid "Paginate"
|
|
7582 |
msgstr ""
|
7583 |
|
7584 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:875
|
7585 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
7586 |
#: includes/elementor/widgets/recent-posts-masonry.php:586
|
7587 |
#: includes/elementor/widgets/recent-posts-tiles.php:383
|
7588 |
#: includes/elementor/widgets/recent-posts-timeline.php:515
|
@@ -7595,7 +7595,7 @@ msgid "Load More Type"
|
|
7595 |
msgstr ""
|
7596 |
|
7597 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:883
|
7598 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
7599 |
#: includes/elementor/widgets/recent-posts-masonry.php:594
|
7600 |
#: includes/elementor/widgets/recent-posts-tiles.php:391
|
7601 |
#: includes/elementor/widgets/recent-posts-timeline.php:523
|
@@ -7608,7 +7608,7 @@ msgid "Infinite Scroll"
|
|
7608 |
msgstr ""
|
7609 |
|
7610 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:891
|
7611 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
7612 |
#: includes/elementor/widgets/recent-posts-masonry.php:602
|
7613 |
#: includes/elementor/widgets/recent-posts-tiles.php:399
|
7614 |
#: includes/elementor/widgets/recent-posts-timeline.php:531
|
@@ -7621,7 +7621,7 @@ msgid "Next Prev"
|
|
7621 |
msgstr ""
|
7622 |
|
7623 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:923
|
7624 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
7625 |
#: includes/elementor/widgets/recent-posts-timeline.php:563
|
7626 |
#: includes/elementor/widgets/recent-products.php:508
|
7627 |
#: includes/elements/gallery.php:300
|
@@ -7633,7 +7633,7 @@ msgid "Horizontal 4:3"
|
|
7633 |
msgstr ""
|
7634 |
|
7635 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:924
|
7636 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
7637 |
#: includes/elementor/widgets/recent-posts-timeline.php:564
|
7638 |
#: includes/elementor/widgets/recent-products.php:509
|
7639 |
#: includes/elements/gallery.php:301
|
@@ -7645,7 +7645,7 @@ msgid "Horizontal 16:9"
|
|
7645 |
msgstr ""
|
7646 |
|
7647 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:925
|
7648 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
7649 |
#: includes/elementor/widgets/recent-posts-timeline.php:565
|
7650 |
#: includes/elementor/widgets/recent-products.php:510
|
7651 |
#: includes/elements/gallery.php:302
|
@@ -7657,7 +7657,7 @@ msgid "Square 1:1"
|
|
7657 |
msgstr ""
|
7658 |
|
7659 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:926
|
7660 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
7661 |
#: includes/elementor/widgets/recent-posts-timeline.php:566
|
7662 |
#: includes/elementor/widgets/recent-products.php:511
|
7663 |
#: includes/elements/gallery.php:303
|
@@ -7673,7 +7673,7 @@ msgid "Custom Aspect Ratio"
|
|
7673 |
msgstr ""
|
7674 |
|
7675 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1132
|
7676 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
7677 |
#: includes/elementor/widgets/recent-posts-masonry.php:805
|
7678 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:579
|
7679 |
#: includes/elementor/widgets/recent-posts-tiles.php:520
|
@@ -7682,7 +7682,7 @@ msgid "Post Info"
|
|
7682 |
msgstr ""
|
7683 |
|
7684 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1256
|
7685 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
7686 |
#: includes/elementor/widgets/recent-posts-masonry.php:929
|
7687 |
#: includes/elementor/widgets/recent-posts-timeline.php:826
|
7688 |
msgid "Excerpt"
|
@@ -7693,7 +7693,7 @@ msgid "Badge"
|
|
7693 |
msgstr ""
|
7694 |
|
7695 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1437
|
7696 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
7697 |
#: includes/elementor/widgets/recent-posts-masonry.php:991
|
7698 |
#: includes/elementor/widgets/recent-posts-timeline.php:888
|
7699 |
msgid "Meta"
|
@@ -7703,33 +7703,39 @@ msgstr ""
|
|
7703 |
msgid "Padding for meta wrapper"
|
7704 |
msgstr ""
|
7705 |
|
7706 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
7707 |
#: includes/elementor/widgets/recent-posts-masonry.php:1178
|
7708 |
#: includes/elementor/widgets/staff.php:862
|
7709 |
msgid "Padding for main wrapper"
|
7710 |
msgstr ""
|
7711 |
|
7712 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
7713 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
7714 |
#: includes/elementor/widgets/recent-posts-masonry.php:1190
|
7715 |
#: includes/elementor/widgets/staff.php:874
|
7716 |
msgid "Padding for content wrapper"
|
7717 |
msgstr ""
|
7718 |
|
7719 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
7720 |
msgid "Flip Wrapper"
|
7721 |
msgstr ""
|
7722 |
|
7723 |
-
#: includes/elementor/widgets/recent-posts-grid-carousel.php:
|
7724 |
#: includes/elementor/widgets/recent-posts-masonry.php:1332
|
7725 |
msgid "Button Padding"
|
7726 |
msgstr ""
|
7727 |
|
7728 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
7729 |
msgid "Land Style Posts"
|
7730 |
msgstr ""
|
7731 |
|
7732 |
-
#: includes/elementor/widgets/recent-posts-land-style.php:
|
7733 |
#: includes/elementor/widgets/recent-posts-masonry.php:477
|
7734 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:372
|
7735 |
#: includes/elementor/widgets/recent-posts-tiles.php:274
|
@@ -7912,8 +7918,8 @@ msgid "Table Even Rows"
|
|
7912 |
msgstr ""
|
7913 |
|
7914 |
#: includes/elementor/widgets/search.php:47
|
7915 |
-
#: includes/elementor/widgets/theme-elements/modern-search.php:
|
7916 |
-
#: includes/elementor/widgets/theme-elements/modern-search.php:
|
7917 |
#: includes/elements/search.php:14
|
7918 |
msgid "Search"
|
7919 |
msgstr ""
|
@@ -8080,7 +8086,7 @@ msgstr ""
|
|
8080 |
#: includes/elementor/widgets/staff.php:838
|
8081 |
#: includes/elementor/widgets/text.php:1429
|
8082 |
#: includes/elementor/widgets/theme-elements/menu.php:324
|
8083 |
-
#: includes/elementor/widgets/theme-elements/menu.php:
|
8084 |
#: includes/elements/text.php:118
|
8085 |
msgid "Text Align"
|
8086 |
msgstr ""
|
@@ -8300,11 +8306,6 @@ msgstr ""
|
|
8300 |
msgid "Icon background color"
|
8301 |
msgstr ""
|
8302 |
|
8303 |
-
#: includes/elementor/widgets/text.php:616
|
8304 |
-
#: includes/elementor/widgets/text.php:1537
|
8305 |
-
msgid "Transition duration"
|
8306 |
-
msgstr ""
|
8307 |
-
|
8308 |
#: includes/elementor/widgets/text.php:645 includes/elements/text.php:577
|
8309 |
msgid "Default Aspect"
|
8310 |
msgstr ""
|
@@ -8392,7 +8393,6 @@ msgstr ""
|
|
8392 |
|
8393 |
#: includes/elementor/widgets/theme-elements/breadcrumbs.php:253
|
8394 |
#: includes/elementor/widgets/theme-elements/breadcrumbs.php:385
|
8395 |
-
#: includes/elementor/widgets/theme-elements/modern-search.php:685
|
8396 |
msgid "Icon Color"
|
8397 |
msgstr ""
|
8398 |
|
@@ -8648,16 +8648,53 @@ msgstr ""
|
|
8648 |
msgid "Fullscreen Menu"
|
8649 |
msgstr ""
|
8650 |
|
8651 |
-
#: includes/elementor/widgets/theme-elements/menu.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8652 |
msgid "Close Button"
|
8653 |
msgstr ""
|
8654 |
|
8655 |
-
#: includes/elementor/widgets/theme-elements/menu.php:
|
8656 |
-
|
8657 |
-
msgid "Outline Color"
|
8658 |
msgstr ""
|
8659 |
|
8660 |
-
#: includes/elementor/widgets/theme-elements/menu.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8661 |
msgid "There are no menus in your site."
|
8662 |
msgstr ""
|
8663 |
|
@@ -8666,7 +8703,7 @@ msgid "Modern Search"
|
|
8666 |
msgstr ""
|
8667 |
|
8668 |
#: includes/elementor/widgets/theme-elements/modern-search.php:136
|
8669 |
-
#: includes/elementor/widgets/theme-elements/modern-search.php:
|
8670 |
msgid "Fullscreen Search Input"
|
8671 |
msgstr ""
|
8672 |
|
@@ -8686,31 +8723,69 @@ msgstr ""
|
|
8686 |
msgid "Display Fill Submit Button"
|
8687 |
msgstr ""
|
8688 |
|
8689 |
-
#: includes/elementor/widgets/theme-elements/modern-search.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8690 |
msgid "Cursor"
|
8691 |
msgstr ""
|
8692 |
|
8693 |
-
#: includes/elementor/widgets/theme-elements/modern-search.php:
|
|
|
|
|
|
|
|
|
8694 |
msgid "Border Size"
|
8695 |
msgstr ""
|
8696 |
|
8697 |
-
#: includes/elementor/widgets/theme-elements/modern-search.php:
|
8698 |
-
msgid "
|
|
|
|
|
|
|
|
|
8699 |
msgstr ""
|
8700 |
|
8701 |
-
#: includes/elementor/widgets/theme-elements/modern-search.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8702 |
msgid "Fullscreen Close Button"
|
8703 |
msgstr ""
|
8704 |
|
8705 |
-
#: includes/elementor/widgets/theme-elements/modern-search.php:
|
8706 |
msgid "Top Position"
|
8707 |
msgstr ""
|
8708 |
|
8709 |
-
#: includes/elementor/widgets/theme-elements/modern-search.php:
|
8710 |
msgid "Right Position"
|
8711 |
msgstr ""
|
8712 |
|
8713 |
-
#: includes/elementor/widgets/theme-elements/modern-search.php:
|
|
|
|
|
|
|
|
|
|
|
8714 |
msgid "Search..."
|
8715 |
msgstr ""
|
8716 |
|
@@ -8778,40 +8853,48 @@ msgstr ""
|
|
8778 |
msgid "Sub Total"
|
8779 |
msgstr ""
|
8780 |
|
8781 |
-
#: includes/elementor/widgets/theme-elements/shopping-cart.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8782 |
msgid "Counter Bubble"
|
8783 |
msgstr ""
|
8784 |
|
8785 |
-
#: includes/elementor/widgets/theme-elements/shopping-cart.php:
|
8786 |
-
#: includes/elementor/widgets/theme-elements/shopping-cart.php:
|
8787 |
msgid "Position from Bottom"
|
8788 |
msgstr ""
|
8789 |
|
8790 |
-
#: includes/elementor/widgets/theme-elements/shopping-cart.php:
|
8791 |
msgid "Position from right"
|
8792 |
msgstr ""
|
8793 |
|
8794 |
-
#: includes/elementor/widgets/theme-elements/shopping-cart.php:
|
8795 |
msgid "Position from Left"
|
8796 |
msgstr ""
|
8797 |
|
8798 |
-
#: includes/elementor/widgets/theme-elements/shopping-cart.php:
|
8799 |
msgid "Item"
|
8800 |
msgstr ""
|
8801 |
|
8802 |
-
#: includes/elementor/widgets/theme-elements/shopping-cart.php:
|
8803 |
msgid "Title color"
|
8804 |
msgstr ""
|
8805 |
|
8806 |
-
#: includes/elementor/widgets/theme-elements/shopping-cart.php:
|
8807 |
msgid "Title Typography"
|
8808 |
msgstr ""
|
8809 |
|
8810 |
-
#: includes/elementor/widgets/theme-elements/shopping-cart.php:
|
8811 |
msgid "Price color"
|
8812 |
msgstr ""
|
8813 |
|
8814 |
-
#: includes/elementor/widgets/theme-elements/shopping-cart.php:
|
8815 |
msgid "Price Typography"
|
8816 |
msgstr ""
|
8817 |
|
@@ -8960,7 +9043,7 @@ msgstr ""
|
|
8960 |
msgid "The name which appears in about widget."
|
8961 |
msgstr ""
|
8962 |
|
8963 |
-
#: includes/elements/about-widget.php:72 includes/general-hooks.php:
|
8964 |
msgid "Skills"
|
8965 |
msgstr ""
|
8966 |
|
@@ -11645,43 +11728,43 @@ msgstr ""
|
|
11645 |
msgid "Hide Feedback Section"
|
11646 |
msgstr ""
|
11647 |
|
11648 |
-
#: includes/general-hooks.php:
|
11649 |
msgid "Twitter"
|
11650 |
msgstr ""
|
11651 |
|
11652 |
-
#: includes/general-hooks.php:
|
11653 |
msgid "Facebook"
|
11654 |
msgstr ""
|
11655 |
|
11656 |
-
#: includes/general-hooks.php:
|
11657 |
msgid "Google Plus"
|
11658 |
msgstr ""
|
11659 |
|
11660 |
-
#: includes/general-hooks.php:
|
11661 |
msgid "Flickr"
|
11662 |
msgstr ""
|
11663 |
|
11664 |
-
#: includes/general-hooks.php:
|
11665 |
msgid "Delicious"
|
11666 |
msgstr ""
|
11667 |
|
11668 |
-
#: includes/general-hooks.php:
|
11669 |
msgid "Pinterest"
|
11670 |
msgstr ""
|
11671 |
|
11672 |
-
#: includes/general-hooks.php:
|
11673 |
msgid "GitHub"
|
11674 |
msgstr ""
|
11675 |
|
11676 |
-
#: includes/general-hooks.php:
|
11677 |
msgid "Page Options"
|
11678 |
msgstr ""
|
11679 |
|
11680 |
-
#: includes/general-hooks.php:
|
11681 |
msgid "Post Options"
|
11682 |
msgstr ""
|
11683 |
|
11684 |
-
#: includes/general-hooks.php:
|
11685 |
msgid "Page %s"
|
11686 |
msgstr ""
|
11687 |
|
@@ -11912,13 +11995,13 @@ msgctxt "post format archive title"
|
|
11912 |
msgid "Chats"
|
11913 |
msgstr ""
|
11914 |
|
11915 |
-
#: includes/general-hooks.php:
|
11916 |
#. translators: playlist item title
|
11917 |
msgctxt "playlist item title"
|
11918 |
msgid "“%s”"
|
11919 |
msgstr ""
|
11920 |
|
11921 |
-
#: includes/general-hooks.php:
|
11922 |
#. translators: playlist item title
|
11923 |
msgctxt "playlist item title"
|
11924 |
msgid "%s"
|
1 |
# Averta Copyright (c) {2020}
|
2 |
msgid ""
|
3 |
msgstr ""
|
4 |
+
"Project-Id-Version: Phlox Core Elements 2.6.14\n"
|
5 |
"Report-Msgid-Bugs-To: http://averta.net/phlox/wordpress-theme/\n"
|
6 |
+
"POT-Creation-Date: 2020-09-09 10:12:18+00:00\n"
|
7 |
"MIME-Version: 1.0\n"
|
8 |
"Content-Type: text/plain; charset=utf-8\n"
|
9 |
"Content-Transfer-Encoding: 8bit\n"
|
1012 |
|
1013 |
#: admin/includes/metaboxes/metabox-fields-general-header.php:202
|
1014 |
#: includes/elements/staff.php:207 includes/elements/text.php:105
|
1015 |
+
#: includes/general-hooks.php:3000
|
1016 |
msgid "Boxed"
|
1017 |
msgstr ""
|
1018 |
|
1056 |
|
1057 |
#: admin/includes/metaboxes/metabox-fields-general-header.php:325
|
1058 |
#: includes/elementor/widgets/image.php:639
|
1059 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:677
|
1060 |
msgid "Border Color"
|
1061 |
msgstr ""
|
1062 |
|
1196 |
#: includes/elementor/widgets/modern-button.php:188
|
1197 |
#: includes/elementor/widgets/quote.php:169
|
1198 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:252
|
1199 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1660
|
1200 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1773
|
1201 |
#: includes/elementor/widgets/recent-posts-masonry.php:1159
|
1202 |
#: includes/elementor/widgets/recent-posts-timeline.php:130
|
1203 |
#: includes/elementor/widgets/staff.php:846
|
1209 |
#: includes/elementor/widgets/theme-elements/current-time.php:139
|
1210 |
#: includes/elementor/widgets/theme-elements/logo.php:165
|
1211 |
#: includes/elementor/widgets/theme-elements/menu.php:332
|
1212 |
+
#: includes/elementor/widgets/theme-elements/menu.php:1350
|
1213 |
#: includes/elementor/widgets/theme-elements/shopping-cart.php:199
|
1214 |
#: includes/elementor/widgets/theme-elements/site-title.php:192
|
1215 |
#: includes/elements/quote.php:112
|
1234 |
#: includes/elementor/widgets/modern-button.php:184
|
1235 |
#: includes/elementor/widgets/modern-button.php:806
|
1236 |
#: includes/elementor/widgets/quote.php:165
|
1237 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1656
|
1238 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1769
|
1239 |
#: includes/elementor/widgets/recent-posts-masonry.php:1155
|
1240 |
#: includes/elementor/widgets/recent-posts-timeline.php:134
|
1241 |
#: includes/elementor/widgets/staff.php:827
|
1251 |
#: includes/elementor/widgets/theme-elements/logo.php:161
|
1252 |
#: includes/elementor/widgets/theme-elements/menu.php:281
|
1253 |
#: includes/elementor/widgets/theme-elements/menu.php:328
|
1254 |
+
#: includes/elementor/widgets/theme-elements/menu.php:1346
|
1255 |
#: includes/elementor/widgets/theme-elements/shopping-cart.php:195
|
1256 |
#: includes/elementor/widgets/theme-elements/site-title.php:188
|
1257 |
#: includes/elements/button.php:183 includes/elements/image.php:151
|
1399 |
#: includes/elementor/widgets/tabs.php:195
|
1400 |
#: includes/elementor/widgets/text.php:1133
|
1401 |
#: includes/elementor/widgets/theme-elements/menu.php:999
|
1402 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:577
|
1403 |
#: includes/elements/button.php:179 includes/elements/code.php:99
|
1404 |
#: includes/elements/gallery.php:120 includes/elements/quote.php:109
|
1405 |
#: includes/elements/recent-posts-tiles-carousel.php:298
|
1444 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1171
|
1445 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1362
|
1446 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1467
|
1447 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1593
|
1448 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1724
|
1449 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1876
|
1450 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:624
|
1451 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:728
|
1452 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:905
|
1453 |
#: includes/elementor/widgets/recent-posts-masonry.php:670
|
1454 |
#: includes/elementor/widgets/recent-posts-masonry.php:740
|
1455 |
#: includes/elementor/widgets/recent-posts-masonry.php:844
|
1488 |
#: includes/elementor/widgets/theme-elements/menu.php:729
|
1489 |
#: includes/elementor/widgets/theme-elements/menu.php:875
|
1490 |
#: includes/elementor/widgets/theme-elements/menu.php:1038
|
1491 |
+
#: includes/elementor/widgets/theme-elements/menu.php:1234
|
1492 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:293
|
1493 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:390
|
1494 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:509
|
1495 |
msgid "Hover"
|
1496 |
msgstr ""
|
1497 |
|
2191 |
msgid "Choose"
|
2192 |
msgstr ""
|
2193 |
|
2194 |
+
#: includes/classes/class-auxin-walker-nav-menu-back.php:358
|
2195 |
msgid "Move"
|
2196 |
msgstr ""
|
2197 |
|
2198 |
+
#: includes/classes/class-auxin-walker-nav-menu-back.php:359
|
2199 |
msgid "Up one"
|
2200 |
msgstr ""
|
2201 |
|
2202 |
+
#: includes/classes/class-auxin-walker-nav-menu-back.php:360
|
2203 |
msgid "Down one"
|
2204 |
msgstr ""
|
2205 |
|
2206 |
+
#: includes/classes/class-auxin-walker-nav-menu-back.php:363
|
2207 |
msgid "To the top"
|
2208 |
msgstr ""
|
2209 |
|
2210 |
+
#: includes/classes/class-auxin-walker-nav-menu-back.php:370
|
2211 |
msgid "Original: %s"
|
2212 |
msgstr ""
|
2213 |
|
2214 |
+
#: includes/classes/class-auxin-walker-nav-menu-back.php:383
|
2215 |
msgid "Remove"
|
2216 |
msgstr ""
|
2217 |
|
2218 |
+
#: includes/classes/class-auxin-walker-nav-menu-back.php:384
|
2219 |
#: includes/classes/class-auxin-welcome.php:1313
|
2220 |
#: includes/classes/class-auxin-welcome.php:1341
|
2221 |
#: includes/classes/class-auxin-welcome.php:1436
|
2717 |
|
2718 |
#: includes/classes/class-auxin-widget.php:112
|
2719 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:95
|
2720 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:92
|
2721 |
#: includes/elementor/widgets/recent-posts-masonry.php:95
|
2722 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:92
|
2723 |
#: includes/elementor/widgets/recent-posts-tiles.php:92
|
2724 |
#: includes/elementor/widgets/recent-posts-timeline.php:92
|
2725 |
#: includes/elementor/widgets/recent-products.php:101
|
2726 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:1069
|
2727 |
#: includes/elements/popular-posts-widget.php:16
|
2728 |
#: includes/elements/recent-posts-grid-carousel.php:16
|
2729 |
#: includes/elements/recent-posts-land-style.php:16
|
2952 |
#: includes/elementor/widgets/modern-button.php:192
|
2953 |
#: includes/elementor/widgets/modern-button.php:807
|
2954 |
#: includes/elementor/widgets/quote.php:173
|
2955 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1664
|
2956 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1777
|
2957 |
#: includes/elementor/widgets/recent-posts-masonry.php:1163
|
2958 |
#: includes/elementor/widgets/recent-posts-timeline.php:138
|
2959 |
#: includes/elementor/widgets/staff.php:819
|
2969 |
#: includes/elementor/widgets/theme-elements/logo.php:169
|
2970 |
#: includes/elementor/widgets/theme-elements/menu.php:282
|
2971 |
#: includes/elementor/widgets/theme-elements/menu.php:336
|
2972 |
+
#: includes/elementor/widgets/theme-elements/menu.php:1354
|
2973 |
#: includes/elementor/widgets/theme-elements/shopping-cart.php:203
|
2974 |
#: includes/elementor/widgets/theme-elements/site-title.php:196
|
2975 |
#: includes/elements/button.php:187 includes/elements/image.php:152
|
3020 |
#: includes/elementor/widgets/theme-elements/logo.php:257
|
3021 |
#: includes/elementor/widgets/theme-elements/logo.php:515
|
3022 |
#: includes/elementor/widgets/theme-elements/logo.php:607
|
3023 |
+
#: includes/elementor/widgets/theme-elements/shopping-cart.php:419
|
3024 |
msgid "Max Width"
|
3025 |
msgstr ""
|
3026 |
|
3144 |
|
3145 |
#: includes/elementor/modules/dynamic-tags/author-name.php:18
|
3146 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:612
|
3147 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:307
|
3148 |
#: includes/elementor/widgets/recent-posts-masonry.php:386
|
3149 |
#: includes/elementor/widgets/recent-posts-timeline.php:315
|
3150 |
#: includes/elements/recent-posts-grid-carousel.php:448
|
3224 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:235
|
3225 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:613
|
3226 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:879
|
3227 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:308
|
3228 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:494
|
3229 |
#: includes/elementor/widgets/recent-posts-masonry.php:387
|
3230 |
#: includes/elementor/widgets/recent-posts-masonry.php:590
|
3231 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:205
|
3392 |
#: includes/elementor/widgets/recent-comments.php:171
|
3393 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:781
|
3394 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1028
|
3395 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:414
|
3396 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:585
|
3397 |
#: includes/elementor/widgets/recent-posts-masonry.php:510
|
3398 |
#: includes/elementor/widgets/recent-posts-masonry.php:701
|
3399 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:405
|
3685 |
#: includes/elementor/modules/dynamic-tags/user-info.php:76
|
3686 |
#: includes/elementor/widgets/gallery.php:304
|
3687 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:782
|
3688 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:415
|
3689 |
#: includes/elementor/widgets/recent-posts-masonry.php:511
|
3690 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:406
|
3691 |
#: includes/elementor/widgets/recent-posts-tiles.php:308
|
3742 |
#: includes/elementor/modules/query-control/controls/group-control-query.php:169
|
3743 |
#: includes/elementor/modules/query-control/controls/group-control-query.php:225
|
3744 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:786
|
3745 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:419
|
3746 |
#: includes/elementor/widgets/recent-posts-masonry.php:515
|
3747 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:410
|
3748 |
#: includes/elementor/widgets/recent-posts-tiles.php:312
|
3829 |
#: includes/elementor/modules/query-control/controls/group-control-query.php:276
|
3830 |
#: includes/elementor/modules/query-control/controls/group-control-query.php:345
|
3831 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:779
|
3832 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:412
|
3833 |
#: includes/elementor/widgets/recent-posts-masonry.php:508
|
3834 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:403
|
3835 |
#: includes/elementor/widgets/recent-posts-tiles.php:305
|
3903 |
#: includes/elementor/modules/query-control/controls/group-control-query.php:347
|
3904 |
#: includes/elementor/widgets/gallery.php:302
|
3905 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:780
|
3906 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:413
|
3907 |
#: includes/elementor/widgets/recent-posts-masonry.php:509
|
3908 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:404
|
3909 |
#: includes/elementor/widgets/recent-posts-tiles.php:306
|
3927 |
|
3928 |
#: includes/elementor/modules/query-control/controls/group-control-query.php:348
|
3929 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:783
|
3930 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:416
|
3931 |
#: includes/elementor/widgets/recent-posts-masonry.php:512
|
3932 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:407
|
3933 |
#: includes/elementor/widgets/recent-posts-tiles.php:309
|
3951 |
#: includes/elementor/modules/query-control/controls/group-control-query.php:356
|
3952 |
#: includes/elementor/widgets/gallery.php:282
|
3953 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:798
|
3954 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:428
|
3955 |
#: includes/elementor/widgets/recent-posts-masonry.php:524
|
3956 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:419
|
3957 |
#: includes/elementor/widgets/recent-posts-tiles.php:321
|
4181 |
#: includes/elementor/widgets/theme-elements/logo.php:585
|
4182 |
#: includes/elementor/widgets/theme-elements/menu.php:530
|
4183 |
#: includes/elementor/widgets/theme-elements/menu.php:969
|
4184 |
+
#: includes/elementor/widgets/theme-elements/menu.php:1328
|
4185 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:869
|
4186 |
#: includes/elementor/widgets/theme-elements/search.php:318
|
4187 |
#: includes/elementor/widgets/theme-elements/search.php:428
|
4188 |
#: includes/elementor/widgets/theme-elements/site-title.php:334
|
4211 |
#: includes/elementor/widgets/modern-button.php:900
|
4212 |
#: includes/elementor/widgets/modern-button.php:999
|
4213 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:957
|
4214 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:552
|
4215 |
#: includes/elementor/widgets/recent-posts-masonry.php:630
|
4216 |
#: includes/elementor/widgets/recent-posts-timeline.php:577
|
4217 |
#: includes/elementor/widgets/recent-products.php:522
|
4226 |
#: includes/elementor/widgets/theme-elements/menu.php:754
|
4227 |
#: includes/elementor/widgets/theme-elements/menu.php:851
|
4228 |
#: includes/elementor/widgets/theme-elements/menu.php:929
|
4229 |
+
#: includes/elementor/widgets/theme-elements/menu.php:1210
|
4230 |
+
#: includes/elementor/widgets/theme-elements/menu.php:1288
|
4231 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:484
|
4232 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:548
|
4233 |
#: includes/elementor/widgets/theme-elements/search.php:363
|
4234 |
msgid "Border Radius"
|
4235 |
msgstr ""
|
4270 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1145
|
4271 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1332
|
4272 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1447
|
4273 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1566
|
4274 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1697
|
4275 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1820
|
4276 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:598
|
4277 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:702
|
4278 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:885
|
4279 |
#: includes/elementor/widgets/recent-posts-masonry.php:647
|
4280 |
#: includes/elementor/widgets/recent-posts-masonry.php:714
|
4281 |
#: includes/elementor/widgets/recent-posts-masonry.php:818
|
4315 |
#: includes/elementor/widgets/theme-elements/menu.php:680
|
4316 |
#: includes/elementor/widgets/theme-elements/menu.php:796
|
4317 |
#: includes/elementor/widgets/theme-elements/menu.php:1017
|
4318 |
+
#: includes/elementor/widgets/theme-elements/menu.php:1156
|
4319 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:246
|
4320 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:353
|
4321 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:444
|
4322 |
#: includes/elements/button.php:118 includes/elements/text.php:738
|
4323 |
#: includes/general-hooks.php:754 includes/general-hooks.php:1159
|
4324 |
msgid "Normal"
|
4331 |
#: includes/elementor/widgets/accordion.php:458
|
4332 |
#: includes/elementor/widgets/accordion.php:496
|
4333 |
#: includes/elementor/widgets/image.php:653
|
4334 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:568
|
4335 |
#: includes/elementor/widgets/tabs.php:259
|
4336 |
+
#: includes/elementor/widgets/theme-elements/shopping-cart.php:280
|
4337 |
+
#: includes/elementor/widgets/theme-elements/shopping-cart.php:470
|
4338 |
msgid "Box Shadow"
|
4339 |
msgstr ""
|
4340 |
|
4356 |
|
4357 |
#: includes/elementor/widgets/accordion.php:357
|
4358 |
#: includes/elementor/widgets/tabs.php:196
|
4359 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:578
|
4360 |
msgid "Pointer"
|
4361 |
msgstr ""
|
4362 |
|
4364 |
#: includes/elementor/widgets/contact-box.php:322
|
4365 |
#: includes/elementor/widgets/gmap.php:203
|
4366 |
#: includes/elementor/widgets/tabs.php:197
|
4367 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:579
|
4368 |
#: includes/elements/contact-box.php:276 includes/elements/gmap.php:169
|
4369 |
msgid "Zoom"
|
4370 |
msgstr ""
|
4371 |
|
4372 |
#: includes/elementor/widgets/accordion.php:359
|
4373 |
#: includes/elementor/widgets/tabs.php:198
|
4374 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:580
|
4375 |
msgid "Help"
|
4376 |
msgstr ""
|
4377 |
|
4415 |
#: includes/elementor/widgets/theme-elements/breadcrumbs.php:475
|
4416 |
#: includes/elementor/widgets/theme-elements/menu.php:517
|
4417 |
#: includes/elementor/widgets/theme-elements/menu.php:956
|
4418 |
+
#: includes/elementor/widgets/theme-elements/menu.php:1315
|
4419 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:461
|
4420 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:526
|
4421 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:640
|
4422 |
#: includes/elementor/widgets/theme-elements/search.php:330
|
4423 |
#: includes/elementor/widgets/theme-elements/search.php:416
|
4424 |
+
#: includes/elementor/widgets/theme-elements/shopping-cart.php:336
|
4425 |
+
#: includes/elementor/widgets/theme-elements/shopping-cart.php:438
|
4426 |
+
#: includes/elementor/widgets/theme-elements/shopping-cart.php:503
|
4427 |
#: includes/elementor/widgets/touch-slider.php:314
|
4428 |
#: includes/elementor/widgets/touch-slider.php:369
|
4429 |
#: includes/elementor/widgets/touch-slider.php:427
|
4489 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1267
|
4490 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1454
|
4491 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1474
|
4492 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1845
|
4493 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1901
|
4494 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:608
|
4495 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:634
|
4496 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:712
|
4497 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:738
|
4498 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:824
|
4499 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:892
|
4500 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:912
|
4501 |
#: includes/elementor/widgets/recent-posts-masonry.php:724
|
4502 |
#: includes/elementor/widgets/recent-posts-masonry.php:750
|
4503 |
#: includes/elementor/widgets/recent-posts-masonry.php:828
|
4562 |
#: includes/elementor/widgets/theme-elements/menu.php:882
|
4563 |
#: includes/elementor/widgets/theme-elements/menu.php:1024
|
4564 |
#: includes/elementor/widgets/theme-elements/menu.php:1045
|
4565 |
+
#: includes/elementor/widgets/theme-elements/menu.php:1163
|
4566 |
+
#: includes/elementor/widgets/theme-elements/menu.php:1241
|
4567 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:253
|
4568 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:300
|
4569 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:360
|
4570 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:397
|
|
|
4571 |
#: includes/elementor/widgets/theme-elements/site-title.php:303
|
4572 |
#: includes/elementor/widgets/theme-elements/site-title.php:369
|
4573 |
#: includes/elementor/widgets/theme-elements/site-title.php:435
|
4647 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:708
|
4648 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:723
|
4649 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:760
|
4650 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:128
|
4651 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:140
|
4652 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:182
|
4653 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:194
|
4654 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:207
|
4655 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:222
|
4656 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:237
|
4657 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:252
|
4658 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:264
|
4659 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:277
|
4660 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:319
|
4661 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:371
|
4662 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:383
|
4663 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:395
|
4664 |
#: includes/elementor/widgets/recent-posts-masonry.php:179
|
4665 |
#: includes/elementor/widgets/recent-posts-masonry.php:192
|
4666 |
#: includes/elementor/widgets/recent-posts-masonry.php:207
|
4793 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:709
|
4794 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:724
|
4795 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:761
|
4796 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:129
|
4797 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:141
|
4798 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:183
|
4799 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:195
|
4800 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:208
|
4801 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:223
|
4802 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:238
|
4803 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:253
|
4804 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:265
|
4805 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:278
|
4806 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:320
|
4807 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:372
|
4808 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:384
|
4809 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:396
|
4810 |
#: includes/elementor/widgets/recent-posts-masonry.php:180
|
4811 |
#: includes/elementor/widgets/recent-posts-masonry.php:193
|
4812 |
#: includes/elementor/widgets/recent-posts-masonry.php:208
|
4959 |
|
4960 |
#: includes/elementor/widgets/before-after.php:155
|
4961 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:850
|
4962 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:468
|
4963 |
#: includes/elementor/widgets/recent-posts-masonry.php:564
|
4964 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:459
|
4965 |
#: includes/elementor/widgets/recent-posts-tiles.php:361
|
5015 |
#: includes/elementor/widgets/text.php:278
|
5016 |
#: includes/elementor/widgets/text.php:1012
|
5017 |
#: includes/elementor/widgets/theme-elements/modern-search.php:99
|
5018 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:434
|
5019 |
#: includes/elementor/widgets/theme-elements/search.php:120
|
5020 |
#: includes/elementor/widgets/theme-elements/search.php:381
|
5021 |
#: includes/elements/button.php:16 includes/elements/button.php:47
|
5129 |
|
5130 |
#: includes/elementor/widgets/button.php:230
|
5131 |
#: includes/elementor/widgets/carousel-navigation.php:164
|
5132 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1651
|
5133 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1764
|
5134 |
#: includes/elementor/widgets/recent-posts-masonry.php:1150
|
5135 |
#: includes/elementor/widgets/theme-elements/current-time.php:131
|
5136 |
msgid "Align"
|
5147 |
#: includes/elementor/widgets/modern-button.php:958
|
5148 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1340
|
5149 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1370
|
5150 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1574
|
5151 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1612
|
5152 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1705
|
5153 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1743
|
5154 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1828
|
5155 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1884
|
5156 |
#: includes/elementor/widgets/recent-posts-masonry.php:1091
|
5157 |
#: includes/elementor/widgets/recent-posts-masonry.php:1129
|
5158 |
#: includes/elementor/widgets/recent-posts-masonry.php:1226
|
5171 |
#: includes/elementor/widgets/theme-elements/menu.php:737
|
5172 |
#: includes/elementor/widgets/theme-elements/menu.php:841
|
5173 |
#: includes/elementor/widgets/theme-elements/menu.php:920
|
5174 |
+
#: includes/elementor/widgets/theme-elements/menu.php:1201
|
5175 |
+
#: includes/elementor/widgets/theme-elements/menu.php:1279
|
5176 |
+
#: includes/elementor/widgets/theme-elements/menu.php:1417
|
5177 |
+
#: includes/elementor/widgets/theme-elements/shopping-cart.php:249
|
5178 |
+
#: includes/elementor/widgets/theme-elements/shopping-cart.php:452
|
5179 |
msgid "Background"
|
5180 |
msgstr ""
|
5181 |
|
5190 |
#: includes/elementor/widgets/text.php:116
|
5191 |
#: includes/elementor/widgets/text.php:126
|
5192 |
#: includes/elementor/widgets/theme-elements/modern-search.php:106
|
5193 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:236
|
5194 |
#: includes/elementor/widgets/theme-elements/search.php:106
|
5195 |
#: includes/elementor/widgets/theme-elements/search.php:119
|
5196 |
#: includes/elementor/widgets/theme-elements/search.php:131
|
5239 |
#: includes/elementor/widgets/button.php:390
|
5240 |
#: includes/elementor/widgets/text.php:429
|
5241 |
#: includes/elementor/widgets/text.php:1150
|
|
|
5242 |
msgid "Icon Size"
|
5243 |
msgstr ""
|
5244 |
|
5262 |
#: includes/elementor/widgets/theme-elements/breadcrumbs.php:287
|
5263 |
#: includes/elementor/widgets/theme-elements/current-time.php:163
|
5264 |
#: includes/elementor/widgets/theme-elements/modern-search.php:118
|
5265 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:342
|
5266 |
#: includes/elements/custom-list.php:58 includes/elements/image.php:302
|
5267 |
msgid "Text"
|
5268 |
msgstr ""
|
5282 |
#: includes/elementor/widgets/modern-button.php:646
|
5283 |
#: includes/elementor/widgets/modern-button.php:720
|
5284 |
#: includes/elementor/widgets/modern-button.php:758
|
5285 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1857
|
5286 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1913
|
5287 |
#: includes/elementor/widgets/recent-posts-masonry.php:1255
|
5288 |
#: includes/elementor/widgets/recent-posts-masonry.php:1311
|
5289 |
#: includes/elementor/widgets/text.php:746
|
5329 |
|
5330 |
#: includes/elementor/widgets/carousel-navigation.php:128
|
5331 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:887
|
5332 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:502
|
5333 |
#: includes/elementor/widgets/recent-posts-masonry.php:598
|
5334 |
#: includes/elementor/widgets/recent-posts-tiles.php:395
|
5335 |
#: includes/elementor/widgets/recent-posts-timeline.php:527
|
5376 |
#: includes/elementor/widgets/text.php:1023
|
5377 |
#: includes/elementor/widgets/theme-elements/breadcrumbs.php:268
|
5378 |
#: includes/elementor/widgets/theme-elements/breadcrumbs.php:400
|
5379 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:264
|
5380 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:311
|
5381 |
#: includes/elementor/widgets/theme-elements/search.php:213
|
5382 |
#: includes/elements/image.php:87
|
5383 |
msgid "Size"
|
5656 |
msgstr ""
|
5657 |
|
5658 |
#: includes/elementor/widgets/contact-form.php:920
|
5659 |
+
#: includes/elementor/widgets/theme-elements/shopping-cart.php:354
|
5660 |
msgid "Dropdown"
|
5661 |
msgstr ""
|
5662 |
|
6055 |
|
6056 |
#: includes/elementor/widgets/gallery.php:188
|
6057 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:919
|
6058 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:534
|
6059 |
#: includes/elementor/widgets/recent-posts-timeline.php:559
|
6060 |
#: includes/elementor/widgets/recent-products.php:504
|
6061 |
#: includes/elements/gallery.php:292
|
6311 |
#: includes/elementor/widgets/image.php:418
|
6312 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:742
|
6313 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:908
|
6314 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:523
|
6315 |
#: includes/elementor/widgets/recent-posts-masonry.php:619
|
6316 |
#: includes/elementor/widgets/recent-posts-timeline.php:548
|
6317 |
#: includes/elementor/widgets/recent-products.php:493
|
6415 |
|
6416 |
#: includes/elementor/widgets/image.php:343
|
6417 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:381
|
6418 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:138
|
6419 |
#: includes/elementor/widgets/recent-posts-masonry.php:205
|
6420 |
#: includes/elementor/widgets/recent-posts-timeline.php:192
|
6421 |
#: includes/elementor/widgets/recent-products.php:224
|
6426 |
|
6427 |
#: includes/elementor/widgets/image.php:355
|
6428 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:396
|
6429 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:153
|
6430 |
#: includes/elementor/widgets/recent-posts-masonry.php:220
|
6431 |
#: includes/elementor/widgets/recent-posts-timeline.php:207
|
6432 |
#: includes/elementor/widgets/recent-products.php:239
|
6437 |
|
6438 |
#: includes/elementor/widgets/image.php:370
|
6439 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:411
|
6440 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:168
|
6441 |
#: includes/elementor/widgets/recent-posts-masonry.php:235
|
6442 |
#: includes/elementor/widgets/recent-posts-timeline.php:222
|
6443 |
#: includes/elementor/widgets/recent-products.php:254
|
6470 |
|
6471 |
#: includes/elementor/widgets/image.php:662
|
6472 |
#: includes/elementor/widgets/quote.php:186
|
6473 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1600
|
6474 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1731
|
6475 |
#: includes/elementor/widgets/recent-posts-masonry.php:1117
|
6476 |
#: includes/elementor/widgets/theme-elements/breadcrumbs.php:325
|
6477 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:607
|
6478 |
+
#: includes/elementor/widgets/theme-elements/shopping-cart.php:269
|
6479 |
msgid "Text Color"
|
6480 |
msgstr ""
|
6481 |
|
6650 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1293
|
6651 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1415
|
6652 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1510
|
6653 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:664
|
6654 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:768
|
6655 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:850
|
6656 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:936
|
6657 |
#: includes/elementor/widgets/recent-posts-masonry.php:780
|
6658 |
#: includes/elementor/widgets/recent-posts-masonry.php:884
|
6659 |
#: includes/elementor/widgets/recent-posts-masonry.php:966
|
6684 |
|
6685 |
#: includes/elementor/widgets/recent-comments.php:331
|
6686 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1230
|
6687 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:787
|
6688 |
#: includes/elementor/widgets/recent-posts-masonry.php:903
|
6689 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:677
|
6690 |
#: includes/elementor/widgets/recent-posts-tiles.php:618
|
6898 |
msgstr ""
|
6899 |
|
6900 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:329
|
6901 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:117
|
6902 |
#: includes/elementor/widgets/recent-posts-masonry.php:168
|
6903 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:291
|
6904 |
#: includes/elementor/widgets/recent-posts-tiles.php:193
|
6910 |
msgstr ""
|
6911 |
|
6912 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:337
|
6913 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:125
|
6914 |
#: includes/elementor/widgets/recent-posts-masonry.php:176
|
6915 |
#: includes/elementor/widgets/recent-posts-timeline.php:163
|
6916 |
#: includes/elementor/widgets/recent-products.php:209
|
6930 |
msgstr ""
|
6931 |
|
6932 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:423
|
6933 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:180
|
6934 |
#: includes/elementor/widgets/recent-posts-masonry.php:247
|
6935 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:299
|
6936 |
#: includes/elementor/widgets/recent-posts-tiles.php:201
|
6947 |
msgstr ""
|
6948 |
|
6949 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:447
|
6950 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:192
|
6951 |
#: includes/elementor/widgets/recent-posts-masonry.php:259
|
6952 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:311
|
6953 |
#: includes/elementor/widgets/recent-posts-tiles.php:213
|
6966 |
msgstr ""
|
6967 |
|
6968 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:488
|
6969 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:220
|
6970 |
#: includes/elementor/widgets/recent-posts-masonry.php:287
|
6971 |
#: includes/elementor/widgets/recent-products.php:278
|
6972 |
#: includes/elementor/widgets/theme-elements/modern-search.php:197
|
6980 |
msgstr ""
|
6981 |
|
6982 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:515
|
6983 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:235
|
6984 |
#: includes/elementor/widgets/recent-posts-masonry.php:302
|
6985 |
#: includes/elements/recent-posts-grid-carousel.php:363
|
6986 |
msgid "Display Date"
|
6987 |
msgstr ""
|
6988 |
|
6989 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:530
|
6990 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:204
|
6991 |
#: includes/elementor/widgets/recent-posts-masonry.php:396
|
6992 |
#: includes/elementor/widgets/recent-posts-timeline.php:325
|
6993 |
msgid "Display Author in Header"
|
6994 |
msgstr ""
|
6995 |
|
6996 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:531
|
6997 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:205
|
6998 |
#: includes/elementor/widgets/recent-posts-masonry.php:397
|
6999 |
#: includes/elementor/widgets/recent-posts-timeline.php:326
|
7000 |
msgid "Enable it to display author name in header"
|
7007 |
msgstr ""
|
7008 |
|
7009 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:555
|
7010 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:250
|
7011 |
msgid "Display Comments Number"
|
7012 |
msgstr ""
|
7013 |
|
7014 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:567
|
7015 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:262
|
7016 |
#: includes/elementor/widgets/recent-posts-masonry.php:329
|
7017 |
#: includes/elementor/widgets/recent-posts-timeline.php:258
|
7018 |
#: includes/elements/recent-posts-grid-carousel.php:380
|
7022 |
msgstr ""
|
7023 |
|
7024 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:579
|
7025 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:274
|
7026 |
#: includes/elementor/widgets/recent-posts-masonry.php:353
|
7027 |
#: includes/elementor/widgets/recent-posts-timeline.php:282
|
7028 |
#: includes/elements/popular-posts-widget.php:146
|
7032 |
msgstr ""
|
7033 |
|
7034 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:580
|
7035 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:275
|
7036 |
#: includes/elementor/widgets/recent-posts-masonry.php:354
|
7037 |
#: includes/elementor/widgets/recent-posts-timeline.php:283
|
7038 |
#: includes/elements/popular-posts-widget.php:147
|
7042 |
msgstr ""
|
7043 |
|
7044 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:592
|
7045 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:287
|
7046 |
#: includes/elementor/widgets/recent-posts-masonry.php:366
|
7047 |
#: includes/elementor/widgets/recent-posts-timeline.php:295
|
7048 |
#: includes/elements/popular-posts-widget.php:175
|
7055 |
msgstr ""
|
7056 |
|
7057 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:593
|
7058 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:288
|
7059 |
#: includes/elementor/widgets/recent-posts-masonry.php:367
|
7060 |
#: includes/elementor/widgets/recent-posts-timeline.php:296
|
7061 |
#: includes/elements/recent-posts-grid-carousel.php:426
|
7066 |
msgstr ""
|
7067 |
|
7068 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:605
|
7069 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:300
|
7070 |
#: includes/elementor/widgets/recent-posts-masonry.php:379
|
7071 |
#: includes/elementor/widgets/recent-posts-timeline.php:308
|
7072 |
#: includes/elements/recent-posts-grid-carousel.php:439
|
7077 |
msgstr ""
|
7078 |
|
7079 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:607
|
7080 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:302
|
7081 |
#: includes/elementor/widgets/recent-posts-masonry.php:381
|
7082 |
#: includes/elementor/widgets/recent-posts-timeline.php:310
|
7083 |
#: includes/elements/recent-posts-grid-carousel.php:440
|
7088 |
msgstr ""
|
7089 |
|
7090 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:611
|
7091 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1810
|
7092 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:306
|
7093 |
#: includes/elementor/widgets/recent-posts-masonry.php:385
|
7094 |
#: includes/elementor/widgets/recent-posts-masonry.php:1208
|
7095 |
#: includes/elementor/widgets/recent-posts-timeline.php:314
|
7102 |
msgstr ""
|
7103 |
|
7104 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:622
|
7105 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:316
|
7106 |
#: includes/elementor/widgets/recent-posts-masonry.php:412
|
7107 |
#: includes/elementor/widgets/recent-posts-timeline.php:341
|
7108 |
msgid "Display Author in Footer"
|
7109 |
msgstr ""
|
7110 |
|
7111 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:623
|
7112 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:317
|
7113 |
#: includes/elementor/widgets/recent-posts-masonry.php:413
|
7114 |
#: includes/elementor/widgets/recent-posts-timeline.php:342
|
7115 |
msgid "Enable it to display author name in footer"
|
7120 |
msgstr ""
|
7121 |
|
7122 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:660
|
7123 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:338
|
7124 |
#: includes/elementor/widgets/recent-posts-masonry.php:434
|
7125 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:329
|
7126 |
#: includes/elementor/widgets/recent-posts-tiles.php:231
|
7211 |
msgstr ""
|
7212 |
|
7213 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:679
|
7214 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:345
|
7215 |
#: includes/elementor/widgets/recent-posts-masonry.php:441
|
7216 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:336
|
7217 |
#: includes/elementor/widgets/recent-posts-tiles.php:238
|
7230 |
msgstr ""
|
7231 |
|
7232 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:680
|
7233 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:346
|
7234 |
#: includes/elementor/widgets/recent-posts-masonry.php:442
|
7235 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:337
|
7236 |
#: includes/elementor/widgets/recent-posts-tiles.php:239
|
7248 |
msgstr ""
|
7249 |
|
7250 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:694
|
7251 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:357
|
7252 |
#: includes/elementor/widgets/recent-posts-masonry.php:453
|
7253 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:348
|
7254 |
#: includes/elementor/widgets/recent-posts-tiles.php:250
|
7265 |
msgstr ""
|
7266 |
|
7267 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:706
|
7268 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:369
|
7269 |
#: includes/elementor/widgets/recent-posts-masonry.php:465
|
7270 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:360
|
7271 |
#: includes/elementor/widgets/recent-posts-tiles.php:262
|
7310 |
msgstr ""
|
7311 |
|
7312 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:758
|
7313 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:393
|
7314 |
#: includes/elementor/widgets/recent-posts-masonry.php:489
|
7315 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:384
|
7316 |
#: includes/elementor/widgets/recent-posts-tiles.php:286
|
7326 |
msgstr ""
|
7327 |
|
7328 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:775
|
7329 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:408
|
7330 |
#: includes/elementor/widgets/recent-posts-masonry.php:504
|
7331 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:399
|
7332 |
#: includes/elementor/widgets/recent-posts-tiles.php:301
|
7348 |
msgstr ""
|
7349 |
|
7350 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:784
|
7351 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:417
|
7352 |
#: includes/elementor/widgets/recent-posts-masonry.php:513
|
7353 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:408
|
7354 |
#: includes/elementor/widgets/recent-posts-tiles.php:310
|
7370 |
msgstr ""
|
7371 |
|
7372 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:785
|
7373 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:418
|
7374 |
#: includes/elementor/widgets/recent-posts-masonry.php:514
|
7375 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:409
|
7376 |
#: includes/elementor/widgets/recent-posts-tiles.php:311
|
7392 |
msgstr ""
|
7393 |
|
7394 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:787
|
7395 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:420
|
7396 |
#: includes/elementor/widgets/recent-posts-masonry.php:516
|
7397 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:411
|
7398 |
#: includes/elementor/widgets/recent-posts-tiles.php:313
|
7411 |
msgstr ""
|
7412 |
|
7413 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:802
|
7414 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:432
|
7415 |
#: includes/elementor/widgets/recent-posts-masonry.php:528
|
7416 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:423
|
7417 |
#: includes/elementor/widgets/recent-posts-tiles.php:325
|
7433 |
msgstr ""
|
7434 |
|
7435 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:803
|
7436 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:433
|
7437 |
#: includes/elementor/widgets/recent-posts-masonry.php:529
|
7438 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:424
|
7439 |
#: includes/elementor/widgets/recent-posts-tiles.php:326
|
7455 |
msgstr ""
|
7456 |
|
7457 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:814
|
7458 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:441
|
7459 |
#: includes/elementor/widgets/recent-posts-masonry.php:537
|
7460 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:432
|
7461 |
#: includes/elementor/widgets/recent-posts-tiles.php:334
|
7470 |
msgstr ""
|
7471 |
|
7472 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:815
|
7473 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:442
|
7474 |
#: includes/elementor/widgets/recent-posts-masonry.php:538
|
7475 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:433
|
7476 |
#: includes/elementor/widgets/recent-posts-tiles.php:335
|
7488 |
msgstr ""
|
7489 |
|
7490 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:826
|
7491 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:450
|
7492 |
#: includes/elementor/widgets/recent-posts-masonry.php:546
|
7493 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:441
|
7494 |
#: includes/elementor/widgets/recent-posts-tiles.php:343
|
7505 |
msgstr ""
|
7506 |
|
7507 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:827
|
7508 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:451
|
7509 |
#: includes/elementor/widgets/recent-posts-masonry.php:547
|
7510 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:442
|
7511 |
#: includes/elementor/widgets/recent-posts-tiles.php:344
|
7523 |
msgstr ""
|
7524 |
|
7525 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:838
|
7526 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:459
|
7527 |
#: includes/elementor/widgets/recent-posts-masonry.php:555
|
7528 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:450
|
7529 |
#: includes/elementor/widgets/recent-posts-tiles.php:352
|
7539 |
msgstr ""
|
7540 |
|
7541 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:839
|
7542 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:460
|
7543 |
#: includes/elementor/widgets/recent-posts-masonry.php:556
|
7544 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:451
|
7545 |
#: includes/elementor/widgets/recent-posts-tiles.php:353
|
7557 |
msgstr ""
|
7558 |
|
7559 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:851
|
7560 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:469
|
7561 |
#: includes/elementor/widgets/recent-posts-masonry.php:565
|
7562 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:460
|
7563 |
#: includes/elementor/widgets/recent-posts-tiles.php:362
|
7574 |
msgstr ""
|
7575 |
|
7576 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:868
|
7577 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:483
|
7578 |
#: includes/elementor/widgets/recent-posts-masonry.php:579
|
7579 |
#: includes/elementor/widgets/recent-posts-tiles.php:376
|
7580 |
#: includes/elementor/widgets/recent-posts-timeline.php:508
|
7582 |
msgstr ""
|
7583 |
|
7584 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:875
|
7585 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:490
|
7586 |
#: includes/elementor/widgets/recent-posts-masonry.php:586
|
7587 |
#: includes/elementor/widgets/recent-posts-tiles.php:383
|
7588 |
#: includes/elementor/widgets/recent-posts-timeline.php:515
|
7595 |
msgstr ""
|
7596 |
|
7597 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:883
|
7598 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:498
|
7599 |
#: includes/elementor/widgets/recent-posts-masonry.php:594
|
7600 |
#: includes/elementor/widgets/recent-posts-tiles.php:391
|
7601 |
#: includes/elementor/widgets/recent-posts-timeline.php:523
|
7608 |
msgstr ""
|
7609 |
|
7610 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:891
|
7611 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:506
|
7612 |
#: includes/elementor/widgets/recent-posts-masonry.php:602
|
7613 |
#: includes/elementor/widgets/recent-posts-tiles.php:399
|
7614 |
#: includes/elementor/widgets/recent-posts-timeline.php:531
|
7621 |
msgstr ""
|
7622 |
|
7623 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:923
|
7624 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:538
|
7625 |
#: includes/elementor/widgets/recent-posts-timeline.php:563
|
7626 |
#: includes/elementor/widgets/recent-products.php:508
|
7627 |
#: includes/elements/gallery.php:300
|
7633 |
msgstr ""
|
7634 |
|
7635 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:924
|
7636 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:539
|
7637 |
#: includes/elementor/widgets/recent-posts-timeline.php:564
|
7638 |
#: includes/elementor/widgets/recent-products.php:509
|
7639 |
#: includes/elements/gallery.php:301
|
7645 |
msgstr ""
|
7646 |
|
7647 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:925
|
7648 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:540
|
7649 |
#: includes/elementor/widgets/recent-posts-timeline.php:565
|
7650 |
#: includes/elementor/widgets/recent-products.php:510
|
7651 |
#: includes/elements/gallery.php:302
|
7657 |
msgstr ""
|
7658 |
|
7659 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:926
|
7660 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:541
|
7661 |
#: includes/elementor/widgets/recent-posts-timeline.php:566
|
7662 |
#: includes/elementor/widgets/recent-products.php:511
|
7663 |
#: includes/elements/gallery.php:303
|
7673 |
msgstr ""
|
7674 |
|
7675 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1132
|
7676 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:689
|
7677 |
#: includes/elementor/widgets/recent-posts-masonry.php:805
|
7678 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:579
|
7679 |
#: includes/elementor/widgets/recent-posts-tiles.php:520
|
7682 |
msgstr ""
|
7683 |
|
7684 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1256
|
7685 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:813
|
7686 |
#: includes/elementor/widgets/recent-posts-masonry.php:929
|
7687 |
#: includes/elementor/widgets/recent-posts-timeline.php:826
|
7688 |
msgid "Excerpt"
|
7693 |
msgstr ""
|
7694 |
|
7695 |
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1437
|
7696 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:875
|
7697 |
#: includes/elementor/widgets/recent-posts-masonry.php:991
|
7698 |
#: includes/elementor/widgets/recent-posts-timeline.php:888
|
7699 |
msgid "Meta"
|
7703 |
msgid "Padding for meta wrapper"
|
7704 |
msgstr ""
|
7705 |
|
7706 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1540
|
7707 |
#: includes/elementor/widgets/recent-posts-masonry.php:1178
|
7708 |
#: includes/elementor/widgets/staff.php:862
|
7709 |
msgid "Padding for main wrapper"
|
7710 |
msgstr ""
|
7711 |
|
7712 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1552
|
7713 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1792
|
7714 |
#: includes/elementor/widgets/recent-posts-masonry.php:1190
|
7715 |
#: includes/elementor/widgets/staff.php:874
|
7716 |
msgid "Padding for content wrapper"
|
7717 |
msgstr ""
|
7718 |
|
7719 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1629
|
7720 |
+
#: includes/elementor/widgets/text.php:616
|
7721 |
+
#: includes/elementor/widgets/text.php:1537
|
7722 |
+
msgid "Transition duration"
|
7723 |
+
msgstr ""
|
7724 |
+
|
7725 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1684
|
7726 |
msgid "Flip Wrapper"
|
7727 |
msgstr ""
|
7728 |
|
7729 |
+
#: includes/elementor/widgets/recent-posts-grid-carousel.php:1934
|
7730 |
#: includes/elementor/widgets/recent-posts-masonry.php:1332
|
7731 |
msgid "Button Padding"
|
7732 |
msgstr ""
|
7733 |
|
7734 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:49
|
7735 |
msgid "Land Style Posts"
|
7736 |
msgstr ""
|
7737 |
|
7738 |
+
#: includes/elementor/widgets/recent-posts-land-style.php:381
|
7739 |
#: includes/elementor/widgets/recent-posts-masonry.php:477
|
7740 |
#: includes/elementor/widgets/recent-posts-tiles-carousel.php:372
|
7741 |
#: includes/elementor/widgets/recent-posts-tiles.php:274
|
7918 |
msgstr ""
|
7919 |
|
7920 |
#: includes/elementor/widgets/search.php:47
|
7921 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:1031
|
7922 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:1034
|
7923 |
#: includes/elements/search.php:14
|
7924 |
msgid "Search"
|
7925 |
msgstr ""
|
8086 |
#: includes/elementor/widgets/staff.php:838
|
8087 |
#: includes/elementor/widgets/text.php:1429
|
8088 |
#: includes/elementor/widgets/theme-elements/menu.php:324
|
8089 |
+
#: includes/elementor/widgets/theme-elements/menu.php:1341
|
8090 |
#: includes/elements/text.php:118
|
8091 |
msgid "Text Align"
|
8092 |
msgstr ""
|
8306 |
msgid "Icon background color"
|
8307 |
msgstr ""
|
8308 |
|
|
|
|
|
|
|
|
|
|
|
8309 |
#: includes/elementor/widgets/text.php:645 includes/elements/text.php:577
|
8310 |
msgid "Default Aspect"
|
8311 |
msgstr ""
|
8393 |
|
8394 |
#: includes/elementor/widgets/theme-elements/breadcrumbs.php:253
|
8395 |
#: includes/elementor/widgets/theme-elements/breadcrumbs.php:385
|
|
|
8396 |
msgid "Icon Color"
|
8397 |
msgstr ""
|
8398 |
|
8648 |
msgid "Fullscreen Menu"
|
8649 |
msgstr ""
|
8650 |
|
8651 |
+
#: includes/elementor/widgets/theme-elements/menu.php:1370
|
8652 |
+
msgid "Main Menu Color"
|
8653 |
+
msgstr ""
|
8654 |
+
|
8655 |
+
#: includes/elementor/widgets/theme-elements/menu.php:1405
|
8656 |
+
msgid "Fullscreen Window"
|
8657 |
+
msgstr ""
|
8658 |
+
|
8659 |
+
#: includes/elementor/widgets/theme-elements/menu.php:1426
|
8660 |
msgid "Close Button"
|
8661 |
msgstr ""
|
8662 |
|
8663 |
+
#: includes/elementor/widgets/theme-elements/menu.php:1435
|
8664 |
+
msgid "Close button outline color"
|
|
|
8665 |
msgstr ""
|
8666 |
|
8667 |
+
#: includes/elementor/widgets/theme-elements/menu.php:1446
|
8668 |
+
msgid "Close button symbol color"
|
8669 |
+
msgstr ""
|
8670 |
+
|
8671 |
+
#: includes/elementor/widgets/theme-elements/menu.php:1459
|
8672 |
+
msgid "Display Menu Title"
|
8673 |
+
msgstr ""
|
8674 |
+
|
8675 |
+
#: includes/elementor/widgets/theme-elements/menu.php:1461
|
8676 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:691
|
8677 |
+
msgid "Show"
|
8678 |
+
msgstr ""
|
8679 |
+
|
8680 |
+
#: includes/elementor/widgets/theme-elements/menu.php:1462
|
8681 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:692
|
8682 |
+
msgid "Hide"
|
8683 |
+
msgstr ""
|
8684 |
+
|
8685 |
+
#: includes/elementor/widgets/theme-elements/menu.php:1469
|
8686 |
+
msgid "Menu Title Text"
|
8687 |
+
msgstr ""
|
8688 |
+
|
8689 |
+
#: includes/elementor/widgets/theme-elements/menu.php:1482
|
8690 |
+
msgid "Menu Title Typography"
|
8691 |
+
msgstr ""
|
8692 |
+
|
8693 |
+
#: includes/elementor/widgets/theme-elements/menu.php:1494
|
8694 |
+
msgid "Menu Title Color"
|
8695 |
+
msgstr ""
|
8696 |
+
|
8697 |
+
#: includes/elementor/widgets/theme-elements/menu.php:1521
|
8698 |
msgid "There are no menus in your site."
|
8699 |
msgstr ""
|
8700 |
|
8703 |
msgstr ""
|
8704 |
|
8705 |
#: includes/elementor/widgets/theme-elements/modern-search.php:136
|
8706 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:598
|
8707 |
msgid "Fullscreen Search Input"
|
8708 |
msgstr ""
|
8709 |
|
8723 |
msgid "Display Fill Submit Button"
|
8724 |
msgstr ""
|
8725 |
|
8726 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:210
|
8727 |
+
msgid "Custom Placeholder Text"
|
8728 |
+
msgstr ""
|
8729 |
+
|
8730 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:213
|
8731 |
+
msgid "Search ..."
|
8732 |
+
msgstr ""
|
8733 |
+
|
8734 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:220
|
8735 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:837
|
8736 |
+
msgid "Search Title"
|
8737 |
+
msgstr ""
|
8738 |
+
|
8739 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:223
|
8740 |
+
msgid "Type to Search"
|
8741 |
+
msgstr ""
|
8742 |
+
|
8743 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:574
|
8744 |
msgid "Cursor"
|
8745 |
msgstr ""
|
8746 |
|
8747 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:618
|
8748 |
+
msgid "Placeholder Text Color"
|
8749 |
+
msgstr ""
|
8750 |
+
|
8751 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:653
|
8752 |
msgid "Border Size"
|
8753 |
msgstr ""
|
8754 |
|
8755 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:689
|
8756 |
+
msgid "Display Search Icon"
|
8757 |
+
msgstr ""
|
8758 |
+
|
8759 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:701
|
8760 |
+
msgid "Search Icon Size"
|
8761 |
msgstr ""
|
8762 |
|
8763 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:731
|
8764 |
+
msgid "Search Icon Color"
|
8765 |
+
msgstr ""
|
8766 |
+
|
8767 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:751
|
8768 |
+
msgid "Overlay Background"
|
8769 |
+
msgstr ""
|
8770 |
+
|
8771 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:765
|
8772 |
msgid "Fullscreen Close Button"
|
8773 |
msgstr ""
|
8774 |
|
8775 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:773
|
8776 |
msgid "Top Position"
|
8777 |
msgstr ""
|
8778 |
|
8779 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:802
|
8780 |
msgid "Right Position"
|
8781 |
msgstr ""
|
8782 |
|
8783 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:849
|
8784 |
+
msgid "Title Color"
|
8785 |
+
msgstr ""
|
8786 |
+
|
8787 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:947
|
8788 |
+
#: includes/elementor/widgets/theme-elements/modern-search.php:1006
|
8789 |
msgid "Search..."
|
8790 |
msgstr ""
|
8791 |
|
8853 |
msgid "Sub Total"
|
8854 |
msgstr ""
|
8855 |
|
8856 |
+
#: includes/elementor/widgets/theme-elements/shopping-cart.php:226
|
8857 |
+
msgid "Checkout Text"
|
8858 |
+
msgstr ""
|
8859 |
+
|
8860 |
+
#: includes/elementor/widgets/theme-elements/shopping-cart.php:228
|
8861 |
+
msgid "Checkout"
|
8862 |
+
msgstr ""
|
8863 |
+
|
8864 |
+
#: includes/elementor/widgets/theme-elements/shopping-cart.php:241
|
8865 |
msgid "Counter Bubble"
|
8866 |
msgstr ""
|
8867 |
|
8868 |
+
#: includes/elementor/widgets/theme-elements/shopping-cart.php:289
|
8869 |
+
#: includes/elementor/widgets/theme-elements/shopping-cart.php:362
|
8870 |
msgid "Position from Bottom"
|
8871 |
msgstr ""
|
8872 |
|
8873 |
+
#: includes/elementor/widgets/theme-elements/shopping-cart.php:312
|
8874 |
msgid "Position from right"
|
8875 |
msgstr ""
|
8876 |
|
8877 |
+
#: includes/elementor/widgets/theme-elements/shopping-cart.php:390
|
8878 |
msgid "Position from Left"
|
8879 |
msgstr ""
|
8880 |
|
8881 |
+
#: includes/elementor/widgets/theme-elements/shopping-cart.php:485
|
8882 |
msgid "Item"
|
8883 |
msgstr ""
|
8884 |
|
8885 |
+
#: includes/elementor/widgets/theme-elements/shopping-cart.php:516
|
8886 |
msgid "Title color"
|
8887 |
msgstr ""
|
8888 |
|
8889 |
+
#: includes/elementor/widgets/theme-elements/shopping-cart.php:529
|
8890 |
msgid "Title Typography"
|
8891 |
msgstr ""
|
8892 |
|
8893 |
+
#: includes/elementor/widgets/theme-elements/shopping-cart.php:539
|
8894 |
msgid "Price color"
|
8895 |
msgstr ""
|
8896 |
|
8897 |
+
#: includes/elementor/widgets/theme-elements/shopping-cart.php:551
|
8898 |
msgid "Price Typography"
|
8899 |
msgstr ""
|
8900 |
|
9043 |
msgid "The name which appears in about widget."
|
9044 |
msgstr ""
|
9045 |
|
9046 |
+
#: includes/elements/about-widget.php:72 includes/general-hooks.php:2377
|
9047 |
msgid "Skills"
|
9048 |
msgstr ""
|
9049 |
|
11728 |
msgid "Hide Feedback Section"
|
11729 |
msgstr ""
|
11730 |
|
11731 |
+
#: includes/general-hooks.php:2370
|
11732 |
msgid "Twitter"
|
11733 |
msgstr ""
|
11734 |
|
11735 |
+
#: includes/general-hooks.php:2371
|
11736 |
msgid "Facebook"
|
11737 |
msgstr ""
|
11738 |
|
11739 |
+
#: includes/general-hooks.php:2372
|
11740 |
msgid "Google Plus"
|
11741 |
msgstr ""
|
11742 |
|
11743 |
+
#: includes/general-hooks.php:2373
|
11744 |
msgid "Flickr"
|
11745 |
msgstr ""
|
11746 |
|
11747 |
+
#: includes/general-hooks.php:2374
|
11748 |
msgid "Delicious"
|
11749 |
msgstr ""
|
11750 |
|
11751 |
+
#: includes/general-hooks.php:2375
|
11752 |
msgid "Pinterest"
|
11753 |
msgstr ""
|
11754 |
|
11755 |
+
#: includes/general-hooks.php:2376
|
11756 |
msgid "GitHub"
|
11757 |
msgstr ""
|
11758 |
|
11759 |
+
#: includes/general-hooks.php:2548
|
11760 |
msgid "Page Options"
|
11761 |
msgstr ""
|
11762 |
|
11763 |
+
#: includes/general-hooks.php:2556
|
11764 |
msgid "Post Options"
|
11765 |
msgstr ""
|
11766 |
|
11767 |
+
#: includes/general-hooks.php:3031
|
11768 |
msgid "Page %s"
|
11769 |
msgstr ""
|
11770 |
|
11995 |
msgid "Chats"
|
11996 |
msgstr ""
|
11997 |
|
11998 |
+
#: includes/general-hooks.php:3052
|
11999 |
#. translators: playlist item title
|
12000 |
msgctxt "playlist item title"
|
12001 |
msgid "“%s”"
|
12002 |
msgstr ""
|
12003 |
|
12004 |
+
#: includes/general-hooks.php:3077 includes/general-hooks.php:3082
|
12005 |
#. translators: playlist item title
|
12006 |
msgctxt "playlist item title"
|
12007 |
msgid "%s"
|
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.14 (2020-09)
|
2 |
* All required plugins
|
3 |
* http://phlox.pro/
|
4 |
*/
|