Version Description
Download this release
Release Info
Developer | averta |
Plugin | Shortcodes and extra features for Phlox theme |
Version | 2.7.12 |
Comparing to | |
See all releases |
Code changes from version 2.7.11 to 2.7.12
- README.txt +1 -1
- admin/assets/js/plugins.js +1 -1
- auxin-elements.php +2 -11
- includes/define.php +1 -1
- includes/elementor/modules/column.php +1 -1
- includes/elementor/modules/common.php +1 -1
- includes/elementor/modules/section.php +1 -1
- includes/elementor/modules/settings/base/manager.php +1 -1
- includes/elementor/modules/settings/general/manager.php +1 -1
- includes/elementor/modules/settings/page/manager.php +1 -1
- includes/elementor/widgets/accordion.php +3 -3
- includes/elementor/widgets/button.php +3 -3
- includes/elementor/widgets/contact-form.php +8 -8
- includes/elementor/widgets/custom-list.php +5 -5
- includes/elementor/widgets/gallery.php +2 -2
- includes/elementor/widgets/heading-modern.php +5 -5
- includes/elementor/widgets/image.php +2 -2
- includes/elementor/widgets/mailchimp.php +4 -4
- includes/elementor/widgets/modern-button.php +7 -7
- includes/elementor/widgets/quote.php +3 -3
- includes/elementor/widgets/recent-comments.php +3 -3
- includes/elementor/widgets/recent-posts-grid-carousel.php +8 -8
- includes/elementor/widgets/recent-posts-land-style.php +5 -5
- includes/elementor/widgets/recent-posts-masonry.php +7 -7
- includes/elementor/widgets/recent-posts-tiles-carousel.php +3 -3
- includes/elementor/widgets/recent-posts-tiles.php +3 -3
- includes/elementor/widgets/recent-posts-timeline.php +5 -5
- includes/elementor/widgets/recent-products.php +3 -3
- includes/elementor/widgets/responsive-table.php +3 -3
- includes/elementor/widgets/staff.php +4 -4
- includes/elementor/widgets/tabs.php +3 -3
- includes/elementor/widgets/testimonial.php +7 -7
- includes/elementor/widgets/text.php +6 -6
- includes/elementor/widgets/theme-elements/breadcrumbs.php +2 -2
- includes/elementor/widgets/theme-elements/copyright.php +3 -3
- includes/elementor/widgets/theme-elements/current-time.php +2 -2
- includes/elementor/widgets/theme-elements/logo.php +3 -3
- includes/elementor/widgets/theme-elements/menu.php +10 -10
- includes/elementor/widgets/theme-elements/modern-search.php +5 -5
- includes/elementor/widgets/theme-elements/search.php +3 -3
- includes/elementor/widgets/theme-elements/shopping-cart.php +4 -4
- includes/elementor/widgets/theme-elements/site-title.php +4 -4
- includes/elementor/widgets/touch-slider.php +3 -3
- includes/general-hooks.php +6 -1
- languages/auxin-elements-fa_IR.po +240 -244
- languages/auxin-elements.pot +241 -245
- 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.7.0
|
10 |
-
Stable tag: 2.7.
|
11 |
License: GPLv3
|
12 |
License URI: http://www.gnu.org/licenses/gpl.html
|
13 |
|
7 |
Requires PHP: 5.4
|
8 |
Requires at least: 4.6
|
9 |
Tested up to: 5.7.0
|
10 |
+
Stable tag: 2.7.12
|
11 |
License: GPLv3
|
12 |
License URI: http://www.gnu.org/licenses/gpl.html
|
13 |
|
admin/assets/js/plugins.js
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
/*! Phlox Core Plugin - v2.7.
|
2 |
* All required javascript plugins for admin
|
3 |
* http://phlox.pro/
|
4 |
* Place any jQuery/helper plugins in here, instead of separate, slower script files!
|
1 |
+
/*! Phlox Core Plugin - v2.7.12 (2021-04)
|
2 |
* All required javascript plugins for admin
|
3 |
* http://phlox.pro/
|
4 |
* Place any jQuery/helper plugins in here, instead of separate, slower script files!
|
auxin-elements.php
CHANGED
@@ -12,7 +12,7 @@
|
|
12 |
* Plugin Name: Phlox Core Elements
|
13 |
* Plugin URI: https://wordpress.org/plugins/auxin-elements/
|
14 |
* Description: Exclusive and comprehensive plugin that extends the functionality of Phlox theme by adding new Elements, widgets and options.
|
15 |
-
* Version: 2.7.
|
16 |
* Author: averta
|
17 |
* Author URI: http://averta.net
|
18 |
* Text Domain: auxin-elements
|
@@ -49,16 +49,7 @@ if( is_admin() ||
|
|
49 |
$plugin_requirements = new Auxin_Plugin_Requirements();
|
50 |
$plugin_requirements->requirements = array(
|
51 |
|
52 |
-
'plugins' => array(
|
53 |
-
array(
|
54 |
-
'name' => __('Page Builder by SiteOrigin', 'auxin-elements'), // The plugin name.
|
55 |
-
'basename' => 'siteorigin-panels/siteorigin-panels.php', // The plugin basename (typically the folder name and main php file)
|
56 |
-
'required' => false, // If true, the user will be notified with a notice to install the plugin.
|
57 |
-
'version' => '', // E.g. 1.0.0. If set, the active plugin must be this version or higher.
|
58 |
-
'dependency' => true, // If true, and the plugin is activated, the plugin will be loaded before as a dependeny.
|
59 |
-
'is_callable' => '' // If set, this callable will be be checked for availability to determine if a plugin is active.
|
60 |
-
)
|
61 |
-
),
|
62 |
'themes' => array(
|
63 |
array(
|
64 |
'name' => __('Phlox Pro', 'auxin-elements'), // The theme name.
|
12 |
* Plugin Name: Phlox Core Elements
|
13 |
* Plugin URI: https://wordpress.org/plugins/auxin-elements/
|
14 |
* Description: Exclusive and comprehensive plugin that extends the functionality of Phlox theme by adding new Elements, widgets and options.
|
15 |
+
* Version: 2.7.12
|
16 |
* Author: averta
|
17 |
* Author URI: http://averta.net
|
18 |
* Text Domain: auxin-elements
|
49 |
$plugin_requirements = new Auxin_Plugin_Requirements();
|
50 |
$plugin_requirements->requirements = array(
|
51 |
|
52 |
+
'plugins' => array(),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
53 |
'themes' => array(
|
54 |
array(
|
55 |
'name' => __('Phlox Pro', 'auxin-elements'), // The theme name.
|
includes/define.php
CHANGED
@@ -12,7 +12,7 @@ if( ! defined( 'THEME_NAME' ) ){
|
|
12 |
}
|
13 |
|
14 |
|
15 |
-
define( 'AUXELS_VERSION' , '2.7.
|
16 |
|
17 |
define( 'AUXELS_SLUG' , 'auxin-elements' );
|
18 |
|
12 |
}
|
13 |
|
14 |
|
15 |
+
define( 'AUXELS_VERSION' , '2.7.12' );
|
16 |
|
17 |
define( 'AUXELS_SLUG' , 'auxin-elements' );
|
18 |
|
includes/elementor/modules/column.php
CHANGED
@@ -7,7 +7,7 @@ use Elementor\Controls_Manager;
|
|
7 |
use Elementor\Group_Control_Image_Size;
|
8 |
use Elementor\Group_Control_Typography;
|
9 |
use Elementor\Scheme_Color;
|
10 |
-
use Elementor\
|
11 |
use Elementor\Control_Media;
|
12 |
use Elementor\Group_Control_Border;
|
13 |
use Elementor\Group_Control_Box_Shadow;
|
7 |
use Elementor\Group_Control_Image_Size;
|
8 |
use Elementor\Group_Control_Typography;
|
9 |
use Elementor\Scheme_Color;
|
10 |
+
use Elementor\Core\Schemes\Typography;
|
11 |
use Elementor\Control_Media;
|
12 |
use Elementor\Group_Control_Border;
|
13 |
use Elementor\Group_Control_Box_Shadow;
|
includes/elementor/modules/common.php
CHANGED
@@ -7,7 +7,7 @@ use Elementor\Controls_Manager;
|
|
7 |
use Elementor\Group_Control_Image_Size;
|
8 |
use Elementor\Group_Control_Typography;
|
9 |
use Elementor\Scheme_Color;
|
10 |
-
use Elementor\
|
11 |
use Elementor\Control_Media;
|
12 |
use Elementor\Group_Control_Border;
|
13 |
use Elementor\Group_Control_Box_Shadow;
|
7 |
use Elementor\Group_Control_Image_Size;
|
8 |
use Elementor\Group_Control_Typography;
|
9 |
use Elementor\Scheme_Color;
|
10 |
+
use Elementor\Core\Schemes\Typography;
|
11 |
use Elementor\Control_Media;
|
12 |
use Elementor\Group_Control_Border;
|
13 |
use Elementor\Group_Control_Box_Shadow;
|
includes/elementor/modules/section.php
CHANGED
@@ -7,7 +7,7 @@ use Elementor\Controls_Manager;
|
|
7 |
use Elementor\Group_Control_Image_Size;
|
8 |
use Elementor\Group_Control_Typography;
|
9 |
use Elementor\Scheme_Color;
|
10 |
-
use Elementor\
|
11 |
use Elementor\Control_Media;
|
12 |
use Elementor\Group_Control_Border;
|
13 |
use Elementor\Group_Control_Box_Shadow;
|
7 |
use Elementor\Group_Control_Image_Size;
|
8 |
use Elementor\Group_Control_Typography;
|
9 |
use Elementor\Scheme_Color;
|
10 |
+
use Elementor\Core\Schemes\Typography;
|
11 |
use Elementor\Control_Media;
|
12 |
use Elementor\Group_Control_Border;
|
13 |
use Elementor\Group_Control_Box_Shadow;
|
includes/elementor/modules/settings/base/manager.php
CHANGED
@@ -7,7 +7,7 @@ use Elementor\Controls_Manager;
|
|
7 |
use Elementor\Group_Control_Image_Size;
|
8 |
use Elementor\Group_Control_Typography;
|
9 |
use Elementor\Scheme_Color;
|
10 |
-
use Elementor\
|
11 |
use Elementor\Control_Media;
|
12 |
use Elementor\Group_Control_Border;
|
13 |
use Elementor\Group_Control_Box_Shadow;
|
7 |
use Elementor\Group_Control_Image_Size;
|
8 |
use Elementor\Group_Control_Typography;
|
9 |
use Elementor\Scheme_Color;
|
10 |
+
use Elementor\Core\Schemes\Typography;
|
11 |
use Elementor\Control_Media;
|
12 |
use Elementor\Group_Control_Border;
|
13 |
use Elementor\Group_Control_Box_Shadow;
|
includes/elementor/modules/settings/general/manager.php
CHANGED
@@ -8,7 +8,7 @@ use Elementor\Widget_Base;
|
|
8 |
use Elementor\Group_Control_Image_Size;
|
9 |
use Elementor\Group_Control_Typography;
|
10 |
use Elementor\Scheme_Color;
|
11 |
-
use Elementor\
|
12 |
use Elementor\Control_Media;
|
13 |
use Elementor\Group_Control_Border;
|
14 |
use Elementor\Group_Control_Box_Shadow;
|
8 |
use Elementor\Group_Control_Image_Size;
|
9 |
use Elementor\Group_Control_Typography;
|
10 |
use Elementor\Scheme_Color;
|
11 |
+
use Elementor\Core\Schemes\Typography;
|
12 |
use Elementor\Control_Media;
|
13 |
use Elementor\Group_Control_Border;
|
14 |
use Elementor\Group_Control_Box_Shadow;
|
includes/elementor/modules/settings/page/manager.php
CHANGED
@@ -8,7 +8,7 @@ use Elementor\Widget_Base;
|
|
8 |
use Elementor\Group_Control_Image_Size;
|
9 |
use Elementor\Group_Control_Typography;
|
10 |
use Elementor\Scheme_Color;
|
11 |
-
use Elementor\
|
12 |
use Elementor\Control_Media;
|
13 |
use Elementor\Group_Control_Border;
|
14 |
use Elementor\Group_Control_Box_Shadow;
|
8 |
use Elementor\Group_Control_Image_Size;
|
9 |
use Elementor\Group_Control_Typography;
|
10 |
use Elementor\Scheme_Color;
|
11 |
+
use Elementor\Core\Schemes\Typography;
|
12 |
use Elementor\Control_Media;
|
13 |
use Elementor\Group_Control_Border;
|
14 |
use Elementor\Group_Control_Box_Shadow;
|
includes/elementor/widgets/accordion.php
CHANGED
@@ -5,7 +5,7 @@ use Elementor\Plugin;
|
|
5 |
use Elementor\Widget_Base;
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
-
use Elementor\
|
9 |
use Elementor\Group_Control_Border;
|
10 |
use Elementor\Group_Control_Box_Shadow;
|
11 |
use Elementor\Group_Control_Background;
|
@@ -602,7 +602,7 @@ class Accordion extends Widget_Base {
|
|
602 |
Group_Control_Typography::get_type(),
|
603 |
array(
|
604 |
'name' => 'title_typography',
|
605 |
-
'scheme' =>
|
606 |
'selector' => '{{WRAPPER}} .aux-toggle-header'
|
607 |
)
|
608 |
);
|
@@ -635,7 +635,7 @@ class Accordion extends Widget_Base {
|
|
635 |
Group_Control_Typography::get_type(),
|
636 |
array(
|
637 |
'name' => 'content_typography',
|
638 |
-
'scheme' =>
|
639 |
'selector' => '{{WRAPPER}} .aux-toggle-content'
|
640 |
)
|
641 |
);
|
5 |
use Elementor\Widget_Base;
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
+
use Elementor\Core\Schemes\Typography;
|
9 |
use Elementor\Group_Control_Border;
|
10 |
use Elementor\Group_Control_Box_Shadow;
|
11 |
use Elementor\Group_Control_Background;
|
602 |
Group_Control_Typography::get_type(),
|
603 |
array(
|
604 |
'name' => 'title_typography',
|
605 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
606 |
'selector' => '{{WRAPPER}} .aux-toggle-header'
|
607 |
)
|
608 |
);
|
635 |
Group_Control_Typography::get_type(),
|
636 |
array(
|
637 |
'name' => 'content_typography',
|
638 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
639 |
'selector' => '{{WRAPPER}} .aux-toggle-content'
|
640 |
)
|
641 |
);
|
includes/elementor/widgets/button.php
CHANGED
@@ -5,7 +5,7 @@ use Elementor\Plugin;
|
|
5 |
use Elementor\Widget_Base;
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
-
use Elementor\
|
9 |
use Elementor\Group_Control_Background;
|
10 |
use Elementor\Group_Control_Box_Shadow;
|
11 |
use Elementor\Group_Control_Text_Shadow;
|
@@ -522,7 +522,7 @@ class Button extends Widget_Base {
|
|
522 |
Group_Control_Typography::get_type(),
|
523 |
array(
|
524 |
'name' => 'text_typography',
|
525 |
-
'scheme' =>
|
526 |
'selector' => '{{WRAPPER}} .aux-text'
|
527 |
)
|
528 |
);
|
@@ -560,7 +560,7 @@ class Button extends Widget_Base {
|
|
560 |
Group_Control_Typography::get_type(),
|
561 |
array(
|
562 |
'name' => 'hover_text_typography',
|
563 |
-
'scheme' =>
|
564 |
'selector' => '{{WRAPPER}} .aux-text'
|
565 |
)
|
566 |
);
|
5 |
use Elementor\Widget_Base;
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
+
use Elementor\Core\Schemes\Typography;
|
9 |
use Elementor\Group_Control_Background;
|
10 |
use Elementor\Group_Control_Box_Shadow;
|
11 |
use Elementor\Group_Control_Text_Shadow;
|
522 |
Group_Control_Typography::get_type(),
|
523 |
array(
|
524 |
'name' => 'text_typography',
|
525 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
526 |
'selector' => '{{WRAPPER}} .aux-text'
|
527 |
)
|
528 |
);
|
560 |
Group_Control_Typography::get_type(),
|
561 |
array(
|
562 |
'name' => 'hover_text_typography',
|
563 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
564 |
'selector' => '{{WRAPPER}} .aux-text'
|
565 |
)
|
566 |
);
|
includes/elementor/widgets/contact-form.php
CHANGED
@@ -7,7 +7,7 @@ use Elementor\Controls_Manager;
|
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
use Elementor\Group_Control_Background;
|
9 |
use Elementor\Group_Control_Box_Shadow;
|
10 |
-
use Elementor\
|
11 |
use Elementor\Group_Control_Border;
|
12 |
|
13 |
|
@@ -168,7 +168,7 @@ class ContactForm extends Widget_Base {
|
|
168 |
[
|
169 |
'name' => 'general_input_typography',
|
170 |
'label' => __( 'Typography', 'auxin-elements' ),
|
171 |
-
'scheme' =>
|
172 |
'selector' => '{{WRAPPER}} input:not([type="submit"])'
|
173 |
]
|
174 |
);
|
@@ -453,7 +453,7 @@ class ContactForm extends Widget_Base {
|
|
453 |
[
|
454 |
'name' => 'placeholder_typography',
|
455 |
'label' => __( 'Typography', 'auxin-elements' ),
|
456 |
-
'scheme' =>
|
457 |
'selector' => '{{WRAPPER}} input:not([type="submit"])::placeholder'
|
458 |
]
|
459 |
);
|
@@ -927,7 +927,7 @@ class ContactForm extends Widget_Base {
|
|
927 |
[
|
928 |
'name' => 'dropdown_typography',
|
929 |
'label' => __( 'Typography', 'auxin-elements' ),
|
930 |
-
'scheme' =>
|
931 |
'selector' => '{{WRAPPER}} select',
|
932 |
]
|
933 |
);
|
@@ -1170,7 +1170,7 @@ class ContactForm extends Widget_Base {
|
|
1170 |
[
|
1171 |
'name' => 'textarea_typography',
|
1172 |
'label' => __( 'Typography', 'auxin-elements' ),
|
1173 |
-
'scheme' =>
|
1174 |
'selector' => '{{WRAPPER}} textarea',
|
1175 |
]
|
1176 |
);
|
@@ -1453,7 +1453,7 @@ class ContactForm extends Widget_Base {
|
|
1453 |
[
|
1454 |
'name' => 'textarea_placeholder_typography',
|
1455 |
'label' => __( 'Typography', 'auxin-elements' ),
|
1456 |
-
'scheme' =>
|
1457 |
'selector' => '{{WRAPPER}} textarea::placeholder'
|
1458 |
]
|
1459 |
);
|
@@ -1488,7 +1488,7 @@ class ContactForm extends Widget_Base {
|
|
1488 |
[
|
1489 |
'name' => 'labels_typography',
|
1490 |
'label' => __( 'Typography', 'auxin-elements' ),
|
1491 |
-
'scheme' =>
|
1492 |
'selector' => '{{WRAPPER}} label'
|
1493 |
]
|
1494 |
);
|
@@ -1523,7 +1523,7 @@ class ContactForm extends Widget_Base {
|
|
1523 |
[
|
1524 |
'name' => 'submit_input_typography',
|
1525 |
'label' => __( 'Typography', 'auxin-elements' ),
|
1526 |
-
'scheme' =>
|
1527 |
'selector' => '{{WRAPPER}} input[type="submit"]',
|
1528 |
]
|
1529 |
);
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
use Elementor\Group_Control_Background;
|
9 |
use Elementor\Group_Control_Box_Shadow;
|
10 |
+
use Elementor\Core\Schemes\Typography;
|
11 |
use Elementor\Group_Control_Border;
|
12 |
|
13 |
|
168 |
[
|
169 |
'name' => 'general_input_typography',
|
170 |
'label' => __( 'Typography', 'auxin-elements' ),
|
171 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
172 |
'selector' => '{{WRAPPER}} input:not([type="submit"])'
|
173 |
]
|
174 |
);
|
453 |
[
|
454 |
'name' => 'placeholder_typography',
|
455 |
'label' => __( 'Typography', 'auxin-elements' ),
|
456 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
457 |
'selector' => '{{WRAPPER}} input:not([type="submit"])::placeholder'
|
458 |
]
|
459 |
);
|
927 |
[
|
928 |
'name' => 'dropdown_typography',
|
929 |
'label' => __( 'Typography', 'auxin-elements' ),
|
930 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
931 |
'selector' => '{{WRAPPER}} select',
|
932 |
]
|
933 |
);
|
1170 |
[
|
1171 |
'name' => 'textarea_typography',
|
1172 |
'label' => __( 'Typography', 'auxin-elements' ),
|
1173 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
1174 |
'selector' => '{{WRAPPER}} textarea',
|
1175 |
]
|
1176 |
);
|
1453 |
[
|
1454 |
'name' => 'textarea_placeholder_typography',
|
1455 |
'label' => __( 'Typography', 'auxin-elements' ),
|
1456 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
1457 |
'selector' => '{{WRAPPER}} textarea::placeholder'
|
1458 |
]
|
1459 |
);
|
1488 |
[
|
1489 |
'name' => 'labels_typography',
|
1490 |
'label' => __( 'Typography', 'auxin-elements' ),
|
1491 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
1492 |
'selector' => '{{WRAPPER}} label'
|
1493 |
]
|
1494 |
);
|
1523 |
[
|
1524 |
'name' => 'submit_input_typography',
|
1525 |
'label' => __( 'Typography', 'auxin-elements' ),
|
1526 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
1527 |
'selector' => '{{WRAPPER}} input[type="submit"]',
|
1528 |
]
|
1529 |
);
|
includes/elementor/widgets/custom-list.php
CHANGED
@@ -5,7 +5,7 @@ use Elementor\Plugin;
|
|
5 |
use Elementor\Widget_Base;
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
-
use Elementor\
|
9 |
use Elementor\Group_Control_Border;
|
10 |
use Elementor\Group_Control_Box_Shadow;
|
11 |
use Elementor\Group_Control_Background;
|
@@ -244,7 +244,7 @@ class CustomList extends Widget_Base {
|
|
244 |
Group_Control_Typography::get_type(),
|
245 |
array(
|
246 |
'name' => 'text_primary_typography',
|
247 |
-
'scheme' =>
|
248 |
'selector' => '{{WRAPPER}} {{CURRENT_ITEM}} .aux-icon-list-text',
|
249 |
'condition'=> array(
|
250 |
'display_advanced' => 'yes'
|
@@ -309,7 +309,7 @@ class CustomList extends Widget_Base {
|
|
309 |
Group_Control_Typography::get_type(),
|
310 |
array(
|
311 |
'name' => 'text_secondary_typography',
|
312 |
-
'scheme' =>
|
313 |
'selector' => '{{WRAPPER}} {{CURRENT_ITEM}} .aux-icon-list-text2',
|
314 |
'condition'=> array(
|
315 |
'display_advanced' => 'yes',
|
@@ -794,7 +794,7 @@ class CustomList extends Widget_Base {
|
|
794 |
Group_Control_Typography::get_type(),
|
795 |
array(
|
796 |
'name' => 'text1_typography',
|
797 |
-
'scheme' =>
|
798 |
'selector' => '{{WRAPPER}} .aux-icon-list-text'
|
799 |
)
|
800 |
);
|
@@ -850,7 +850,7 @@ class CustomList extends Widget_Base {
|
|
850 |
Group_Control_Typography::get_type(),
|
851 |
array(
|
852 |
'name' => 'text2_typography',
|
853 |
-
'scheme' =>
|
854 |
'selector' => '{{WRAPPER}} .aux-icon-list-text2'
|
855 |
)
|
856 |
);
|
5 |
use Elementor\Widget_Base;
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
+
use Elementor\Core\Schemes\Typography;
|
9 |
use Elementor\Group_Control_Border;
|
10 |
use Elementor\Group_Control_Box_Shadow;
|
11 |
use Elementor\Group_Control_Background;
|
244 |
Group_Control_Typography::get_type(),
|
245 |
array(
|
246 |
'name' => 'text_primary_typography',
|
247 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
248 |
'selector' => '{{WRAPPER}} {{CURRENT_ITEM}} .aux-icon-list-text',
|
249 |
'condition'=> array(
|
250 |
'display_advanced' => 'yes'
|
309 |
Group_Control_Typography::get_type(),
|
310 |
array(
|
311 |
'name' => 'text_secondary_typography',
|
312 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
313 |
'selector' => '{{WRAPPER}} {{CURRENT_ITEM}} .aux-icon-list-text2',
|
314 |
'condition'=> array(
|
315 |
'display_advanced' => 'yes',
|
794 |
Group_Control_Typography::get_type(),
|
795 |
array(
|
796 |
'name' => 'text1_typography',
|
797 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
798 |
'selector' => '{{WRAPPER}} .aux-icon-list-text'
|
799 |
)
|
800 |
);
|
850 |
Group_Control_Typography::get_type(),
|
851 |
array(
|
852 |
'name' => 'text2_typography',
|
853 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
854 |
'selector' => '{{WRAPPER}} .aux-icon-list-text2'
|
855 |
)
|
856 |
);
|
includes/elementor/widgets/gallery.php
CHANGED
@@ -5,7 +5,7 @@ use Elementor\Widget_Base;
|
|
5 |
use Elementor\Controls_Manager;
|
6 |
use Elementor\Group_Control_Typography;
|
7 |
use Elementor\Scheme_Color;
|
8 |
-
use Elementor\
|
9 |
use Elementor\Group_Control_Border;
|
10 |
|
11 |
|
@@ -388,7 +388,7 @@ class Gallery extends Widget_Base {
|
|
388 |
Group_Control_Typography::get_type(),
|
389 |
array(
|
390 |
'name' => 'typography',
|
391 |
-
'scheme' =>
|
392 |
'selector' => '{{WRAPPER}} .gallery-item .gallery-caption',
|
393 |
'condition' => array(
|
394 |
'caption_display' => 'yes'
|
5 |
use Elementor\Controls_Manager;
|
6 |
use Elementor\Group_Control_Typography;
|
7 |
use Elementor\Scheme_Color;
|
8 |
+
use Elementor\Core\Schemes\Typography;
|
9 |
use Elementor\Group_Control_Border;
|
10 |
|
11 |
|
388 |
Group_Control_Typography::get_type(),
|
389 |
array(
|
390 |
'name' => 'typography',
|
391 |
+
'scheme' => Typography::TYPOGRAPHY_4,
|
392 |
'selector' => '{{WRAPPER}} .gallery-item .gallery-caption',
|
393 |
'condition' => array(
|
394 |
'caption_display' => 'yes'
|
includes/elementor/widgets/heading-modern.php
CHANGED
@@ -5,7 +5,7 @@ use Elementor\Plugin;
|
|
5 |
use Elementor\Widget_Base;
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
-
use Elementor\
|
9 |
use Elementor\Group_Control_Box_Shadow;
|
10 |
use Elementor\Group_Control_Text_Shadow;
|
11 |
use Elementor\Group_Control_Background;
|
@@ -346,7 +346,7 @@ class ModernHeading extends Widget_Base {
|
|
346 |
Group_Control_Typography::get_type(),
|
347 |
array(
|
348 |
'name' => 'title_typography',
|
349 |
-
'scheme' =>
|
350 |
'selector' => '{{WRAPPER}} .aux-modern-heading-primary'
|
351 |
)
|
352 |
);
|
@@ -531,7 +531,7 @@ class ModernHeading extends Widget_Base {
|
|
531 |
Group_Control_Typography::get_type(),
|
532 |
array(
|
533 |
'name' => 'title2_typography',
|
534 |
-
'scheme' =>
|
535 |
'selector' => '{{WRAPPER}} .aux-modern-heading-secondary'
|
536 |
)
|
537 |
);
|
@@ -702,7 +702,7 @@ class ModernHeading extends Widget_Base {
|
|
702 |
Group_Control_Typography::get_type(),
|
703 |
array(
|
704 |
'name' => 'title2_highlighted_typography',
|
705 |
-
'scheme' =>
|
706 |
'selector' => '{{WRAPPER}} .aux-modern-heading-secondary .aux-head-highlight'
|
707 |
)
|
708 |
);
|
@@ -980,7 +980,7 @@ class ModernHeading extends Widget_Base {
|
|
980 |
Group_Control_Typography::get_type(),
|
981 |
array(
|
982 |
'name' => 'description_typography',
|
983 |
-
'scheme' =>
|
984 |
'selector' => '{{WRAPPER}} .aux-modern-heading-description'
|
985 |
)
|
986 |
);
|
5 |
use Elementor\Widget_Base;
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
+
use Elementor\Core\Schemes\Typography;
|
9 |
use Elementor\Group_Control_Box_Shadow;
|
10 |
use Elementor\Group_Control_Text_Shadow;
|
11 |
use Elementor\Group_Control_Background;
|
346 |
Group_Control_Typography::get_type(),
|
347 |
array(
|
348 |
'name' => 'title_typography',
|
349 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
350 |
'selector' => '{{WRAPPER}} .aux-modern-heading-primary'
|
351 |
)
|
352 |
);
|
531 |
Group_Control_Typography::get_type(),
|
532 |
array(
|
533 |
'name' => 'title2_typography',
|
534 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
535 |
'selector' => '{{WRAPPER}} .aux-modern-heading-secondary'
|
536 |
)
|
537 |
);
|
702 |
Group_Control_Typography::get_type(),
|
703 |
array(
|
704 |
'name' => 'title2_highlighted_typography',
|
705 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
706 |
'selector' => '{{WRAPPER}} .aux-modern-heading-secondary .aux-head-highlight'
|
707 |
)
|
708 |
);
|
980 |
Group_Control_Typography::get_type(),
|
981 |
array(
|
982 |
'name' => 'description_typography',
|
983 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
984 |
'selector' => '{{WRAPPER}} .aux-modern-heading-description'
|
985 |
)
|
986 |
);
|
includes/elementor/widgets/image.php
CHANGED
@@ -6,7 +6,7 @@ use Elementor\Widget_Base;
|
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Image_Size;
|
8 |
use Elementor\Group_Control_Typography;
|
9 |
-
use Elementor\
|
10 |
use Elementor\Utils;
|
11 |
use Elementor\Group_Control_Border;
|
12 |
use Elementor\Group_Control_Box_Shadow;
|
@@ -671,7 +671,7 @@ class Image extends Widget_Base {
|
|
671 |
Group_Control_Typography::get_type(),
|
672 |
array(
|
673 |
'name' => 'ribbon_typography',
|
674 |
-
'scheme' =>
|
675 |
'selector' => '{{WRAPPER}} .aux-ribbon-wrapper span'
|
676 |
)
|
677 |
);
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Image_Size;
|
8 |
use Elementor\Group_Control_Typography;
|
9 |
+
use Elementor\Core\Schemes\Typography;
|
10 |
use Elementor\Utils;
|
11 |
use Elementor\Group_Control_Border;
|
12 |
use Elementor\Group_Control_Box_Shadow;
|
671 |
Group_Control_Typography::get_type(),
|
672 |
array(
|
673 |
'name' => 'ribbon_typography',
|
674 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
675 |
'selector' => '{{WRAPPER}} .aux-ribbon-wrapper span'
|
676 |
)
|
677 |
);
|
includes/elementor/widgets/mailchimp.php
CHANGED
@@ -7,7 +7,7 @@ use Elementor\Controls_Manager;
|
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
use Elementor\Group_Control_Background;
|
9 |
use Elementor\Group_Control_Box_Shadow;
|
10 |
-
use Elementor\
|
11 |
use Elementor\Group_Control_Border;
|
12 |
|
13 |
|
@@ -185,7 +185,7 @@ class MailChimp extends Widget_Base {
|
|
185 |
[
|
186 |
'name' => 'input_typography',
|
187 |
'label' => __( 'Typography', 'auxin-elements' ),
|
188 |
-
'scheme' =>
|
189 |
'selector' => '{{WRAPPER}} .mc4wp-form input[type="text"],{{WRAPPER}} .mc4wp-form input[type="email"]',
|
190 |
]
|
191 |
);
|
@@ -412,7 +412,7 @@ class MailChimp extends Widget_Base {
|
|
412 |
[
|
413 |
'name' => 'placeholder_typography',
|
414 |
'label' => __( 'Typography', 'auxin-elements' ),
|
415 |
-
'scheme' =>
|
416 |
'selector' => '{{WRAPPER}} .mc4wp-form input[type="text"]::placeholder,{{WRAPPER}} .mc4wp-form input[type="email"]::placeholder'
|
417 |
]
|
418 |
);
|
@@ -443,7 +443,7 @@ class MailChimp extends Widget_Base {
|
|
443 |
[
|
444 |
'name' => 'submit_input_typography',
|
445 |
'label' => __( 'Typography', 'auxin-elements' ),
|
446 |
-
'scheme' =>
|
447 |
'selector' => '{{WRAPPER}} .mc4wp-form input[type="submit"]',
|
448 |
]
|
449 |
);
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
use Elementor\Group_Control_Background;
|
9 |
use Elementor\Group_Control_Box_Shadow;
|
10 |
+
use Elementor\Core\Schemes\Typography;
|
11 |
use Elementor\Group_Control_Border;
|
12 |
|
13 |
|
185 |
[
|
186 |
'name' => 'input_typography',
|
187 |
'label' => __( 'Typography', 'auxin-elements' ),
|
188 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
189 |
'selector' => '{{WRAPPER}} .mc4wp-form input[type="text"],{{WRAPPER}} .mc4wp-form input[type="email"]',
|
190 |
]
|
191 |
);
|
412 |
[
|
413 |
'name' => 'placeholder_typography',
|
414 |
'label' => __( 'Typography', 'auxin-elements' ),
|
415 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
416 |
'selector' => '{{WRAPPER}} .mc4wp-form input[type="text"]::placeholder,{{WRAPPER}} .mc4wp-form input[type="email"]::placeholder'
|
417 |
]
|
418 |
);
|
443 |
[
|
444 |
'name' => 'submit_input_typography',
|
445 |
'label' => __( 'Typography', 'auxin-elements' ),
|
446 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
447 |
'selector' => '{{WRAPPER}} .mc4wp-form input[type="submit"]',
|
448 |
]
|
449 |
);
|
includes/elementor/widgets/modern-button.php
CHANGED
@@ -6,7 +6,7 @@ use Elementor\Widget_Base;
|
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
use Elementor\Icons_Manager;
|
9 |
-
use Elementor\
|
10 |
use Elementor\Group_Control_Background;
|
11 |
use Elementor\Group_Control_Box_Shadow;
|
12 |
use Elementor\Group_Control_Text_Shadow;
|
@@ -484,7 +484,7 @@ class ModernButton extends Widget_Base {
|
|
484 |
Group_Control_Typography::get_type(),
|
485 |
[
|
486 |
'name' => 'text_normal_typo',
|
487 |
-
'scheme' =>
|
488 |
'selector' => '{{WRAPPER}} .aux-text'
|
489 |
]
|
490 |
);
|
@@ -523,7 +523,7 @@ class ModernButton extends Widget_Base {
|
|
523 |
Group_Control_Typography::get_type(),
|
524 |
[
|
525 |
'name' => 'text_hover_typo',
|
526 |
-
'scheme' =>
|
527 |
'selector' => '{{WRAPPER}} .aux-modern-button:hover .aux-text'
|
528 |
]
|
529 |
);
|
@@ -584,7 +584,7 @@ class ModernButton extends Widget_Base {
|
|
584 |
Group_Control_Typography::get_type(),
|
585 |
[
|
586 |
'name' => 'text2_normal_typo',
|
587 |
-
'scheme' =>
|
588 |
'selector' => '{{WRAPPER}} .aux-text-highlighted'
|
589 |
]
|
590 |
);
|
@@ -623,7 +623,7 @@ class ModernButton extends Widget_Base {
|
|
623 |
Group_Control_Typography::get_type(),
|
624 |
[
|
625 |
'name' => 'text2_hover_typo',
|
626 |
-
'scheme' =>
|
627 |
'selector' => '{{WRAPPER}} .aux-modern-button:hover .aux-text-highlighted'
|
628 |
]
|
629 |
);
|
@@ -696,7 +696,7 @@ class ModernButton extends Widget_Base {
|
|
696 |
Group_Control_Typography::get_type(),
|
697 |
[
|
698 |
'name' => 'text3_normal_typo',
|
699 |
-
'scheme' =>
|
700 |
'selector' => '{{WRAPPER}} .aux-text-after'
|
701 |
]
|
702 |
);
|
@@ -735,7 +735,7 @@ class ModernButton extends Widget_Base {
|
|
735 |
Group_Control_Typography::get_type(),
|
736 |
[
|
737 |
'name' => 'text3_hover_typo',
|
738 |
-
'scheme' =>
|
739 |
'selector' => '{{WRAPPER}} .aux-modern-button:hover .aux-text-after'
|
740 |
]
|
741 |
);
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
use Elementor\Icons_Manager;
|
9 |
+
use Elementor\Core\Schemes\Typography;
|
10 |
use Elementor\Group_Control_Background;
|
11 |
use Elementor\Group_Control_Box_Shadow;
|
12 |
use Elementor\Group_Control_Text_Shadow;
|
484 |
Group_Control_Typography::get_type(),
|
485 |
[
|
486 |
'name' => 'text_normal_typo',
|
487 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
488 |
'selector' => '{{WRAPPER}} .aux-text'
|
489 |
]
|
490 |
);
|
523 |
Group_Control_Typography::get_type(),
|
524 |
[
|
525 |
'name' => 'text_hover_typo',
|
526 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
527 |
'selector' => '{{WRAPPER}} .aux-modern-button:hover .aux-text'
|
528 |
]
|
529 |
);
|
584 |
Group_Control_Typography::get_type(),
|
585 |
[
|
586 |
'name' => 'text2_normal_typo',
|
587 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
588 |
'selector' => '{{WRAPPER}} .aux-text-highlighted'
|
589 |
]
|
590 |
);
|
623 |
Group_Control_Typography::get_type(),
|
624 |
[
|
625 |
'name' => 'text2_hover_typo',
|
626 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
627 |
'selector' => '{{WRAPPER}} .aux-modern-button:hover .aux-text-highlighted'
|
628 |
]
|
629 |
);
|
696 |
Group_Control_Typography::get_type(),
|
697 |
[
|
698 |
'name' => 'text3_normal_typo',
|
699 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
700 |
'selector' => '{{WRAPPER}} .aux-text-after'
|
701 |
]
|
702 |
);
|
735 |
Group_Control_Typography::get_type(),
|
736 |
[
|
737 |
'name' => 'text3_hover_typo',
|
738 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
739 |
'selector' => '{{WRAPPER}} .aux-modern-button:hover .aux-text-after'
|
740 |
]
|
741 |
);
|
includes/elementor/widgets/quote.php
CHANGED
@@ -5,7 +5,7 @@ use Elementor\Plugin;
|
|
5 |
use Elementor\Widget_Base;
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
-
use Elementor\
|
9 |
use Elementor\Group_Control_Border;
|
10 |
|
11 |
|
@@ -195,7 +195,7 @@ class Quote extends Widget_Base {
|
|
195 |
Group_Control_Typography::get_type(),
|
196 |
array(
|
197 |
'name' => 'text_typography',
|
198 |
-
'scheme' =>
|
199 |
'selector' => '{{WRAPPER}} .aux-elem-quote p'
|
200 |
)
|
201 |
);
|
@@ -242,7 +242,7 @@ class Quote extends Widget_Base {
|
|
242 |
Group_Control_Typography::get_type(),
|
243 |
array(
|
244 |
'name' => 'quote_symbol_typography',
|
245 |
-
'scheme' =>
|
246 |
'selector' => '{{WRAPPER}} .aux-quote-symbol:before',
|
247 |
'condition' => array(
|
248 |
'quote_symbol' => 'yes'
|
5 |
use Elementor\Widget_Base;
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
+
use Elementor\Core\Schemes\Typography;
|
9 |
use Elementor\Group_Control_Border;
|
10 |
|
11 |
|
195 |
Group_Control_Typography::get_type(),
|
196 |
array(
|
197 |
'name' => 'text_typography',
|
198 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
199 |
'selector' => '{{WRAPPER}} .aux-elem-quote p'
|
200 |
)
|
201 |
);
|
242 |
Group_Control_Typography::get_type(),
|
243 |
array(
|
244 |
'name' => 'quote_symbol_typography',
|
245 |
+
'scheme' => Typography::TYPOGRAPHY_3,
|
246 |
'selector' => '{{WRAPPER}} .aux-quote-symbol:before',
|
247 |
'condition' => array(
|
248 |
'quote_symbol' => 'yes'
|
includes/elementor/widgets/recent-comments.php
CHANGED
@@ -5,7 +5,7 @@ use Elementor\Plugin;
|
|
5 |
use Elementor\Widget_Base;
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
-
use Elementor\
|
9 |
|
10 |
|
11 |
if ( ! defined( 'ABSPATH' ) ) {
|
@@ -221,7 +221,7 @@ class RecentComments extends Widget_Base {
|
|
221 |
Group_Control_Typography::get_type(),
|
222 |
array(
|
223 |
'name' => 'title_typography',
|
224 |
-
'scheme' =>
|
225 |
'selector' => '{{WRAPPER}} .entry-title'
|
226 |
)
|
227 |
);
|
@@ -304,7 +304,7 @@ class RecentComments extends Widget_Base {
|
|
304 |
Group_Control_Typography::get_type(),
|
305 |
array(
|
306 |
'name' => 'info_typography',
|
307 |
-
'scheme' =>
|
308 |
'selector' => '{{WRAPPER}} .entry-info, {{WRAPPER}} .entry-info a'
|
309 |
)
|
310 |
);
|
5 |
use Elementor\Widget_Base;
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
+
use Elementor\Core\Schemes\Typography;
|
9 |
|
10 |
|
11 |
if ( ! defined( 'ABSPATH' ) ) {
|
221 |
Group_Control_Typography::get_type(),
|
222 |
array(
|
223 |
'name' => 'title_typography',
|
224 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
225 |
'selector' => '{{WRAPPER}} .entry-title'
|
226 |
)
|
227 |
);
|
304 |
Group_Control_Typography::get_type(),
|
305 |
array(
|
306 |
'name' => 'info_typography',
|
307 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
308 |
'selector' => '{{WRAPPER}} .entry-info, {{WRAPPER}} .entry-info a'
|
309 |
)
|
310 |
);
|
includes/elementor/widgets/recent-posts-grid-carousel.php
CHANGED
@@ -5,7 +5,7 @@ use Elementor\Plugin;
|
|
5 |
use Elementor\Widget_Base;
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
-
use Elementor\
|
9 |
use Elementor\Group_Control_Background;
|
10 |
use Elementor\Group_Control_Box_Shadow;
|
11 |
use Elementor\Group_Control_Text_Shadow;
|
@@ -1093,7 +1093,7 @@ class RecentPostsGridCarousel extends Widget_Base {
|
|
1093 |
Group_Control_Typography::get_type(),
|
1094 |
array(
|
1095 |
'name' => 'title_typography',
|
1096 |
-
'scheme' =>
|
1097 |
'selector' => '{{WRAPPER}} .entry-title a',
|
1098 |
'condition' => array(
|
1099 |
'display_title' => 'yes',
|
@@ -1197,7 +1197,7 @@ class RecentPostsGridCarousel extends Widget_Base {
|
|
1197 |
Group_Control_Typography::get_type(),
|
1198 |
array(
|
1199 |
'name' => 'info_typography',
|
1200 |
-
'scheme' =>
|
1201 |
'selector' => '{{WRAPPER}} .entry-info, {{WRAPPER}} .entry-info a',
|
1202 |
'condition' => array(
|
1203 |
'show_info' => 'yes',
|
@@ -1279,7 +1279,7 @@ class RecentPostsGridCarousel extends Widget_Base {
|
|
1279 |
Group_Control_Typography::get_type(),
|
1280 |
array(
|
1281 |
'name' => 'content_typography',
|
1282 |
-
'scheme' =>
|
1283 |
'selector' => '{{WRAPPER}} .entry-content',
|
1284 |
'condition' => array(
|
1285 |
'show_excerpt' => 'yes',
|
@@ -1391,7 +1391,7 @@ class RecentPostsGridCarousel extends Widget_Base {
|
|
1391 |
Group_Control_Typography::get_type(),
|
1392 |
array(
|
1393 |
'name' => 'badge_typography',
|
1394 |
-
'scheme' =>
|
1395 |
'selector' => '{{WRAPPER}} .entry-badge a'
|
1396 |
)
|
1397 |
);
|
@@ -1487,7 +1487,7 @@ class RecentPostsGridCarousel extends Widget_Base {
|
|
1487 |
Group_Control_Typography::get_type(),
|
1488 |
array(
|
1489 |
'name' => 'meta_typography',
|
1490 |
-
'scheme' =>
|
1491 |
'selector' => '{{WRAPPER}} .entry-meta, {{WRAPPER}} .entry-meta a, {{WRAPPER}} .entry-meta span'
|
1492 |
)
|
1493 |
);
|
@@ -1863,7 +1863,7 @@ class RecentPostsGridCarousel extends Widget_Base {
|
|
1863 |
Group_Control_Typography::get_type(),
|
1864 |
array(
|
1865 |
'name' => 'btn_text_typography',
|
1866 |
-
'scheme' =>
|
1867 |
'selector' => '{{WRAPPER}} .entry-meta .aux-read-more'
|
1868 |
)
|
1869 |
);
|
@@ -1919,7 +1919,7 @@ class RecentPostsGridCarousel extends Widget_Base {
|
|
1919 |
Group_Control_Typography::get_type(),
|
1920 |
array(
|
1921 |
'name' => 'btn_text_typography_hover',
|
1922 |
-
'scheme' =>
|
1923 |
'selector' => '{{WRAPPER}} .entry-meta .aux-read-more:hover'
|
1924 |
)
|
1925 |
);
|
5 |
use Elementor\Widget_Base;
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
+
use Elementor\Core\Schemes\Typography;
|
9 |
use Elementor\Group_Control_Background;
|
10 |
use Elementor\Group_Control_Box_Shadow;
|
11 |
use Elementor\Group_Control_Text_Shadow;
|
1093 |
Group_Control_Typography::get_type(),
|
1094 |
array(
|
1095 |
'name' => 'title_typography',
|
1096 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
1097 |
'selector' => '{{WRAPPER}} .entry-title a',
|
1098 |
'condition' => array(
|
1099 |
'display_title' => 'yes',
|
1197 |
Group_Control_Typography::get_type(),
|
1198 |
array(
|
1199 |
'name' => 'info_typography',
|
1200 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
1201 |
'selector' => '{{WRAPPER}} .entry-info, {{WRAPPER}} .entry-info a',
|
1202 |
'condition' => array(
|
1203 |
'show_info' => 'yes',
|
1279 |
Group_Control_Typography::get_type(),
|
1280 |
array(
|
1281 |
'name' => 'content_typography',
|
1282 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
1283 |
'selector' => '{{WRAPPER}} .entry-content',
|
1284 |
'condition' => array(
|
1285 |
'show_excerpt' => 'yes',
|
1391 |
Group_Control_Typography::get_type(),
|
1392 |
array(
|
1393 |
'name' => 'badge_typography',
|
1394 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
1395 |
'selector' => '{{WRAPPER}} .entry-badge a'
|
1396 |
)
|
1397 |
);
|
1487 |
Group_Control_Typography::get_type(),
|
1488 |
array(
|
1489 |
'name' => 'meta_typography',
|
1490 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
1491 |
'selector' => '{{WRAPPER}} .entry-meta, {{WRAPPER}} .entry-meta a, {{WRAPPER}} .entry-meta span'
|
1492 |
)
|
1493 |
);
|
1863 |
Group_Control_Typography::get_type(),
|
1864 |
array(
|
1865 |
'name' => 'btn_text_typography',
|
1866 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
1867 |
'selector' => '{{WRAPPER}} .entry-meta .aux-read-more'
|
1868 |
)
|
1869 |
);
|
1919 |
Group_Control_Typography::get_type(),
|
1920 |
array(
|
1921 |
'name' => 'btn_text_typography_hover',
|
1922 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
1923 |
'selector' => '{{WRAPPER}} .entry-meta .aux-read-more:hover'
|
1924 |
)
|
1925 |
);
|
includes/elementor/widgets/recent-posts-land-style.php
CHANGED
@@ -5,7 +5,7 @@ use Elementor\Plugin;
|
|
5 |
use Elementor\Widget_Base;
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
-
use Elementor\
|
9 |
use Elementor\Group_Control_Box_Shadow;
|
10 |
|
11 |
if ( ! defined( 'ABSPATH' ) ) {
|
@@ -650,7 +650,7 @@ class RecentPostsLand extends Widget_Base {
|
|
650 |
Group_Control_Typography::get_type(),
|
651 |
array(
|
652 |
'name' => 'title_typography',
|
653 |
-
'scheme' =>
|
654 |
'selector' => '{{WRAPPER}} .entry-title',
|
655 |
'condition' => array(
|
656 |
'display_title' => 'yes',
|
@@ -754,7 +754,7 @@ class RecentPostsLand extends Widget_Base {
|
|
754 |
Group_Control_Typography::get_type(),
|
755 |
array(
|
756 |
'name' => 'info_typography',
|
757 |
-
'scheme' =>
|
758 |
'selector' => '{{WRAPPER}} .entry-info, {{WRAPPER}} .entry-info a',
|
759 |
'condition' => array(
|
760 |
'show_info' => 'yes',
|
@@ -836,7 +836,7 @@ class RecentPostsLand extends Widget_Base {
|
|
836 |
Group_Control_Typography::get_type(),
|
837 |
array(
|
838 |
'name' => 'content_typography',
|
839 |
-
'scheme' =>
|
840 |
'selector' => '{{WRAPPER}} .entry-content',
|
841 |
'condition' => array(
|
842 |
'show_excerpt' => 'yes',
|
@@ -925,7 +925,7 @@ class RecentPostsLand extends Widget_Base {
|
|
925 |
Group_Control_Typography::get_type(),
|
926 |
array(
|
927 |
'name' => 'meta_typography',
|
928 |
-
'scheme' =>
|
929 |
'selector' => '{{WRAPPER}} .entry-meta, {{WRAPPER}} .entry-meta a, {{WRAPPER}} .entry-meta span'
|
930 |
)
|
931 |
);
|
5 |
use Elementor\Widget_Base;
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
+
use Elementor\Core\Schemes\Typography;
|
9 |
use Elementor\Group_Control_Box_Shadow;
|
10 |
|
11 |
if ( ! defined( 'ABSPATH' ) ) {
|
650 |
Group_Control_Typography::get_type(),
|
651 |
array(
|
652 |
'name' => 'title_typography',
|
653 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
654 |
'selector' => '{{WRAPPER}} .entry-title',
|
655 |
'condition' => array(
|
656 |
'display_title' => 'yes',
|
754 |
Group_Control_Typography::get_type(),
|
755 |
array(
|
756 |
'name' => 'info_typography',
|
757 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
758 |
'selector' => '{{WRAPPER}} .entry-info, {{WRAPPER}} .entry-info a',
|
759 |
'condition' => array(
|
760 |
'show_info' => 'yes',
|
836 |
Group_Control_Typography::get_type(),
|
837 |
array(
|
838 |
'name' => 'content_typography',
|
839 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
840 |
'selector' => '{{WRAPPER}} .entry-content',
|
841 |
'condition' => array(
|
842 |
'show_excerpt' => 'yes',
|
925 |
Group_Control_Typography::get_type(),
|
926 |
array(
|
927 |
'name' => 'meta_typography',
|
928 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
929 |
'selector' => '{{WRAPPER}} .entry-meta, {{WRAPPER}} .entry-meta a, {{WRAPPER}} .entry-meta span'
|
930 |
)
|
931 |
);
|
includes/elementor/widgets/recent-posts-masonry.php
CHANGED
@@ -5,7 +5,7 @@ use Elementor\Plugin;
|
|
5 |
use Elementor\Widget_Base;
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
-
use Elementor\
|
9 |
use Elementor\Group_Control_Background;
|
10 |
use Elementor\Group_Control_Box_Shadow;
|
11 |
use Elementor\Group_Control_Text_Shadow;
|
@@ -766,7 +766,7 @@ class RecentPostsMasonry extends Widget_Base {
|
|
766 |
Group_Control_Typography::get_type(),
|
767 |
array(
|
768 |
'name' => 'title_typography',
|
769 |
-
'scheme' =>
|
770 |
'selector' => '{{WRAPPER}} .entry-title',
|
771 |
'condition' => array(
|
772 |
'display_title' => 'yes',
|
@@ -870,7 +870,7 @@ class RecentPostsMasonry extends Widget_Base {
|
|
870 |
Group_Control_Typography::get_type(),
|
871 |
array(
|
872 |
'name' => 'info_typography',
|
873 |
-
'scheme' =>
|
874 |
'selector' => '{{WRAPPER}} .entry-info, {{WRAPPER}} .entry-info a',
|
875 |
'condition' => array(
|
876 |
'show_info' => 'yes',
|
@@ -952,7 +952,7 @@ class RecentPostsMasonry extends Widget_Base {
|
|
952 |
Group_Control_Typography::get_type(),
|
953 |
array(
|
954 |
'name' => 'content_typography',
|
955 |
-
'scheme' =>
|
956 |
'selector' => '{{WRAPPER}} .entry-content',
|
957 |
'condition' => array(
|
958 |
'show_excerpt' => 'yes',
|
@@ -1041,7 +1041,7 @@ class RecentPostsMasonry extends Widget_Base {
|
|
1041 |
Group_Control_Typography::get_type(),
|
1042 |
array(
|
1043 |
'name' => 'meta_typography',
|
1044 |
-
'scheme' =>
|
1045 |
'selector' => '{{WRAPPER}} .entry-meta, {{WRAPPER}} .entry-meta a, {{WRAPPER}} .entry-meta span'
|
1046 |
)
|
1047 |
);
|
@@ -1261,7 +1261,7 @@ class RecentPostsMasonry extends Widget_Base {
|
|
1261 |
Group_Control_Typography::get_type(),
|
1262 |
array(
|
1263 |
'name' => 'btn_text_typography',
|
1264 |
-
'scheme' =>
|
1265 |
'selector' => '{{WRAPPER}} .aux-read-more'
|
1266 |
)
|
1267 |
);
|
@@ -1317,7 +1317,7 @@ class RecentPostsMasonry extends Widget_Base {
|
|
1317 |
Group_Control_Typography::get_type(),
|
1318 |
array(
|
1319 |
'name' => 'btn_text_typography_hover',
|
1320 |
-
'scheme' =>
|
1321 |
'selector' => '{{WRAPPER}} .aux-read-more'
|
1322 |
)
|
1323 |
);
|
5 |
use Elementor\Widget_Base;
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
+
use Elementor\Core\Schemes\Typography;
|
9 |
use Elementor\Group_Control_Background;
|
10 |
use Elementor\Group_Control_Box_Shadow;
|
11 |
use Elementor\Group_Control_Text_Shadow;
|
766 |
Group_Control_Typography::get_type(),
|
767 |
array(
|
768 |
'name' => 'title_typography',
|
769 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
770 |
'selector' => '{{WRAPPER}} .entry-title',
|
771 |
'condition' => array(
|
772 |
'display_title' => 'yes',
|
870 |
Group_Control_Typography::get_type(),
|
871 |
array(
|
872 |
'name' => 'info_typography',
|
873 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
874 |
'selector' => '{{WRAPPER}} .entry-info, {{WRAPPER}} .entry-info a',
|
875 |
'condition' => array(
|
876 |
'show_info' => 'yes',
|
952 |
Group_Control_Typography::get_type(),
|
953 |
array(
|
954 |
'name' => 'content_typography',
|
955 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
956 |
'selector' => '{{WRAPPER}} .entry-content',
|
957 |
'condition' => array(
|
958 |
'show_excerpt' => 'yes',
|
1041 |
Group_Control_Typography::get_type(),
|
1042 |
array(
|
1043 |
'name' => 'meta_typography',
|
1044 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
1045 |
'selector' => '{{WRAPPER}} .entry-meta, {{WRAPPER}} .entry-meta a, {{WRAPPER}} .entry-meta span'
|
1046 |
)
|
1047 |
);
|
1261 |
Group_Control_Typography::get_type(),
|
1262 |
array(
|
1263 |
'name' => 'btn_text_typography',
|
1264 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
1265 |
'selector' => '{{WRAPPER}} .aux-read-more'
|
1266 |
)
|
1267 |
);
|
1317 |
Group_Control_Typography::get_type(),
|
1318 |
array(
|
1319 |
'name' => 'btn_text_typography_hover',
|
1320 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
1321 |
'selector' => '{{WRAPPER}} .aux-read-more'
|
1322 |
)
|
1323 |
);
|
includes/elementor/widgets/recent-posts-tiles-carousel.php
CHANGED
@@ -5,7 +5,7 @@ use Elementor\Plugin;
|
|
5 |
use Elementor\Widget_Base;
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
-
use Elementor\
|
9 |
|
10 |
|
11 |
if ( ! defined( 'ABSPATH' ) ) {
|
@@ -540,7 +540,7 @@ class RecentPostsTilesCarousel extends Widget_Base {
|
|
540 |
Group_Control_Typography::get_type(),
|
541 |
array(
|
542 |
'name' => 'title_typography',
|
543 |
-
'scheme' =>
|
544 |
'selector' => '{{WRAPPER}} .entry-title',
|
545 |
'condition' => array(
|
546 |
'display_title' => 'yes',
|
@@ -644,7 +644,7 @@ class RecentPostsTilesCarousel extends Widget_Base {
|
|
644 |
Group_Control_Typography::get_type(),
|
645 |
array(
|
646 |
'name' => 'info_typography',
|
647 |
-
'scheme' =>
|
648 |
'selector' => '{{WRAPPER}} .entry-info, {{WRAPPER}} .entry-info a',
|
649 |
'condition' => array(
|
650 |
'show_info' => 'yes',
|
5 |
use Elementor\Widget_Base;
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
+
use Elementor\Core\Schemes\Typography;
|
9 |
|
10 |
|
11 |
if ( ! defined( 'ABSPATH' ) ) {
|
540 |
Group_Control_Typography::get_type(),
|
541 |
array(
|
542 |
'name' => 'title_typography',
|
543 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
544 |
'selector' => '{{WRAPPER}} .entry-title',
|
545 |
'condition' => array(
|
546 |
'display_title' => 'yes',
|
644 |
Group_Control_Typography::get_type(),
|
645 |
array(
|
646 |
'name' => 'info_typography',
|
647 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
648 |
'selector' => '{{WRAPPER}} .entry-info, {{WRAPPER}} .entry-info a',
|
649 |
'condition' => array(
|
650 |
'show_info' => 'yes',
|
includes/elementor/widgets/recent-posts-tiles.php
CHANGED
@@ -5,7 +5,7 @@ use Elementor\Plugin;
|
|
5 |
use Elementor\Widget_Base;
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
-
use Elementor\
|
9 |
|
10 |
|
11 |
if ( ! defined( 'ABSPATH' ) ) {
|
@@ -481,7 +481,7 @@ class RecentPostsTiles extends Widget_Base {
|
|
481 |
Group_Control_Typography::get_type(),
|
482 |
array(
|
483 |
'name' => 'title_typography',
|
484 |
-
'scheme' =>
|
485 |
'selector' => '{{WRAPPER}} .entry-title',
|
486 |
'condition' => array(
|
487 |
'display_title' => 'yes',
|
@@ -585,7 +585,7 @@ class RecentPostsTiles extends Widget_Base {
|
|
585 |
Group_Control_Typography::get_type(),
|
586 |
array(
|
587 |
'name' => 'info_typography',
|
588 |
-
'scheme' =>
|
589 |
'selector' => '{{WRAPPER}} .entry-info, {{WRAPPER}} .entry-info a',
|
590 |
'condition' => array(
|
591 |
'show_info' => 'yes',
|
5 |
use Elementor\Widget_Base;
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
+
use Elementor\Core\Schemes\Typography;
|
9 |
|
10 |
|
11 |
if ( ! defined( 'ABSPATH' ) ) {
|
481 |
Group_Control_Typography::get_type(),
|
482 |
array(
|
483 |
'name' => 'title_typography',
|
484 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
485 |
'selector' => '{{WRAPPER}} .entry-title',
|
486 |
'condition' => array(
|
487 |
'display_title' => 'yes',
|
585 |
Group_Control_Typography::get_type(),
|
586 |
array(
|
587 |
'name' => 'info_typography',
|
588 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
589 |
'selector' => '{{WRAPPER}} .entry-info, {{WRAPPER}} .entry-info a',
|
590 |
'condition' => array(
|
591 |
'show_info' => 'yes',
|
includes/elementor/widgets/recent-posts-timeline.php
CHANGED
@@ -5,7 +5,7 @@ use Elementor\Plugin;
|
|
5 |
use Elementor\Widget_Base;
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
-
use Elementor\
|
9 |
|
10 |
|
11 |
if ( ! defined( 'ABSPATH' ) ) {
|
@@ -663,7 +663,7 @@ class RecentPostsTimeline extends Widget_Base {
|
|
663 |
Group_Control_Typography::get_type(),
|
664 |
array(
|
665 |
'name' => 'title_typography',
|
666 |
-
'scheme' =>
|
667 |
'selector' => '{{WRAPPER}} .entry-title',
|
668 |
'condition' => array(
|
669 |
'display_title' => 'yes',
|
@@ -767,7 +767,7 @@ class RecentPostsTimeline extends Widget_Base {
|
|
767 |
Group_Control_Typography::get_type(),
|
768 |
array(
|
769 |
'name' => 'info_typography',
|
770 |
-
'scheme' =>
|
771 |
'selector' => '{{WRAPPER}} .entry-info, {{WRAPPER}} .entry-info a',
|
772 |
'condition' => array(
|
773 |
'show_info' => 'yes',
|
@@ -849,7 +849,7 @@ class RecentPostsTimeline extends Widget_Base {
|
|
849 |
Group_Control_Typography::get_type(),
|
850 |
array(
|
851 |
'name' => 'content_typography',
|
852 |
-
'scheme' =>
|
853 |
'selector' => '{{WRAPPER}} .entry-content',
|
854 |
'condition' => array(
|
855 |
'show_excerpt' => 'yes',
|
@@ -938,7 +938,7 @@ class RecentPostsTimeline extends Widget_Base {
|
|
938 |
Group_Control_Typography::get_type(),
|
939 |
array(
|
940 |
'name' => 'meta_typography',
|
941 |
-
'scheme' =>
|
942 |
'selector' => '{{WRAPPER}} .entry-meta, {{WRAPPER}} .entry-meta a, {{WRAPPER}} .entry-meta span'
|
943 |
)
|
944 |
);
|
5 |
use Elementor\Widget_Base;
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
+
use Elementor\Core\Schemes\Typography;
|
9 |
|
10 |
|
11 |
if ( ! defined( 'ABSPATH' ) ) {
|
663 |
Group_Control_Typography::get_type(),
|
664 |
array(
|
665 |
'name' => 'title_typography',
|
666 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
667 |
'selector' => '{{WRAPPER}} .entry-title',
|
668 |
'condition' => array(
|
669 |
'display_title' => 'yes',
|
767 |
Group_Control_Typography::get_type(),
|
768 |
array(
|
769 |
'name' => 'info_typography',
|
770 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
771 |
'selector' => '{{WRAPPER}} .entry-info, {{WRAPPER}} .entry-info a',
|
772 |
'condition' => array(
|
773 |
'show_info' => 'yes',
|
849 |
Group_Control_Typography::get_type(),
|
850 |
array(
|
851 |
'name' => 'content_typography',
|
852 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
853 |
'selector' => '{{WRAPPER}} .entry-content',
|
854 |
'condition' => array(
|
855 |
'show_excerpt' => 'yes',
|
938 |
Group_Control_Typography::get_type(),
|
939 |
array(
|
940 |
'name' => 'meta_typography',
|
941 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
942 |
'selector' => '{{WRAPPER}} .entry-meta, {{WRAPPER}} .entry-meta a, {{WRAPPER}} .entry-meta span'
|
943 |
)
|
944 |
);
|
includes/elementor/widgets/recent-products.php
CHANGED
@@ -5,7 +5,7 @@ use Elementor\Plugin;
|
|
5 |
use Elementor\Widget_Base;
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
-
use Elementor\
|
9 |
|
10 |
|
11 |
if ( ! defined( 'ABSPATH' ) ) {
|
@@ -566,7 +566,7 @@ class RecentProducts extends Widget_Base {
|
|
566 |
Group_Control_Typography::get_type(),
|
567 |
array(
|
568 |
'name' => 'title_typography',
|
569 |
-
'scheme' =>
|
570 |
'selector' => '{{WRAPPER}} .woocommerce-loop-product__title',
|
571 |
'condition' => array(
|
572 |
'display_title' => 'yes',
|
@@ -670,7 +670,7 @@ class RecentProducts extends Widget_Base {
|
|
670 |
Group_Control_Typography::get_type(),
|
671 |
array(
|
672 |
'name' => 'category_typography',
|
673 |
-
'scheme' =>
|
674 |
'selector' => '{{WRAPPER}} .auxshp-meta-terms, {{WRAPPER}} .auxshp-meta-terms a',
|
675 |
'condition' => array(
|
676 |
'display_categories' => 'yes',
|
5 |
use Elementor\Widget_Base;
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
+
use Elementor\Core\Schemes\Typography;
|
9 |
|
10 |
|
11 |
if ( ! defined( 'ABSPATH' ) ) {
|
566 |
Group_Control_Typography::get_type(),
|
567 |
array(
|
568 |
'name' => 'title_typography',
|
569 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
570 |
'selector' => '{{WRAPPER}} .woocommerce-loop-product__title',
|
571 |
'condition' => array(
|
572 |
'display_title' => 'yes',
|
670 |
Group_Control_Typography::get_type(),
|
671 |
array(
|
672 |
'name' => 'category_typography',
|
673 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
674 |
'selector' => '{{WRAPPER}} .auxshp-meta-terms, {{WRAPPER}} .auxshp-meta-terms a',
|
675 |
'condition' => array(
|
676 |
'display_categories' => 'yes',
|
includes/elementor/widgets/responsive-table.php
CHANGED
@@ -5,7 +5,7 @@ use Elementor\Plugin;
|
|
5 |
use Elementor\Widget_Base;
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
-
use Elementor\
|
9 |
use Elementor\Group_Control_Background;
|
10 |
|
11 |
|
@@ -168,7 +168,7 @@ class ResponsiveTable extends Widget_Base {
|
|
168 |
Group_Control_Typography::get_type(),
|
169 |
array(
|
170 |
'name' => 'table_body_typography',
|
171 |
-
'scheme' =>
|
172 |
'selector' => '{{WRAPPER}} td'
|
173 |
)
|
174 |
);
|
@@ -235,7 +235,7 @@ class ResponsiveTable extends Widget_Base {
|
|
235 |
Group_Control_Typography::get_type(),
|
236 |
array(
|
237 |
'name' => 'table_head_typography',
|
238 |
-
'scheme' =>
|
239 |
'selector' => '{{WRAPPER}} th'
|
240 |
)
|
241 |
);
|
5 |
use Elementor\Widget_Base;
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
+
use Elementor\Core\Schemes\Typography;
|
9 |
use Elementor\Group_Control_Background;
|
10 |
|
11 |
|
168 |
Group_Control_Typography::get_type(),
|
169 |
array(
|
170 |
'name' => 'table_body_typography',
|
171 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
172 |
'selector' => '{{WRAPPER}} td'
|
173 |
)
|
174 |
);
|
235 |
Group_Control_Typography::get_type(),
|
236 |
array(
|
237 |
'name' => 'table_head_typography',
|
238 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
239 |
'selector' => '{{WRAPPER}} th'
|
240 |
)
|
241 |
);
|
includes/elementor/widgets/staff.php
CHANGED
@@ -6,7 +6,7 @@ use Elementor\Widget_Base;
|
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Image_Size;
|
8 |
use Elementor\Group_Control_Typography;
|
9 |
-
use Elementor\
|
10 |
use Elementor\Utils;
|
11 |
use Elementor\Group_Control_Border;
|
12 |
|
@@ -517,7 +517,7 @@ class Staff extends Widget_Base {
|
|
517 |
Group_Control_Typography::get_type(),
|
518 |
array(
|
519 |
'name' => 'title_typography',
|
520 |
-
'scheme' =>
|
521 |
'selector' => '{{WRAPPER}} .col-title, {{WRAPPER}} .col-title a',
|
522 |
'condition' => array(
|
523 |
'title!' => '',
|
@@ -598,7 +598,7 @@ class Staff extends Widget_Base {
|
|
598 |
Group_Control_Typography::get_type(),
|
599 |
array(
|
600 |
'name' => 'subtitle_typography',
|
601 |
-
'scheme' =>
|
602 |
'selector' => '{{WRAPPER}} .aux-staff-content .col-subtitle',
|
603 |
'condition' => array(
|
604 |
'subtitle!' => '',
|
@@ -660,7 +660,7 @@ class Staff extends Widget_Base {
|
|
660 |
Group_Control_Typography::get_type(),
|
661 |
array(
|
662 |
'name' => 'content_typography',
|
663 |
-
'scheme' =>
|
664 |
'selector' => '{{WRAPPER}} .entry-content',
|
665 |
'condition' => array(
|
666 |
'content!' => '',
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Image_Size;
|
8 |
use Elementor\Group_Control_Typography;
|
9 |
+
use Elementor\Core\Schemes\Typography;
|
10 |
use Elementor\Utils;
|
11 |
use Elementor\Group_Control_Border;
|
12 |
|
517 |
Group_Control_Typography::get_type(),
|
518 |
array(
|
519 |
'name' => 'title_typography',
|
520 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
521 |
'selector' => '{{WRAPPER}} .col-title, {{WRAPPER}} .col-title a',
|
522 |
'condition' => array(
|
523 |
'title!' => '',
|
598 |
Group_Control_Typography::get_type(),
|
599 |
array(
|
600 |
'name' => 'subtitle_typography',
|
601 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
602 |
'selector' => '{{WRAPPER}} .aux-staff-content .col-subtitle',
|
603 |
'condition' => array(
|
604 |
'subtitle!' => '',
|
660 |
Group_Control_Typography::get_type(),
|
661 |
array(
|
662 |
'name' => 'content_typography',
|
663 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
664 |
'selector' => '{{WRAPPER}} .entry-content',
|
665 |
'condition' => array(
|
666 |
'content!' => '',
|
includes/elementor/widgets/tabs.php
CHANGED
@@ -5,7 +5,7 @@ use Elementor\Plugin;
|
|
5 |
use Elementor\Widget_Base;
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
-
use Elementor\
|
9 |
use Elementor\Group_Control_Border;
|
10 |
use Elementor\Group_Control_Box_Shadow;
|
11 |
use Elementor\Group_Control_Background;
|
@@ -423,7 +423,7 @@ class Tabs extends Widget_Base {
|
|
423 |
Group_Control_Typography::get_type(),
|
424 |
array(
|
425 |
'name' => 'title_typography',
|
426 |
-
'scheme' =>
|
427 |
'selector' => '{{WRAPPER}} .tabs a'
|
428 |
)
|
429 |
);
|
@@ -456,7 +456,7 @@ class Tabs extends Widget_Base {
|
|
456 |
Group_Control_Typography::get_type(),
|
457 |
array(
|
458 |
'name' => 'content_typography',
|
459 |
-
'scheme' =>
|
460 |
'selector' => '{{WRAPPER}} .tabs-content .entry-editor'
|
461 |
)
|
462 |
);
|
5 |
use Elementor\Widget_Base;
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
+
use Elementor\Core\Schemes\Typography;
|
9 |
use Elementor\Group_Control_Border;
|
10 |
use Elementor\Group_Control_Box_Shadow;
|
11 |
use Elementor\Group_Control_Background;
|
423 |
Group_Control_Typography::get_type(),
|
424 |
array(
|
425 |
'name' => 'title_typography',
|
426 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
427 |
'selector' => '{{WRAPPER}} .tabs a'
|
428 |
)
|
429 |
);
|
456 |
Group_Control_Typography::get_type(),
|
457 |
array(
|
458 |
'name' => 'content_typography',
|
459 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
460 |
'selector' => '{{WRAPPER}} .tabs-content .entry-editor'
|
461 |
)
|
462 |
);
|
includes/elementor/widgets/testimonial.php
CHANGED
@@ -6,7 +6,7 @@ use Elementor\Widget_Base;
|
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Image_Size;
|
8 |
use Elementor\Group_Control_Typography;
|
9 |
-
use Elementor\
|
10 |
use Elementor\Utils;
|
11 |
use Elementor\Group_Control_Border;
|
12 |
use Elementor\Group_Control_Box_Shadow;
|
@@ -381,7 +381,7 @@ class Testimonial extends Widget_Base {
|
|
381 |
Group_Control_Typography::get_type(),
|
382 |
array(
|
383 |
'name' => 'title_typography',
|
384 |
-
'scheme' =>
|
385 |
'selector' => '{{WRAPPER}} .col-title, {{WRAPPER}} .col-title a',
|
386 |
'condition' => array(
|
387 |
'title!' => ''
|
@@ -420,7 +420,7 @@ class Testimonial extends Widget_Base {
|
|
420 |
Group_Control_Typography::get_type(),
|
421 |
array(
|
422 |
'name' => 'title_hover_typography',
|
423 |
-
'scheme' =>
|
424 |
'selector' => '{{WRAPPER}} .aux-widget-testimonial:hover .col-title, {{WRAPPER}} .aux-widget-testimonial:hover .col-title a',
|
425 |
'condition' => array(
|
426 |
'title!' => ''
|
@@ -495,7 +495,7 @@ class Testimonial extends Widget_Base {
|
|
495 |
Group_Control_Typography::get_type(),
|
496 |
array(
|
497 |
'name' => 'subtitle_typography',
|
498 |
-
'scheme' =>
|
499 |
'selector' => '{{WRAPPER}} .col-subtitle',
|
500 |
'condition' => array(
|
501 |
'subtitle!' => ''
|
@@ -533,7 +533,7 @@ class Testimonial extends Widget_Base {
|
|
533 |
Group_Control_Typography::get_type(),
|
534 |
array(
|
535 |
'name' => 'subtitle_hover_typography',
|
536 |
-
'scheme' =>
|
537 |
'selector' => '{{WRAPPER}} .aux-widget-testimonial:hover .col-subtitle',
|
538 |
'condition' => array(
|
539 |
'subtitle!' => ''
|
@@ -613,7 +613,7 @@ class Testimonial extends Widget_Base {
|
|
613 |
Group_Control_Typography::get_type(),
|
614 |
array(
|
615 |
'name' => 'content_typography',
|
616 |
-
'scheme' =>
|
617 |
'selector' => '{{WRAPPER}} .aux-testimonial-content',
|
618 |
'condition' => array(
|
619 |
'content!' => ''
|
@@ -651,7 +651,7 @@ class Testimonial extends Widget_Base {
|
|
651 |
Group_Control_Typography::get_type(),
|
652 |
array(
|
653 |
'name' => 'content_typography_hover',
|
654 |
-
'scheme' =>
|
655 |
'selector' => '{{WRAPPER}} .aux-widget-testimonial:hover .aux-testimonial-content',
|
656 |
'condition' => array(
|
657 |
'content!' => ''
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Image_Size;
|
8 |
use Elementor\Group_Control_Typography;
|
9 |
+
use Elementor\Core\Schemes\Typography;
|
10 |
use Elementor\Utils;
|
11 |
use Elementor\Group_Control_Border;
|
12 |
use Elementor\Group_Control_Box_Shadow;
|
381 |
Group_Control_Typography::get_type(),
|
382 |
array(
|
383 |
'name' => 'title_typography',
|
384 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
385 |
'selector' => '{{WRAPPER}} .col-title, {{WRAPPER}} .col-title a',
|
386 |
'condition' => array(
|
387 |
'title!' => ''
|
420 |
Group_Control_Typography::get_type(),
|
421 |
array(
|
422 |
'name' => 'title_hover_typography',
|
423 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
424 |
'selector' => '{{WRAPPER}} .aux-widget-testimonial:hover .col-title, {{WRAPPER}} .aux-widget-testimonial:hover .col-title a',
|
425 |
'condition' => array(
|
426 |
'title!' => ''
|
495 |
Group_Control_Typography::get_type(),
|
496 |
array(
|
497 |
'name' => 'subtitle_typography',
|
498 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
499 |
'selector' => '{{WRAPPER}} .col-subtitle',
|
500 |
'condition' => array(
|
501 |
'subtitle!' => ''
|
533 |
Group_Control_Typography::get_type(),
|
534 |
array(
|
535 |
'name' => 'subtitle_hover_typography',
|
536 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
537 |
'selector' => '{{WRAPPER}} .aux-widget-testimonial:hover .col-subtitle',
|
538 |
'condition' => array(
|
539 |
'subtitle!' => ''
|
613 |
Group_Control_Typography::get_type(),
|
614 |
array(
|
615 |
'name' => 'content_typography',
|
616 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
617 |
'selector' => '{{WRAPPER}} .aux-testimonial-content',
|
618 |
'condition' => array(
|
619 |
'content!' => ''
|
651 |
Group_Control_Typography::get_type(),
|
652 |
array(
|
653 |
'name' => 'content_typography_hover',
|
654 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
655 |
'selector' => '{{WRAPPER}} .aux-widget-testimonial:hover .aux-testimonial-content',
|
656 |
'condition' => array(
|
657 |
'content!' => ''
|
includes/elementor/widgets/text.php
CHANGED
@@ -6,7 +6,7 @@ use Elementor\Widget_Base;
|
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Image_Size;
|
8 |
use Elementor\Group_Control_Typography;
|
9 |
-
use Elementor\
|
10 |
use Elementor\Group_Control_Border;
|
11 |
use Elementor\Group_Control_Box_Shadow;
|
12 |
use Elementor\Group_Control_Text_Shadow;
|
@@ -740,7 +740,7 @@ class Text extends Widget_Base {
|
|
740 |
Group_Control_Typography::get_type(),
|
741 |
array(
|
742 |
'name' => 'title_typography',
|
743 |
-
'scheme' =>
|
744 |
'selector' => '{{WRAPPER}} .col-title, {{WRAPPER}} .col-title a'
|
745 |
)
|
746 |
);
|
@@ -836,7 +836,7 @@ class Text extends Widget_Base {
|
|
836 |
Group_Control_Typography::get_type(),
|
837 |
array(
|
838 |
'name' => 'subtitle_typography',
|
839 |
-
'scheme' =>
|
840 |
'selector' => '{{WRAPPER}} .col-subtitle'
|
841 |
)
|
842 |
);
|
@@ -947,7 +947,7 @@ class Text extends Widget_Base {
|
|
947 |
Group_Control_Typography::get_type(),
|
948 |
array(
|
949 |
'name' => 'content_typography',
|
950 |
-
'scheme' =>
|
951 |
'selector' => '{{WRAPPER}} .widget-content'
|
952 |
)
|
953 |
);
|
@@ -1275,7 +1275,7 @@ class Text extends Widget_Base {
|
|
1275 |
Group_Control_Typography::get_type(),
|
1276 |
array(
|
1277 |
'name' => 'button_typography',
|
1278 |
-
'scheme' =>
|
1279 |
'selector' => '{{WRAPPER}} .aux-text'
|
1280 |
)
|
1281 |
);
|
@@ -1313,7 +1313,7 @@ class Text extends Widget_Base {
|
|
1313 |
Group_Control_Typography::get_type(),
|
1314 |
array(
|
1315 |
'name' => 'hover_button_typography',
|
1316 |
-
'scheme' =>
|
1317 |
'selector' => '{{WRAPPER}} .aux-text'
|
1318 |
)
|
1319 |
);
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Image_Size;
|
8 |
use Elementor\Group_Control_Typography;
|
9 |
+
use Elementor\Core\Schemes\Typography;
|
10 |
use Elementor\Group_Control_Border;
|
11 |
use Elementor\Group_Control_Box_Shadow;
|
12 |
use Elementor\Group_Control_Text_Shadow;
|
740 |
Group_Control_Typography::get_type(),
|
741 |
array(
|
742 |
'name' => 'title_typography',
|
743 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
744 |
'selector' => '{{WRAPPER}} .col-title, {{WRAPPER}} .col-title a'
|
745 |
)
|
746 |
);
|
836 |
Group_Control_Typography::get_type(),
|
837 |
array(
|
838 |
'name' => 'subtitle_typography',
|
839 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
840 |
'selector' => '{{WRAPPER}} .col-subtitle'
|
841 |
)
|
842 |
);
|
947 |
Group_Control_Typography::get_type(),
|
948 |
array(
|
949 |
'name' => 'content_typography',
|
950 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
951 |
'selector' => '{{WRAPPER}} .widget-content'
|
952 |
)
|
953 |
);
|
1275 |
Group_Control_Typography::get_type(),
|
1276 |
array(
|
1277 |
'name' => 'button_typography',
|
1278 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
1279 |
'selector' => '{{WRAPPER}} .aux-text'
|
1280 |
)
|
1281 |
);
|
1313 |
Group_Control_Typography::get_type(),
|
1314 |
array(
|
1315 |
'name' => 'hover_button_typography',
|
1316 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
1317 |
'selector' => '{{WRAPPER}} .aux-text'
|
1318 |
)
|
1319 |
);
|
includes/elementor/widgets/theme-elements/breadcrumbs.php
CHANGED
@@ -5,7 +5,7 @@ use Elementor\Widget_Base;
|
|
5 |
use Elementor\Controls_Manager;
|
6 |
use Elementor\Group_Control_Typography;
|
7 |
use Elementor\Scheme_Color;
|
8 |
-
use Elementor\
|
9 |
use Elementor\Group_Control_Border;
|
10 |
use Elementor\Group_Control_Background;
|
11 |
use Elementor\Group_Control_Box_Shadow;
|
@@ -338,7 +338,7 @@ class Breadcrumbs extends Widget_Base {
|
|
338 |
Group_Control_Typography::get_type(),
|
339 |
[
|
340 |
'name' => 'typography',
|
341 |
-
'scheme' =>
|
342 |
'selector' => '{{WRAPPER}} span'
|
343 |
]
|
344 |
);
|
5 |
use Elementor\Controls_Manager;
|
6 |
use Elementor\Group_Control_Typography;
|
7 |
use Elementor\Scheme_Color;
|
8 |
+
use Elementor\Core\Schemes\Typography;
|
9 |
use Elementor\Group_Control_Border;
|
10 |
use Elementor\Group_Control_Background;
|
11 |
use Elementor\Group_Control_Box_Shadow;
|
338 |
Group_Control_Typography::get_type(),
|
339 |
[
|
340 |
'name' => 'typography',
|
341 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
342 |
'selector' => '{{WRAPPER}} span'
|
343 |
]
|
344 |
);
|
includes/elementor/widgets/theme-elements/copyright.php
CHANGED
@@ -5,7 +5,7 @@ use Elementor\Plugin;
|
|
5 |
use Elementor\Widget_Base;
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
-
use Elementor\
|
9 |
use Elementor\Group_Control_Text_Shadow;
|
10 |
|
11 |
|
@@ -191,7 +191,7 @@ class Copyright extends Widget_Base {
|
|
191 |
Group_Control_Typography::get_type(),
|
192 |
array(
|
193 |
'name' => 'copyright_typo',
|
194 |
-
'scheme' =>
|
195 |
'selector' => '{{WRAPPER}} small',
|
196 |
)
|
197 |
);
|
@@ -228,7 +228,7 @@ class Copyright extends Widget_Base {
|
|
228 |
Group_Control_Typography::get_type(),
|
229 |
array(
|
230 |
'name' => 'copyright_typo_hover',
|
231 |
-
'scheme' =>
|
232 |
'selector' => '{{WRAPPER}} small:hover',
|
233 |
)
|
234 |
);
|
5 |
use Elementor\Widget_Base;
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
+
use Elementor\Core\Schemes\Typography;
|
9 |
use Elementor\Group_Control_Text_Shadow;
|
10 |
|
11 |
|
191 |
Group_Control_Typography::get_type(),
|
192 |
array(
|
193 |
'name' => 'copyright_typo',
|
194 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
195 |
'selector' => '{{WRAPPER}} small',
|
196 |
)
|
197 |
);
|
228 |
Group_Control_Typography::get_type(),
|
229 |
array(
|
230 |
'name' => 'copyright_typo_hover',
|
231 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
232 |
'selector' => '{{WRAPPER}} small:hover',
|
233 |
)
|
234 |
);
|
includes/elementor/widgets/theme-elements/current-time.php
CHANGED
@@ -5,7 +5,7 @@ use Elementor\Plugin;
|
|
5 |
use Elementor\Widget_Base;
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
-
use Elementor\
|
9 |
use Elementor\Group_Control_Text_Shadow;
|
10 |
|
11 |
|
@@ -190,7 +190,7 @@ class Current_Time extends Widget_Base {
|
|
190 |
Group_Control_Typography::get_type(),
|
191 |
array(
|
192 |
'name' => 'text_typography',
|
193 |
-
'scheme' =>
|
194 |
'selector' => '{{WRAPPER}} .aux-current-time'
|
195 |
)
|
196 |
);
|
5 |
use Elementor\Widget_Base;
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
+
use Elementor\Core\Schemes\Typography;
|
9 |
use Elementor\Group_Control_Text_Shadow;
|
10 |
|
11 |
|
190 |
Group_Control_Typography::get_type(),
|
191 |
array(
|
192 |
'name' => 'text_typography',
|
193 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
194 |
'selector' => '{{WRAPPER}} .aux-current-time'
|
195 |
)
|
196 |
);
|
includes/elementor/widgets/theme-elements/logo.php
CHANGED
@@ -6,7 +6,7 @@ use Elementor\Widget_Base;
|
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Image_Size;
|
8 |
use Elementor\Group_Control_Typography;
|
9 |
-
use Elementor\
|
10 |
use Elementor\Group_Control_Border;
|
11 |
use Elementor\Group_Control_Box_Shadow;
|
12 |
use Elementor\Group_Control_Text_Shadow;
|
@@ -482,7 +482,7 @@ class Logo extends Widget_Base {
|
|
482 |
Group_Control_Typography::get_type(),
|
483 |
array(
|
484 |
'name' => 'title_typography',
|
485 |
-
'scheme' =>
|
486 |
'selector' => '{{WRAPPER}} .site-title a'
|
487 |
)
|
488 |
);
|
@@ -574,7 +574,7 @@ class Logo extends Widget_Base {
|
|
574 |
Group_Control_Typography::get_type(),
|
575 |
array(
|
576 |
'name' => 'desc_typography',
|
577 |
-
'scheme' =>
|
578 |
'selector' => '{{WRAPPER}} .site-description'
|
579 |
)
|
580 |
);
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Image_Size;
|
8 |
use Elementor\Group_Control_Typography;
|
9 |
+
use Elementor\Core\Schemes\Typography;
|
10 |
use Elementor\Group_Control_Border;
|
11 |
use Elementor\Group_Control_Box_Shadow;
|
12 |
use Elementor\Group_Control_Text_Shadow;
|
482 |
Group_Control_Typography::get_type(),
|
483 |
array(
|
484 |
'name' => 'title_typography',
|
485 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
486 |
'selector' => '{{WRAPPER}} .site-title a'
|
487 |
)
|
488 |
);
|
574 |
Group_Control_Typography::get_type(),
|
575 |
array(
|
576 |
'name' => 'desc_typography',
|
577 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
578 |
'selector' => '{{WRAPPER}} .site-description'
|
579 |
)
|
580 |
);
|
includes/elementor/widgets/theme-elements/menu.php
CHANGED
@@ -5,7 +5,7 @@ use Elementor\Plugin;
|
|
5 |
use Elementor\Widget_Base;
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
-
use Elementor\
|
9 |
use Elementor\Group_Control_Border;
|
10 |
use Elementor\Group_Control_Background;
|
11 |
use Elementor\Group_Control_Box_Shadow;
|
@@ -375,7 +375,7 @@ class MenuBox extends Widget_Base {
|
|
375 |
Group_Control_Typography::get_type(),
|
376 |
array(
|
377 |
'name' => 'menu_item_typo',
|
378 |
-
'scheme' =>
|
379 |
'selector' => '{{WRAPPER}} .aux-menu-depth-0 > .aux-item-content'
|
380 |
)
|
381 |
);
|
@@ -452,7 +452,7 @@ class MenuBox extends Widget_Base {
|
|
452 |
Group_Control_Typography::get_type(),
|
453 |
array(
|
454 |
'name' => 'menu_item_typo_hover',
|
455 |
-
'scheme' =>
|
456 |
'selector' => '{{WRAPPER}} .aux-menu-depth-0.aux-hover > .aux-item-content',
|
457 |
)
|
458 |
);
|
@@ -565,7 +565,7 @@ class MenuBox extends Widget_Base {
|
|
565 |
Group_Control_Typography::get_type(),
|
566 |
array(
|
567 |
'name' => 'menu_item_current_typography',
|
568 |
-
'scheme' =>
|
569 |
'selector' => '{{WRAPPER}} .aux-menu-depth-0.current-menu-item > a'
|
570 |
)
|
571 |
);
|
@@ -813,7 +813,7 @@ class MenuBox extends Widget_Base {
|
|
813 |
Group_Control_Typography::get_type(),
|
814 |
array(
|
815 |
'name' => 'menu_sub_item_typo',
|
816 |
-
'scheme' =>
|
817 |
'selector' => '{{WRAPPER}} .aux-submenu .aux-menu-item',
|
818 |
)
|
819 |
);
|
@@ -892,7 +892,7 @@ class MenuBox extends Widget_Base {
|
|
892 |
Group_Control_Typography::get_type(),
|
893 |
array(
|
894 |
'name' => 'menu_sub_item_typo_hover',
|
895 |
-
'scheme' =>
|
896 |
'selector' => '{{WRAPPER}} .aux-submenu .aux-menu-item.aux-hover',
|
897 |
)
|
898 |
);
|
@@ -1173,7 +1173,7 @@ class MenuBox extends Widget_Base {
|
|
1173 |
Group_Control_Typography::get_type(),
|
1174 |
array(
|
1175 |
'name' => 'fullscr_menu_item_typo',
|
1176 |
-
'scheme' =>
|
1177 |
'selector' => '{{WRAPPER}} .aux-fs-menu .aux-menu-item > .aux-item-content',
|
1178 |
)
|
1179 |
);
|
@@ -1251,7 +1251,7 @@ class MenuBox extends Widget_Base {
|
|
1251 |
Group_Control_Typography::get_type(),
|
1252 |
array(
|
1253 |
'name' => 'fullscr_menu_item_typo_hover',
|
1254 |
-
'scheme' =>
|
1255 |
'selector' => '{{WRAPPER}} .aux-fs-menu .aux-menu-item.aux-hover > .aux-item-content',
|
1256 |
)
|
1257 |
);
|
@@ -1379,7 +1379,7 @@ class MenuBox extends Widget_Base {
|
|
1379 |
Group_Control_Typography::get_type(),
|
1380 |
array(
|
1381 |
'name' => 'fullscr_current_item_typography',
|
1382 |
-
'scheme' =>
|
1383 |
'selector' => '{{WRAPPER}} .aux-fs-menu .aux-menu-depth-0.current-menu-item > a'
|
1384 |
)
|
1385 |
);
|
@@ -1480,7 +1480,7 @@ class MenuBox extends Widget_Base {
|
|
1480 |
array(
|
1481 |
'name' => 'fullscr_window_title_typo',
|
1482 |
'label' => __( 'Menu Title Typography', 'auxin-elements' ),
|
1483 |
-
'scheme' =>
|
1484 |
'selector' => '{{WRAPPER}} .aux-has-menu-title .aux-fs-menu:before',
|
1485 |
'condition' => array(
|
1486 |
'fullscr_window_has_title' => 'yes'
|
5 |
use Elementor\Widget_Base;
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
+
use Elementor\Core\Schemes\Typography;
|
9 |
use Elementor\Group_Control_Border;
|
10 |
use Elementor\Group_Control_Background;
|
11 |
use Elementor\Group_Control_Box_Shadow;
|
375 |
Group_Control_Typography::get_type(),
|
376 |
array(
|
377 |
'name' => 'menu_item_typo',
|
378 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
379 |
'selector' => '{{WRAPPER}} .aux-menu-depth-0 > .aux-item-content'
|
380 |
)
|
381 |
);
|
452 |
Group_Control_Typography::get_type(),
|
453 |
array(
|
454 |
'name' => 'menu_item_typo_hover',
|
455 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
456 |
'selector' => '{{WRAPPER}} .aux-menu-depth-0.aux-hover > .aux-item-content',
|
457 |
)
|
458 |
);
|
565 |
Group_Control_Typography::get_type(),
|
566 |
array(
|
567 |
'name' => 'menu_item_current_typography',
|
568 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
569 |
'selector' => '{{WRAPPER}} .aux-menu-depth-0.current-menu-item > a'
|
570 |
)
|
571 |
);
|
813 |
Group_Control_Typography::get_type(),
|
814 |
array(
|
815 |
'name' => 'menu_sub_item_typo',
|
816 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
817 |
'selector' => '{{WRAPPER}} .aux-submenu .aux-menu-item',
|
818 |
)
|
819 |
);
|
892 |
Group_Control_Typography::get_type(),
|
893 |
array(
|
894 |
'name' => 'menu_sub_item_typo_hover',
|
895 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
896 |
'selector' => '{{WRAPPER}} .aux-submenu .aux-menu-item.aux-hover',
|
897 |
)
|
898 |
);
|
1173 |
Group_Control_Typography::get_type(),
|
1174 |
array(
|
1175 |
'name' => 'fullscr_menu_item_typo',
|
1176 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
1177 |
'selector' => '{{WRAPPER}} .aux-fs-menu .aux-menu-item > .aux-item-content',
|
1178 |
)
|
1179 |
);
|
1251 |
Group_Control_Typography::get_type(),
|
1252 |
array(
|
1253 |
'name' => 'fullscr_menu_item_typo_hover',
|
1254 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
1255 |
'selector' => '{{WRAPPER}} .aux-fs-menu .aux-menu-item.aux-hover > .aux-item-content',
|
1256 |
)
|
1257 |
);
|
1379 |
Group_Control_Typography::get_type(),
|
1380 |
array(
|
1381 |
'name' => 'fullscr_current_item_typography',
|
1382 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
1383 |
'selector' => '{{WRAPPER}} .aux-fs-menu .aux-menu-depth-0.current-menu-item > a'
|
1384 |
)
|
1385 |
);
|
1480 |
array(
|
1481 |
'name' => 'fullscr_window_title_typo',
|
1482 |
'label' => __( 'Menu Title Typography', 'auxin-elements' ),
|
1483 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
1484 |
'selector' => '{{WRAPPER}} .aux-has-menu-title .aux-fs-menu:before',
|
1485 |
'condition' => array(
|
1486 |
'fullscr_window_has_title' => 'yes'
|
includes/elementor/widgets/theme-elements/modern-search.php
CHANGED
@@ -4,7 +4,7 @@ namespace Auxin\Plugin\CoreElements\Elementor\Elements\Theme_Elements;
|
|
4 |
use Elementor\Widget_Base;
|
5 |
use Elementor\Controls_Manager;
|
6 |
use Elementor\Group_Control_Typography;
|
7 |
-
use Elementor\
|
8 |
use Elementor\Group_Control_Text_Shadow;
|
9 |
use Elementor\Group_Control_Background;
|
10 |
use Elementor\Group_Control_Box_Shadow;
|
@@ -369,7 +369,7 @@ class ModernSearch extends Widget_Base {
|
|
369 |
Group_Control_Typography::get_type(),
|
370 |
[
|
371 |
'name' => 'text_typo_normal',
|
372 |
-
'scheme' =>
|
373 |
'selector' => '{{WRAPPER}} .aux-search-submit'
|
374 |
]
|
375 |
);
|
@@ -406,7 +406,7 @@ class ModernSearch extends Widget_Base {
|
|
406 |
Group_Control_Typography::get_type(),
|
407 |
[
|
408 |
'name' => 'text_typo_hover',
|
409 |
-
'scheme' =>
|
410 |
'selector' => '{{WRAPPER}} .aux-search-submit:hover'
|
411 |
]
|
412 |
);
|
@@ -628,7 +628,7 @@ class ModernSearch extends Widget_Base {
|
|
628 |
Group_Control_Typography::get_type(),
|
629 |
[
|
630 |
'name' => 'input_typo',
|
631 |
-
'scheme' =>
|
632 |
'selector' => '{{WRAPPER}} .aux-search-popup .aux-search-field',
|
633 |
'separator' => 'before'
|
634 |
]
|
@@ -858,7 +858,7 @@ class ModernSearch extends Widget_Base {
|
|
858 |
Group_Control_Typography::get_type(),
|
859 |
[
|
860 |
'name' => 'title_typo',
|
861 |
-
'scheme' =>
|
862 |
'selector' => '{{WRAPPER}} .aux-search-form-legend'
|
863 |
]
|
864 |
);
|
4 |
use Elementor\Widget_Base;
|
5 |
use Elementor\Controls_Manager;
|
6 |
use Elementor\Group_Control_Typography;
|
7 |
+
use Elementor\Core\Schemes\Typography;
|
8 |
use Elementor\Group_Control_Text_Shadow;
|
9 |
use Elementor\Group_Control_Background;
|
10 |
use Elementor\Group_Control_Box_Shadow;
|
369 |
Group_Control_Typography::get_type(),
|
370 |
[
|
371 |
'name' => 'text_typo_normal',
|
372 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
373 |
'selector' => '{{WRAPPER}} .aux-search-submit'
|
374 |
]
|
375 |
);
|
406 |
Group_Control_Typography::get_type(),
|
407 |
[
|
408 |
'name' => 'text_typo_hover',
|
409 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
410 |
'selector' => '{{WRAPPER}} .aux-search-submit:hover'
|
411 |
]
|
412 |
);
|
628 |
Group_Control_Typography::get_type(),
|
629 |
[
|
630 |
'name' => 'input_typo',
|
631 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
632 |
'selector' => '{{WRAPPER}} .aux-search-popup .aux-search-field',
|
633 |
'separator' => 'before'
|
634 |
]
|
858 |
Group_Control_Typography::get_type(),
|
859 |
[
|
860 |
'name' => 'title_typo',
|
861 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
862 |
'selector' => '{{WRAPPER}} .aux-search-form-legend'
|
863 |
]
|
864 |
);
|
includes/elementor/widgets/theme-elements/search.php
CHANGED
@@ -5,7 +5,7 @@ use Elementor\Plugin;
|
|
5 |
use Elementor\Widget_Base;
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
-
use Elementor\
|
9 |
use Elementor\Group_Control_Border;
|
10 |
|
11 |
|
@@ -277,7 +277,7 @@ class SearchBox extends Widget_Base {
|
|
277 |
Group_Control_Typography::get_type(),
|
278 |
array(
|
279 |
'name' => 'form_typgraphy',
|
280 |
-
'scheme' =>
|
281 |
'selector' => '{{WRAPPER}} .aux-search-form .aux-search-field'
|
282 |
)
|
283 |
);
|
@@ -438,7 +438,7 @@ class SearchBox extends Widget_Base {
|
|
438 |
Group_Control_Typography::get_type(),
|
439 |
array(
|
440 |
'name' => 'button_typgraphy',
|
441 |
-
'scheme' =>
|
442 |
'selector' => '{{WRAPPER}} .aux-search-form .aux-search-submit'
|
443 |
)
|
444 |
);
|
5 |
use Elementor\Widget_Base;
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
+
use Elementor\Core\Schemes\Typography;
|
9 |
use Elementor\Group_Control_Border;
|
10 |
|
11 |
|
277 |
Group_Control_Typography::get_type(),
|
278 |
array(
|
279 |
'name' => 'form_typgraphy',
|
280 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
281 |
'selector' => '{{WRAPPER}} .aux-search-form .aux-search-field'
|
282 |
)
|
283 |
);
|
438 |
Group_Control_Typography::get_type(),
|
439 |
array(
|
440 |
'name' => 'button_typgraphy',
|
441 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
442 |
'selector' => '{{WRAPPER}} .aux-search-form .aux-search-submit'
|
443 |
)
|
444 |
);
|
includes/elementor/widgets/theme-elements/shopping-cart.php
CHANGED
@@ -6,7 +6,7 @@ use Elementor\Widget_Base;
|
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Image_Size;
|
8 |
use Elementor\Group_Control_Typography;
|
9 |
-
use Elementor\
|
10 |
use Elementor\Group_Control_Border;
|
11 |
use Elementor\Group_Control_Background;
|
12 |
use Elementor\Group_Control_Box_Shadow;
|
@@ -258,7 +258,7 @@ class Shopping_Cart extends Widget_Base {
|
|
258 |
Group_Control_Typography::get_type(),
|
259 |
array(
|
260 |
'name' => 'bubble_typography',
|
261 |
-
'scheme' =>
|
262 |
'selector' => '{{WRAPPER}} .aux-cart-contents > span'
|
263 |
)
|
264 |
);
|
@@ -528,7 +528,7 @@ class Shopping_Cart extends Widget_Base {
|
|
528 |
array(
|
529 |
'label' => __('Title Typography', 'auxin-elements' ),
|
530 |
'name' => 'title_typography',
|
531 |
-
'scheme' =>
|
532 |
'selector' => '{{WRAPPER}} .aux-cart-wrapper .aux-card-item h3'
|
533 |
)
|
534 |
);
|
@@ -550,7 +550,7 @@ class Shopping_Cart extends Widget_Base {
|
|
550 |
array(
|
551 |
'label' => __('Price Typography', 'auxin-elements' ),
|
552 |
'name' => 'price_typography',
|
553 |
-
'scheme' =>
|
554 |
'selector' => '{{WRAPPER}} .aux-cart-wrapper .aux-card-item span'
|
555 |
)
|
556 |
);
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Image_Size;
|
8 |
use Elementor\Group_Control_Typography;
|
9 |
+
use Elementor\Core\Schemes\Typography;
|
10 |
use Elementor\Group_Control_Border;
|
11 |
use Elementor\Group_Control_Background;
|
12 |
use Elementor\Group_Control_Box_Shadow;
|
258 |
Group_Control_Typography::get_type(),
|
259 |
array(
|
260 |
'name' => 'bubble_typography',
|
261 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
262 |
'selector' => '{{WRAPPER}} .aux-cart-contents > span'
|
263 |
)
|
264 |
);
|
528 |
array(
|
529 |
'label' => __('Title Typography', 'auxin-elements' ),
|
530 |
'name' => 'title_typography',
|
531 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
532 |
'selector' => '{{WRAPPER}} .aux-cart-wrapper .aux-card-item h3'
|
533 |
)
|
534 |
);
|
550 |
array(
|
551 |
'label' => __('Price Typography', 'auxin-elements' ),
|
552 |
'name' => 'price_typography',
|
553 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
554 |
'selector' => '{{WRAPPER}} .aux-cart-wrapper .aux-card-item span'
|
555 |
)
|
556 |
);
|
includes/elementor/widgets/theme-elements/site-title.php
CHANGED
@@ -5,7 +5,7 @@ use Elementor\Plugin;
|
|
5 |
use Elementor\Widget_Base;
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
-
use Elementor\
|
9 |
use Elementor\Group_Control_Text_Shadow;
|
10 |
|
11 |
|
@@ -323,7 +323,7 @@ class SiteTitle extends Widget_Base {
|
|
323 |
Group_Control_Typography::get_type(),
|
324 |
array(
|
325 |
'name' => 'title_typography',
|
326 |
-
'scheme' =>
|
327 |
'selector' => '{{WRAPPER}} .aux-site-title-heading'
|
328 |
)
|
329 |
);
|
@@ -389,7 +389,7 @@ class SiteTitle extends Widget_Base {
|
|
389 |
Group_Control_Typography::get_type(),
|
390 |
array(
|
391 |
'name' => 'before_title_typography',
|
392 |
-
'scheme' =>
|
393 |
'selector' => '{{WRAPPER}} .aux-site-title-before-heading'
|
394 |
)
|
395 |
);
|
@@ -455,7 +455,7 @@ class SiteTitle extends Widget_Base {
|
|
455 |
Group_Control_Typography::get_type(),
|
456 |
array(
|
457 |
'name' => 'after_title_typography',
|
458 |
-
'scheme' =>
|
459 |
'selector' => '{{WRAPPER}} .aux-site-title-after-heading'
|
460 |
)
|
461 |
);
|
5 |
use Elementor\Widget_Base;
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
+
use Elementor\Core\Schemes\Typography;
|
9 |
use Elementor\Group_Control_Text_Shadow;
|
10 |
|
11 |
|
323 |
Group_Control_Typography::get_type(),
|
324 |
array(
|
325 |
'name' => 'title_typography',
|
326 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
327 |
'selector' => '{{WRAPPER}} .aux-site-title-heading'
|
328 |
)
|
329 |
);
|
389 |
Group_Control_Typography::get_type(),
|
390 |
array(
|
391 |
'name' => 'before_title_typography',
|
392 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
393 |
'selector' => '{{WRAPPER}} .aux-site-title-before-heading'
|
394 |
)
|
395 |
);
|
455 |
Group_Control_Typography::get_type(),
|
456 |
array(
|
457 |
'name' => 'after_title_typography',
|
458 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
459 |
'selector' => '{{WRAPPER}} .aux-site-title-after-heading'
|
460 |
)
|
461 |
);
|
includes/elementor/widgets/touch-slider.php
CHANGED
@@ -5,7 +5,7 @@ use Elementor\Plugin;
|
|
5 |
use Elementor\Widget_Base;
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
-
use Elementor\
|
9 |
|
10 |
|
11 |
if ( ! defined( 'ABSPATH' ) ) {
|
@@ -355,7 +355,7 @@ class TouchSlider extends Widget_Base {
|
|
355 |
Group_Control_Typography::get_type(),
|
356 |
array(
|
357 |
'name' => 'title_typography',
|
358 |
-
'scheme' =>
|
359 |
'selector' => '{{WRAPPER}} .aux-slide-title h3',
|
360 |
'condition' => array(
|
361 |
'add_title' => 'yes',
|
@@ -413,7 +413,7 @@ class TouchSlider extends Widget_Base {
|
|
413 |
Group_Control_Typography::get_type(),
|
414 |
array(
|
415 |
'name' => 'caption_typography',
|
416 |
-
'scheme' =>
|
417 |
'selector' => '{{WRAPPER}} .aux-slide-info',
|
418 |
'condition' => array(
|
419 |
'add_caption' => 'yes',
|
5 |
use Elementor\Widget_Base;
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
+
use Elementor\Core\Schemes\Typography;
|
9 |
|
10 |
|
11 |
if ( ! defined( 'ABSPATH' ) ) {
|
355 |
Group_Control_Typography::get_type(),
|
356 |
array(
|
357 |
'name' => 'title_typography',
|
358 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
359 |
'selector' => '{{WRAPPER}} .aux-slide-title h3',
|
360 |
'condition' => array(
|
361 |
'add_title' => 'yes',
|
413 |
Group_Control_Typography::get_type(),
|
414 |
array(
|
415 |
'name' => 'caption_typography',
|
416 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
417 |
'selector' => '{{WRAPPER}} .aux-slide-info',
|
418 |
'condition' => array(
|
419 |
'add_caption' => 'yes',
|
includes/general-hooks.php
CHANGED
@@ -21,9 +21,14 @@
|
|
21 |
function auxels_body_class( $classes ) {
|
22 |
$classes[] = '_auxels';
|
23 |
|
|
|
|
|
|
|
|
|
|
|
24 |
return $classes;
|
25 |
}
|
26 |
-
add_filter( 'body_class', 'auxels_body_class' );
|
27 |
|
28 |
|
29 |
/**
|
21 |
function auxels_body_class( $classes ) {
|
22 |
$classes[] = '_auxels';
|
23 |
|
24 |
+
if ( auxin_get_option('page_animation_nav_enable') && class_exists( '\Elementor\Plugin' ) && \Elementor\Plugin::$instance->preview->is_preview_mode() ) {
|
25 |
+
unset( $classes[ array_search( 'aux-page-animation', $classes ) ] );
|
26 |
+
unset( $classes[ array_search( 'aux-page-animation-' . esc_attr( auxin_get_option('page_animation_nav_type', 'fade') ), $classes ) ] );
|
27 |
+
}
|
28 |
+
|
29 |
return $classes;
|
30 |
}
|
31 |
+
add_filter( 'body_class', 'auxels_body_class', 13 );
|
32 |
|
33 |
|
34 |
/**
|
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: 2021-04-
|
6 |
"PO-Revision-Date: 2016-11-09 12:50+0330\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: \n"
|
@@ -213,12 +213,12 @@ msgid ""
|
|
213 |
"Please make sure the image aspect ratio for all image sizes are the same."
|
214 |
msgstr ""
|
215 |
|
216 |
-
#: admin/includes/admin-hooks.php:686 includes/general-hooks.php:
|
217 |
#, fuzzy
|
218 |
msgid "Footer Brand Image"
|
219 |
msgstr "تصویر پوستر"
|
220 |
|
221 |
-
#: admin/includes/admin-hooks.php:687 includes/general-hooks.php:
|
222 |
msgid "This image appears as site brand image on footer section."
|
223 |
msgstr ""
|
224 |
|
@@ -424,7 +424,7 @@ msgstr ""
|
|
424 |
|
425 |
#: admin/includes/compatibility/siteorigin/fields/iconpicker.class.php:13
|
426 |
#: includes/classes/class-auxin-widget.php:126
|
427 |
-
#: includes/classes/class-auxin-widget.php:151 includes/general-hooks.php:
|
428 |
msgid "Choose .."
|
429 |
msgstr "انتخاب .."
|
430 |
|
@@ -840,7 +840,7 @@ msgstr ""
|
|
840 |
#: admin/includes/metaboxes/metabox-fields-general-header-template.php:71
|
841 |
#: admin/includes/metaboxes/metabox-fields-general-header.php:27
|
842 |
#: admin/includes/metaboxes/metabox-fields-general-top-header.php:27
|
843 |
-
#: includes/general-hooks.php:
|
844 |
msgid "Disable it to replace header section with an Elementor template"
|
845 |
msgstr ""
|
846 |
|
@@ -969,7 +969,7 @@ msgstr ""
|
|
969 |
#: admin/includes/metaboxes/metabox-fields-general-header-template.php:70
|
970 |
#: admin/includes/metaboxes/metabox-fields-general-header.php:26
|
971 |
#: admin/includes/metaboxes/metabox-fields-general-top-header.php:26
|
972 |
-
#: includes/general-hooks.php:
|
973 |
msgid "Use Legacy Header"
|
974 |
msgstr ""
|
975 |
|
@@ -1094,7 +1094,7 @@ msgstr ""
|
|
1094 |
|
1095 |
#: admin/includes/metaboxes/metabox-fields-general-header.php:202
|
1096 |
#: includes/elements/staff.php:207 includes/elements/text.php:105
|
1097 |
-
#: includes/general-hooks.php:
|
1098 |
msgid "Boxed"
|
1099 |
msgstr "جعبه ای"
|
1100 |
|
@@ -1314,7 +1314,7 @@ msgstr ""
|
|
1314 |
#: includes/elements/recent-posts-grid-carousel.php:663
|
1315 |
#: includes/elements/recent-posts-timeline.php:272
|
1316 |
#: includes/elements/staff.php:280 includes/elements/text.php:129
|
1317 |
-
#: includes/elements/text.php:157 includes/general-hooks.php:
|
1318 |
msgid "Center"
|
1319 |
msgstr "وسط"
|
1320 |
|
@@ -1360,8 +1360,8 @@ msgstr "وسط"
|
|
1360 |
#: includes/elements/staff.php:238 includes/elements/staff.php:276
|
1361 |
#: includes/elements/text.php:125 includes/elements/text.php:153
|
1362 |
#: includes/elements/text.php:620 includes/elements/text.php:807
|
1363 |
-
#: includes/general-hooks.php:
|
1364 |
-
#: includes/general-hooks.php:
|
1365 |
msgid "Left"
|
1366 |
msgstr "چپ"
|
1367 |
|
@@ -1412,7 +1412,7 @@ msgstr "تراز المان خط زمانی را مشخص می کند."
|
|
1412 |
#: includes/elements/divider.php:90 includes/elements/socials-list.php:63
|
1413 |
#: includes/elements/socials-list.php:201 includes/elements/staff.php:463
|
1414 |
#: includes/elements/text.php:469 includes/elements/text.php:677
|
1415 |
-
#: includes/general-hooks.php:
|
1416 |
msgid "Small"
|
1417 |
msgstr "کوچک"
|
1418 |
|
@@ -1428,8 +1428,8 @@ msgstr "کوچک"
|
|
1428 |
#: includes/elements/socials-list.php:64 includes/elements/socials-list.php:202
|
1429 |
#: includes/elements/staff.php:111 includes/elements/staff.php:464
|
1430 |
#: includes/elements/text.php:430 includes/elements/text.php:470
|
1431 |
-
#: includes/elements/text.php:676 includes/general-hooks.php:
|
1432 |
-
#: includes/general-hooks.php:
|
1433 |
msgid "Medium"
|
1434 |
msgstr "متوسط"
|
1435 |
|
@@ -1444,7 +1444,7 @@ msgstr "متوسط"
|
|
1444 |
#: includes/elements/socials-list.php:203 includes/elements/staff.php:110
|
1445 |
#: includes/elements/staff.php:465 includes/elements/text.php:429
|
1446 |
#: includes/elements/text.php:471 includes/elements/text.php:675
|
1447 |
-
#: includes/general-hooks.php:
|
1448 |
msgid "Large"
|
1449 |
msgstr "بزرگ"
|
1450 |
|
@@ -1516,8 +1516,8 @@ msgstr ""
|
|
1516 |
#: includes/elements/gallery.php:120 includes/elements/quote.php:109
|
1517 |
#: includes/elements/recent-posts-tiles-carousel.php:298
|
1518 |
#: includes/elements/recent-posts-tiles.php:328 includes/elements/text.php:180
|
1519 |
-
#: includes/elements/text.php:806 includes/general-hooks.php:
|
1520 |
-
#: includes/general-hooks.php:
|
1521 |
msgid "Default"
|
1522 |
msgstr "پیش فرض"
|
1523 |
|
@@ -1901,16 +1901,12 @@ msgid ""
|
|
1901 |
"Animoto, Wistia link or iFrame code."
|
1902 |
msgstr ""
|
1903 |
|
1904 |
-
#: auxin-elements.php:
|
1905 |
-
msgid "Page Builder by SiteOrigin"
|
1906 |
-
msgstr ""
|
1907 |
-
|
1908 |
-
#: auxin-elements.php:64 includes/classes/class-auxin-welcome-sections.php:531
|
1909 |
#, fuzzy
|
1910 |
msgid "Phlox Pro"
|
1911 |
msgstr "[فلوکس] کد"
|
1912 |
|
1913 |
-
#: auxin-elements.php:
|
1914 |
msgid "Phlox"
|
1915 |
msgstr ""
|
1916 |
|
@@ -2967,7 +2963,7 @@ msgstr "تنظیمات طراحی"
|
|
2967 |
#: includes/elements/recent-posts-masonry.php:16
|
2968 |
#: includes/elements/recent-posts-tiles.php:16
|
2969 |
#: includes/elements/recent-posts-timeline.php:16
|
2970 |
-
#: includes/elements/recent-posts-widget.php:16 includes/general-hooks.php:
|
2971 |
msgid "All Categories"
|
2972 |
msgstr "همه دسته ها"
|
2973 |
|
@@ -2986,25 +2982,25 @@ msgid "Select Image"
|
|
2986 |
msgstr "انتخاب اظهار نظر"
|
2987 |
|
2988 |
#: includes/classes/class-auxin-widget.php:387
|
2989 |
-
#: includes/classes/class-auxin-widget.php:388 includes/general-hooks.php:
|
2990 |
-
#: includes/general-hooks.php:
|
2991 |
#, fuzzy
|
2992 |
msgid "Add Video"
|
2993 |
msgstr "افزودن بخش"
|
2994 |
|
2995 |
-
#: includes/classes/class-auxin-widget.php:389 includes/general-hooks.php:
|
2996 |
#, fuzzy
|
2997 |
msgid "Select Video"
|
2998 |
msgstr "تکرار ویدیو"
|
2999 |
|
3000 |
#: includes/classes/class-auxin-widget.php:411
|
3001 |
-
#: includes/classes/class-auxin-widget.php:412 includes/general-hooks.php:
|
3002 |
-
#: includes/general-hooks.php:
|
3003 |
#, fuzzy
|
3004 |
msgid "Add Audio"
|
3005 |
msgstr "افزودن بخش"
|
3006 |
|
3007 |
-
#: includes/classes/class-auxin-widget.php:413 includes/general-hooks.php:
|
3008 |
#, fuzzy
|
3009 |
msgid "Select Audio"
|
3010 |
msgstr "انتخاب شکاف آکاردئون"
|
@@ -3266,8 +3262,8 @@ msgstr "بالا"
|
|
3266 |
#: includes/elements/staff.php:230 includes/elements/staff.php:284
|
3267 |
#: includes/elements/text.php:133 includes/elements/text.php:161
|
3268 |
#: includes/elements/text.php:624 includes/elements/text.php:808
|
3269 |
-
#: includes/general-hooks.php:
|
3270 |
-
#: includes/general-hooks.php:
|
3271 |
msgid "Right"
|
3272 |
msgstr "راست"
|
3273 |
|
@@ -3561,7 +3557,7 @@ msgstr "پیوند"
|
|
3561 |
#: includes/elements/recent-posts-tiles.php:154
|
3562 |
#: includes/elements/recent-posts-timeline.php:149
|
3563 |
#: includes/elements/testimonial.php:132 includes/elements/text.php:903
|
3564 |
-
#: includes/general-hooks.php:
|
3565 |
#: public/templates/vcomposer/auxin_vc_extendes.php:63
|
3566 |
msgid "None"
|
3567 |
msgstr "هیچکدام"
|
@@ -4409,7 +4405,7 @@ msgid "Logo"
|
|
4409 |
msgstr ""
|
4410 |
|
4411 |
#: includes/elementor/modules/settings/general/manager.php:47
|
4412 |
-
#: includes/general-hooks.php:
|
4413 |
#, fuzzy
|
4414 |
msgid "Footer Brand Height"
|
4415 |
msgstr "ارتفاع لوگو"
|
@@ -4435,7 +4431,7 @@ msgid "Select Post Type"
|
|
4435 |
msgstr "نوع گالری را انتخاب کنید."
|
4436 |
|
4437 |
#: includes/elementor/modules/theme-builder/module.php:131
|
4438 |
-
#: includes/general-hooks.php:
|
4439 |
#, fuzzy
|
4440 |
msgid "404 Page"
|
4441 |
msgstr "صفحه"
|
@@ -4703,7 +4699,7 @@ msgstr "کادربندی شده"
|
|
4703 |
#: includes/elementor/widgets/theme-elements/modern-search.php:353
|
4704 |
#: includes/elementor/widgets/theme-elements/modern-search.php:444
|
4705 |
#: includes/elements/button.php:118 includes/elements/text.php:738
|
4706 |
-
#: includes/general-hooks.php:
|
4707 |
msgid "Normal"
|
4708 |
msgstr "معمولی"
|
4709 |
|
@@ -5419,8 +5415,8 @@ msgstr "عرض"
|
|
5419 |
#: includes/elements/text.php:764 includes/elements/text.php:780
|
5420 |
#: includes/elements/text.php:796 includes/elements/text.php:821
|
5421 |
#: includes/elements/text.php:839 includes/elements/text.php:856
|
5422 |
-
#: includes/elements/text.php:877 includes/general-hooks.php:
|
5423 |
-
#: includes/general-hooks.php:
|
5424 |
#, fuzzy
|
5425 |
msgid "Button"
|
5426 |
msgstr "اندازه دکمه"
|
@@ -5459,8 +5455,8 @@ msgstr "اندازه دکمه"
|
|
5459 |
#: includes/elementor/widgets/button.php:160
|
5460 |
#: includes/elementor/widgets/modern-button.php:308
|
5461 |
#: includes/elementor/widgets/text.php:1033 includes/elements/button.php:63
|
5462 |
-
#: includes/elements/text.php:674 includes/general-hooks.php:
|
5463 |
-
#: includes/general-hooks.php:
|
5464 |
msgid "Exlarge"
|
5465 |
msgstr "خیلی بزرگ"
|
5466 |
|
@@ -5469,7 +5465,7 @@ msgstr "خیلی بزرگ"
|
|
5469 |
#: includes/elementor/widgets/modern-button.php:312
|
5470 |
#: includes/elementor/widgets/text.php:1037 includes/elements/button.php:67
|
5471 |
#: includes/elements/divider.php:91 includes/elements/text.php:678
|
5472 |
-
#: includes/general-hooks.php:
|
5473 |
msgid "Tiny"
|
5474 |
msgstr "خیلی کوچک"
|
5475 |
|
@@ -5492,16 +5488,16 @@ msgstr "جعبه"
|
|
5492 |
#: includes/elementor/widgets/button.php:192
|
5493 |
#: includes/elementor/widgets/modern-button.php:295
|
5494 |
#: includes/elementor/widgets/text.php:1362 includes/elements/button.php:95
|
5495 |
-
#: includes/elements/text.php:712 includes/general-hooks.php:
|
5496 |
-
#: includes/general-hooks.php:
|
5497 |
msgid "Round"
|
5498 |
msgstr "گرد"
|
5499 |
|
5500 |
#: includes/elementor/widgets/button.php:196
|
5501 |
#: includes/elementor/widgets/modern-button.php:296
|
5502 |
#: includes/elementor/widgets/text.php:1366 includes/elements/button.php:99
|
5503 |
-
#: includes/elements/text.php:716 includes/general-hooks.php:
|
5504 |
-
#: includes/general-hooks.php:
|
5505 |
msgid "Curve"
|
5506 |
msgstr "منحنی"
|
5507 |
|
@@ -5512,16 +5508,16 @@ msgstr "ظاهر دکمه"
|
|
5512 |
|
5513 |
#: includes/elementor/widgets/button.php:215
|
5514 |
#: includes/elementor/widgets/text.php:1386 includes/elements/button.php:122
|
5515 |
-
#: includes/elements/text.php:742 includes/general-hooks.php:
|
5516 |
-
#: includes/general-hooks.php:
|
5517 |
msgid "3D"
|
5518 |
msgstr "سه بعدی"
|
5519 |
|
5520 |
#: includes/elementor/widgets/button.php:219
|
5521 |
#: includes/elementor/widgets/modern-button.php:282
|
5522 |
#: includes/elementor/widgets/text.php:1390 includes/elements/button.php:126
|
5523 |
-
#: includes/elements/text.php:746 includes/general-hooks.php:
|
5524 |
-
#: includes/general-hooks.php:
|
5525 |
msgid "Outline"
|
5526 |
msgstr "خط بیرونی"
|
5527 |
|
@@ -5597,10 +5593,10 @@ msgstr "اندازه پس زمینه"
|
|
5597 |
#: includes/elementor/widgets/theme-elements/search.php:178
|
5598 |
#: includes/elementor/widgets/theme-elements/shopping-cart.php:108
|
5599 |
#: includes/elements/custom-list.php:74 includes/elements/text.php:374
|
5600 |
-
#: includes/elements/text.php:386 includes/general-hooks.php:
|
5601 |
-
#: includes/general-hooks.php:
|
5602 |
-
#: includes/general-hooks.php:
|
5603 |
-
#: includes/general-hooks.php:
|
5604 |
msgid "Icon"
|
5605 |
msgstr "شکلک"
|
5606 |
|
@@ -5612,22 +5608,22 @@ msgstr "شکلک برای دکمه"
|
|
5612 |
|
5613 |
#: includes/elementor/widgets/button.php:373
|
5614 |
#: includes/elementor/widgets/text.php:1135 includes/elements/button.php:171
|
5615 |
-
#: includes/elements/text.php:800 includes/general-hooks.php:
|
5616 |
msgid "Icon alignment"
|
5617 |
msgstr "تراز شکلک"
|
5618 |
|
5619 |
#: includes/elementor/widgets/button.php:380
|
5620 |
#: includes/elementor/widgets/modern-button.php:804
|
5621 |
#: includes/elementor/widgets/text.php:1142 includes/elements/button.php:191
|
5622 |
-
#: includes/elements/text.php:809 includes/general-hooks.php:
|
5623 |
-
#: includes/general-hooks.php:
|
5624 |
msgid "Over"
|
5625 |
msgstr "رو"
|
5626 |
|
5627 |
#: includes/elementor/widgets/button.php:381
|
5628 |
#: includes/elementor/widgets/text.php:1143 includes/elements/button.php:195
|
5629 |
-
#: includes/elements/text.php:810 includes/general-hooks.php:
|
5630 |
-
#: includes/general-hooks.php:
|
5631 |
msgid "Animate from Left"
|
5632 |
msgstr "متحرک سازی از چپ"
|
5633 |
|
@@ -6125,7 +6121,7 @@ msgstr ""
|
|
6125 |
#: includes/elementor/widgets/theme-elements/search.php:201
|
6126 |
#: includes/elementor/widgets/theme-elements/search.php:404
|
6127 |
#: includes/elementor/widgets/touch-slider.php:303
|
6128 |
-
#: includes/general-hooks.php:
|
6129 |
msgid "Background Color"
|
6130 |
msgstr "رنگ پس زمینه"
|
6131 |
|
@@ -6313,7 +6309,7 @@ msgstr "فاصله خالی"
|
|
6313 |
#: includes/elements/about-widget.php:121 includes/elements/divider.php:69
|
6314 |
#: includes/elements/dropcap.php:72 includes/elements/staff.php:168
|
6315 |
#: includes/elements/text.php:539 includes/elements/text.php:581
|
6316 |
-
#: includes/general-hooks.php:
|
6317 |
msgid "Circle"
|
6318 |
msgstr "دایره"
|
6319 |
|
@@ -6746,7 +6742,7 @@ msgstr "شکل"
|
|
6746 |
|
6747 |
#: includes/elementor/widgets/icon.php:141
|
6748 |
#: includes/elements/about-widget.php:122 includes/elements/dropcap.php:60
|
6749 |
-
#: includes/general-hooks.php:
|
6750 |
msgid "Square"
|
6751 |
msgstr "مربع"
|
6752 |
|
@@ -6881,7 +6877,7 @@ msgstr ""
|
|
6881 |
|
6882 |
#: includes/elementor/widgets/image.php:278
|
6883 |
#: includes/elementor/widgets/theme-elements/shopping-cart.php:101
|
6884 |
-
#: includes/general-hooks.php:
|
6885 |
msgid "Settings"
|
6886 |
msgstr ""
|
6887 |
|
@@ -8050,7 +8046,7 @@ msgstr ""
|
|
8050 |
#: includes/elements/recent-posts-tiles-carousel.php:199
|
8051 |
#: includes/elements/recent-posts-tiles.php:229
|
8052 |
#: includes/elements/recent-posts-timeline.php:224
|
8053 |
-
#: includes/general-hooks.php:
|
8054 |
msgid "Include posts"
|
8055 |
msgstr "شامل شدن این نوشته ها"
|
8056 |
|
@@ -8979,8 +8975,8 @@ msgstr "نوع دکمه"
|
|
8979 |
msgid "Shape Style"
|
8980 |
msgstr "ظاهر نقشه"
|
8981 |
|
8982 |
-
#: includes/elementor/widgets/text.php:1377 includes/general-hooks.php:
|
8983 |
-
#: includes/general-hooks.php:
|
8984 |
#, fuzzy
|
8985 |
msgid "Button Style"
|
8986 |
msgstr "ظاهر دکمه"
|
@@ -9757,7 +9753,7 @@ msgstr "یک المان درباره نویسنده اضافه می کند."
|
|
9757 |
msgid "The name which appears in about widget."
|
9758 |
msgstr "نامی که در ابزارک درباره ما نشان داده می شود."
|
9759 |
|
9760 |
-
#: includes/elements/about-widget.php:72 includes/general-hooks.php:
|
9761 |
msgid "Skills"
|
9762 |
msgstr "مهارت ها"
|
9763 |
|
@@ -9940,14 +9936,14 @@ msgstr "تیره تر کردن برچسب"
|
|
9940 |
msgid "Darken label of button."
|
9941 |
msgstr "برچسب دکمه"
|
9942 |
|
9943 |
-
#: includes/elements/button.php:199 includes/general-hooks.php:
|
9944 |
-
#: includes/general-hooks.php:
|
9945 |
#, fuzzy
|
9946 |
msgid "Animate from Righ"
|
9947 |
msgstr "متحرک سازی از راست"
|
9948 |
|
9949 |
-
#: includes/elements/button.php:227 includes/general-hooks.php:
|
9950 |
-
#: includes/general-hooks.php:
|
9951 |
#, fuzzy
|
9952 |
msgid "Button Link"
|
9953 |
msgstr "اندازه دکمه"
|
@@ -9957,12 +9953,12 @@ msgid "Open link in"
|
|
9957 |
msgstr "باز کردن پیوند در"
|
9958 |
|
9959 |
#: includes/elements/button.php:247 includes/elements/text.php:866
|
9960 |
-
#: includes/general-hooks.php:
|
9961 |
msgid "Current page"
|
9962 |
msgstr "صفحه جاری"
|
9963 |
|
9964 |
#: includes/elements/button.php:248 includes/elements/text.php:867
|
9965 |
-
#: includes/general-hooks.php:
|
9966 |
msgid "New page"
|
9967 |
msgstr "صفحه جدید"
|
9968 |
|
@@ -10213,7 +10209,7 @@ msgstr "حرف بزرگ سبک دهی شده در اول پاراگراف"
|
|
10213 |
msgid "Dropcap style"
|
10214 |
msgstr "ظاهر دراپ کپ"
|
10215 |
|
10216 |
-
#: includes/elements/dropcap.php:64 includes/general-hooks.php:
|
10217 |
msgid "Outline Square"
|
10218 |
msgstr "مربع با خط بیرونی"
|
10219 |
|
@@ -10221,7 +10217,7 @@ msgstr "مربع با خط بیرونی"
|
|
10221 |
msgid "Round Square"
|
10222 |
msgstr "مربع لبه گرد"
|
10223 |
|
10224 |
-
#: includes/elements/dropcap.php:76 includes/general-hooks.php:
|
10225 |
msgid "Outline Circle"
|
10226 |
msgstr "دایره با خط بیرونی"
|
10227 |
|
@@ -10820,7 +10816,7 @@ msgstr "تعداد تصاویر برای نمایش اولیه. حداکثر 33.
|
|
10820 |
msgid "Resolution/size of the photos. "
|
10821 |
msgstr "رزولوشن/اندازه تصاویر."
|
10822 |
|
10823 |
-
#: includes/elements/instagram-feed.php:96 includes/general-hooks.php:
|
10824 |
msgid "Auto"
|
10825 |
msgstr "خودکار"
|
10826 |
|
@@ -11683,7 +11679,7 @@ msgid "Single Color"
|
|
11683 |
msgstr "رنگ شکلک"
|
11684 |
|
11685 |
#: includes/elements/text.php:201 includes/elements/text.php:296
|
11686 |
-
#: includes/general-hooks.php:
|
11687 |
msgid "Background Image"
|
11688 |
msgstr "تصویر پس زمینه"
|
11689 |
|
@@ -11703,7 +11699,7 @@ msgid "Wrapper Background Image Display"
|
|
11703 |
msgstr "تصویر پس زمینه"
|
11704 |
|
11705 |
#: includes/elements/text.php:254 includes/elements/text.php:349
|
11706 |
-
#: includes/general-hooks.php:
|
11707 |
msgid "Cover"
|
11708 |
msgstr "پوشاننده"
|
11709 |
|
@@ -11717,7 +11713,7 @@ msgid "Centered, with original size"
|
|
11717 |
msgstr ""
|
11718 |
|
11719 |
#: includes/elements/text.php:257 includes/elements/text.php:352
|
11720 |
-
#: includes/general-hooks.php:
|
11721 |
msgid "Fixed"
|
11722 |
msgstr "ثابت"
|
11723 |
|
@@ -11985,112 +11981,112 @@ msgstr ""
|
|
11985 |
msgid "Select Page"
|
11986 |
msgstr "تراز شکلک را انتخاب کنید."
|
11987 |
|
11988 |
-
#: includes/general-hooks.php:
|
11989 |
msgid "Auxin Icons"
|
11990 |
msgstr "اکسین شکلک ها"
|
11991 |
|
11992 |
-
#: includes/general-hooks.php:
|
11993 |
msgid "Icon library"
|
11994 |
msgstr "کتابخانه شکلک ها"
|
11995 |
|
11996 |
-
#: includes/general-hooks.php:
|
11997 |
msgid "Font Awesome"
|
11998 |
msgstr "Font Awesome"
|
11999 |
|
12000 |
-
#: includes/general-hooks.php:
|
12001 |
msgid "Open Iconic"
|
12002 |
msgstr "Open Iconic"
|
12003 |
|
12004 |
-
#: includes/general-hooks.php:
|
12005 |
msgid "Typicons"
|
12006 |
msgstr "Typicons"
|
12007 |
|
12008 |
-
#: includes/general-hooks.php:
|
12009 |
msgid "Entypo"
|
12010 |
msgstr "Entypo"
|
12011 |
|
12012 |
-
#: includes/general-hooks.php:
|
12013 |
msgid "Linecons"
|
12014 |
msgstr "Linecons"
|
12015 |
|
12016 |
-
#: includes/general-hooks.php:
|
12017 |
msgid "Auxin"
|
12018 |
msgstr "اکسین"
|
12019 |
|
12020 |
-
#: includes/general-hooks.php:
|
12021 |
msgid "Select icon library."
|
12022 |
msgstr "کتابخانه شکلک را انتخاب کنید."
|
12023 |
|
12024 |
-
#: includes/general-hooks.php:
|
12025 |
-
#: includes/general-hooks.php:
|
12026 |
-
#: includes/general-hooks.php:
|
12027 |
msgid "Select icon from library."
|
12028 |
msgstr "انتخاب شکلک از کتابخانه."
|
12029 |
|
12030 |
-
#: includes/general-hooks.php:
|
12031 |
msgid "Custom color"
|
12032 |
msgstr "رنگ سفارشی"
|
12033 |
|
12034 |
-
#: includes/general-hooks.php:
|
12035 |
msgid "Select custom icon color."
|
12036 |
msgstr "رنگ دلخواه شکلک را انتخاب کنید."
|
12037 |
|
12038 |
-
#: includes/general-hooks.php:
|
12039 |
msgid "Background shape"
|
12040 |
msgstr "شکل پس زمینه"
|
12041 |
|
12042 |
-
#: includes/general-hooks.php:
|
12043 |
msgid "Rounded"
|
12044 |
msgstr "گرد شده"
|
12045 |
|
12046 |
-
#: includes/general-hooks.php:
|
12047 |
msgid "Outline Rounded"
|
12048 |
msgstr "گرد با خط بیرونی"
|
12049 |
|
12050 |
-
#: includes/general-hooks.php:
|
12051 |
msgid "Select background shape and style for icon."
|
12052 |
msgstr "ظاهر و شکل پس زمینه شکلک انتخاب کنید."
|
12053 |
|
12054 |
-
#: includes/general-hooks.php:
|
12055 |
msgid "Custom background color"
|
12056 |
msgstr "رنگ پس زمینه دلخواه"
|
12057 |
|
12058 |
-
#: includes/general-hooks.php:
|
12059 |
msgid "Select custom icon background color."
|
12060 |
msgstr "رنگ دلخواه پس زمینه شکلک را انتخاب کنید."
|
12061 |
|
12062 |
-
#: includes/general-hooks.php:
|
12063 |
msgid "Select icon alignment."
|
12064 |
msgstr "تراز شکلک را انتخاب کنید."
|
12065 |
|
12066 |
-
#: includes/general-hooks.php:
|
12067 |
msgid "Arrow"
|
12068 |
msgstr "فلش"
|
12069 |
|
12070 |
-
#: includes/general-hooks.php:
|
12071 |
msgid "Back"
|
12072 |
msgstr "برگشت"
|
12073 |
|
12074 |
-
#: includes/general-hooks.php:
|
12075 |
msgid "Custom JS Code"
|
12076 |
msgstr "کد جاوااسکریپت سفارشی"
|
12077 |
|
12078 |
-
#: includes/general-hooks.php:
|
12079 |
msgid "Your Custom Javascript"
|
12080 |
msgstr "جاوااسکریپت دلخواه شما"
|
12081 |
|
12082 |
-
#: includes/general-hooks.php:
|
12083 |
#, fuzzy
|
12084 |
msgid "Custom Javascript in Head"
|
12085 |
msgstr "جاوااسکریپت سفارشی"
|
12086 |
|
12087 |
-
#: includes/general-hooks.php:
|
12088 |
msgid "You can add your custom javascript code here.%s DO NOT use %s tag."
|
12089 |
msgstr ""
|
12090 |
"کدهای جاوااسکریپت دلخواه خود را می توانید در این قسمت وارد کنید. از تگ %s "
|
12091 |
"استفاده نکنید %s."
|
12092 |
|
12093 |
-
#: includes/general-hooks.php:
|
12094 |
#, fuzzy
|
12095 |
msgid ""
|
12096 |
"In order to save your custom javascript code, you are expected to execute "
|
@@ -12098,24 +12094,24 @@ msgid ""
|
|
12098 |
msgstr ""
|
12099 |
"انتظار می رود قبل از ذخیره کد جاوااسکریپت، از درستی آن اطمینان پیدا کنید."
|
12100 |
|
12101 |
-
#: includes/general-hooks.php:
|
12102 |
msgid "Execute"
|
12103 |
msgstr "اجرا"
|
12104 |
|
12105 |
-
#: includes/general-hooks.php:
|
12106 |
#, fuzzy
|
12107 |
msgid "Custom Javascript in Footer"
|
12108 |
msgstr "کد جاوااسکریپت سفارشی"
|
12109 |
|
12110 |
-
#: includes/general-hooks.php:
|
12111 |
msgid "Google API Keys & SEO"
|
12112 |
msgstr ""
|
12113 |
|
12114 |
-
#: includes/general-hooks.php:
|
12115 |
msgid "Built in SEO"
|
12116 |
msgstr "سئوی داخلی"
|
12117 |
|
12118 |
-
#: includes/general-hooks.php:
|
12119 |
msgid ""
|
12120 |
"In case of using SEO plugins like \"WordPress SEO by Yoast\" or \"All in One "
|
12121 |
"SEO Pack\" you can disable built-in SEO for maximum compatibility."
|
@@ -12124,205 +12120,205 @@ msgstr ""
|
|
12124 |
"Pack\" استفاده می کنید، برای حفظ بیشترین یکپارچگی، سئوی داخلی را غیرفعال "
|
12125 |
"کنید."
|
12126 |
|
12127 |
-
#: includes/general-hooks.php:
|
12128 |
#, fuzzy
|
12129 |
msgid "Google Analytics Code"
|
12130 |
msgstr "کد آنالیز گوگل"
|
12131 |
|
12132 |
-
#: includes/general-hooks.php:
|
12133 |
msgid "You can %s set up Analytics tracking %s and add the tracking ID here."
|
12134 |
msgstr ""
|
12135 |
|
12136 |
-
#: includes/general-hooks.php:
|
12137 |
msgid "Google Maps API Key"
|
12138 |
msgstr ""
|
12139 |
|
12140 |
-
#: includes/general-hooks.php:
|
12141 |
msgid ""
|
12142 |
"In order to use google maps on your website, you have to %s create an api "
|
12143 |
"key %s and insert it in this field."
|
12144 |
msgstr ""
|
12145 |
|
12146 |
-
#: includes/general-hooks.php:
|
12147 |
#, fuzzy
|
12148 |
msgid "Google Marketing Code"
|
12149 |
msgstr "کد بازاریابی گوگل"
|
12150 |
|
12151 |
-
#: includes/general-hooks.php:
|
12152 |
msgid "You can add your Google marketing code here.%s DO NOT use %s tag."
|
12153 |
msgstr ""
|
12154 |
"کد بازاریابی گوگل خود را می توانید در این قسمت وارد کنید. از تگ %s استفاده "
|
12155 |
"نکنید %s."
|
12156 |
|
12157 |
-
#: includes/general-hooks.php:
|
12158 |
msgid "Logo 2 (optional)"
|
12159 |
msgstr ""
|
12160 |
|
12161 |
-
#: includes/general-hooks.php:
|
12162 |
msgid ""
|
12163 |
"The secondary logo which appears when the header becomes sticky (optional)."
|
12164 |
msgstr ""
|
12165 |
|
12166 |
-
#: includes/general-hooks.php:
|
12167 |
msgid "Header Button 1"
|
12168 |
msgstr ""
|
12169 |
|
12170 |
-
#: includes/general-hooks.php:
|
12171 |
msgid "Setting for Header Button 1"
|
12172 |
msgstr ""
|
12173 |
|
12174 |
-
#: includes/general-hooks.php:
|
12175 |
#, fuzzy
|
12176 |
msgid "Display Header Button 1"
|
12177 |
msgstr "نمایش دکمه لایک"
|
12178 |
|
12179 |
-
#: includes/general-hooks.php:
|
12180 |
#, fuzzy
|
12181 |
msgid "Enable this option to display a button in header."
|
12182 |
msgstr "برای نمایش پس زمینه دلخواه در صفحه ورود این گزینه را فعال کنید."
|
12183 |
|
12184 |
-
#: includes/general-hooks.php:
|
12185 |
msgid "Hide Button 1 on Tablet"
|
12186 |
msgstr ""
|
12187 |
|
12188 |
-
#: includes/general-hooks.php:
|
12189 |
msgid "Enable it to hide header button 1 on tablet devices."
|
12190 |
msgstr ""
|
12191 |
|
12192 |
-
#: includes/general-hooks.php:
|
12193 |
msgid "Hide Button 1 on Mobile"
|
12194 |
msgstr ""
|
12195 |
|
12196 |
-
#: includes/general-hooks.php:
|
12197 |
#, fuzzy
|
12198 |
msgid "Button Label"
|
12199 |
msgstr "برچسب دکمه"
|
12200 |
|
12201 |
-
#: includes/general-hooks.php:
|
12202 |
#, fuzzy
|
12203 |
msgid "Specifies the label of button."
|
12204 |
msgstr "برچسب دکمه"
|
12205 |
|
12206 |
-
#: includes/general-hooks.php:
|
12207 |
#, fuzzy
|
12208 |
msgid "Button Size"
|
12209 |
msgstr "اندازه دکمه"
|
12210 |
|
12211 |
-
#: includes/general-hooks.php:
|
12212 |
#, fuzzy
|
12213 |
msgid "Button Shape"
|
12214 |
msgstr "نوع دکمه"
|
12215 |
|
12216 |
-
#: includes/general-hooks.php:
|
12217 |
msgid "Sharp"
|
12218 |
msgstr ""
|
12219 |
|
12220 |
-
#: includes/general-hooks.php:
|
12221 |
#, fuzzy
|
12222 |
msgid "Button Typography"
|
12223 |
msgstr "نوع دکمه"
|
12224 |
|
12225 |
-
#: includes/general-hooks.php:
|
12226 |
#, fuzzy
|
12227 |
msgid "Icon for Button"
|
12228 |
msgstr "شکلک برای دکمه"
|
12229 |
|
12230 |
-
#: includes/general-hooks.php:
|
12231 |
#, fuzzy
|
12232 |
msgid "Icon Alignment"
|
12233 |
msgstr "تراز شکلک"
|
12234 |
|
12235 |
-
#: includes/general-hooks.php:
|
12236 |
#, fuzzy
|
12237 |
msgid "Color of Button"
|
12238 |
msgstr "رنگ دکمه"
|
12239 |
|
12240 |
-
#: includes/general-hooks.php:
|
12241 |
#, fuzzy
|
12242 |
msgid "Color of Button on Sticky"
|
12243 |
msgstr "رنگ دکمه"
|
12244 |
|
12245 |
-
#: includes/general-hooks.php:
|
12246 |
msgid "Specifies the color of the button when the header sticky is enabled."
|
12247 |
msgstr ""
|
12248 |
|
12249 |
-
#: includes/general-hooks.php:
|
12250 |
#, fuzzy
|
12251 |
msgid "Open Link in"
|
12252 |
msgstr "باز کردن پیوند در"
|
12253 |
|
12254 |
-
#: includes/general-hooks.php:
|
12255 |
msgid "Header Button 2"
|
12256 |
msgstr ""
|
12257 |
|
12258 |
-
#: includes/general-hooks.php:
|
12259 |
msgid "Setting for Header Button 2"
|
12260 |
msgstr ""
|
12261 |
|
12262 |
-
#: includes/general-hooks.php:
|
12263 |
#, fuzzy
|
12264 |
msgid "Display Header Button 2"
|
12265 |
msgstr "نمایش دکمه لایک"
|
12266 |
|
12267 |
-
#: includes/general-hooks.php:
|
12268 |
msgid "Hide Button 2 on Tablet"
|
12269 |
msgstr ""
|
12270 |
|
12271 |
-
#: includes/general-hooks.php:
|
12272 |
msgid "Enable it to hide header button 2 on tablet devices."
|
12273 |
msgstr ""
|
12274 |
|
12275 |
-
#: includes/general-hooks.php:
|
12276 |
msgid "Hide Button 2 on Mobile"
|
12277 |
msgstr ""
|
12278 |
|
12279 |
-
#: includes/general-hooks.php:
|
12280 |
#, fuzzy
|
12281 |
msgid "Specifies maximum height of logo in footer."
|
12282 |
msgstr "ارتفاع لوگو را بر حسب پیکسل مشخص می کند."
|
12283 |
|
12284 |
-
#: includes/general-hooks.php:
|
12285 |
msgid "Login Page"
|
12286 |
msgstr "صفحه ورود"
|
12287 |
|
12288 |
-
#: includes/general-hooks.php:
|
12289 |
msgid "Preview login page"
|
12290 |
msgstr "پیش نمایش صفحه ورود"
|
12291 |
|
12292 |
-
#: includes/general-hooks.php:
|
12293 |
msgid "Login Skin"
|
12294 |
msgstr "نمای صفحه ورود"
|
12295 |
|
12296 |
-
#: includes/general-hooks.php:
|
12297 |
msgid "Specifies a skin for login page of your website."
|
12298 |
msgstr "نمای صفحه ورود را در سایت شما مشخص می کند."
|
12299 |
|
12300 |
-
#: includes/general-hooks.php:
|
12301 |
msgid "Clean white"
|
12302 |
msgstr "سفید تمیز"
|
12303 |
|
12304 |
-
#: includes/general-hooks.php:
|
12305 |
msgid "Simple white"
|
12306 |
msgstr "سفید ساده"
|
12307 |
|
12308 |
-
#: includes/general-hooks.php:
|
12309 |
msgid "Simple gray"
|
12310 |
msgstr "خاکستری ساده"
|
12311 |
|
12312 |
-
#: includes/general-hooks.php:
|
12313 |
msgid "Login message"
|
12314 |
msgstr "پیام ورود"
|
12315 |
|
12316 |
-
#: includes/general-hooks.php:
|
12317 |
#, fuzzy
|
12318 |
msgid "Enter a text to display above the login form."
|
12319 |
msgstr "متنی را برای نمایش در بالای فرم ورود وارد کنید."
|
12320 |
|
12321 |
-
#: includes/general-hooks.php:
|
12322 |
msgid "Login Page Logo"
|
12323 |
msgstr "لوگوی صفحه ورود"
|
12324 |
|
12325 |
-
#: includes/general-hooks.php:
|
12326 |
msgid ""
|
12327 |
"Specifies a logo to display on login page.(width of logo image could be up "
|
12328 |
"to 320px)"
|
@@ -12330,55 +12326,55 @@ msgstr ""
|
|
12330 |
"لوگویی را برای نمایش در صفحه ورود مشخص می کند.(عرض لوگو می تواند تا 320 "
|
12331 |
"پیکسل باشد)"
|
12332 |
|
12333 |
-
#: includes/general-hooks.php:
|
12334 |
msgid "Logo Width"
|
12335 |
msgstr "عرض لوگو"
|
12336 |
|
12337 |
-
#: includes/general-hooks.php:
|
12338 |
msgid "Specifies width of logo image in pixel."
|
12339 |
msgstr "ارتفاع لوگو را بر حسب پیکسل مشخص می کند."
|
12340 |
|
12341 |
-
#: includes/general-hooks.php:
|
12342 |
msgid "Logo Height"
|
12343 |
msgstr "ارتفاع لوگو"
|
12344 |
|
12345 |
-
#: includes/general-hooks.php:
|
12346 |
msgid "Specifies height of logo image in pixel."
|
12347 |
msgstr "ارتفاع لوگو را بر حسب پیکسل مشخص می کند."
|
12348 |
|
12349 |
-
#: includes/general-hooks.php:
|
12350 |
msgid "Enable Background"
|
12351 |
msgstr "فعالسازی پس زمینه"
|
12352 |
|
12353 |
-
#: includes/general-hooks.php:
|
12354 |
msgid "Enable it to display custom background on login page."
|
12355 |
msgstr "برای نمایش پس زمینه دلخواه در صفحه ورود این گزینه را فعال کنید."
|
12356 |
|
12357 |
-
#: includes/general-hooks.php:
|
12358 |
msgid "Specifies background color of website."
|
12359 |
msgstr "رنگ پس زمینه وب سایت را مشخص می کند."
|
12360 |
|
12361 |
-
#: includes/general-hooks.php:
|
12362 |
msgid "You can upload custom image for background of login page"
|
12363 |
msgstr "می توانید تصویر دلخواهی را به عنوان پس زمینه صفحه ورود بارگذاری کنید."
|
12364 |
|
12365 |
-
#: includes/general-hooks.php:
|
12366 |
msgid "Background Size"
|
12367 |
msgstr "اندازه پس زمینه"
|
12368 |
|
12369 |
-
#: includes/general-hooks.php:
|
12370 |
msgid "Specifies background size on login page."
|
12371 |
msgstr "اندازه تصویر پس زمینه در صفحه ورود را مشخص می کند."
|
12372 |
|
12373 |
-
#: includes/general-hooks.php:
|
12374 |
msgid "Contain"
|
12375 |
msgstr "دربرگیرنده"
|
12376 |
|
12377 |
-
#: includes/general-hooks.php:
|
12378 |
msgid "Background Pattern"
|
12379 |
msgstr "الگوی پس زمینه"
|
12380 |
|
12381 |
-
#: includes/general-hooks.php:
|
12382 |
msgid ""
|
12383 |
"You can select one of these patterns as login background image. %s Some of "
|
12384 |
"these can be used as a pattern over your background image."
|
@@ -12386,79 +12382,79 @@ msgstr ""
|
|
12386 |
"می توانید یکی از این الگوها را به عنوان تصویر پس زمینه انتخاب کنید. %s بعضی "
|
12387 |
"از این ها می توانند به عنوان الگو بر روی تصویر پس زمینه شما استفاده شوند."
|
12388 |
|
12389 |
-
#: includes/general-hooks.php:
|
12390 |
msgid "Background Repeat"
|
12391 |
msgstr "تکرار پس زمینه"
|
12392 |
|
12393 |
-
#: includes/general-hooks.php:
|
12394 |
msgid "Specifies how background image repeats."
|
12395 |
msgstr "نحوه تکرار تصویر پس زمینه را مشخص می کند."
|
12396 |
|
12397 |
-
#: includes/general-hooks.php:
|
12398 |
msgid "No repeat"
|
12399 |
msgstr "بدون تکرار"
|
12400 |
|
12401 |
-
#: includes/general-hooks.php:
|
12402 |
msgid "Repeat horizontally and vertically"
|
12403 |
msgstr "تکرار افقی و عمودی"
|
12404 |
|
12405 |
-
#: includes/general-hooks.php:
|
12406 |
msgid "Repeat horizontally"
|
12407 |
msgstr "تکرار افقی"
|
12408 |
|
12409 |
-
#: includes/general-hooks.php:
|
12410 |
msgid "Repeat vertically"
|
12411 |
msgstr "تکرار عمودی"
|
12412 |
|
12413 |
-
#: includes/general-hooks.php:
|
12414 |
msgid "Background Position"
|
12415 |
msgstr "موقعیت پس زمینه"
|
12416 |
|
12417 |
-
#: includes/general-hooks.php:
|
12418 |
msgid "Specifies background image position."
|
12419 |
msgstr "موقعیت تصویر پس زمینه را مشخص می کند."
|
12420 |
|
12421 |
-
#: includes/general-hooks.php:
|
12422 |
msgid "Left top"
|
12423 |
msgstr "چپ بالا"
|
12424 |
|
12425 |
-
#: includes/general-hooks.php:
|
12426 |
msgid "Center top"
|
12427 |
msgstr "وسط بالا"
|
12428 |
|
12429 |
-
#: includes/general-hooks.php:
|
12430 |
msgid "Right top"
|
12431 |
msgstr "راست بالا"
|
12432 |
|
12433 |
-
#: includes/general-hooks.php:
|
12434 |
msgid "Left center"
|
12435 |
msgstr "چپ وسط"
|
12436 |
|
12437 |
-
#: includes/general-hooks.php:
|
12438 |
msgid "Center center"
|
12439 |
msgstr "وسط وسط"
|
12440 |
|
12441 |
-
#: includes/general-hooks.php:
|
12442 |
msgid "Right center"
|
12443 |
msgstr "راست وسط"
|
12444 |
|
12445 |
-
#: includes/general-hooks.php:
|
12446 |
msgid "Left bottom"
|
12447 |
msgstr "چپ پایین"
|
12448 |
|
12449 |
-
#: includes/general-hooks.php:
|
12450 |
msgid "Center bottom"
|
12451 |
msgstr "وسط پایین"
|
12452 |
|
12453 |
-
#: includes/general-hooks.php:
|
12454 |
msgid "Right bottom"
|
12455 |
msgstr "راست پایین"
|
12456 |
|
12457 |
-
#: includes/general-hooks.php:
|
12458 |
msgid "Background Attachment"
|
12459 |
msgstr "پیوست پس زمینه"
|
12460 |
|
12461 |
-
#: includes/general-hooks.php:
|
12462 |
msgid ""
|
12463 |
"Specifies whether the background is fixed or scrollable as user scrolls the "
|
12464 |
"page."
|
@@ -12466,15 +12462,15 @@ msgstr ""
|
|
12466 |
"مشخص می کند پس زمینه هنگام اسکرول کردن صفحه توسط کاربر ثابت باشد یا اسکرول "
|
12467 |
"شود."
|
12468 |
|
12469 |
-
#: includes/general-hooks.php:
|
12470 |
msgid "Scroll"
|
12471 |
msgstr "اسکرول"
|
12472 |
|
12473 |
-
#: includes/general-hooks.php:
|
12474 |
msgid "Custom CSS class name"
|
12475 |
msgstr "نام کلاس دلخواه CSS"
|
12476 |
|
12477 |
-
#: includes/general-hooks.php:
|
12478 |
msgid ""
|
12479 |
"In this field you can define custom CSS class name for login page.\n"
|
12480 |
" This class name will be added to body classes in "
|
@@ -12484,234 +12480,234 @@ msgstr ""
|
|
12484 |
" این نام کلاس به بدنه (body) صفحه ورود اضافه خواهد "
|
12485 |
"شدو برای موارد استایل دهی پیشرفته مورد استفاده قرار می گیرد."
|
12486 |
|
12487 |
-
#: includes/general-hooks.php:
|
12488 |
#, fuzzy
|
12489 |
msgid "404 Page Options"
|
12490 |
msgstr "تنظیمات طراحی"
|
12491 |
|
12492 |
-
#: includes/general-hooks.php:
|
12493 |
msgid "Specifies a page to display on 404."
|
12494 |
msgstr ""
|
12495 |
|
12496 |
-
#: includes/general-hooks.php:
|
12497 |
msgid "Maintenance or Comingsoon Page"
|
12498 |
msgstr ""
|
12499 |
|
12500 |
-
#: includes/general-hooks.php:
|
12501 |
msgid "Maintenance or Comingsoon Page Options"
|
12502 |
msgstr ""
|
12503 |
|
12504 |
-
#: includes/general-hooks.php:
|
12505 |
msgid "Enable Maintenance or Comingsoon Mode"
|
12506 |
msgstr ""
|
12507 |
|
12508 |
-
#: includes/general-hooks.php:
|
12509 |
msgid "With this option you can manually enable Maintenance or Comingsoon mode"
|
12510 |
msgstr ""
|
12511 |
|
12512 |
-
#: includes/general-hooks.php:
|
12513 |
msgid ""
|
12514 |
"In This Case You Can Set Your Specifc Page for Maintenance or Comingsoon Mode"
|
12515 |
msgstr ""
|
12516 |
|
12517 |
-
#: includes/general-hooks.php:
|
12518 |
msgid "Search Results"
|
12519 |
msgstr ""
|
12520 |
|
12521 |
-
#: includes/general-hooks.php:
|
12522 |
msgid "Search Results Options"
|
12523 |
msgstr ""
|
12524 |
|
12525 |
-
#: includes/general-hooks.php:
|
12526 |
#, fuzzy
|
12527 |
msgid "Exclude Posts Types"
|
12528 |
msgstr "نادیده گرفتن این نوشته ها"
|
12529 |
|
12530 |
-
#: includes/general-hooks.php:
|
12531 |
msgid "The post types which should be excluded from search results."
|
12532 |
msgstr ""
|
12533 |
|
12534 |
-
#: includes/general-hooks.php:
|
12535 |
#, fuzzy
|
12536 |
msgid "Exclude Posts Without Featured Image"
|
12537 |
msgstr "نادیده گرفتن نوشته های بدون تصویر"
|
12538 |
|
12539 |
-
#: includes/general-hooks.php:
|
12540 |
#, fuzzy
|
12541 |
msgid "Exclude posts without featured image in search results."
|
12542 |
msgstr "نادیده گرفتن نوشته های بدون تصویر"
|
12543 |
|
12544 |
-
#: includes/general-hooks.php:
|
12545 |
msgid ""
|
12546 |
"If you intend to include additional posts, you should specify the posts here."
|
12547 |
"<br>You have to insert the Post IDs that are separated by camma (eg. "
|
12548 |
"53,34,87,25)"
|
12549 |
msgstr ""
|
12550 |
|
12551 |
-
#: includes/general-hooks.php:
|
12552 |
msgid "Import/Export"
|
12553 |
msgstr ""
|
12554 |
|
12555 |
-
#: includes/general-hooks.php:
|
12556 |
#, fuzzy
|
12557 |
msgid "Import or Export options"
|
12558 |
msgstr "تنظیمات نوشته نقل قول"
|
12559 |
|
12560 |
-
#: includes/general-hooks.php:
|
12561 |
msgid "Export Data"
|
12562 |
msgstr ""
|
12563 |
|
12564 |
-
#: includes/general-hooks.php:
|
12565 |
msgid "Your theme options code which you can import later."
|
12566 |
msgstr ""
|
12567 |
|
12568 |
-
#: includes/general-hooks.php:
|
12569 |
msgid "Import Data"
|
12570 |
msgstr ""
|
12571 |
|
12572 |
-
#: includes/general-hooks.php:
|
12573 |
msgid "Paste the exported theme options code to import into theme."
|
12574 |
msgstr ""
|
12575 |
|
12576 |
-
#: includes/general-hooks.php:
|
12577 |
#, fuzzy
|
12578 |
msgid "White Label"
|
12579 |
msgstr "فاصله خالی"
|
12580 |
|
12581 |
-
#: includes/general-hooks.php:
|
12582 |
msgid "White Label Settings"
|
12583 |
msgstr ""
|
12584 |
|
12585 |
-
#: includes/general-hooks.php:
|
12586 |
msgid "Change PHLOX labels."
|
12587 |
msgstr ""
|
12588 |
|
12589 |
-
#: includes/general-hooks.php:
|
12590 |
#, fuzzy
|
12591 |
msgid "Theme Name"
|
12592 |
msgstr "پوسته"
|
12593 |
|
12594 |
-
#: includes/general-hooks.php:
|
12595 |
#, fuzzy
|
12596 |
msgid "Theme Author Name"
|
12597 |
msgstr "نام نویسنده"
|
12598 |
|
12599 |
-
#: includes/general-hooks.php:
|
12600 |
#, fuzzy
|
12601 |
msgid "Theme Author URL"
|
12602 |
msgstr "شخصی ساز پوسته"
|
12603 |
|
12604 |
-
#: includes/general-hooks.php:
|
12605 |
#, fuzzy
|
12606 |
msgid "Theme Description"
|
12607 |
msgstr "توضیحات المان"
|
12608 |
|
12609 |
-
#: includes/general-hooks.php:
|
12610 |
msgid "Theme Screenshot (1200x900)"
|
12611 |
msgstr ""
|
12612 |
|
12613 |
-
#: includes/general-hooks.php:
|
12614 |
#, fuzzy
|
12615 |
msgid "Displays"
|
12616 |
msgstr "نوع نمایش"
|
12617 |
|
12618 |
-
#: includes/general-hooks.php:
|
12619 |
msgid "Change PHLOX admin views."
|
12620 |
msgstr ""
|
12621 |
|
12622 |
-
#: includes/general-hooks.php:
|
12623 |
#, fuzzy
|
12624 |
msgid "Hide Notifications"
|
12625 |
msgstr "تنظیمات نوشته ویدیویی"
|
12626 |
|
12627 |
-
#: includes/general-hooks.php:
|
12628 |
msgid "Hide Theme Badge"
|
12629 |
msgstr ""
|
12630 |
|
12631 |
-
#: includes/general-hooks.php:
|
12632 |
msgid "Hide Phlox Menu"
|
12633 |
msgstr ""
|
12634 |
|
12635 |
-
#: includes/general-hooks.php:
|
12636 |
#, fuzzy
|
12637 |
msgid "Hide Dashboard Section"
|
12638 |
msgstr "افزودن بخش"
|
12639 |
|
12640 |
-
#: includes/general-hooks.php:
|
12641 |
msgid "Hide Customization Section"
|
12642 |
msgstr ""
|
12643 |
|
12644 |
-
#: includes/general-hooks.php:
|
12645 |
msgid "Hide Demo Importer Section"
|
12646 |
msgstr ""
|
12647 |
|
12648 |
-
#: includes/general-hooks.php:
|
12649 |
msgid "Hide Template Kits Section"
|
12650 |
msgstr ""
|
12651 |
|
12652 |
-
#: includes/general-hooks.php:
|
12653 |
msgid "Hide Plugins Section"
|
12654 |
msgstr ""
|
12655 |
|
12656 |
-
#: includes/general-hooks.php:
|
12657 |
#, fuzzy
|
12658 |
msgid "Hide Tutorials Section"
|
12659 |
msgstr "بخش زبانه ها"
|
12660 |
|
12661 |
-
#: includes/general-hooks.php:
|
12662 |
#, fuzzy
|
12663 |
msgid "Hide Feedback Section"
|
12664 |
msgstr "افزودن بخش"
|
12665 |
|
12666 |
-
#: includes/general-hooks.php:
|
12667 |
msgid "Twitter"
|
12668 |
msgstr ""
|
12669 |
|
12670 |
-
#: includes/general-hooks.php:
|
12671 |
msgid "Facebook"
|
12672 |
msgstr ""
|
12673 |
|
12674 |
-
#: includes/general-hooks.php:
|
12675 |
msgid "Google Plus"
|
12676 |
msgstr ""
|
12677 |
|
12678 |
-
#: includes/general-hooks.php:
|
12679 |
msgid "Flickr"
|
12680 |
msgstr ""
|
12681 |
|
12682 |
-
#: includes/general-hooks.php:
|
12683 |
msgid "Delicious"
|
12684 |
msgstr ""
|
12685 |
|
12686 |
-
#: includes/general-hooks.php:
|
12687 |
msgid "Pinterest"
|
12688 |
msgstr ""
|
12689 |
|
12690 |
-
#: includes/general-hooks.php:
|
12691 |
msgid "GitHub"
|
12692 |
msgstr ""
|
12693 |
|
12694 |
-
#: includes/general-hooks.php:
|
12695 |
#, fuzzy
|
12696 |
msgid "Page Options"
|
12697 |
msgstr "تنظیمات طراحی"
|
12698 |
|
12699 |
-
#: includes/general-hooks.php:
|
12700 |
#, fuzzy
|
12701 |
msgid "Post Options"
|
12702 |
msgstr "تنظیمات نوشته صوتی"
|
12703 |
|
12704 |
-
#: includes/general-hooks.php:
|
12705 |
#, fuzzy
|
12706 |
msgid "Page %s"
|
12707 |
msgstr "برگه ها"
|
12708 |
|
12709 |
-
#: includes/general-hooks.php:
|
12710 |
#, fuzzy
|
12711 |
msgid "current "
|
12712 |
msgstr "صفحه جاری"
|
12713 |
|
12714 |
-
#: includes/general-hooks.php:
|
12715 |
msgid "Edit Header & Footer"
|
12716 |
msgstr ""
|
12717 |
|
@@ -12960,13 +12956,13 @@ msgid "Chats"
|
|
12960 |
msgstr ""
|
12961 |
|
12962 |
#. translators: playlist item title
|
12963 |
-
#: includes/general-hooks.php:
|
12964 |
msgctxt "playlist item title"
|
12965 |
msgid "“%s”"
|
12966 |
msgstr ""
|
12967 |
|
12968 |
#. translators: playlist item title
|
12969 |
-
#: includes/general-hooks.php:
|
12970 |
msgctxt "playlist item title"
|
12971 |
msgid "%s"
|
12972 |
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: 2021-04-24 06:55:12+00:00\n"
|
6 |
"PO-Revision-Date: 2016-11-09 12:50+0330\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: \n"
|
213 |
"Please make sure the image aspect ratio for all image sizes are the same."
|
214 |
msgstr ""
|
215 |
|
216 |
+
#: admin/includes/admin-hooks.php:686 includes/general-hooks.php:1387
|
217 |
#, fuzzy
|
218 |
msgid "Footer Brand Image"
|
219 |
msgstr "تصویر پوستر"
|
220 |
|
221 |
+
#: admin/includes/admin-hooks.php:687 includes/general-hooks.php:1388
|
222 |
msgid "This image appears as site brand image on footer section."
|
223 |
msgstr ""
|
224 |
|
424 |
|
425 |
#: admin/includes/compatibility/siteorigin/fields/iconpicker.class.php:13
|
426 |
#: includes/classes/class-auxin-widget.php:126
|
427 |
+
#: includes/classes/class-auxin-widget.php:151 includes/general-hooks.php:51
|
428 |
msgid "Choose .."
|
429 |
msgstr "انتخاب .."
|
430 |
|
840 |
#: admin/includes/metaboxes/metabox-fields-general-header-template.php:71
|
841 |
#: admin/includes/metaboxes/metabox-fields-general-header.php:27
|
842 |
#: admin/includes/metaboxes/metabox-fields-general-top-header.php:27
|
843 |
+
#: includes/general-hooks.php:586 includes/general-hooks.php:991
|
844 |
msgid "Disable it to replace header section with an Elementor template"
|
845 |
msgstr ""
|
846 |
|
969 |
#: admin/includes/metaboxes/metabox-fields-general-header-template.php:70
|
970 |
#: admin/includes/metaboxes/metabox-fields-general-header.php:26
|
971 |
#: admin/includes/metaboxes/metabox-fields-general-top-header.php:26
|
972 |
+
#: includes/general-hooks.php:585 includes/general-hooks.php:990
|
973 |
msgid "Use Legacy Header"
|
974 |
msgstr ""
|
975 |
|
1094 |
|
1095 |
#: admin/includes/metaboxes/metabox-fields-general-header.php:202
|
1096 |
#: includes/elements/staff.php:207 includes/elements/text.php:105
|
1097 |
+
#: includes/general-hooks.php:3021
|
1098 |
msgid "Boxed"
|
1099 |
msgstr "جعبه ای"
|
1100 |
|
1314 |
#: includes/elements/recent-posts-grid-carousel.php:663
|
1315 |
#: includes/elements/recent-posts-timeline.php:272
|
1316 |
#: includes/elements/staff.php:280 includes/elements/text.php:129
|
1317 |
+
#: includes/elements/text.php:157 includes/general-hooks.php:382
|
1318 |
msgid "Center"
|
1319 |
msgstr "وسط"
|
1320 |
|
1360 |
#: includes/elements/staff.php:238 includes/elements/staff.php:276
|
1361 |
#: includes/elements/text.php:125 includes/elements/text.php:153
|
1362 |
#: includes/elements/text.php:620 includes/elements/text.php:807
|
1363 |
+
#: includes/general-hooks.php:380 includes/general-hooks.php:844
|
1364 |
+
#: includes/general-hooks.php:1249
|
1365 |
msgid "Left"
|
1366 |
msgstr "چپ"
|
1367 |
|
1412 |
#: includes/elements/divider.php:90 includes/elements/socials-list.php:63
|
1413 |
#: includes/elements/socials-list.php:201 includes/elements/staff.php:463
|
1414 |
#: includes/elements/text.php:469 includes/elements/text.php:677
|
1415 |
+
#: includes/general-hooks.php:694 includes/general-hooks.php:1099
|
1416 |
msgid "Small"
|
1417 |
msgstr "کوچک"
|
1418 |
|
1428 |
#: includes/elements/socials-list.php:64 includes/elements/socials-list.php:202
|
1429 |
#: includes/elements/staff.php:111 includes/elements/staff.php:464
|
1430 |
#: includes/elements/text.php:430 includes/elements/text.php:470
|
1431 |
+
#: includes/elements/text.php:676 includes/general-hooks.php:693
|
1432 |
+
#: includes/general-hooks.php:1098
|
1433 |
msgid "Medium"
|
1434 |
msgstr "متوسط"
|
1435 |
|
1444 |
#: includes/elements/socials-list.php:203 includes/elements/staff.php:110
|
1445 |
#: includes/elements/staff.php:465 includes/elements/text.php:429
|
1446 |
#: includes/elements/text.php:471 includes/elements/text.php:675
|
1447 |
+
#: includes/general-hooks.php:692 includes/general-hooks.php:1097
|
1448 |
msgid "Large"
|
1449 |
msgstr "بزرگ"
|
1450 |
|
1516 |
#: includes/elements/gallery.php:120 includes/elements/quote.php:109
|
1517 |
#: includes/elements/recent-posts-tiles-carousel.php:298
|
1518 |
#: includes/elements/recent-posts-tiles.php:328 includes/elements/text.php:180
|
1519 |
+
#: includes/elements/text.php:806 includes/general-hooks.php:840
|
1520 |
+
#: includes/general-hooks.php:1245 includes/general-hooks.php:1466
|
1521 |
msgid "Default"
|
1522 |
msgstr "پیش فرض"
|
1523 |
|
1901 |
"Animoto, Wistia link or iFrame code."
|
1902 |
msgstr ""
|
1903 |
|
1904 |
+
#: auxin-elements.php:55 includes/classes/class-auxin-welcome-sections.php:531
|
|
|
|
|
|
|
|
|
1905 |
#, fuzzy
|
1906 |
msgid "Phlox Pro"
|
1907 |
msgstr "[فلوکس] کد"
|
1908 |
|
1909 |
+
#: auxin-elements.php:63
|
1910 |
msgid "Phlox"
|
1911 |
msgstr ""
|
1912 |
|
2963 |
#: includes/elements/recent-posts-masonry.php:16
|
2964 |
#: includes/elements/recent-posts-tiles.php:16
|
2965 |
#: includes/elements/recent-posts-timeline.php:16
|
2966 |
+
#: includes/elements/recent-posts-widget.php:16 includes/general-hooks.php:167
|
2967 |
msgid "All Categories"
|
2968 |
msgstr "همه دسته ها"
|
2969 |
|
2982 |
msgstr "انتخاب اظهار نظر"
|
2983 |
|
2984 |
#: includes/classes/class-auxin-widget.php:387
|
2985 |
+
#: includes/classes/class-auxin-widget.php:388 includes/general-hooks.php:130
|
2986 |
+
#: includes/general-hooks.php:131
|
2987 |
#, fuzzy
|
2988 |
msgid "Add Video"
|
2989 |
msgstr "افزودن بخش"
|
2990 |
|
2991 |
+
#: includes/classes/class-auxin-widget.php:389 includes/general-hooks.php:132
|
2992 |
#, fuzzy
|
2993 |
msgid "Select Video"
|
2994 |
msgstr "تکرار ویدیو"
|
2995 |
|
2996 |
#: includes/classes/class-auxin-widget.php:411
|
2997 |
+
#: includes/classes/class-auxin-widget.php:412 includes/general-hooks.php:106
|
2998 |
+
#: includes/general-hooks.php:107
|
2999 |
#, fuzzy
|
3000 |
msgid "Add Audio"
|
3001 |
msgstr "افزودن بخش"
|
3002 |
|
3003 |
+
#: includes/classes/class-auxin-widget.php:413 includes/general-hooks.php:108
|
3004 |
#, fuzzy
|
3005 |
msgid "Select Audio"
|
3006 |
msgstr "انتخاب شکاف آکاردئون"
|
3262 |
#: includes/elements/staff.php:230 includes/elements/staff.php:284
|
3263 |
#: includes/elements/text.php:133 includes/elements/text.php:161
|
3264 |
#: includes/elements/text.php:624 includes/elements/text.php:808
|
3265 |
+
#: includes/general-hooks.php:381 includes/general-hooks.php:848
|
3266 |
+
#: includes/general-hooks.php:1253
|
3267 |
msgid "Right"
|
3268 |
msgstr "راست"
|
3269 |
|
3557 |
#: includes/elements/recent-posts-tiles.php:154
|
3558 |
#: includes/elements/recent-posts-timeline.php:149
|
3559 |
#: includes/elements/testimonial.php:132 includes/elements/text.php:903
|
3560 |
+
#: includes/general-hooks.php:353 includes/general-hooks.php:1617
|
3561 |
#: public/templates/vcomposer/auxin_vc_extendes.php:63
|
3562 |
msgid "None"
|
3563 |
msgstr "هیچکدام"
|
4405 |
msgstr ""
|
4406 |
|
4407 |
#: includes/elementor/modules/settings/general/manager.php:47
|
4408 |
+
#: includes/general-hooks.php:1414
|
4409 |
#, fuzzy
|
4410 |
msgid "Footer Brand Height"
|
4411 |
msgstr "ارتفاع لوگو"
|
4431 |
msgstr "نوع گالری را انتخاب کنید."
|
4432 |
|
4433 |
#: includes/elementor/modules/theme-builder/module.php:131
|
4434 |
+
#: includes/general-hooks.php:1764 includes/general-hooks.php:1770
|
4435 |
#, fuzzy
|
4436 |
msgid "404 Page"
|
4437 |
msgstr "صفحه"
|
4699 |
#: includes/elementor/widgets/theme-elements/modern-search.php:353
|
4700 |
#: includes/elementor/widgets/theme-elements/modern-search.php:444
|
4701 |
#: includes/elements/button.php:118 includes/elements/text.php:738
|
4702 |
+
#: includes/general-hooks.php:759 includes/general-hooks.php:1164
|
4703 |
msgid "Normal"
|
4704 |
msgstr "معمولی"
|
4705 |
|
5415 |
#: includes/elements/text.php:764 includes/elements/text.php:780
|
5416 |
#: includes/elements/text.php:796 includes/elements/text.php:821
|
5417 |
#: includes/elements/text.php:839 includes/elements/text.php:856
|
5418 |
+
#: includes/elements/text.php:877 includes/general-hooks.php:667
|
5419 |
+
#: includes/general-hooks.php:1072
|
5420 |
#, fuzzy
|
5421 |
msgid "Button"
|
5422 |
msgstr "اندازه دکمه"
|
5455 |
#: includes/elementor/widgets/button.php:160
|
5456 |
#: includes/elementor/widgets/modern-button.php:308
|
5457 |
#: includes/elementor/widgets/text.php:1033 includes/elements/button.php:63
|
5458 |
+
#: includes/elements/text.php:674 includes/general-hooks.php:691
|
5459 |
+
#: includes/general-hooks.php:1096
|
5460 |
msgid "Exlarge"
|
5461 |
msgstr "خیلی بزرگ"
|
5462 |
|
5465 |
#: includes/elementor/widgets/modern-button.php:312
|
5466 |
#: includes/elementor/widgets/text.php:1037 includes/elements/button.php:67
|
5467 |
#: includes/elements/divider.php:91 includes/elements/text.php:678
|
5468 |
+
#: includes/general-hooks.php:695 includes/general-hooks.php:1100
|
5469 |
msgid "Tiny"
|
5470 |
msgstr "خیلی کوچک"
|
5471 |
|
5488 |
#: includes/elementor/widgets/button.php:192
|
5489 |
#: includes/elementor/widgets/modern-button.php:295
|
5490 |
#: includes/elementor/widgets/text.php:1362 includes/elements/button.php:95
|
5491 |
+
#: includes/elements/text.php:712 includes/general-hooks.php:726
|
5492 |
+
#: includes/general-hooks.php:1131
|
5493 |
msgid "Round"
|
5494 |
msgstr "گرد"
|
5495 |
|
5496 |
#: includes/elementor/widgets/button.php:196
|
5497 |
#: includes/elementor/widgets/modern-button.php:296
|
5498 |
#: includes/elementor/widgets/text.php:1366 includes/elements/button.php:99
|
5499 |
+
#: includes/elements/text.php:716 includes/general-hooks.php:730
|
5500 |
+
#: includes/general-hooks.php:1135
|
5501 |
msgid "Curve"
|
5502 |
msgstr "منحنی"
|
5503 |
|
5508 |
|
5509 |
#: includes/elementor/widgets/button.php:215
|
5510 |
#: includes/elementor/widgets/text.php:1386 includes/elements/button.php:122
|
5511 |
+
#: includes/elements/text.php:742 includes/general-hooks.php:763
|
5512 |
+
#: includes/general-hooks.php:1168
|
5513 |
msgid "3D"
|
5514 |
msgstr "سه بعدی"
|
5515 |
|
5516 |
#: includes/elementor/widgets/button.php:219
|
5517 |
#: includes/elementor/widgets/modern-button.php:282
|
5518 |
#: includes/elementor/widgets/text.php:1390 includes/elements/button.php:126
|
5519 |
+
#: includes/elements/text.php:746 includes/general-hooks.php:767
|
5520 |
+
#: includes/general-hooks.php:1172
|
5521 |
msgid "Outline"
|
5522 |
msgstr "خط بیرونی"
|
5523 |
|
5593 |
#: includes/elementor/widgets/theme-elements/search.php:178
|
5594 |
#: includes/elementor/widgets/theme-elements/shopping-cart.php:108
|
5595 |
#: includes/elements/custom-list.php:74 includes/elements/text.php:374
|
5596 |
+
#: includes/elements/text.php:386 includes/general-hooks.php:241
|
5597 |
+
#: includes/general-hooks.php:259 includes/general-hooks.php:276
|
5598 |
+
#: includes/general-hooks.php:292 includes/general-hooks.php:308
|
5599 |
+
#: includes/general-hooks.php:323
|
5600 |
msgid "Icon"
|
5601 |
msgstr "شکلک"
|
5602 |
|
5608 |
|
5609 |
#: includes/elementor/widgets/button.php:373
|
5610 |
#: includes/elementor/widgets/text.php:1135 includes/elements/button.php:171
|
5611 |
+
#: includes/elements/text.php:800 includes/general-hooks.php:377
|
5612 |
msgid "Icon alignment"
|
5613 |
msgstr "تراز شکلک"
|
5614 |
|
5615 |
#: includes/elementor/widgets/button.php:380
|
5616 |
#: includes/elementor/widgets/modern-button.php:804
|
5617 |
#: includes/elementor/widgets/text.php:1142 includes/elements/button.php:191
|
5618 |
+
#: includes/elements/text.php:809 includes/general-hooks.php:852
|
5619 |
+
#: includes/general-hooks.php:1257
|
5620 |
msgid "Over"
|
5621 |
msgstr "رو"
|
5622 |
|
5623 |
#: includes/elementor/widgets/button.php:381
|
5624 |
#: includes/elementor/widgets/text.php:1143 includes/elements/button.php:195
|
5625 |
+
#: includes/elements/text.php:810 includes/general-hooks.php:856
|
5626 |
+
#: includes/general-hooks.php:1261
|
5627 |
msgid "Animate from Left"
|
5628 |
msgstr "متحرک سازی از چپ"
|
5629 |
|
6121 |
#: includes/elementor/widgets/theme-elements/search.php:201
|
6122 |
#: includes/elementor/widgets/theme-elements/search.php:404
|
6123 |
#: includes/elementor/widgets/touch-slider.php:303
|
6124 |
+
#: includes/general-hooks.php:1550
|
6125 |
msgid "Background Color"
|
6126 |
msgstr "رنگ پس زمینه"
|
6127 |
|
6309 |
#: includes/elements/about-widget.php:121 includes/elements/divider.php:69
|
6310 |
#: includes/elements/dropcap.php:72 includes/elements/staff.php:168
|
6311 |
#: includes/elements/text.php:539 includes/elements/text.php:581
|
6312 |
+
#: includes/general-hooks.php:354
|
6313 |
msgid "Circle"
|
6314 |
msgstr "دایره"
|
6315 |
|
6742 |
|
6743 |
#: includes/elementor/widgets/icon.php:141
|
6744 |
#: includes/elements/about-widget.php:122 includes/elements/dropcap.php:60
|
6745 |
+
#: includes/general-hooks.php:355
|
6746 |
msgid "Square"
|
6747 |
msgstr "مربع"
|
6748 |
|
6877 |
|
6878 |
#: includes/elementor/widgets/image.php:278
|
6879 |
#: includes/elementor/widgets/theme-elements/shopping-cart.php:101
|
6880 |
+
#: includes/general-hooks.php:1912
|
6881 |
msgid "Settings"
|
6882 |
msgstr ""
|
6883 |
|
8046 |
#: includes/elements/recent-posts-tiles-carousel.php:199
|
8047 |
#: includes/elements/recent-posts-tiles.php:229
|
8048 |
#: includes/elements/recent-posts-timeline.php:224
|
8049 |
+
#: includes/general-hooks.php:1852
|
8050 |
msgid "Include posts"
|
8051 |
msgstr "شامل شدن این نوشته ها"
|
8052 |
|
8975 |
msgid "Shape Style"
|
8976 |
msgstr "ظاهر نقشه"
|
8977 |
|
8978 |
+
#: includes/elementor/widgets/text.php:1377 includes/general-hooks.php:752
|
8979 |
+
#: includes/general-hooks.php:1157
|
8980 |
#, fuzzy
|
8981 |
msgid "Button Style"
|
8982 |
msgstr "ظاهر دکمه"
|
9753 |
msgid "The name which appears in about widget."
|
9754 |
msgstr "نامی که در ابزارک درباره ما نشان داده می شود."
|
9755 |
|
9756 |
+
#: includes/elements/about-widget.php:72 includes/general-hooks.php:2383
|
9757 |
msgid "Skills"
|
9758 |
msgstr "مهارت ها"
|
9759 |
|
9936 |
msgid "Darken label of button."
|
9937 |
msgstr "برچسب دکمه"
|
9938 |
|
9939 |
+
#: includes/elements/button.php:199 includes/general-hooks.php:860
|
9940 |
+
#: includes/general-hooks.php:1265
|
9941 |
#, fuzzy
|
9942 |
msgid "Animate from Righ"
|
9943 |
msgstr "متحرک سازی از راست"
|
9944 |
|
9945 |
+
#: includes/elements/button.php:227 includes/general-hooks.php:928
|
9946 |
+
#: includes/general-hooks.php:1333
|
9947 |
#, fuzzy
|
9948 |
msgid "Button Link"
|
9949 |
msgstr "اندازه دکمه"
|
9953 |
msgstr "باز کردن پیوند در"
|
9954 |
|
9955 |
#: includes/elements/button.php:247 includes/elements/text.php:866
|
9956 |
+
#: includes/general-hooks.php:957 includes/general-hooks.php:1362
|
9957 |
msgid "Current page"
|
9958 |
msgstr "صفحه جاری"
|
9959 |
|
9960 |
#: includes/elements/button.php:248 includes/elements/text.php:867
|
9961 |
+
#: includes/general-hooks.php:958 includes/general-hooks.php:1363
|
9962 |
msgid "New page"
|
9963 |
msgstr "صفحه جدید"
|
9964 |
|
10209 |
msgid "Dropcap style"
|
10210 |
msgstr "ظاهر دراپ کپ"
|
10211 |
|
10212 |
+
#: includes/elements/dropcap.php:64 includes/general-hooks.php:358
|
10213 |
msgid "Outline Square"
|
10214 |
msgstr "مربع با خط بیرونی"
|
10215 |
|
10217 |
msgid "Round Square"
|
10218 |
msgstr "مربع لبه گرد"
|
10219 |
|
10220 |
+
#: includes/elements/dropcap.php:76 includes/general-hooks.php:357
|
10221 |
msgid "Outline Circle"
|
10222 |
msgstr "دایره با خط بیرونی"
|
10223 |
|
10816 |
msgid "Resolution/size of the photos. "
|
10817 |
msgstr "رزولوشن/اندازه تصاویر."
|
10818 |
|
10819 |
+
#: includes/elements/instagram-feed.php:96 includes/general-hooks.php:1590
|
10820 |
msgid "Auto"
|
10821 |
msgstr "خودکار"
|
10822 |
|
11679 |
msgstr "رنگ شکلک"
|
11680 |
|
11681 |
#: includes/elements/text.php:201 includes/elements/text.php:296
|
11682 |
+
#: includes/general-hooks.php:1567
|
11683 |
msgid "Background Image"
|
11684 |
msgstr "تصویر پس زمینه"
|
11685 |
|
11699 |
msgstr "تصویر پس زمینه"
|
11700 |
|
11701 |
#: includes/elements/text.php:254 includes/elements/text.php:349
|
11702 |
+
#: includes/general-hooks.php:1598
|
11703 |
msgid "Cover"
|
11704 |
msgstr "پوشاننده"
|
11705 |
|
11713 |
msgstr ""
|
11714 |
|
11715 |
#: includes/elements/text.php:257 includes/elements/text.php:352
|
11716 |
+
#: includes/general-hooks.php:1731
|
11717 |
msgid "Fixed"
|
11718 |
msgstr "ثابت"
|
11719 |
|
11981 |
msgid "Select Page"
|
11982 |
msgstr "تراز شکلک را انتخاب کنید."
|
11983 |
|
11984 |
+
#: includes/general-hooks.php:221
|
11985 |
msgid "Auxin Icons"
|
11986 |
msgstr "اکسین شکلک ها"
|
11987 |
|
11988 |
+
#: includes/general-hooks.php:226
|
11989 |
msgid "Icon library"
|
11990 |
msgstr "کتابخانه شکلک ها"
|
11991 |
|
11992 |
+
#: includes/general-hooks.php:228
|
11993 |
msgid "Font Awesome"
|
11994 |
msgstr "Font Awesome"
|
11995 |
|
11996 |
+
#: includes/general-hooks.php:229
|
11997 |
msgid "Open Iconic"
|
11998 |
msgstr "Open Iconic"
|
11999 |
|
12000 |
+
#: includes/general-hooks.php:230
|
12001 |
msgid "Typicons"
|
12002 |
msgstr "Typicons"
|
12003 |
|
12004 |
+
#: includes/general-hooks.php:231
|
12005 |
msgid "Entypo"
|
12006 |
msgstr "Entypo"
|
12007 |
|
12008 |
+
#: includes/general-hooks.php:232
|
12009 |
msgid "Linecons"
|
12010 |
msgstr "Linecons"
|
12011 |
|
12012 |
+
#: includes/general-hooks.php:233
|
12013 |
msgid "Auxin"
|
12014 |
msgstr "اکسین"
|
12015 |
|
12016 |
+
#: includes/general-hooks.php:237
|
12017 |
msgid "Select icon library."
|
12018 |
msgstr "کتابخانه شکلک را انتخاب کنید."
|
12019 |
|
12020 |
+
#: includes/general-hooks.php:255 includes/general-hooks.php:272
|
12021 |
+
#: includes/general-hooks.php:288 includes/general-hooks.php:304
|
12022 |
+
#: includes/general-hooks.php:335
|
12023 |
msgid "Select icon from library."
|
12024 |
msgstr "انتخاب شکلک از کتابخانه."
|
12025 |
|
12026 |
+
#: includes/general-hooks.php:340
|
12027 |
msgid "Custom color"
|
12028 |
msgstr "رنگ سفارشی"
|
12029 |
|
12030 |
+
#: includes/general-hooks.php:342
|
12031 |
msgid "Select custom icon color."
|
12032 |
msgstr "رنگ دلخواه شکلک را انتخاب کنید."
|
12033 |
|
12034 |
+
#: includes/general-hooks.php:350
|
12035 |
msgid "Background shape"
|
12036 |
msgstr "شکل پس زمینه"
|
12037 |
|
12038 |
+
#: includes/general-hooks.php:356
|
12039 |
msgid "Rounded"
|
12040 |
msgstr "گرد شده"
|
12041 |
|
12042 |
+
#: includes/general-hooks.php:359
|
12043 |
msgid "Outline Rounded"
|
12044 |
msgstr "گرد با خط بیرونی"
|
12045 |
|
12046 |
+
#: includes/general-hooks.php:361
|
12047 |
msgid "Select background shape and style for icon."
|
12048 |
msgstr "ظاهر و شکل پس زمینه شکلک انتخاب کنید."
|
12049 |
|
12050 |
+
#: includes/general-hooks.php:366
|
12051 |
msgid "Custom background color"
|
12052 |
msgstr "رنگ پس زمینه دلخواه"
|
12053 |
|
12054 |
+
#: includes/general-hooks.php:368
|
12055 |
msgid "Select custom icon background color."
|
12056 |
msgstr "رنگ دلخواه پس زمینه شکلک را انتخاب کنید."
|
12057 |
|
12058 |
+
#: includes/general-hooks.php:384
|
12059 |
msgid "Select icon alignment."
|
12060 |
msgstr "تراز شکلک را انتخاب کنید."
|
12061 |
|
12062 |
+
#: includes/general-hooks.php:400 includes/general-hooks.php:401
|
12063 |
msgid "Arrow"
|
12064 |
msgstr "فلش"
|
12065 |
|
12066 |
+
#: includes/general-hooks.php:402
|
12067 |
msgid "Back"
|
12068 |
msgstr "برگشت"
|
12069 |
|
12070 |
+
#: includes/general-hooks.php:458
|
12071 |
msgid "Custom JS Code"
|
12072 |
msgstr "کد جاوااسکریپت سفارشی"
|
12073 |
|
12074 |
+
#: includes/general-hooks.php:459
|
12075 |
msgid "Your Custom Javascript"
|
12076 |
msgstr "جاوااسکریپت دلخواه شما"
|
12077 |
|
12078 |
+
#: includes/general-hooks.php:463
|
12079 |
#, fuzzy
|
12080 |
msgid "Custom Javascript in Head"
|
12081 |
msgstr "جاوااسکریپت سفارشی"
|
12082 |
|
12083 |
+
#: includes/general-hooks.php:464 includes/general-hooks.php:478
|
12084 |
msgid "You can add your custom javascript code here.%s DO NOT use %s tag."
|
12085 |
msgstr ""
|
12086 |
"کدهای جاوااسکریپت دلخواه خود را می توانید در این قسمت وارد کنید. از تگ %s "
|
12087 |
"استفاده نکنید %s."
|
12088 |
|
12089 |
+
#: includes/general-hooks.php:465 includes/general-hooks.php:479
|
12090 |
#, fuzzy
|
12091 |
msgid ""
|
12092 |
"In order to save your custom javascript code, you are expected to execute "
|
12094 |
msgstr ""
|
12095 |
"انتظار می رود قبل از ذخیره کد جاوااسکریپت، از درستی آن اطمینان پیدا کنید."
|
12096 |
|
12097 |
+
#: includes/general-hooks.php:471 includes/general-hooks.php:485
|
12098 |
msgid "Execute"
|
12099 |
msgstr "اجرا"
|
12100 |
|
12101 |
+
#: includes/general-hooks.php:477
|
12102 |
#, fuzzy
|
12103 |
msgid "Custom Javascript in Footer"
|
12104 |
msgstr "کد جاوااسکریپت سفارشی"
|
12105 |
|
12106 |
+
#: includes/general-hooks.php:496 includes/general-hooks.php:497
|
12107 |
msgid "Google API Keys & SEO"
|
12108 |
msgstr ""
|
12109 |
|
12110 |
+
#: includes/general-hooks.php:502
|
12111 |
msgid "Built in SEO"
|
12112 |
msgstr "سئوی داخلی"
|
12113 |
|
12114 |
+
#: includes/general-hooks.php:503
|
12115 |
msgid ""
|
12116 |
"In case of using SEO plugins like \"WordPress SEO by Yoast\" or \"All in One "
|
12117 |
"SEO Pack\" you can disable built-in SEO for maximum compatibility."
|
12120 |
"Pack\" استفاده می کنید، برای حفظ بیشترین یکپارچگی، سئوی داخلی را غیرفعال "
|
12121 |
"کنید."
|
12122 |
|
12123 |
+
#: includes/general-hooks.php:513
|
12124 |
#, fuzzy
|
12125 |
msgid "Google Analytics Code"
|
12126 |
msgstr "کد آنالیز گوگل"
|
12127 |
|
12128 |
+
#: includes/general-hooks.php:514
|
12129 |
msgid "You can %s set up Analytics tracking %s and add the tracking ID here."
|
12130 |
msgstr ""
|
12131 |
|
12132 |
+
#: includes/general-hooks.php:528
|
12133 |
msgid "Google Maps API Key"
|
12134 |
msgstr ""
|
12135 |
|
12136 |
+
#: includes/general-hooks.php:530
|
12137 |
msgid ""
|
12138 |
"In order to use google maps on your website, you have to %s create an api "
|
12139 |
"key %s and insert it in this field."
|
12140 |
msgstr ""
|
12141 |
|
12142 |
+
#: includes/general-hooks.php:544
|
12143 |
#, fuzzy
|
12144 |
msgid "Google Marketing Code"
|
12145 |
msgstr "کد بازاریابی گوگل"
|
12146 |
|
12147 |
+
#: includes/general-hooks.php:545
|
12148 |
msgid "You can add your Google marketing code here.%s DO NOT use %s tag."
|
12149 |
msgstr ""
|
12150 |
"کد بازاریابی گوگل خود را می توانید در این قسمت وارد کنید. از تگ %s استفاده "
|
12151 |
"نکنید %s."
|
12152 |
|
12153 |
+
#: includes/general-hooks.php:562
|
12154 |
msgid "Logo 2 (optional)"
|
12155 |
msgstr ""
|
12156 |
|
12157 |
+
#: includes/general-hooks.php:563
|
12158 |
msgid ""
|
12159 |
"The secondary logo which appears when the header becomes sticky (optional)."
|
12160 |
msgstr ""
|
12161 |
|
12162 |
+
#: includes/general-hooks.php:579
|
12163 |
msgid "Header Button 1"
|
12164 |
msgstr ""
|
12165 |
|
12166 |
+
#: includes/general-hooks.php:580
|
12167 |
msgid "Setting for Header Button 1"
|
12168 |
msgstr ""
|
12169 |
|
12170 |
+
#: includes/general-hooks.php:595
|
12171 |
#, fuzzy
|
12172 |
msgid "Display Header Button 1"
|
12173 |
msgstr "نمایش دکمه لایک"
|
12174 |
|
12175 |
+
#: includes/general-hooks.php:596 includes/general-hooks.php:1001
|
12176 |
#, fuzzy
|
12177 |
msgid "Enable this option to display a button in header."
|
12178 |
msgstr "برای نمایش پس زمینه دلخواه در صفحه ورود این گزینه را فعال کنید."
|
12179 |
|
12180 |
+
#: includes/general-hooks.php:616
|
12181 |
msgid "Hide Button 1 on Tablet"
|
12182 |
msgstr ""
|
12183 |
|
12184 |
+
#: includes/general-hooks.php:617 includes/general-hooks.php:640
|
12185 |
msgid "Enable it to hide header button 1 on tablet devices."
|
12186 |
msgstr ""
|
12187 |
|
12188 |
+
#: includes/general-hooks.php:639
|
12189 |
msgid "Hide Button 1 on Mobile"
|
12190 |
msgstr ""
|
12191 |
|
12192 |
+
#: includes/general-hooks.php:662 includes/general-hooks.php:1067
|
12193 |
#, fuzzy
|
12194 |
msgid "Button Label"
|
12195 |
msgstr "برچسب دکمه"
|
12196 |
|
12197 |
+
#: includes/general-hooks.php:663 includes/general-hooks.php:1068
|
12198 |
#, fuzzy
|
12199 |
msgid "Specifies the label of button."
|
12200 |
msgstr "برچسب دکمه"
|
12201 |
|
12202 |
+
#: includes/general-hooks.php:685 includes/general-hooks.php:1090
|
12203 |
#, fuzzy
|
12204 |
msgid "Button Size"
|
12205 |
msgstr "اندازه دکمه"
|
12206 |
|
12207 |
+
#: includes/general-hooks.php:715 includes/general-hooks.php:1120
|
12208 |
#, fuzzy
|
12209 |
msgid "Button Shape"
|
12210 |
msgstr "نوع دکمه"
|
12211 |
|
12212 |
+
#: includes/general-hooks.php:722 includes/general-hooks.php:1127
|
12213 |
msgid "Sharp"
|
12214 |
msgstr ""
|
12215 |
|
12216 |
+
#: includes/general-hooks.php:789 includes/general-hooks.php:1194
|
12217 |
#, fuzzy
|
12218 |
msgid "Button Typography"
|
12219 |
msgstr "نوع دکمه"
|
12220 |
|
12221 |
+
#: includes/general-hooks.php:811 includes/general-hooks.php:1216
|
12222 |
#, fuzzy
|
12223 |
msgid "Icon for Button"
|
12224 |
msgstr "شکلک برای دکمه"
|
12225 |
|
12226 |
+
#: includes/general-hooks.php:833 includes/general-hooks.php:1238
|
12227 |
#, fuzzy
|
12228 |
msgid "Icon Alignment"
|
12229 |
msgstr "تراز شکلک"
|
12230 |
|
12231 |
+
#: includes/general-hooks.php:882 includes/general-hooks.php:1287
|
12232 |
#, fuzzy
|
12233 |
msgid "Color of Button"
|
12234 |
msgstr "رنگ دکمه"
|
12235 |
|
12236 |
+
#: includes/general-hooks.php:905 includes/general-hooks.php:1310
|
12237 |
#, fuzzy
|
12238 |
msgid "Color of Button on Sticky"
|
12239 |
msgstr "رنگ دکمه"
|
12240 |
|
12241 |
+
#: includes/general-hooks.php:906 includes/general-hooks.php:1311
|
12242 |
msgid "Specifies the color of the button when the header sticky is enabled."
|
12243 |
msgstr ""
|
12244 |
|
12245 |
+
#: includes/general-hooks.php:951 includes/general-hooks.php:1356
|
12246 |
#, fuzzy
|
12247 |
msgid "Open Link in"
|
12248 |
msgstr "باز کردن پیوند در"
|
12249 |
|
12250 |
+
#: includes/general-hooks.php:984
|
12251 |
msgid "Header Button 2"
|
12252 |
msgstr ""
|
12253 |
|
12254 |
+
#: includes/general-hooks.php:985
|
12255 |
msgid "Setting for Header Button 2"
|
12256 |
msgstr ""
|
12257 |
|
12258 |
+
#: includes/general-hooks.php:1000
|
12259 |
#, fuzzy
|
12260 |
msgid "Display Header Button 2"
|
12261 |
msgstr "نمایش دکمه لایک"
|
12262 |
|
12263 |
+
#: includes/general-hooks.php:1021
|
12264 |
msgid "Hide Button 2 on Tablet"
|
12265 |
msgstr ""
|
12266 |
|
12267 |
+
#: includes/general-hooks.php:1022 includes/general-hooks.php:1045
|
12268 |
msgid "Enable it to hide header button 2 on tablet devices."
|
12269 |
msgstr ""
|
12270 |
|
12271 |
+
#: includes/general-hooks.php:1044
|
12272 |
msgid "Hide Button 2 on Mobile"
|
12273 |
msgstr ""
|
12274 |
|
12275 |
+
#: includes/general-hooks.php:1415
|
12276 |
#, fuzzy
|
12277 |
msgid "Specifies maximum height of logo in footer."
|
12278 |
msgstr "ارتفاع لوگو را بر حسب پیکسل مشخص می کند."
|
12279 |
|
12280 |
+
#: includes/general-hooks.php:1451
|
12281 |
msgid "Login Page"
|
12282 |
msgstr "صفحه ورود"
|
12283 |
|
12284 |
+
#: includes/general-hooks.php:1452
|
12285 |
msgid "Preview login page"
|
12286 |
msgstr "پیش نمایش صفحه ورود"
|
12287 |
|
12288 |
+
#: includes/general-hooks.php:1459
|
12289 |
msgid "Login Skin"
|
12290 |
msgstr "نمای صفحه ورود"
|
12291 |
|
12292 |
+
#: includes/general-hooks.php:1460
|
12293 |
msgid "Specifies a skin for login page of your website."
|
12294 |
msgstr "نمای صفحه ورود را در سایت شما مشخص می کند."
|
12295 |
|
12296 |
+
#: includes/general-hooks.php:1470
|
12297 |
msgid "Clean white"
|
12298 |
msgstr "سفید تمیز"
|
12299 |
|
12300 |
+
#: includes/general-hooks.php:1474
|
12301 |
msgid "Simple white"
|
12302 |
msgstr "سفید ساده"
|
12303 |
|
12304 |
+
#: includes/general-hooks.php:1478
|
12305 |
msgid "Simple gray"
|
12306 |
msgstr "خاکستری ساده"
|
12307 |
|
12308 |
+
#: includes/general-hooks.php:1488
|
12309 |
msgid "Login message"
|
12310 |
msgstr "پیام ورود"
|
12311 |
|
12312 |
+
#: includes/general-hooks.php:1489
|
12313 |
#, fuzzy
|
12314 |
msgid "Enter a text to display above the login form."
|
12315 |
msgstr "متنی را برای نمایش در بالای فرم ورود وارد کنید."
|
12316 |
|
12317 |
+
#: includes/general-hooks.php:1501
|
12318 |
msgid "Login Page Logo"
|
12319 |
msgstr "لوگوی صفحه ورود"
|
12320 |
|
12321 |
+
#: includes/general-hooks.php:1502
|
12322 |
msgid ""
|
12323 |
"Specifies a logo to display on login page.(width of logo image could be up "
|
12324 |
"to 320px)"
|
12326 |
"لوگویی را برای نمایش در صفحه ورود مشخص می کند.(عرض لوگو می تواند تا 320 "
|
12327 |
"پیکسل باشد)"
|
12328 |
|
12329 |
+
#: includes/general-hooks.php:1513
|
12330 |
msgid "Logo Width"
|
12331 |
msgstr "عرض لوگو"
|
12332 |
|
12333 |
+
#: includes/general-hooks.php:1514
|
12334 |
msgid "Specifies width of logo image in pixel."
|
12335 |
msgstr "ارتفاع لوگو را بر حسب پیکسل مشخص می کند."
|
12336 |
|
12337 |
+
#: includes/general-hooks.php:1525
|
12338 |
msgid "Logo Height"
|
12339 |
msgstr "ارتفاع لوگو"
|
12340 |
|
12341 |
+
#: includes/general-hooks.php:1526
|
12342 |
msgid "Specifies height of logo image in pixel."
|
12343 |
msgstr "ارتفاع لوگو را بر حسب پیکسل مشخص می کند."
|
12344 |
|
12345 |
+
#: includes/general-hooks.php:1538
|
12346 |
msgid "Enable Background"
|
12347 |
msgstr "فعالسازی پس زمینه"
|
12348 |
|
12349 |
+
#: includes/general-hooks.php:1539
|
12350 |
msgid "Enable it to display custom background on login page."
|
12351 |
msgstr "برای نمایش پس زمینه دلخواه در صفحه ورود این گزینه را فعال کنید."
|
12352 |
|
12353 |
+
#: includes/general-hooks.php:1551
|
12354 |
msgid "Specifies background color of website."
|
12355 |
msgstr "رنگ پس زمینه وب سایت را مشخص می کند."
|
12356 |
|
12357 |
+
#: includes/general-hooks.php:1568
|
12358 |
msgid "You can upload custom image for background of login page"
|
12359 |
msgstr "می توانید تصویر دلخواهی را به عنوان پس زمینه صفحه ورود بارگذاری کنید."
|
12360 |
|
12361 |
+
#: includes/general-hooks.php:1583
|
12362 |
msgid "Background Size"
|
12363 |
msgstr "اندازه پس زمینه"
|
12364 |
|
12365 |
+
#: includes/general-hooks.php:1584
|
12366 |
msgid "Specifies background size on login page."
|
12367 |
msgstr "اندازه تصویر پس زمینه در صفحه ورود را مشخص می کند."
|
12368 |
|
12369 |
+
#: includes/general-hooks.php:1594
|
12370 |
msgid "Contain"
|
12371 |
msgstr "دربرگیرنده"
|
12372 |
|
12373 |
+
#: includes/general-hooks.php:1613
|
12374 |
msgid "Background Pattern"
|
12375 |
msgstr "الگوی پس زمینه"
|
12376 |
|
12377 |
+
#: includes/general-hooks.php:1614
|
12378 |
msgid ""
|
12379 |
"You can select one of these patterns as login background image. %s Some of "
|
12380 |
"these can be used as a pattern over your background image."
|
12382 |
"می توانید یکی از این الگوها را به عنوان تصویر پس زمینه انتخاب کنید. %s بعضی "
|
12383 |
"از این ها می توانند به عنوان الگو بر روی تصویر پس زمینه شما استفاده شوند."
|
12384 |
|
12385 |
+
#: includes/general-hooks.php:1630
|
12386 |
msgid "Background Repeat"
|
12387 |
msgstr "تکرار پس زمینه"
|
12388 |
|
12389 |
+
#: includes/general-hooks.php:1631
|
12390 |
msgid "Specifies how background image repeats."
|
12391 |
msgstr "نحوه تکرار تصویر پس زمینه را مشخص می کند."
|
12392 |
|
12393 |
+
#: includes/general-hooks.php:1636
|
12394 |
msgid "No repeat"
|
12395 |
msgstr "بدون تکرار"
|
12396 |
|
12397 |
+
#: includes/general-hooks.php:1640
|
12398 |
msgid "Repeat horizontally and vertically"
|
12399 |
msgstr "تکرار افقی و عمودی"
|
12400 |
|
12401 |
+
#: includes/general-hooks.php:1644
|
12402 |
msgid "Repeat horizontally"
|
12403 |
msgstr "تکرار افقی"
|
12404 |
|
12405 |
+
#: includes/general-hooks.php:1648
|
12406 |
msgid "Repeat vertically"
|
12407 |
msgstr "تکرار عمودی"
|
12408 |
|
12409 |
+
#: includes/general-hooks.php:1664
|
12410 |
msgid "Background Position"
|
12411 |
msgstr "موقعیت پس زمینه"
|
12412 |
|
12413 |
+
#: includes/general-hooks.php:1665
|
12414 |
msgid "Specifies background image position."
|
12415 |
msgstr "موقعیت تصویر پس زمینه را مشخص می کند."
|
12416 |
|
12417 |
+
#: includes/general-hooks.php:1670
|
12418 |
msgid "Left top"
|
12419 |
msgstr "چپ بالا"
|
12420 |
|
12421 |
+
#: includes/general-hooks.php:1674
|
12422 |
msgid "Center top"
|
12423 |
msgstr "وسط بالا"
|
12424 |
|
12425 |
+
#: includes/general-hooks.php:1678
|
12426 |
msgid "Right top"
|
12427 |
msgstr "راست بالا"
|
12428 |
|
12429 |
+
#: includes/general-hooks.php:1683
|
12430 |
msgid "Left center"
|
12431 |
msgstr "چپ وسط"
|
12432 |
|
12433 |
+
#: includes/general-hooks.php:1687
|
12434 |
msgid "Center center"
|
12435 |
msgstr "وسط وسط"
|
12436 |
|
12437 |
+
#: includes/general-hooks.php:1691
|
12438 |
msgid "Right center"
|
12439 |
msgstr "راست وسط"
|
12440 |
|
12441 |
+
#: includes/general-hooks.php:1696
|
12442 |
msgid "Left bottom"
|
12443 |
msgstr "چپ پایین"
|
12444 |
|
12445 |
+
#: includes/general-hooks.php:1700
|
12446 |
msgid "Center bottom"
|
12447 |
msgstr "وسط پایین"
|
12448 |
|
12449 |
+
#: includes/general-hooks.php:1704
|
12450 |
msgid "Right bottom"
|
12451 |
msgstr "راست پایین"
|
12452 |
|
12453 |
+
#: includes/general-hooks.php:1720
|
12454 |
msgid "Background Attachment"
|
12455 |
msgstr "پیوست پس زمینه"
|
12456 |
|
12457 |
+
#: includes/general-hooks.php:1721
|
12458 |
msgid ""
|
12459 |
"Specifies whether the background is fixed or scrollable as user scrolls the "
|
12460 |
"page."
|
12462 |
"مشخص می کند پس زمینه هنگام اسکرول کردن صفحه توسط کاربر ثابت باشد یا اسکرول "
|
12463 |
"شود."
|
12464 |
|
12465 |
+
#: includes/general-hooks.php:1727
|
12466 |
msgid "Scroll"
|
12467 |
msgstr "اسکرول"
|
12468 |
|
12469 |
+
#: includes/general-hooks.php:1748
|
12470 |
msgid "Custom CSS class name"
|
12471 |
msgstr "نام کلاس دلخواه CSS"
|
12472 |
|
12473 |
+
#: includes/general-hooks.php:1749
|
12474 |
msgid ""
|
12475 |
"In this field you can define custom CSS class name for login page.\n"
|
12476 |
" This class name will be added to body classes in "
|
12480 |
" این نام کلاس به بدنه (body) صفحه ورود اضافه خواهد "
|
12481 |
"شدو برای موارد استایل دهی پیشرفته مورد استفاده قرار می گیرد."
|
12482 |
|
12483 |
+
#: includes/general-hooks.php:1765
|
12484 |
#, fuzzy
|
12485 |
msgid "404 Page Options"
|
12486 |
msgstr "تنظیمات طراحی"
|
12487 |
|
12488 |
+
#: includes/general-hooks.php:1771
|
12489 |
msgid "Specifies a page to display on 404."
|
12490 |
msgstr ""
|
12491 |
|
12492 |
+
#: includes/general-hooks.php:1786 includes/general-hooks.php:1803
|
12493 |
msgid "Maintenance or Comingsoon Page"
|
12494 |
msgstr ""
|
12495 |
|
12496 |
+
#: includes/general-hooks.php:1787
|
12497 |
msgid "Maintenance or Comingsoon Page Options"
|
12498 |
msgstr ""
|
12499 |
|
12500 |
+
#: includes/general-hooks.php:1792
|
12501 |
msgid "Enable Maintenance or Comingsoon Mode"
|
12502 |
msgstr ""
|
12503 |
|
12504 |
+
#: includes/general-hooks.php:1793
|
12505 |
msgid "With this option you can manually enable Maintenance or Comingsoon mode"
|
12506 |
msgstr ""
|
12507 |
|
12508 |
+
#: includes/general-hooks.php:1804
|
12509 |
msgid ""
|
12510 |
"In This Case You Can Set Your Specifc Page for Maintenance or Comingsoon Mode"
|
12511 |
msgstr ""
|
12512 |
|
12513 |
+
#: includes/general-hooks.php:1823
|
12514 |
msgid "Search Results"
|
12515 |
msgstr ""
|
12516 |
|
12517 |
+
#: includes/general-hooks.php:1824
|
12518 |
msgid "Search Results Options"
|
12519 |
msgstr ""
|
12520 |
|
12521 |
+
#: includes/general-hooks.php:1830
|
12522 |
#, fuzzy
|
12523 |
msgid "Exclude Posts Types"
|
12524 |
msgstr "نادیده گرفتن این نوشته ها"
|
12525 |
|
12526 |
+
#: includes/general-hooks.php:1831
|
12527 |
msgid "The post types which should be excluded from search results."
|
12528 |
msgstr ""
|
12529 |
|
12530 |
+
#: includes/general-hooks.php:1841
|
12531 |
#, fuzzy
|
12532 |
msgid "Exclude Posts Without Featured Image"
|
12533 |
msgstr "نادیده گرفتن نوشته های بدون تصویر"
|
12534 |
|
12535 |
+
#: includes/general-hooks.php:1842
|
12536 |
#, fuzzy
|
12537 |
msgid "Exclude posts without featured image in search results."
|
12538 |
msgstr "نادیده گرفتن نوشته های بدون تصویر"
|
12539 |
|
12540 |
+
#: includes/general-hooks.php:1853
|
12541 |
msgid ""
|
12542 |
"If you intend to include additional posts, you should specify the posts here."
|
12543 |
"<br>You have to insert the Post IDs that are separated by camma (eg. "
|
12544 |
"53,34,87,25)"
|
12545 |
msgstr ""
|
12546 |
|
12547 |
+
#: includes/general-hooks.php:1867
|
12548 |
msgid "Import/Export"
|
12549 |
msgstr ""
|
12550 |
|
12551 |
+
#: includes/general-hooks.php:1868
|
12552 |
#, fuzzy
|
12553 |
msgid "Import or Export options"
|
12554 |
msgstr "تنظیمات نوشته نقل قول"
|
12555 |
|
12556 |
+
#: includes/general-hooks.php:1875
|
12557 |
msgid "Export Data"
|
12558 |
msgstr ""
|
12559 |
|
12560 |
+
#: includes/general-hooks.php:1876
|
12561 |
msgid "Your theme options code which you can import later."
|
12562 |
msgstr ""
|
12563 |
|
12564 |
+
#: includes/general-hooks.php:1886
|
12565 |
msgid "Import Data"
|
12566 |
msgstr ""
|
12567 |
|
12568 |
+
#: includes/general-hooks.php:1887
|
12569 |
msgid "Paste the exported theme options code to import into theme."
|
12570 |
msgstr ""
|
12571 |
|
12572 |
+
#: includes/general-hooks.php:1902
|
12573 |
#, fuzzy
|
12574 |
msgid "White Label"
|
12575 |
msgstr "فاصله خالی"
|
12576 |
|
12577 |
+
#: includes/general-hooks.php:1903
|
12578 |
msgid "White Label Settings"
|
12579 |
msgstr ""
|
12580 |
|
12581 |
+
#: includes/general-hooks.php:1913
|
12582 |
msgid "Change PHLOX labels."
|
12583 |
msgstr ""
|
12584 |
|
12585 |
+
#: includes/general-hooks.php:1917
|
12586 |
#, fuzzy
|
12587 |
msgid "Theme Name"
|
12588 |
msgstr "پوسته"
|
12589 |
|
12590 |
+
#: includes/general-hooks.php:1928
|
12591 |
#, fuzzy
|
12592 |
msgid "Theme Author Name"
|
12593 |
msgstr "نام نویسنده"
|
12594 |
|
12595 |
+
#: includes/general-hooks.php:1937
|
12596 |
#, fuzzy
|
12597 |
msgid "Theme Author URL"
|
12598 |
msgstr "شخصی ساز پوسته"
|
12599 |
|
12600 |
+
#: includes/general-hooks.php:1946
|
12601 |
#, fuzzy
|
12602 |
msgid "Theme Description"
|
12603 |
msgstr "توضیحات المان"
|
12604 |
|
12605 |
+
#: includes/general-hooks.php:1955
|
12606 |
msgid "Theme Screenshot (1200x900)"
|
12607 |
msgstr ""
|
12608 |
|
12609 |
+
#: includes/general-hooks.php:1968
|
12610 |
#, fuzzy
|
12611 |
msgid "Displays"
|
12612 |
msgstr "نوع نمایش"
|
12613 |
|
12614 |
+
#: includes/general-hooks.php:1969
|
12615 |
msgid "Change PHLOX admin views."
|
12616 |
msgstr ""
|
12617 |
|
12618 |
+
#: includes/general-hooks.php:1973
|
12619 |
#, fuzzy
|
12620 |
msgid "Hide Notifications"
|
12621 |
msgstr "تنظیمات نوشته ویدیویی"
|
12622 |
|
12623 |
+
#: includes/general-hooks.php:1984
|
12624 |
msgid "Hide Theme Badge"
|
12625 |
msgstr ""
|
12626 |
|
12627 |
+
#: includes/general-hooks.php:1995
|
12628 |
msgid "Hide Phlox Menu"
|
12629 |
msgstr ""
|
12630 |
|
12631 |
+
#: includes/general-hooks.php:2006
|
12632 |
#, fuzzy
|
12633 |
msgid "Hide Dashboard Section"
|
12634 |
msgstr "افزودن بخش"
|
12635 |
|
12636 |
+
#: includes/general-hooks.php:2024
|
12637 |
msgid "Hide Customization Section"
|
12638 |
msgstr ""
|
12639 |
|
12640 |
+
#: includes/general-hooks.php:2042
|
12641 |
msgid "Hide Demo Importer Section"
|
12642 |
msgstr ""
|
12643 |
|
12644 |
+
#: includes/general-hooks.php:2060
|
12645 |
msgid "Hide Template Kits Section"
|
12646 |
msgstr ""
|
12647 |
|
12648 |
+
#: includes/general-hooks.php:2078
|
12649 |
msgid "Hide Plugins Section"
|
12650 |
msgstr ""
|
12651 |
|
12652 |
+
#: includes/general-hooks.php:2096
|
12653 |
#, fuzzy
|
12654 |
msgid "Hide Tutorials Section"
|
12655 |
msgstr "بخش زبانه ها"
|
12656 |
|
12657 |
+
#: includes/general-hooks.php:2114
|
12658 |
#, fuzzy
|
12659 |
msgid "Hide Feedback Section"
|
12660 |
msgstr "افزودن بخش"
|
12661 |
|
12662 |
+
#: includes/general-hooks.php:2376
|
12663 |
msgid "Twitter"
|
12664 |
msgstr ""
|
12665 |
|
12666 |
+
#: includes/general-hooks.php:2377
|
12667 |
msgid "Facebook"
|
12668 |
msgstr ""
|
12669 |
|
12670 |
+
#: includes/general-hooks.php:2378
|
12671 |
msgid "Google Plus"
|
12672 |
msgstr ""
|
12673 |
|
12674 |
+
#: includes/general-hooks.php:2379
|
12675 |
msgid "Flickr"
|
12676 |
msgstr ""
|
12677 |
|
12678 |
+
#: includes/general-hooks.php:2380
|
12679 |
msgid "Delicious"
|
12680 |
msgstr ""
|
12681 |
|
12682 |
+
#: includes/general-hooks.php:2381
|
12683 |
msgid "Pinterest"
|
12684 |
msgstr ""
|
12685 |
|
12686 |
+
#: includes/general-hooks.php:2382
|
12687 |
msgid "GitHub"
|
12688 |
msgstr ""
|
12689 |
|
12690 |
+
#: includes/general-hooks.php:2569
|
12691 |
#, fuzzy
|
12692 |
msgid "Page Options"
|
12693 |
msgstr "تنظیمات طراحی"
|
12694 |
|
12695 |
+
#: includes/general-hooks.php:2577
|
12696 |
#, fuzzy
|
12697 |
msgid "Post Options"
|
12698 |
msgstr "تنظیمات نوشته صوتی"
|
12699 |
|
12700 |
+
#: includes/general-hooks.php:3052
|
12701 |
#, fuzzy
|
12702 |
msgid "Page %s"
|
12703 |
msgstr "برگه ها"
|
12704 |
|
12705 |
+
#: includes/general-hooks.php:3625
|
12706 |
#, fuzzy
|
12707 |
msgid "current "
|
12708 |
msgstr "صفحه جاری"
|
12709 |
|
12710 |
+
#: includes/general-hooks.php:3655
|
12711 |
msgid "Edit Header & Footer"
|
12712 |
msgstr ""
|
12713 |
|
12956 |
msgstr ""
|
12957 |
|
12958 |
#. translators: playlist item title
|
12959 |
+
#: includes/general-hooks.php:3073
|
12960 |
msgctxt "playlist item title"
|
12961 |
msgid "“%s”"
|
12962 |
msgstr ""
|
12963 |
|
12964 |
#. translators: playlist item title
|
12965 |
+
#: includes/general-hooks.php:3098 includes/general-hooks.php:3103
|
12966 |
msgctxt "playlist item title"
|
12967 |
msgid "%s"
|
12968 |
msgstr ""
|
languages/auxin-elements.pot
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
# Averta Copyright (c) {2021}
|
2 |
msgid ""
|
3 |
msgstr ""
|
4 |
-
"Project-Id-Version: Phlox Core Elements 2.7.
|
5 |
"Report-Msgid-Bugs-To: http://averta.net/phlox/wordpress-theme/\n"
|
6 |
-
"POT-Creation-Date: 2021-04-
|
7 |
"MIME-Version: 1.0\n"
|
8 |
"Content-Type: text/plain; charset=utf-8\n"
|
9 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -204,11 +204,11 @@ msgstr ""
|
|
204 |
msgid "Please make sure the image aspect ratio for all image sizes are the same."
|
205 |
msgstr ""
|
206 |
|
207 |
-
#: admin/includes/admin-hooks.php:686 includes/general-hooks.php:
|
208 |
msgid "Footer Brand Image"
|
209 |
msgstr ""
|
210 |
|
211 |
-
#: admin/includes/admin-hooks.php:687 includes/general-hooks.php:
|
212 |
msgid "This image appears as site brand image on footer section."
|
213 |
msgstr ""
|
214 |
|
@@ -405,7 +405,7 @@ msgstr ""
|
|
405 |
|
406 |
#: admin/includes/compatibility/siteorigin/fields/iconpicker.class.php:13
|
407 |
#: includes/classes/class-auxin-widget.php:126
|
408 |
-
#: includes/classes/class-auxin-widget.php:151 includes/general-hooks.php:
|
409 |
msgid "Choose .."
|
410 |
msgstr ""
|
411 |
|
@@ -785,7 +785,7 @@ msgstr ""
|
|
785 |
#: admin/includes/metaboxes/metabox-fields-general-header-template.php:71
|
786 |
#: admin/includes/metaboxes/metabox-fields-general-header.php:27
|
787 |
#: admin/includes/metaboxes/metabox-fields-general-top-header.php:27
|
788 |
-
#: includes/general-hooks.php:
|
789 |
msgid "Disable it to replace header section with an Elementor template"
|
790 |
msgstr ""
|
791 |
|
@@ -902,7 +902,7 @@ msgstr ""
|
|
902 |
#: admin/includes/metaboxes/metabox-fields-general-header-template.php:70
|
903 |
#: admin/includes/metaboxes/metabox-fields-general-header.php:26
|
904 |
#: admin/includes/metaboxes/metabox-fields-general-top-header.php:26
|
905 |
-
#: includes/general-hooks.php:
|
906 |
msgid "Use Legacy Header"
|
907 |
msgstr ""
|
908 |
|
@@ -1015,7 +1015,7 @@ msgstr ""
|
|
1015 |
|
1016 |
#: admin/includes/metaboxes/metabox-fields-general-header.php:202
|
1017 |
#: includes/elements/staff.php:207 includes/elements/text.php:105
|
1018 |
-
#: includes/general-hooks.php:
|
1019 |
msgid "Boxed"
|
1020 |
msgstr ""
|
1021 |
|
@@ -1221,7 +1221,7 @@ msgstr ""
|
|
1221 |
#: includes/elements/recent-posts-grid-carousel.php:663
|
1222 |
#: includes/elements/recent-posts-timeline.php:272
|
1223 |
#: includes/elements/staff.php:280 includes/elements/text.php:129
|
1224 |
-
#: includes/elements/text.php:157 includes/general-hooks.php:
|
1225 |
msgid "Center"
|
1226 |
msgstr ""
|
1227 |
|
@@ -1267,8 +1267,8 @@ msgstr ""
|
|
1267 |
#: includes/elements/staff.php:238 includes/elements/staff.php:276
|
1268 |
#: includes/elements/text.php:125 includes/elements/text.php:153
|
1269 |
#: includes/elements/text.php:620 includes/elements/text.php:807
|
1270 |
-
#: includes/general-hooks.php:
|
1271 |
-
#: includes/general-hooks.php:
|
1272 |
msgid "Left"
|
1273 |
msgstr ""
|
1274 |
|
@@ -1313,7 +1313,7 @@ msgstr ""
|
|
1313 |
#: includes/elements/divider.php:90 includes/elements/socials-list.php:63
|
1314 |
#: includes/elements/socials-list.php:201 includes/elements/staff.php:463
|
1315 |
#: includes/elements/text.php:469 includes/elements/text.php:677
|
1316 |
-
#: includes/general-hooks.php:
|
1317 |
msgid "Small"
|
1318 |
msgstr ""
|
1319 |
|
@@ -1329,8 +1329,8 @@ msgstr ""
|
|
1329 |
#: includes/elements/socials-list.php:64 includes/elements/socials-list.php:202
|
1330 |
#: includes/elements/staff.php:111 includes/elements/staff.php:464
|
1331 |
#: includes/elements/text.php:430 includes/elements/text.php:470
|
1332 |
-
#: includes/elements/text.php:676 includes/general-hooks.php:
|
1333 |
-
#: includes/general-hooks.php:
|
1334 |
msgid "Medium"
|
1335 |
msgstr ""
|
1336 |
|
@@ -1345,7 +1345,7 @@ msgstr ""
|
|
1345 |
#: includes/elements/socials-list.php:203 includes/elements/staff.php:110
|
1346 |
#: includes/elements/staff.php:465 includes/elements/text.php:429
|
1347 |
#: includes/elements/text.php:471 includes/elements/text.php:675
|
1348 |
-
#: includes/general-hooks.php:
|
1349 |
msgid "Large"
|
1350 |
msgstr ""
|
1351 |
|
@@ -1412,8 +1412,8 @@ msgstr ""
|
|
1412 |
#: includes/elements/gallery.php:120 includes/elements/quote.php:109
|
1413 |
#: includes/elements/recent-posts-tiles-carousel.php:298
|
1414 |
#: includes/elements/recent-posts-tiles.php:328 includes/elements/text.php:180
|
1415 |
-
#: includes/elements/text.php:806 includes/general-hooks.php:
|
1416 |
-
#: includes/general-hooks.php:
|
1417 |
msgid "Default"
|
1418 |
msgstr ""
|
1419 |
|
@@ -1776,15 +1776,11 @@ msgid ""
|
|
1776 |
"Animoto, Wistia link or iFrame code."
|
1777 |
msgstr ""
|
1778 |
|
1779 |
-
#: auxin-elements.php:
|
1780 |
-
msgid "Page Builder by SiteOrigin"
|
1781 |
-
msgstr ""
|
1782 |
-
|
1783 |
-
#: auxin-elements.php:64 includes/classes/class-auxin-welcome-sections.php:531
|
1784 |
msgid "Phlox Pro"
|
1785 |
msgstr ""
|
1786 |
|
1787 |
-
#: auxin-elements.php:
|
1788 |
msgid "Phlox"
|
1789 |
msgstr ""
|
1790 |
|
@@ -2785,7 +2781,7 @@ msgstr ""
|
|
2785 |
#: includes/elements/recent-posts-masonry.php:16
|
2786 |
#: includes/elements/recent-posts-tiles.php:16
|
2787 |
#: includes/elements/recent-posts-timeline.php:16
|
2788 |
-
#: includes/elements/recent-posts-widget.php:16 includes/general-hooks.php:
|
2789 |
msgid "All Categories"
|
2790 |
msgstr ""
|
2791 |
|
@@ -2802,22 +2798,22 @@ msgid "Select Image"
|
|
2802 |
msgstr ""
|
2803 |
|
2804 |
#: includes/classes/class-auxin-widget.php:387
|
2805 |
-
#: includes/classes/class-auxin-widget.php:388 includes/general-hooks.php:
|
2806 |
-
#: includes/general-hooks.php:
|
2807 |
msgid "Add Video"
|
2808 |
msgstr ""
|
2809 |
|
2810 |
-
#: includes/classes/class-auxin-widget.php:389 includes/general-hooks.php:
|
2811 |
msgid "Select Video"
|
2812 |
msgstr ""
|
2813 |
|
2814 |
#: includes/classes/class-auxin-widget.php:411
|
2815 |
-
#: includes/classes/class-auxin-widget.php:412 includes/general-hooks.php:
|
2816 |
-
#: includes/general-hooks.php:
|
2817 |
msgid "Add Audio"
|
2818 |
msgstr ""
|
2819 |
|
2820 |
-
#: includes/classes/class-auxin-widget.php:413 includes/general-hooks.php:
|
2821 |
msgid "Select Audio"
|
2822 |
msgstr ""
|
2823 |
|
@@ -3064,8 +3060,8 @@ msgstr ""
|
|
3064 |
#: includes/elements/staff.php:230 includes/elements/staff.php:284
|
3065 |
#: includes/elements/text.php:133 includes/elements/text.php:161
|
3066 |
#: includes/elements/text.php:624 includes/elements/text.php:808
|
3067 |
-
#: includes/general-hooks.php:
|
3068 |
-
#: includes/general-hooks.php:
|
3069 |
msgid "Right"
|
3070 |
msgstr ""
|
3071 |
|
@@ -3336,7 +3332,7 @@ msgstr ""
|
|
3336 |
#: includes/elements/recent-posts-tiles.php:154
|
3337 |
#: includes/elements/recent-posts-timeline.php:149
|
3338 |
#: includes/elements/testimonial.php:132 includes/elements/text.php:903
|
3339 |
-
#: includes/general-hooks.php:
|
3340 |
#: public/templates/vcomposer/auxin_vc_extendes.php:63
|
3341 |
msgid "None"
|
3342 |
msgstr ""
|
@@ -4125,7 +4121,7 @@ msgid "Logo"
|
|
4125 |
msgstr ""
|
4126 |
|
4127 |
#: includes/elementor/modules/settings/general/manager.php:47
|
4128 |
-
#: includes/general-hooks.php:
|
4129 |
msgid "Footer Brand Height"
|
4130 |
msgstr ""
|
4131 |
|
@@ -4147,7 +4143,7 @@ msgid "Select Post Type"
|
|
4147 |
msgstr ""
|
4148 |
|
4149 |
#: includes/elementor/modules/theme-builder/module.php:131
|
4150 |
-
#: includes/general-hooks.php:
|
4151 |
msgid "404 Page"
|
4152 |
msgstr ""
|
4153 |
|
@@ -4407,7 +4403,7 @@ msgstr ""
|
|
4407 |
#: includes/elementor/widgets/theme-elements/modern-search.php:353
|
4408 |
#: includes/elementor/widgets/theme-elements/modern-search.php:444
|
4409 |
#: includes/elements/button.php:118 includes/elements/text.php:738
|
4410 |
-
#: includes/general-hooks.php:
|
4411 |
msgid "Normal"
|
4412 |
msgstr ""
|
4413 |
|
@@ -5116,8 +5112,8 @@ msgstr ""
|
|
5116 |
#: includes/elements/text.php:764 includes/elements/text.php:780
|
5117 |
#: includes/elements/text.php:796 includes/elements/text.php:821
|
5118 |
#: includes/elements/text.php:839 includes/elements/text.php:856
|
5119 |
-
#: includes/elements/text.php:877 includes/general-hooks.php:
|
5120 |
-
#: includes/general-hooks.php:
|
5121 |
msgid "Button"
|
5122 |
msgstr ""
|
5123 |
|
@@ -5153,8 +5149,8 @@ msgstr ""
|
|
5153 |
#: includes/elementor/widgets/button.php:160
|
5154 |
#: includes/elementor/widgets/modern-button.php:308
|
5155 |
#: includes/elementor/widgets/text.php:1033 includes/elements/button.php:63
|
5156 |
-
#: includes/elements/text.php:674 includes/general-hooks.php:
|
5157 |
-
#: includes/general-hooks.php:
|
5158 |
msgid "Exlarge"
|
5159 |
msgstr ""
|
5160 |
|
@@ -5163,7 +5159,7 @@ msgstr ""
|
|
5163 |
#: includes/elementor/widgets/modern-button.php:312
|
5164 |
#: includes/elementor/widgets/text.php:1037 includes/elements/button.php:67
|
5165 |
#: includes/elements/divider.php:91 includes/elements/text.php:678
|
5166 |
-
#: includes/general-hooks.php:
|
5167 |
msgid "Tiny"
|
5168 |
msgstr ""
|
5169 |
|
@@ -5185,16 +5181,16 @@ msgstr ""
|
|
5185 |
#: includes/elementor/widgets/button.php:192
|
5186 |
#: includes/elementor/widgets/modern-button.php:295
|
5187 |
#: includes/elementor/widgets/text.php:1362 includes/elements/button.php:95
|
5188 |
-
#: includes/elements/text.php:712 includes/general-hooks.php:
|
5189 |
-
#: includes/general-hooks.php:
|
5190 |
msgid "Round"
|
5191 |
msgstr ""
|
5192 |
|
5193 |
#: includes/elementor/widgets/button.php:196
|
5194 |
#: includes/elementor/widgets/modern-button.php:296
|
5195 |
#: includes/elementor/widgets/text.php:1366 includes/elements/button.php:99
|
5196 |
-
#: includes/elements/text.php:716 includes/general-hooks.php:
|
5197 |
-
#: includes/general-hooks.php:
|
5198 |
msgid "Curve"
|
5199 |
msgstr ""
|
5200 |
|
@@ -5205,16 +5201,16 @@ msgstr ""
|
|
5205 |
|
5206 |
#: includes/elementor/widgets/button.php:215
|
5207 |
#: includes/elementor/widgets/text.php:1386 includes/elements/button.php:122
|
5208 |
-
#: includes/elements/text.php:742 includes/general-hooks.php:
|
5209 |
-
#: includes/general-hooks.php:
|
5210 |
msgid "3D"
|
5211 |
msgstr ""
|
5212 |
|
5213 |
#: includes/elementor/widgets/button.php:219
|
5214 |
#: includes/elementor/widgets/modern-button.php:282
|
5215 |
#: includes/elementor/widgets/text.php:1390 includes/elements/button.php:126
|
5216 |
-
#: includes/elements/text.php:746 includes/general-hooks.php:
|
5217 |
-
#: includes/general-hooks.php:
|
5218 |
msgid "Outline"
|
5219 |
msgstr ""
|
5220 |
|
@@ -5288,10 +5284,10 @@ msgstr ""
|
|
5288 |
#: includes/elementor/widgets/theme-elements/search.php:178
|
5289 |
#: includes/elementor/widgets/theme-elements/shopping-cart.php:108
|
5290 |
#: includes/elements/custom-list.php:74 includes/elements/text.php:374
|
5291 |
-
#: includes/elements/text.php:386 includes/general-hooks.php:
|
5292 |
-
#: includes/general-hooks.php:
|
5293 |
-
#: includes/general-hooks.php:
|
5294 |
-
#: includes/general-hooks.php:
|
5295 |
msgid "Icon"
|
5296 |
msgstr ""
|
5297 |
|
@@ -5303,22 +5299,22 @@ msgstr ""
|
|
5303 |
|
5304 |
#: includes/elementor/widgets/button.php:373
|
5305 |
#: includes/elementor/widgets/text.php:1135 includes/elements/button.php:171
|
5306 |
-
#: includes/elements/text.php:800 includes/general-hooks.php:
|
5307 |
msgid "Icon alignment"
|
5308 |
msgstr ""
|
5309 |
|
5310 |
#: includes/elementor/widgets/button.php:380
|
5311 |
#: includes/elementor/widgets/modern-button.php:804
|
5312 |
#: includes/elementor/widgets/text.php:1142 includes/elements/button.php:191
|
5313 |
-
#: includes/elements/text.php:809 includes/general-hooks.php:
|
5314 |
-
#: includes/general-hooks.php:
|
5315 |
msgid "Over"
|
5316 |
msgstr ""
|
5317 |
|
5318 |
#: includes/elementor/widgets/button.php:381
|
5319 |
#: includes/elementor/widgets/text.php:1143 includes/elements/button.php:195
|
5320 |
-
#: includes/elements/text.php:810 includes/general-hooks.php:
|
5321 |
-
#: includes/general-hooks.php:
|
5322 |
msgid "Animate from Left"
|
5323 |
msgstr ""
|
5324 |
|
@@ -5789,7 +5785,7 @@ msgstr ""
|
|
5789 |
#: includes/elementor/widgets/theme-elements/search.php:201
|
5790 |
#: includes/elementor/widgets/theme-elements/search.php:404
|
5791 |
#: includes/elementor/widgets/touch-slider.php:303
|
5792 |
-
#: includes/general-hooks.php:
|
5793 |
msgid "Background Color"
|
5794 |
msgstr ""
|
5795 |
|
@@ -5963,7 +5959,7 @@ msgstr ""
|
|
5963 |
#: includes/elements/about-widget.php:121 includes/elements/divider.php:69
|
5964 |
#: includes/elements/dropcap.php:72 includes/elements/staff.php:168
|
5965 |
#: includes/elements/text.php:539 includes/elements/text.php:581
|
5966 |
-
#: includes/general-hooks.php:
|
5967 |
msgid "Circle"
|
5968 |
msgstr ""
|
5969 |
|
@@ -6365,7 +6361,7 @@ msgstr ""
|
|
6365 |
|
6366 |
#: includes/elementor/widgets/icon.php:141
|
6367 |
#: includes/elements/about-widget.php:122 includes/elements/dropcap.php:60
|
6368 |
-
#: includes/general-hooks.php:
|
6369 |
msgid "Square"
|
6370 |
msgstr ""
|
6371 |
|
@@ -6488,7 +6484,7 @@ msgstr ""
|
|
6488 |
|
6489 |
#: includes/elementor/widgets/image.php:278
|
6490 |
#: includes/elementor/widgets/theme-elements/shopping-cart.php:101
|
6491 |
-
#: includes/general-hooks.php:
|
6492 |
msgid "Settings"
|
6493 |
msgstr ""
|
6494 |
|
@@ -7595,7 +7591,7 @@ msgstr ""
|
|
7595 |
#: includes/elements/recent-posts-tiles-carousel.php:199
|
7596 |
#: includes/elements/recent-posts-tiles.php:229
|
7597 |
#: includes/elements/recent-posts-timeline.php:224
|
7598 |
-
#: includes/general-hooks.php:
|
7599 |
msgid "Include posts"
|
7600 |
msgstr ""
|
7601 |
|
@@ -8449,8 +8445,8 @@ msgstr ""
|
|
8449 |
msgid "Shape Style"
|
8450 |
msgstr ""
|
8451 |
|
8452 |
-
#: includes/elementor/widgets/text.php:1377 includes/general-hooks.php:
|
8453 |
-
#: includes/general-hooks.php:
|
8454 |
msgid "Button Style"
|
8455 |
msgstr ""
|
8456 |
|
@@ -9162,7 +9158,7 @@ msgstr ""
|
|
9162 |
msgid "The name which appears in about widget."
|
9163 |
msgstr ""
|
9164 |
|
9165 |
-
#: includes/elements/about-widget.php:72 includes/general-hooks.php:
|
9166 |
msgid "Skills"
|
9167 |
msgstr ""
|
9168 |
|
@@ -9338,13 +9334,13 @@ msgstr ""
|
|
9338 |
msgid "Darken label of button."
|
9339 |
msgstr ""
|
9340 |
|
9341 |
-
#: includes/elements/button.php:199 includes/general-hooks.php:
|
9342 |
-
#: includes/general-hooks.php:
|
9343 |
msgid "Animate from Righ"
|
9344 |
msgstr ""
|
9345 |
|
9346 |
-
#: includes/elements/button.php:227 includes/general-hooks.php:
|
9347 |
-
#: includes/general-hooks.php:
|
9348 |
msgid "Button Link"
|
9349 |
msgstr ""
|
9350 |
|
@@ -9353,12 +9349,12 @@ msgid "Open link in"
|
|
9353 |
msgstr ""
|
9354 |
|
9355 |
#: includes/elements/button.php:247 includes/elements/text.php:866
|
9356 |
-
#: includes/general-hooks.php:
|
9357 |
msgid "Current page"
|
9358 |
msgstr ""
|
9359 |
|
9360 |
#: includes/elements/button.php:248 includes/elements/text.php:867
|
9361 |
-
#: includes/general-hooks.php:
|
9362 |
msgid "New page"
|
9363 |
msgstr ""
|
9364 |
|
@@ -9589,7 +9585,7 @@ msgstr ""
|
|
9589 |
msgid "Dropcap style"
|
9590 |
msgstr ""
|
9591 |
|
9592 |
-
#: includes/elements/dropcap.php:64 includes/general-hooks.php:
|
9593 |
msgid "Outline Square"
|
9594 |
msgstr ""
|
9595 |
|
@@ -9597,7 +9593,7 @@ msgstr ""
|
|
9597 |
msgid "Round Square"
|
9598 |
msgstr ""
|
9599 |
|
9600 |
-
#: includes/elements/dropcap.php:76 includes/general-hooks.php:
|
9601 |
msgid "Outline Circle"
|
9602 |
msgstr ""
|
9603 |
|
@@ -10154,7 +10150,7 @@ msgstr ""
|
|
10154 |
msgid "Resolution/size of the photos. "
|
10155 |
msgstr ""
|
10156 |
|
10157 |
-
#: includes/elements/instagram-feed.php:96 includes/general-hooks.php:
|
10158 |
msgid "Auto"
|
10159 |
msgstr ""
|
10160 |
|
@@ -10959,7 +10955,7 @@ msgid "Single Color"
|
|
10959 |
msgstr ""
|
10960 |
|
10961 |
#: includes/elements/text.php:201 includes/elements/text.php:296
|
10962 |
-
#: includes/general-hooks.php:
|
10963 |
msgid "Background Image"
|
10964 |
msgstr ""
|
10965 |
|
@@ -10976,7 +10972,7 @@ msgid "Wrapper Background Image Display"
|
|
10976 |
msgstr ""
|
10977 |
|
10978 |
#: includes/elements/text.php:254 includes/elements/text.php:349
|
10979 |
-
#: includes/general-hooks.php:
|
10980 |
msgid "Cover"
|
10981 |
msgstr ""
|
10982 |
|
@@ -10989,7 +10985,7 @@ msgid "Centered, with original size"
|
|
10989 |
msgstr ""
|
10990 |
|
10991 |
#: includes/elements/text.php:257 includes/elements/text.php:352
|
10992 |
-
#: includes/general-hooks.php:
|
10993 |
msgid "Fixed"
|
10994 |
msgstr ""
|
10995 |
|
@@ -11237,677 +11233,677 @@ msgstr ""
|
|
11237 |
msgid "Select Page"
|
11238 |
msgstr ""
|
11239 |
|
11240 |
-
#: includes/general-hooks.php:
|
11241 |
msgid "Auxin Icons"
|
11242 |
msgstr ""
|
11243 |
|
11244 |
-
#: includes/general-hooks.php:
|
11245 |
msgid "Icon library"
|
11246 |
msgstr ""
|
11247 |
|
11248 |
-
#: includes/general-hooks.php:
|
11249 |
msgid "Font Awesome"
|
11250 |
msgstr ""
|
11251 |
|
11252 |
-
#: includes/general-hooks.php:
|
11253 |
msgid "Open Iconic"
|
11254 |
msgstr ""
|
11255 |
|
11256 |
-
#: includes/general-hooks.php:
|
11257 |
msgid "Typicons"
|
11258 |
msgstr ""
|
11259 |
|
11260 |
-
#: includes/general-hooks.php:
|
11261 |
msgid "Entypo"
|
11262 |
msgstr ""
|
11263 |
|
11264 |
-
#: includes/general-hooks.php:
|
11265 |
msgid "Linecons"
|
11266 |
msgstr ""
|
11267 |
|
11268 |
-
#: includes/general-hooks.php:
|
11269 |
msgid "Auxin"
|
11270 |
msgstr ""
|
11271 |
|
11272 |
-
#: includes/general-hooks.php:
|
11273 |
msgid "Select icon library."
|
11274 |
msgstr ""
|
11275 |
|
11276 |
-
#: includes/general-hooks.php:
|
11277 |
-
#: includes/general-hooks.php:
|
11278 |
-
#: includes/general-hooks.php:
|
11279 |
msgid "Select icon from library."
|
11280 |
msgstr ""
|
11281 |
|
11282 |
-
#: includes/general-hooks.php:
|
11283 |
msgid "Custom color"
|
11284 |
msgstr ""
|
11285 |
|
11286 |
-
#: includes/general-hooks.php:
|
11287 |
msgid "Select custom icon color."
|
11288 |
msgstr ""
|
11289 |
|
11290 |
-
#: includes/general-hooks.php:
|
11291 |
msgid "Background shape"
|
11292 |
msgstr ""
|
11293 |
|
11294 |
-
#: includes/general-hooks.php:
|
11295 |
msgid "Rounded"
|
11296 |
msgstr ""
|
11297 |
|
11298 |
-
#: includes/general-hooks.php:
|
11299 |
msgid "Outline Rounded"
|
11300 |
msgstr ""
|
11301 |
|
11302 |
-
#: includes/general-hooks.php:
|
11303 |
msgid "Select background shape and style for icon."
|
11304 |
msgstr ""
|
11305 |
|
11306 |
-
#: includes/general-hooks.php:
|
11307 |
msgid "Custom background color"
|
11308 |
msgstr ""
|
11309 |
|
11310 |
-
#: includes/general-hooks.php:
|
11311 |
msgid "Select custom icon background color."
|
11312 |
msgstr ""
|
11313 |
|
11314 |
-
#: includes/general-hooks.php:
|
11315 |
msgid "Select icon alignment."
|
11316 |
msgstr ""
|
11317 |
|
11318 |
-
#: includes/general-hooks.php:
|
11319 |
msgid "Arrow"
|
11320 |
msgstr ""
|
11321 |
|
11322 |
-
#: includes/general-hooks.php:
|
11323 |
msgid "Back"
|
11324 |
msgstr ""
|
11325 |
|
11326 |
-
#: includes/general-hooks.php:
|
11327 |
msgid "Custom JS Code"
|
11328 |
msgstr ""
|
11329 |
|
11330 |
-
#: includes/general-hooks.php:
|
11331 |
msgid "Your Custom Javascript"
|
11332 |
msgstr ""
|
11333 |
|
11334 |
-
#: includes/general-hooks.php:
|
11335 |
msgid "Custom Javascript in Head"
|
11336 |
msgstr ""
|
11337 |
|
11338 |
-
#: includes/general-hooks.php:
|
11339 |
msgid "You can add your custom javascript code here.%s DO NOT use %s tag."
|
11340 |
msgstr ""
|
11341 |
|
11342 |
-
#: includes/general-hooks.php:
|
11343 |
msgid ""
|
11344 |
"In order to save your custom javascript code, you are expected to execute "
|
11345 |
"the code prior to saving."
|
11346 |
msgstr ""
|
11347 |
|
11348 |
-
#: includes/general-hooks.php:
|
11349 |
msgid "Execute"
|
11350 |
msgstr ""
|
11351 |
|
11352 |
-
#: includes/general-hooks.php:
|
11353 |
msgid "Custom Javascript in Footer"
|
11354 |
msgstr ""
|
11355 |
|
11356 |
-
#: includes/general-hooks.php:
|
11357 |
msgid "Google API Keys & SEO"
|
11358 |
msgstr ""
|
11359 |
|
11360 |
-
#: includes/general-hooks.php:
|
11361 |
msgid "Built in SEO"
|
11362 |
msgstr ""
|
11363 |
|
11364 |
-
#: includes/general-hooks.php:
|
11365 |
msgid ""
|
11366 |
"In case of using SEO plugins like \"WordPress SEO by Yoast\" or \"All in "
|
11367 |
"One SEO Pack\" you can disable built-in SEO for maximum compatibility."
|
11368 |
msgstr ""
|
11369 |
|
11370 |
-
#: includes/general-hooks.php:
|
11371 |
msgid "Google Analytics Code"
|
11372 |
msgstr ""
|
11373 |
|
11374 |
-
#: includes/general-hooks.php:
|
11375 |
msgid "You can %s set up Analytics tracking %s and add the tracking ID here."
|
11376 |
msgstr ""
|
11377 |
|
11378 |
-
#: includes/general-hooks.php:
|
11379 |
msgid "Google Maps API Key"
|
11380 |
msgstr ""
|
11381 |
|
11382 |
-
#: includes/general-hooks.php:
|
11383 |
msgid ""
|
11384 |
"In order to use google maps on your website, you have to %s create an api "
|
11385 |
"key %s and insert it in this field."
|
11386 |
msgstr ""
|
11387 |
|
11388 |
-
#: includes/general-hooks.php:
|
11389 |
msgid "Google Marketing Code"
|
11390 |
msgstr ""
|
11391 |
|
11392 |
-
#: includes/general-hooks.php:
|
11393 |
msgid "You can add your Google marketing code here.%s DO NOT use %s tag."
|
11394 |
msgstr ""
|
11395 |
|
11396 |
-
#: includes/general-hooks.php:
|
11397 |
msgid "Logo 2 (optional)"
|
11398 |
msgstr ""
|
11399 |
|
11400 |
-
#: includes/general-hooks.php:
|
11401 |
msgid "The secondary logo which appears when the header becomes sticky (optional)."
|
11402 |
msgstr ""
|
11403 |
|
11404 |
-
#: includes/general-hooks.php:
|
11405 |
msgid "Header Button 1"
|
11406 |
msgstr ""
|
11407 |
|
11408 |
-
#: includes/general-hooks.php:
|
11409 |
msgid "Setting for Header Button 1"
|
11410 |
msgstr ""
|
11411 |
|
11412 |
-
#: includes/general-hooks.php:
|
11413 |
msgid "Display Header Button 1"
|
11414 |
msgstr ""
|
11415 |
|
11416 |
-
#: includes/general-hooks.php:
|
11417 |
msgid "Enable this option to display a button in header."
|
11418 |
msgstr ""
|
11419 |
|
11420 |
-
#: includes/general-hooks.php:
|
11421 |
msgid "Hide Button 1 on Tablet"
|
11422 |
msgstr ""
|
11423 |
|
11424 |
-
#: includes/general-hooks.php:
|
11425 |
msgid "Enable it to hide header button 1 on tablet devices."
|
11426 |
msgstr ""
|
11427 |
|
11428 |
-
#: includes/general-hooks.php:
|
11429 |
msgid "Hide Button 1 on Mobile"
|
11430 |
msgstr ""
|
11431 |
|
11432 |
-
#: includes/general-hooks.php:
|
11433 |
msgid "Button Label"
|
11434 |
msgstr ""
|
11435 |
|
11436 |
-
#: includes/general-hooks.php:
|
11437 |
msgid "Specifies the label of button."
|
11438 |
msgstr ""
|
11439 |
|
11440 |
-
#: includes/general-hooks.php:
|
11441 |
msgid "Button Size"
|
11442 |
msgstr ""
|
11443 |
|
11444 |
-
#: includes/general-hooks.php:
|
11445 |
msgid "Button Shape"
|
11446 |
msgstr ""
|
11447 |
|
11448 |
-
#: includes/general-hooks.php:
|
11449 |
msgid "Sharp"
|
11450 |
msgstr ""
|
11451 |
|
11452 |
-
#: includes/general-hooks.php:
|
11453 |
msgid "Button Typography"
|
11454 |
msgstr ""
|
11455 |
|
11456 |
-
#: includes/general-hooks.php:
|
11457 |
msgid "Icon for Button"
|
11458 |
msgstr ""
|
11459 |
|
11460 |
-
#: includes/general-hooks.php:
|
11461 |
msgid "Icon Alignment"
|
11462 |
msgstr ""
|
11463 |
|
11464 |
-
#: includes/general-hooks.php:
|
11465 |
msgid "Color of Button"
|
11466 |
msgstr ""
|
11467 |
|
11468 |
-
#: includes/general-hooks.php:
|
11469 |
msgid "Color of Button on Sticky"
|
11470 |
msgstr ""
|
11471 |
|
11472 |
-
#: includes/general-hooks.php:
|
11473 |
msgid "Specifies the color of the button when the header sticky is enabled."
|
11474 |
msgstr ""
|
11475 |
|
11476 |
-
#: includes/general-hooks.php:
|
11477 |
msgid "Open Link in"
|
11478 |
msgstr ""
|
11479 |
|
11480 |
-
#: includes/general-hooks.php:
|
11481 |
msgid "Header Button 2"
|
11482 |
msgstr ""
|
11483 |
|
11484 |
-
#: includes/general-hooks.php:
|
11485 |
msgid "Setting for Header Button 2"
|
11486 |
msgstr ""
|
11487 |
|
11488 |
-
#: includes/general-hooks.php:
|
11489 |
msgid "Display Header Button 2"
|
11490 |
msgstr ""
|
11491 |
|
11492 |
-
#: includes/general-hooks.php:
|
11493 |
msgid "Hide Button 2 on Tablet"
|
11494 |
msgstr ""
|
11495 |
|
11496 |
-
#: includes/general-hooks.php:
|
11497 |
msgid "Enable it to hide header button 2 on tablet devices."
|
11498 |
msgstr ""
|
11499 |
|
11500 |
-
#: includes/general-hooks.php:
|
11501 |
msgid "Hide Button 2 on Mobile"
|
11502 |
msgstr ""
|
11503 |
|
11504 |
-
#: includes/general-hooks.php:
|
11505 |
msgid "Specifies maximum height of logo in footer."
|
11506 |
msgstr ""
|
11507 |
|
11508 |
-
#: includes/general-hooks.php:
|
11509 |
msgid "Login Page"
|
11510 |
msgstr ""
|
11511 |
|
11512 |
-
#: includes/general-hooks.php:
|
11513 |
msgid "Preview login page"
|
11514 |
msgstr ""
|
11515 |
|
11516 |
-
#: includes/general-hooks.php:
|
11517 |
msgid "Login Skin"
|
11518 |
msgstr ""
|
11519 |
|
11520 |
-
#: includes/general-hooks.php:
|
11521 |
msgid "Specifies a skin for login page of your website."
|
11522 |
msgstr ""
|
11523 |
|
11524 |
-
#: includes/general-hooks.php:
|
11525 |
msgid "Clean white"
|
11526 |
msgstr ""
|
11527 |
|
11528 |
-
#: includes/general-hooks.php:
|
11529 |
msgid "Simple white"
|
11530 |
msgstr ""
|
11531 |
|
11532 |
-
#: includes/general-hooks.php:
|
11533 |
msgid "Simple gray"
|
11534 |
msgstr ""
|
11535 |
|
11536 |
-
#: includes/general-hooks.php:
|
11537 |
msgid "Login message"
|
11538 |
msgstr ""
|
11539 |
|
11540 |
-
#: includes/general-hooks.php:
|
11541 |
msgid "Enter a text to display above the login form."
|
11542 |
msgstr ""
|
11543 |
|
11544 |
-
#: includes/general-hooks.php:
|
11545 |
msgid "Login Page Logo"
|
11546 |
msgstr ""
|
11547 |
|
11548 |
-
#: includes/general-hooks.php:
|
11549 |
msgid ""
|
11550 |
"Specifies a logo to display on login page.(width of logo image could be up "
|
11551 |
"to 320px)"
|
11552 |
msgstr ""
|
11553 |
|
11554 |
-
#: includes/general-hooks.php:
|
11555 |
msgid "Logo Width"
|
11556 |
msgstr ""
|
11557 |
|
11558 |
-
#: includes/general-hooks.php:
|
11559 |
msgid "Specifies width of logo image in pixel."
|
11560 |
msgstr ""
|
11561 |
|
11562 |
-
#: includes/general-hooks.php:
|
11563 |
msgid "Logo Height"
|
11564 |
msgstr ""
|
11565 |
|
11566 |
-
#: includes/general-hooks.php:
|
11567 |
msgid "Specifies height of logo image in pixel."
|
11568 |
msgstr ""
|
11569 |
|
11570 |
-
#: includes/general-hooks.php:
|
11571 |
msgid "Enable Background"
|
11572 |
msgstr ""
|
11573 |
|
11574 |
-
#: includes/general-hooks.php:
|
11575 |
msgid "Enable it to display custom background on login page."
|
11576 |
msgstr ""
|
11577 |
|
11578 |
-
#: includes/general-hooks.php:
|
11579 |
msgid "Specifies background color of website."
|
11580 |
msgstr ""
|
11581 |
|
11582 |
-
#: includes/general-hooks.php:
|
11583 |
msgid "You can upload custom image for background of login page"
|
11584 |
msgstr ""
|
11585 |
|
11586 |
-
#: includes/general-hooks.php:
|
11587 |
msgid "Background Size"
|
11588 |
msgstr ""
|
11589 |
|
11590 |
-
#: includes/general-hooks.php:
|
11591 |
msgid "Specifies background size on login page."
|
11592 |
msgstr ""
|
11593 |
|
11594 |
-
#: includes/general-hooks.php:
|
11595 |
msgid "Contain"
|
11596 |
msgstr ""
|
11597 |
|
11598 |
-
#: includes/general-hooks.php:
|
11599 |
msgid "Background Pattern"
|
11600 |
msgstr ""
|
11601 |
|
11602 |
-
#: includes/general-hooks.php:
|
11603 |
msgid ""
|
11604 |
"You can select one of these patterns as login background image. %s Some of "
|
11605 |
"these can be used as a pattern over your background image."
|
11606 |
msgstr ""
|
11607 |
|
11608 |
-
#: includes/general-hooks.php:
|
11609 |
msgid "Background Repeat"
|
11610 |
msgstr ""
|
11611 |
|
11612 |
-
#: includes/general-hooks.php:
|
11613 |
msgid "Specifies how background image repeats."
|
11614 |
msgstr ""
|
11615 |
|
11616 |
-
#: includes/general-hooks.php:
|
11617 |
msgid "No repeat"
|
11618 |
msgstr ""
|
11619 |
|
11620 |
-
#: includes/general-hooks.php:
|
11621 |
msgid "Repeat horizontally and vertically"
|
11622 |
msgstr ""
|
11623 |
|
11624 |
-
#: includes/general-hooks.php:
|
11625 |
msgid "Repeat horizontally"
|
11626 |
msgstr ""
|
11627 |
|
11628 |
-
#: includes/general-hooks.php:
|
11629 |
msgid "Repeat vertically"
|
11630 |
msgstr ""
|
11631 |
|
11632 |
-
#: includes/general-hooks.php:
|
11633 |
msgid "Background Position"
|
11634 |
msgstr ""
|
11635 |
|
11636 |
-
#: includes/general-hooks.php:
|
11637 |
msgid "Specifies background image position."
|
11638 |
msgstr ""
|
11639 |
|
11640 |
-
#: includes/general-hooks.php:
|
11641 |
msgid "Left top"
|
11642 |
msgstr ""
|
11643 |
|
11644 |
-
#: includes/general-hooks.php:
|
11645 |
msgid "Center top"
|
11646 |
msgstr ""
|
11647 |
|
11648 |
-
#: includes/general-hooks.php:
|
11649 |
msgid "Right top"
|
11650 |
msgstr ""
|
11651 |
|
11652 |
-
#: includes/general-hooks.php:
|
11653 |
msgid "Left center"
|
11654 |
msgstr ""
|
11655 |
|
11656 |
-
#: includes/general-hooks.php:
|
11657 |
msgid "Center center"
|
11658 |
msgstr ""
|
11659 |
|
11660 |
-
#: includes/general-hooks.php:
|
11661 |
msgid "Right center"
|
11662 |
msgstr ""
|
11663 |
|
11664 |
-
#: includes/general-hooks.php:
|
11665 |
msgid "Left bottom"
|
11666 |
msgstr ""
|
11667 |
|
11668 |
-
#: includes/general-hooks.php:
|
11669 |
msgid "Center bottom"
|
11670 |
msgstr ""
|
11671 |
|
11672 |
-
#: includes/general-hooks.php:
|
11673 |
msgid "Right bottom"
|
11674 |
msgstr ""
|
11675 |
|
11676 |
-
#: includes/general-hooks.php:
|
11677 |
msgid "Background Attachment"
|
11678 |
msgstr ""
|
11679 |
|
11680 |
-
#: includes/general-hooks.php:
|
11681 |
msgid ""
|
11682 |
"Specifies whether the background is fixed or scrollable as user scrolls the "
|
11683 |
"page."
|
11684 |
msgstr ""
|
11685 |
|
11686 |
-
#: includes/general-hooks.php:
|
11687 |
msgid "Scroll"
|
11688 |
msgstr ""
|
11689 |
|
11690 |
-
#: includes/general-hooks.php:
|
11691 |
msgid "Custom CSS class name"
|
11692 |
msgstr ""
|
11693 |
|
11694 |
-
#: includes/general-hooks.php:
|
11695 |
msgid ""
|
11696 |
"In this field you can define custom CSS class name for login page.\n"
|
11697 |
" This class name will be added to body classes in "
|
11698 |
"login page and is useful for advance custom styling purposes."
|
11699 |
msgstr ""
|
11700 |
|
11701 |
-
#: includes/general-hooks.php:
|
11702 |
msgid "404 Page Options"
|
11703 |
msgstr ""
|
11704 |
|
11705 |
-
#: includes/general-hooks.php:
|
11706 |
msgid "Specifies a page to display on 404."
|
11707 |
msgstr ""
|
11708 |
|
11709 |
-
#: includes/general-hooks.php:
|
11710 |
msgid "Maintenance or Comingsoon Page"
|
11711 |
msgstr ""
|
11712 |
|
11713 |
-
#: includes/general-hooks.php:
|
11714 |
msgid "Maintenance or Comingsoon Page Options"
|
11715 |
msgstr ""
|
11716 |
|
11717 |
-
#: includes/general-hooks.php:
|
11718 |
msgid "Enable Maintenance or Comingsoon Mode"
|
11719 |
msgstr ""
|
11720 |
|
11721 |
-
#: includes/general-hooks.php:
|
11722 |
msgid "With this option you can manually enable Maintenance or Comingsoon mode"
|
11723 |
msgstr ""
|
11724 |
|
11725 |
-
#: includes/general-hooks.php:
|
11726 |
msgid ""
|
11727 |
"In This Case You Can Set Your Specifc Page for Maintenance or Comingsoon "
|
11728 |
"Mode"
|
11729 |
msgstr ""
|
11730 |
|
11731 |
-
#: includes/general-hooks.php:
|
11732 |
msgid "Search Results"
|
11733 |
msgstr ""
|
11734 |
|
11735 |
-
#: includes/general-hooks.php:
|
11736 |
msgid "Search Results Options"
|
11737 |
msgstr ""
|
11738 |
|
11739 |
-
#: includes/general-hooks.php:
|
11740 |
msgid "Exclude Posts Types"
|
11741 |
msgstr ""
|
11742 |
|
11743 |
-
#: includes/general-hooks.php:
|
11744 |
msgid "The post types which should be excluded from search results."
|
11745 |
msgstr ""
|
11746 |
|
11747 |
-
#: includes/general-hooks.php:
|
11748 |
msgid "Exclude Posts Without Featured Image"
|
11749 |
msgstr ""
|
11750 |
|
11751 |
-
#: includes/general-hooks.php:
|
11752 |
msgid "Exclude posts without featured image in search results."
|
11753 |
msgstr ""
|
11754 |
|
11755 |
-
#: includes/general-hooks.php:
|
11756 |
msgid ""
|
11757 |
"If you intend to include additional posts, you should specify the posts "
|
11758 |
"here.<br>You have to insert the Post IDs that are separated by camma (eg. "
|
11759 |
"53,34,87,25)"
|
11760 |
msgstr ""
|
11761 |
|
11762 |
-
#: includes/general-hooks.php:
|
11763 |
msgid "Import/Export"
|
11764 |
msgstr ""
|
11765 |
|
11766 |
-
#: includes/general-hooks.php:
|
11767 |
msgid "Import or Export options"
|
11768 |
msgstr ""
|
11769 |
|
11770 |
-
#: includes/general-hooks.php:
|
11771 |
msgid "Export Data"
|
11772 |
msgstr ""
|
11773 |
|
11774 |
-
#: includes/general-hooks.php:
|
11775 |
msgid "Your theme options code which you can import later."
|
11776 |
msgstr ""
|
11777 |
|
11778 |
-
#: includes/general-hooks.php:
|
11779 |
msgid "Import Data"
|
11780 |
msgstr ""
|
11781 |
|
11782 |
-
#: includes/general-hooks.php:
|
11783 |
msgid "Paste the exported theme options code to import into theme."
|
11784 |
msgstr ""
|
11785 |
|
11786 |
-
#: includes/general-hooks.php:
|
11787 |
msgid "White Label"
|
11788 |
msgstr ""
|
11789 |
|
11790 |
-
#: includes/general-hooks.php:
|
11791 |
msgid "White Label Settings"
|
11792 |
msgstr ""
|
11793 |
|
11794 |
-
#: includes/general-hooks.php:
|
11795 |
msgid "Change PHLOX labels."
|
11796 |
msgstr ""
|
11797 |
|
11798 |
-
#: includes/general-hooks.php:
|
11799 |
msgid "Theme Name"
|
11800 |
msgstr ""
|
11801 |
|
11802 |
-
#: includes/general-hooks.php:
|
11803 |
msgid "Theme Author Name"
|
11804 |
msgstr ""
|
11805 |
|
11806 |
-
#: includes/general-hooks.php:
|
11807 |
msgid "Theme Author URL"
|
11808 |
msgstr ""
|
11809 |
|
11810 |
-
#: includes/general-hooks.php:
|
11811 |
msgid "Theme Description"
|
11812 |
msgstr ""
|
11813 |
|
11814 |
-
#: includes/general-hooks.php:
|
11815 |
msgid "Theme Screenshot (1200x900)"
|
11816 |
msgstr ""
|
11817 |
|
11818 |
-
#: includes/general-hooks.php:
|
11819 |
msgid "Displays"
|
11820 |
msgstr ""
|
11821 |
|
11822 |
-
#: includes/general-hooks.php:
|
11823 |
msgid "Change PHLOX admin views."
|
11824 |
msgstr ""
|
11825 |
|
11826 |
-
#: includes/general-hooks.php:
|
11827 |
msgid "Hide Notifications"
|
11828 |
msgstr ""
|
11829 |
|
11830 |
-
#: includes/general-hooks.php:
|
11831 |
msgid "Hide Theme Badge"
|
11832 |
msgstr ""
|
11833 |
|
11834 |
-
#: includes/general-hooks.php:
|
11835 |
msgid "Hide Phlox Menu"
|
11836 |
msgstr ""
|
11837 |
|
11838 |
-
#: includes/general-hooks.php:
|
11839 |
msgid "Hide Dashboard Section"
|
11840 |
msgstr ""
|
11841 |
|
11842 |
-
#: includes/general-hooks.php:
|
11843 |
msgid "Hide Customization Section"
|
11844 |
msgstr ""
|
11845 |
|
11846 |
-
#: includes/general-hooks.php:
|
11847 |
msgid "Hide Demo Importer Section"
|
11848 |
msgstr ""
|
11849 |
|
11850 |
-
#: includes/general-hooks.php:
|
11851 |
msgid "Hide Template Kits Section"
|
11852 |
msgstr ""
|
11853 |
|
11854 |
-
#: includes/general-hooks.php:
|
11855 |
msgid "Hide Plugins Section"
|
11856 |
msgstr ""
|
11857 |
|
11858 |
-
#: includes/general-hooks.php:
|
11859 |
msgid "Hide Tutorials Section"
|
11860 |
msgstr ""
|
11861 |
|
11862 |
-
#: includes/general-hooks.php:
|
11863 |
msgid "Hide Feedback Section"
|
11864 |
msgstr ""
|
11865 |
|
11866 |
-
#: includes/general-hooks.php:
|
11867 |
msgid "Twitter"
|
11868 |
msgstr ""
|
11869 |
|
11870 |
-
#: includes/general-hooks.php:
|
11871 |
msgid "Facebook"
|
11872 |
msgstr ""
|
11873 |
|
11874 |
-
#: includes/general-hooks.php:
|
11875 |
msgid "Google Plus"
|
11876 |
msgstr ""
|
11877 |
|
11878 |
-
#: includes/general-hooks.php:
|
11879 |
msgid "Flickr"
|
11880 |
msgstr ""
|
11881 |
|
11882 |
-
#: includes/general-hooks.php:
|
11883 |
msgid "Delicious"
|
11884 |
msgstr ""
|
11885 |
|
11886 |
-
#: includes/general-hooks.php:
|
11887 |
msgid "Pinterest"
|
11888 |
msgstr ""
|
11889 |
|
11890 |
-
#: includes/general-hooks.php:
|
11891 |
msgid "GitHub"
|
11892 |
msgstr ""
|
11893 |
|
11894 |
-
#: includes/general-hooks.php:
|
11895 |
msgid "Page Options"
|
11896 |
msgstr ""
|
11897 |
|
11898 |
-
#: includes/general-hooks.php:
|
11899 |
msgid "Post Options"
|
11900 |
msgstr ""
|
11901 |
|
11902 |
-
#: includes/general-hooks.php:
|
11903 |
msgid "Page %s"
|
11904 |
msgstr ""
|
11905 |
|
11906 |
-
#: includes/general-hooks.php:
|
11907 |
msgid "current "
|
11908 |
msgstr ""
|
11909 |
|
11910 |
-
#: includes/general-hooks.php:
|
11911 |
msgid "Edit Header & Footer"
|
11912 |
msgstr ""
|
11913 |
|
@@ -12138,13 +12134,13 @@ msgctxt "post format archive title"
|
|
12138 |
msgid "Chats"
|
12139 |
msgstr ""
|
12140 |
|
12141 |
-
#: includes/general-hooks.php:
|
12142 |
#. translators: playlist item title
|
12143 |
msgctxt "playlist item title"
|
12144 |
msgid "“%s”"
|
12145 |
msgstr ""
|
12146 |
|
12147 |
-
#: includes/general-hooks.php:
|
12148 |
#. translators: playlist item title
|
12149 |
msgctxt "playlist item title"
|
12150 |
msgid "%s"
|
1 |
# Averta Copyright (c) {2021}
|
2 |
msgid ""
|
3 |
msgstr ""
|
4 |
+
"Project-Id-Version: Phlox Core Elements 2.7.12\n"
|
5 |
"Report-Msgid-Bugs-To: http://averta.net/phlox/wordpress-theme/\n"
|
6 |
+
"POT-Creation-Date: 2021-04-24 06:55:12+00:00\n"
|
7 |
"MIME-Version: 1.0\n"
|
8 |
"Content-Type: text/plain; charset=utf-8\n"
|
9 |
"Content-Transfer-Encoding: 8bit\n"
|
204 |
msgid "Please make sure the image aspect ratio for all image sizes are the same."
|
205 |
msgstr ""
|
206 |
|
207 |
+
#: admin/includes/admin-hooks.php:686 includes/general-hooks.php:1387
|
208 |
msgid "Footer Brand Image"
|
209 |
msgstr ""
|
210 |
|
211 |
+
#: admin/includes/admin-hooks.php:687 includes/general-hooks.php:1388
|
212 |
msgid "This image appears as site brand image on footer section."
|
213 |
msgstr ""
|
214 |
|
405 |
|
406 |
#: admin/includes/compatibility/siteorigin/fields/iconpicker.class.php:13
|
407 |
#: includes/classes/class-auxin-widget.php:126
|
408 |
+
#: includes/classes/class-auxin-widget.php:151 includes/general-hooks.php:51
|
409 |
msgid "Choose .."
|
410 |
msgstr ""
|
411 |
|
785 |
#: admin/includes/metaboxes/metabox-fields-general-header-template.php:71
|
786 |
#: admin/includes/metaboxes/metabox-fields-general-header.php:27
|
787 |
#: admin/includes/metaboxes/metabox-fields-general-top-header.php:27
|
788 |
+
#: includes/general-hooks.php:586 includes/general-hooks.php:991
|
789 |
msgid "Disable it to replace header section with an Elementor template"
|
790 |
msgstr ""
|
791 |
|
902 |
#: admin/includes/metaboxes/metabox-fields-general-header-template.php:70
|
903 |
#: admin/includes/metaboxes/metabox-fields-general-header.php:26
|
904 |
#: admin/includes/metaboxes/metabox-fields-general-top-header.php:26
|
905 |
+
#: includes/general-hooks.php:585 includes/general-hooks.php:990
|
906 |
msgid "Use Legacy Header"
|
907 |
msgstr ""
|
908 |
|
1015 |
|
1016 |
#: admin/includes/metaboxes/metabox-fields-general-header.php:202
|
1017 |
#: includes/elements/staff.php:207 includes/elements/text.php:105
|
1018 |
+
#: includes/general-hooks.php:3021
|
1019 |
msgid "Boxed"
|
1020 |
msgstr ""
|
1021 |
|
1221 |
#: includes/elements/recent-posts-grid-carousel.php:663
|
1222 |
#: includes/elements/recent-posts-timeline.php:272
|
1223 |
#: includes/elements/staff.php:280 includes/elements/text.php:129
|
1224 |
+
#: includes/elements/text.php:157 includes/general-hooks.php:382
|
1225 |
msgid "Center"
|
1226 |
msgstr ""
|
1227 |
|
1267 |
#: includes/elements/staff.php:238 includes/elements/staff.php:276
|
1268 |
#: includes/elements/text.php:125 includes/elements/text.php:153
|
1269 |
#: includes/elements/text.php:620 includes/elements/text.php:807
|
1270 |
+
#: includes/general-hooks.php:380 includes/general-hooks.php:844
|
1271 |
+
#: includes/general-hooks.php:1249
|
1272 |
msgid "Left"
|
1273 |
msgstr ""
|
1274 |
|
1313 |
#: includes/elements/divider.php:90 includes/elements/socials-list.php:63
|
1314 |
#: includes/elements/socials-list.php:201 includes/elements/staff.php:463
|
1315 |
#: includes/elements/text.php:469 includes/elements/text.php:677
|
1316 |
+
#: includes/general-hooks.php:694 includes/general-hooks.php:1099
|
1317 |
msgid "Small"
|
1318 |
msgstr ""
|
1319 |
|
1329 |
#: includes/elements/socials-list.php:64 includes/elements/socials-list.php:202
|
1330 |
#: includes/elements/staff.php:111 includes/elements/staff.php:464
|
1331 |
#: includes/elements/text.php:430 includes/elements/text.php:470
|
1332 |
+
#: includes/elements/text.php:676 includes/general-hooks.php:693
|
1333 |
+
#: includes/general-hooks.php:1098
|
1334 |
msgid "Medium"
|
1335 |
msgstr ""
|
1336 |
|
1345 |
#: includes/elements/socials-list.php:203 includes/elements/staff.php:110
|
1346 |
#: includes/elements/staff.php:465 includes/elements/text.php:429
|
1347 |
#: includes/elements/text.php:471 includes/elements/text.php:675
|
1348 |
+
#: includes/general-hooks.php:692 includes/general-hooks.php:1097
|
1349 |
msgid "Large"
|
1350 |
msgstr ""
|
1351 |
|
1412 |
#: includes/elements/gallery.php:120 includes/elements/quote.php:109
|
1413 |
#: includes/elements/recent-posts-tiles-carousel.php:298
|
1414 |
#: includes/elements/recent-posts-tiles.php:328 includes/elements/text.php:180
|
1415 |
+
#: includes/elements/text.php:806 includes/general-hooks.php:840
|
1416 |
+
#: includes/general-hooks.php:1245 includes/general-hooks.php:1466
|
1417 |
msgid "Default"
|
1418 |
msgstr ""
|
1419 |
|
1776 |
"Animoto, Wistia link or iFrame code."
|
1777 |
msgstr ""
|
1778 |
|
1779 |
+
#: auxin-elements.php:55 includes/classes/class-auxin-welcome-sections.php:531
|
|
|
|
|
|
|
|
|
1780 |
msgid "Phlox Pro"
|
1781 |
msgstr ""
|
1782 |
|
1783 |
+
#: auxin-elements.php:63
|
1784 |
msgid "Phlox"
|
1785 |
msgstr ""
|
1786 |
|
2781 |
#: includes/elements/recent-posts-masonry.php:16
|
2782 |
#: includes/elements/recent-posts-tiles.php:16
|
2783 |
#: includes/elements/recent-posts-timeline.php:16
|
2784 |
+
#: includes/elements/recent-posts-widget.php:16 includes/general-hooks.php:167
|
2785 |
msgid "All Categories"
|
2786 |
msgstr ""
|
2787 |
|
2798 |
msgstr ""
|
2799 |
|
2800 |
#: includes/classes/class-auxin-widget.php:387
|
2801 |
+
#: includes/classes/class-auxin-widget.php:388 includes/general-hooks.php:130
|
2802 |
+
#: includes/general-hooks.php:131
|
2803 |
msgid "Add Video"
|
2804 |
msgstr ""
|
2805 |
|
2806 |
+
#: includes/classes/class-auxin-widget.php:389 includes/general-hooks.php:132
|
2807 |
msgid "Select Video"
|
2808 |
msgstr ""
|
2809 |
|
2810 |
#: includes/classes/class-auxin-widget.php:411
|
2811 |
+
#: includes/classes/class-auxin-widget.php:412 includes/general-hooks.php:106
|
2812 |
+
#: includes/general-hooks.php:107
|
2813 |
msgid "Add Audio"
|
2814 |
msgstr ""
|
2815 |
|
2816 |
+
#: includes/classes/class-auxin-widget.php:413 includes/general-hooks.php:108
|
2817 |
msgid "Select Audio"
|
2818 |
msgstr ""
|
2819 |
|
3060 |
#: includes/elements/staff.php:230 includes/elements/staff.php:284
|
3061 |
#: includes/elements/text.php:133 includes/elements/text.php:161
|
3062 |
#: includes/elements/text.php:624 includes/elements/text.php:808
|
3063 |
+
#: includes/general-hooks.php:381 includes/general-hooks.php:848
|
3064 |
+
#: includes/general-hooks.php:1253
|
3065 |
msgid "Right"
|
3066 |
msgstr ""
|
3067 |
|
3332 |
#: includes/elements/recent-posts-tiles.php:154
|
3333 |
#: includes/elements/recent-posts-timeline.php:149
|
3334 |
#: includes/elements/testimonial.php:132 includes/elements/text.php:903
|
3335 |
+
#: includes/general-hooks.php:353 includes/general-hooks.php:1617
|
3336 |
#: public/templates/vcomposer/auxin_vc_extendes.php:63
|
3337 |
msgid "None"
|
3338 |
msgstr ""
|
4121 |
msgstr ""
|
4122 |
|
4123 |
#: includes/elementor/modules/settings/general/manager.php:47
|
4124 |
+
#: includes/general-hooks.php:1414
|
4125 |
msgid "Footer Brand Height"
|
4126 |
msgstr ""
|
4127 |
|
4143 |
msgstr ""
|
4144 |
|
4145 |
#: includes/elementor/modules/theme-builder/module.php:131
|
4146 |
+
#: includes/general-hooks.php:1764 includes/general-hooks.php:1770
|
4147 |
msgid "404 Page"
|
4148 |
msgstr ""
|
4149 |
|
4403 |
#: includes/elementor/widgets/theme-elements/modern-search.php:353
|
4404 |
#: includes/elementor/widgets/theme-elements/modern-search.php:444
|
4405 |
#: includes/elements/button.php:118 includes/elements/text.php:738
|
4406 |
+
#: includes/general-hooks.php:759 includes/general-hooks.php:1164
|
4407 |
msgid "Normal"
|
4408 |
msgstr ""
|
4409 |
|
5112 |
#: includes/elements/text.php:764 includes/elements/text.php:780
|
5113 |
#: includes/elements/text.php:796 includes/elements/text.php:821
|
5114 |
#: includes/elements/text.php:839 includes/elements/text.php:856
|
5115 |
+
#: includes/elements/text.php:877 includes/general-hooks.php:667
|
5116 |
+
#: includes/general-hooks.php:1072
|
5117 |
msgid "Button"
|
5118 |
msgstr ""
|
5119 |
|
5149 |
#: includes/elementor/widgets/button.php:160
|
5150 |
#: includes/elementor/widgets/modern-button.php:308
|
5151 |
#: includes/elementor/widgets/text.php:1033 includes/elements/button.php:63
|
5152 |
+
#: includes/elements/text.php:674 includes/general-hooks.php:691
|
5153 |
+
#: includes/general-hooks.php:1096
|
5154 |
msgid "Exlarge"
|
5155 |
msgstr ""
|
5156 |
|
5159 |
#: includes/elementor/widgets/modern-button.php:312
|
5160 |
#: includes/elementor/widgets/text.php:1037 includes/elements/button.php:67
|
5161 |
#: includes/elements/divider.php:91 includes/elements/text.php:678
|
5162 |
+
#: includes/general-hooks.php:695 includes/general-hooks.php:1100
|
5163 |
msgid "Tiny"
|
5164 |
msgstr ""
|
5165 |
|
5181 |
#: includes/elementor/widgets/button.php:192
|
5182 |
#: includes/elementor/widgets/modern-button.php:295
|
5183 |
#: includes/elementor/widgets/text.php:1362 includes/elements/button.php:95
|
5184 |
+
#: includes/elements/text.php:712 includes/general-hooks.php:726
|
5185 |
+
#: includes/general-hooks.php:1131
|
5186 |
msgid "Round"
|
5187 |
msgstr ""
|
5188 |
|
5189 |
#: includes/elementor/widgets/button.php:196
|
5190 |
#: includes/elementor/widgets/modern-button.php:296
|
5191 |
#: includes/elementor/widgets/text.php:1366 includes/elements/button.php:99
|
5192 |
+
#: includes/elements/text.php:716 includes/general-hooks.php:730
|
5193 |
+
#: includes/general-hooks.php:1135
|
5194 |
msgid "Curve"
|
5195 |
msgstr ""
|
5196 |
|
5201 |
|
5202 |
#: includes/elementor/widgets/button.php:215
|
5203 |
#: includes/elementor/widgets/text.php:1386 includes/elements/button.php:122
|
5204 |
+
#: includes/elements/text.php:742 includes/general-hooks.php:763
|
5205 |
+
#: includes/general-hooks.php:1168
|
5206 |
msgid "3D"
|
5207 |
msgstr ""
|
5208 |
|
5209 |
#: includes/elementor/widgets/button.php:219
|
5210 |
#: includes/elementor/widgets/modern-button.php:282
|
5211 |
#: includes/elementor/widgets/text.php:1390 includes/elements/button.php:126
|
5212 |
+
#: includes/elements/text.php:746 includes/general-hooks.php:767
|
5213 |
+
#: includes/general-hooks.php:1172
|
5214 |
msgid "Outline"
|
5215 |
msgstr ""
|
5216 |
|
5284 |
#: includes/elementor/widgets/theme-elements/search.php:178
|
5285 |
#: includes/elementor/widgets/theme-elements/shopping-cart.php:108
|
5286 |
#: includes/elements/custom-list.php:74 includes/elements/text.php:374
|
5287 |
+
#: includes/elements/text.php:386 includes/general-hooks.php:241
|
5288 |
+
#: includes/general-hooks.php:259 includes/general-hooks.php:276
|
5289 |
+
#: includes/general-hooks.php:292 includes/general-hooks.php:308
|
5290 |
+
#: includes/general-hooks.php:323
|
5291 |
msgid "Icon"
|
5292 |
msgstr ""
|
5293 |
|
5299 |
|
5300 |
#: includes/elementor/widgets/button.php:373
|
5301 |
#: includes/elementor/widgets/text.php:1135 includes/elements/button.php:171
|
5302 |
+
#: includes/elements/text.php:800 includes/general-hooks.php:377
|
5303 |
msgid "Icon alignment"
|
5304 |
msgstr ""
|
5305 |
|
5306 |
#: includes/elementor/widgets/button.php:380
|
5307 |
#: includes/elementor/widgets/modern-button.php:804
|
5308 |
#: includes/elementor/widgets/text.php:1142 includes/elements/button.php:191
|
5309 |
+
#: includes/elements/text.php:809 includes/general-hooks.php:852
|
5310 |
+
#: includes/general-hooks.php:1257
|
5311 |
msgid "Over"
|
5312 |
msgstr ""
|
5313 |
|
5314 |
#: includes/elementor/widgets/button.php:381
|
5315 |
#: includes/elementor/widgets/text.php:1143 includes/elements/button.php:195
|
5316 |
+
#: includes/elements/text.php:810 includes/general-hooks.php:856
|
5317 |
+
#: includes/general-hooks.php:1261
|
5318 |
msgid "Animate from Left"
|
5319 |
msgstr ""
|
5320 |
|
5785 |
#: includes/elementor/widgets/theme-elements/search.php:201
|
5786 |
#: includes/elementor/widgets/theme-elements/search.php:404
|
5787 |
#: includes/elementor/widgets/touch-slider.php:303
|
5788 |
+
#: includes/general-hooks.php:1550
|
5789 |
msgid "Background Color"
|
5790 |
msgstr ""
|
5791 |
|
5959 |
#: includes/elements/about-widget.php:121 includes/elements/divider.php:69
|
5960 |
#: includes/elements/dropcap.php:72 includes/elements/staff.php:168
|
5961 |
#: includes/elements/text.php:539 includes/elements/text.php:581
|
5962 |
+
#: includes/general-hooks.php:354
|
5963 |
msgid "Circle"
|
5964 |
msgstr ""
|
5965 |
|
6361 |
|
6362 |
#: includes/elementor/widgets/icon.php:141
|
6363 |
#: includes/elements/about-widget.php:122 includes/elements/dropcap.php:60
|
6364 |
+
#: includes/general-hooks.php:355
|
6365 |
msgid "Square"
|
6366 |
msgstr ""
|
6367 |
|
6484 |
|
6485 |
#: includes/elementor/widgets/image.php:278
|
6486 |
#: includes/elementor/widgets/theme-elements/shopping-cart.php:101
|
6487 |
+
#: includes/general-hooks.php:1912
|
6488 |
msgid "Settings"
|
6489 |
msgstr ""
|
6490 |
|
7591 |
#: includes/elements/recent-posts-tiles-carousel.php:199
|
7592 |
#: includes/elements/recent-posts-tiles.php:229
|
7593 |
#: includes/elements/recent-posts-timeline.php:224
|
7594 |
+
#: includes/general-hooks.php:1852
|
7595 |
msgid "Include posts"
|
7596 |
msgstr ""
|
7597 |
|
8445 |
msgid "Shape Style"
|
8446 |
msgstr ""
|
8447 |
|
8448 |
+
#: includes/elementor/widgets/text.php:1377 includes/general-hooks.php:752
|
8449 |
+
#: includes/general-hooks.php:1157
|
8450 |
msgid "Button Style"
|
8451 |
msgstr ""
|
8452 |
|
9158 |
msgid "The name which appears in about widget."
|
9159 |
msgstr ""
|
9160 |
|
9161 |
+
#: includes/elements/about-widget.php:72 includes/general-hooks.php:2383
|
9162 |
msgid "Skills"
|
9163 |
msgstr ""
|
9164 |
|
9334 |
msgid "Darken label of button."
|
9335 |
msgstr ""
|
9336 |
|
9337 |
+
#: includes/elements/button.php:199 includes/general-hooks.php:860
|
9338 |
+
#: includes/general-hooks.php:1265
|
9339 |
msgid "Animate from Righ"
|
9340 |
msgstr ""
|
9341 |
|
9342 |
+
#: includes/elements/button.php:227 includes/general-hooks.php:928
|
9343 |
+
#: includes/general-hooks.php:1333
|
9344 |
msgid "Button Link"
|
9345 |
msgstr ""
|
9346 |
|
9349 |
msgstr ""
|
9350 |
|
9351 |
#: includes/elements/button.php:247 includes/elements/text.php:866
|
9352 |
+
#: includes/general-hooks.php:957 includes/general-hooks.php:1362
|
9353 |
msgid "Current page"
|
9354 |
msgstr ""
|
9355 |
|
9356 |
#: includes/elements/button.php:248 includes/elements/text.php:867
|
9357 |
+
#: includes/general-hooks.php:958 includes/general-hooks.php:1363
|
9358 |
msgid "New page"
|
9359 |
msgstr ""
|
9360 |
|
9585 |
msgid "Dropcap style"
|
9586 |
msgstr ""
|
9587 |
|
9588 |
+
#: includes/elements/dropcap.php:64 includes/general-hooks.php:358
|
9589 |
msgid "Outline Square"
|
9590 |
msgstr ""
|
9591 |
|
9593 |
msgid "Round Square"
|
9594 |
msgstr ""
|
9595 |
|
9596 |
+
#: includes/elements/dropcap.php:76 includes/general-hooks.php:357
|
9597 |
msgid "Outline Circle"
|
9598 |
msgstr ""
|
9599 |
|
10150 |
msgid "Resolution/size of the photos. "
|
10151 |
msgstr ""
|
10152 |
|
10153 |
+
#: includes/elements/instagram-feed.php:96 includes/general-hooks.php:1590
|
10154 |
msgid "Auto"
|
10155 |
msgstr ""
|
10156 |
|
10955 |
msgstr ""
|
10956 |
|
10957 |
#: includes/elements/text.php:201 includes/elements/text.php:296
|
10958 |
+
#: includes/general-hooks.php:1567
|
10959 |
msgid "Background Image"
|
10960 |
msgstr ""
|
10961 |
|
10972 |
msgstr ""
|
10973 |
|
10974 |
#: includes/elements/text.php:254 includes/elements/text.php:349
|
10975 |
+
#: includes/general-hooks.php:1598
|
10976 |
msgid "Cover"
|
10977 |
msgstr ""
|
10978 |
|
10985 |
msgstr ""
|
10986 |
|
10987 |
#: includes/elements/text.php:257 includes/elements/text.php:352
|
10988 |
+
#: includes/general-hooks.php:1731
|
10989 |
msgid "Fixed"
|
10990 |
msgstr ""
|
10991 |
|
11233 |
msgid "Select Page"
|
11234 |
msgstr ""
|
11235 |
|
11236 |
+
#: includes/general-hooks.php:221
|
11237 |
msgid "Auxin Icons"
|
11238 |
msgstr ""
|
11239 |
|
11240 |
+
#: includes/general-hooks.php:226
|
11241 |
msgid "Icon library"
|
11242 |
msgstr ""
|
11243 |
|
11244 |
+
#: includes/general-hooks.php:228
|
11245 |
msgid "Font Awesome"
|
11246 |
msgstr ""
|
11247 |
|
11248 |
+
#: includes/general-hooks.php:229
|
11249 |
msgid "Open Iconic"
|
11250 |
msgstr ""
|
11251 |
|
11252 |
+
#: includes/general-hooks.php:230
|
11253 |
msgid "Typicons"
|
11254 |
msgstr ""
|
11255 |
|
11256 |
+
#: includes/general-hooks.php:231
|
11257 |
msgid "Entypo"
|
11258 |
msgstr ""
|
11259 |
|
11260 |
+
#: includes/general-hooks.php:232
|
11261 |
msgid "Linecons"
|
11262 |
msgstr ""
|
11263 |
|
11264 |
+
#: includes/general-hooks.php:233
|
11265 |
msgid "Auxin"
|
11266 |
msgstr ""
|
11267 |
|
11268 |
+
#: includes/general-hooks.php:237
|
11269 |
msgid "Select icon library."
|
11270 |
msgstr ""
|
11271 |
|
11272 |
+
#: includes/general-hooks.php:255 includes/general-hooks.php:272
|
11273 |
+
#: includes/general-hooks.php:288 includes/general-hooks.php:304
|
11274 |
+
#: includes/general-hooks.php:335
|
11275 |
msgid "Select icon from library."
|
11276 |
msgstr ""
|
11277 |
|
11278 |
+
#: includes/general-hooks.php:340
|
11279 |
msgid "Custom color"
|
11280 |
msgstr ""
|
11281 |
|
11282 |
+
#: includes/general-hooks.php:342
|
11283 |
msgid "Select custom icon color."
|
11284 |
msgstr ""
|
11285 |
|
11286 |
+
#: includes/general-hooks.php:350
|
11287 |
msgid "Background shape"
|
11288 |
msgstr ""
|
11289 |
|
11290 |
+
#: includes/general-hooks.php:356
|
11291 |
msgid "Rounded"
|
11292 |
msgstr ""
|
11293 |
|
11294 |
+
#: includes/general-hooks.php:359
|
11295 |
msgid "Outline Rounded"
|
11296 |
msgstr ""
|
11297 |
|
11298 |
+
#: includes/general-hooks.php:361
|
11299 |
msgid "Select background shape and style for icon."
|
11300 |
msgstr ""
|
11301 |
|
11302 |
+
#: includes/general-hooks.php:366
|
11303 |
msgid "Custom background color"
|
11304 |
msgstr ""
|
11305 |
|
11306 |
+
#: includes/general-hooks.php:368
|
11307 |
msgid "Select custom icon background color."
|
11308 |
msgstr ""
|
11309 |
|
11310 |
+
#: includes/general-hooks.php:384
|
11311 |
msgid "Select icon alignment."
|
11312 |
msgstr ""
|
11313 |
|
11314 |
+
#: includes/general-hooks.php:400 includes/general-hooks.php:401
|
11315 |
msgid "Arrow"
|
11316 |
msgstr ""
|
11317 |
|
11318 |
+
#: includes/general-hooks.php:402
|
11319 |
msgid "Back"
|
11320 |
msgstr ""
|
11321 |
|
11322 |
+
#: includes/general-hooks.php:458
|
11323 |
msgid "Custom JS Code"
|
11324 |
msgstr ""
|
11325 |
|
11326 |
+
#: includes/general-hooks.php:459
|
11327 |
msgid "Your Custom Javascript"
|
11328 |
msgstr ""
|
11329 |
|
11330 |
+
#: includes/general-hooks.php:463
|
11331 |
msgid "Custom Javascript in Head"
|
11332 |
msgstr ""
|
11333 |
|
11334 |
+
#: includes/general-hooks.php:464 includes/general-hooks.php:478
|
11335 |
msgid "You can add your custom javascript code here.%s DO NOT use %s tag."
|
11336 |
msgstr ""
|
11337 |
|
11338 |
+
#: includes/general-hooks.php:465 includes/general-hooks.php:479
|
11339 |
msgid ""
|
11340 |
"In order to save your custom javascript code, you are expected to execute "
|
11341 |
"the code prior to saving."
|
11342 |
msgstr ""
|
11343 |
|
11344 |
+
#: includes/general-hooks.php:471 includes/general-hooks.php:485
|
11345 |
msgid "Execute"
|
11346 |
msgstr ""
|
11347 |
|
11348 |
+
#: includes/general-hooks.php:477
|
11349 |
msgid "Custom Javascript in Footer"
|
11350 |
msgstr ""
|
11351 |
|
11352 |
+
#: includes/general-hooks.php:496 includes/general-hooks.php:497
|
11353 |
msgid "Google API Keys & SEO"
|
11354 |
msgstr ""
|
11355 |
|
11356 |
+
#: includes/general-hooks.php:502
|
11357 |
msgid "Built in SEO"
|
11358 |
msgstr ""
|
11359 |
|
11360 |
+
#: includes/general-hooks.php:503
|
11361 |
msgid ""
|
11362 |
"In case of using SEO plugins like \"WordPress SEO by Yoast\" or \"All in "
|
11363 |
"One SEO Pack\" you can disable built-in SEO for maximum compatibility."
|
11364 |
msgstr ""
|
11365 |
|
11366 |
+
#: includes/general-hooks.php:513
|
11367 |
msgid "Google Analytics Code"
|
11368 |
msgstr ""
|
11369 |
|
11370 |
+
#: includes/general-hooks.php:514
|
11371 |
msgid "You can %s set up Analytics tracking %s and add the tracking ID here."
|
11372 |
msgstr ""
|
11373 |
|
11374 |
+
#: includes/general-hooks.php:528
|
11375 |
msgid "Google Maps API Key"
|
11376 |
msgstr ""
|
11377 |
|
11378 |
+
#: includes/general-hooks.php:530
|
11379 |
msgid ""
|
11380 |
"In order to use google maps on your website, you have to %s create an api "
|
11381 |
"key %s and insert it in this field."
|
11382 |
msgstr ""
|
11383 |
|
11384 |
+
#: includes/general-hooks.php:544
|
11385 |
msgid "Google Marketing Code"
|
11386 |
msgstr ""
|
11387 |
|
11388 |
+
#: includes/general-hooks.php:545
|
11389 |
msgid "You can add your Google marketing code here.%s DO NOT use %s tag."
|
11390 |
msgstr ""
|
11391 |
|
11392 |
+
#: includes/general-hooks.php:562
|
11393 |
msgid "Logo 2 (optional)"
|
11394 |
msgstr ""
|
11395 |
|
11396 |
+
#: includes/general-hooks.php:563
|
11397 |
msgid "The secondary logo which appears when the header becomes sticky (optional)."
|
11398 |
msgstr ""
|
11399 |
|
11400 |
+
#: includes/general-hooks.php:579
|
11401 |
msgid "Header Button 1"
|
11402 |
msgstr ""
|
11403 |
|
11404 |
+
#: includes/general-hooks.php:580
|
11405 |
msgid "Setting for Header Button 1"
|
11406 |
msgstr ""
|
11407 |
|
11408 |
+
#: includes/general-hooks.php:595
|
11409 |
msgid "Display Header Button 1"
|
11410 |
msgstr ""
|
11411 |
|
11412 |
+
#: includes/general-hooks.php:596 includes/general-hooks.php:1001
|
11413 |
msgid "Enable this option to display a button in header."
|
11414 |
msgstr ""
|
11415 |
|
11416 |
+
#: includes/general-hooks.php:616
|
11417 |
msgid "Hide Button 1 on Tablet"
|
11418 |
msgstr ""
|
11419 |
|
11420 |
+
#: includes/general-hooks.php:617 includes/general-hooks.php:640
|
11421 |
msgid "Enable it to hide header button 1 on tablet devices."
|
11422 |
msgstr ""
|
11423 |
|
11424 |
+
#: includes/general-hooks.php:639
|
11425 |
msgid "Hide Button 1 on Mobile"
|
11426 |
msgstr ""
|
11427 |
|
11428 |
+
#: includes/general-hooks.php:662 includes/general-hooks.php:1067
|
11429 |
msgid "Button Label"
|
11430 |
msgstr ""
|
11431 |
|
11432 |
+
#: includes/general-hooks.php:663 includes/general-hooks.php:1068
|
11433 |
msgid "Specifies the label of button."
|
11434 |
msgstr ""
|
11435 |
|
11436 |
+
#: includes/general-hooks.php:685 includes/general-hooks.php:1090
|
11437 |
msgid "Button Size"
|
11438 |
msgstr ""
|
11439 |
|
11440 |
+
#: includes/general-hooks.php:715 includes/general-hooks.php:1120
|
11441 |
msgid "Button Shape"
|
11442 |
msgstr ""
|
11443 |
|
11444 |
+
#: includes/general-hooks.php:722 includes/general-hooks.php:1127
|
11445 |
msgid "Sharp"
|
11446 |
msgstr ""
|
11447 |
|
11448 |
+
#: includes/general-hooks.php:789 includes/general-hooks.php:1194
|
11449 |
msgid "Button Typography"
|
11450 |
msgstr ""
|
11451 |
|
11452 |
+
#: includes/general-hooks.php:811 includes/general-hooks.php:1216
|
11453 |
msgid "Icon for Button"
|
11454 |
msgstr ""
|
11455 |
|
11456 |
+
#: includes/general-hooks.php:833 includes/general-hooks.php:1238
|
11457 |
msgid "Icon Alignment"
|
11458 |
msgstr ""
|
11459 |
|
11460 |
+
#: includes/general-hooks.php:882 includes/general-hooks.php:1287
|
11461 |
msgid "Color of Button"
|
11462 |
msgstr ""
|
11463 |
|
11464 |
+
#: includes/general-hooks.php:905 includes/general-hooks.php:1310
|
11465 |
msgid "Color of Button on Sticky"
|
11466 |
msgstr ""
|
11467 |
|
11468 |
+
#: includes/general-hooks.php:906 includes/general-hooks.php:1311
|
11469 |
msgid "Specifies the color of the button when the header sticky is enabled."
|
11470 |
msgstr ""
|
11471 |
|
11472 |
+
#: includes/general-hooks.php:951 includes/general-hooks.php:1356
|
11473 |
msgid "Open Link in"
|
11474 |
msgstr ""
|
11475 |
|
11476 |
+
#: includes/general-hooks.php:984
|
11477 |
msgid "Header Button 2"
|
11478 |
msgstr ""
|
11479 |
|
11480 |
+
#: includes/general-hooks.php:985
|
11481 |
msgid "Setting for Header Button 2"
|
11482 |
msgstr ""
|
11483 |
|
11484 |
+
#: includes/general-hooks.php:1000
|
11485 |
msgid "Display Header Button 2"
|
11486 |
msgstr ""
|
11487 |
|
11488 |
+
#: includes/general-hooks.php:1021
|
11489 |
msgid "Hide Button 2 on Tablet"
|
11490 |
msgstr ""
|
11491 |
|
11492 |
+
#: includes/general-hooks.php:1022 includes/general-hooks.php:1045
|
11493 |
msgid "Enable it to hide header button 2 on tablet devices."
|
11494 |
msgstr ""
|
11495 |
|
11496 |
+
#: includes/general-hooks.php:1044
|
11497 |
msgid "Hide Button 2 on Mobile"
|
11498 |
msgstr ""
|
11499 |
|
11500 |
+
#: includes/general-hooks.php:1415
|
11501 |
msgid "Specifies maximum height of logo in footer."
|
11502 |
msgstr ""
|
11503 |
|
11504 |
+
#: includes/general-hooks.php:1451
|
11505 |
msgid "Login Page"
|
11506 |
msgstr ""
|
11507 |
|
11508 |
+
#: includes/general-hooks.php:1452
|
11509 |
msgid "Preview login page"
|
11510 |
msgstr ""
|
11511 |
|
11512 |
+
#: includes/general-hooks.php:1459
|
11513 |
msgid "Login Skin"
|
11514 |
msgstr ""
|
11515 |
|
11516 |
+
#: includes/general-hooks.php:1460
|
11517 |
msgid "Specifies a skin for login page of your website."
|
11518 |
msgstr ""
|
11519 |
|
11520 |
+
#: includes/general-hooks.php:1470
|
11521 |
msgid "Clean white"
|
11522 |
msgstr ""
|
11523 |
|
11524 |
+
#: includes/general-hooks.php:1474
|
11525 |
msgid "Simple white"
|
11526 |
msgstr ""
|
11527 |
|
11528 |
+
#: includes/general-hooks.php:1478
|
11529 |
msgid "Simple gray"
|
11530 |
msgstr ""
|
11531 |
|
11532 |
+
#: includes/general-hooks.php:1488
|
11533 |
msgid "Login message"
|
11534 |
msgstr ""
|
11535 |
|
11536 |
+
#: includes/general-hooks.php:1489
|
11537 |
msgid "Enter a text to display above the login form."
|
11538 |
msgstr ""
|
11539 |
|
11540 |
+
#: includes/general-hooks.php:1501
|
11541 |
msgid "Login Page Logo"
|
11542 |
msgstr ""
|
11543 |
|
11544 |
+
#: includes/general-hooks.php:1502
|
11545 |
msgid ""
|
11546 |
"Specifies a logo to display on login page.(width of logo image could be up "
|
11547 |
"to 320px)"
|
11548 |
msgstr ""
|
11549 |
|
11550 |
+
#: includes/general-hooks.php:1513
|
11551 |
msgid "Logo Width"
|
11552 |
msgstr ""
|
11553 |
|
11554 |
+
#: includes/general-hooks.php:1514
|
11555 |
msgid "Specifies width of logo image in pixel."
|
11556 |
msgstr ""
|
11557 |
|
11558 |
+
#: includes/general-hooks.php:1525
|
11559 |
msgid "Logo Height"
|
11560 |
msgstr ""
|
11561 |
|
11562 |
+
#: includes/general-hooks.php:1526
|
11563 |
msgid "Specifies height of logo image in pixel."
|
11564 |
msgstr ""
|
11565 |
|
11566 |
+
#: includes/general-hooks.php:1538
|
11567 |
msgid "Enable Background"
|
11568 |
msgstr ""
|
11569 |
|
11570 |
+
#: includes/general-hooks.php:1539
|
11571 |
msgid "Enable it to display custom background on login page."
|
11572 |
msgstr ""
|
11573 |
|
11574 |
+
#: includes/general-hooks.php:1551
|
11575 |
msgid "Specifies background color of website."
|
11576 |
msgstr ""
|
11577 |
|
11578 |
+
#: includes/general-hooks.php:1568
|
11579 |
msgid "You can upload custom image for background of login page"
|
11580 |
msgstr ""
|
11581 |
|
11582 |
+
#: includes/general-hooks.php:1583
|
11583 |
msgid "Background Size"
|
11584 |
msgstr ""
|
11585 |
|
11586 |
+
#: includes/general-hooks.php:1584
|
11587 |
msgid "Specifies background size on login page."
|
11588 |
msgstr ""
|
11589 |
|
11590 |
+
#: includes/general-hooks.php:1594
|
11591 |
msgid "Contain"
|
11592 |
msgstr ""
|
11593 |
|
11594 |
+
#: includes/general-hooks.php:1613
|
11595 |
msgid "Background Pattern"
|
11596 |
msgstr ""
|
11597 |
|
11598 |
+
#: includes/general-hooks.php:1614
|
11599 |
msgid ""
|
11600 |
"You can select one of these patterns as login background image. %s Some of "
|
11601 |
"these can be used as a pattern over your background image."
|
11602 |
msgstr ""
|
11603 |
|
11604 |
+
#: includes/general-hooks.php:1630
|
11605 |
msgid "Background Repeat"
|
11606 |
msgstr ""
|
11607 |
|
11608 |
+
#: includes/general-hooks.php:1631
|
11609 |
msgid "Specifies how background image repeats."
|
11610 |
msgstr ""
|
11611 |
|
11612 |
+
#: includes/general-hooks.php:1636
|
11613 |
msgid "No repeat"
|
11614 |
msgstr ""
|
11615 |
|
11616 |
+
#: includes/general-hooks.php:1640
|
11617 |
msgid "Repeat horizontally and vertically"
|
11618 |
msgstr ""
|
11619 |
|
11620 |
+
#: includes/general-hooks.php:1644
|
11621 |
msgid "Repeat horizontally"
|
11622 |
msgstr ""
|
11623 |
|
11624 |
+
#: includes/general-hooks.php:1648
|
11625 |
msgid "Repeat vertically"
|
11626 |
msgstr ""
|
11627 |
|
11628 |
+
#: includes/general-hooks.php:1664
|
11629 |
msgid "Background Position"
|
11630 |
msgstr ""
|
11631 |
|
11632 |
+
#: includes/general-hooks.php:1665
|
11633 |
msgid "Specifies background image position."
|
11634 |
msgstr ""
|
11635 |
|
11636 |
+
#: includes/general-hooks.php:1670
|
11637 |
msgid "Left top"
|
11638 |
msgstr ""
|
11639 |
|
11640 |
+
#: includes/general-hooks.php:1674
|
11641 |
msgid "Center top"
|
11642 |
msgstr ""
|
11643 |
|
11644 |
+
#: includes/general-hooks.php:1678
|
11645 |
msgid "Right top"
|
11646 |
msgstr ""
|
11647 |
|
11648 |
+
#: includes/general-hooks.php:1683
|
11649 |
msgid "Left center"
|
11650 |
msgstr ""
|
11651 |
|
11652 |
+
#: includes/general-hooks.php:1687
|
11653 |
msgid "Center center"
|
11654 |
msgstr ""
|
11655 |
|
11656 |
+
#: includes/general-hooks.php:1691
|
11657 |
msgid "Right center"
|
11658 |
msgstr ""
|
11659 |
|
11660 |
+
#: includes/general-hooks.php:1696
|
11661 |
msgid "Left bottom"
|
11662 |
msgstr ""
|
11663 |
|
11664 |
+
#: includes/general-hooks.php:1700
|
11665 |
msgid "Center bottom"
|
11666 |
msgstr ""
|
11667 |
|
11668 |
+
#: includes/general-hooks.php:1704
|
11669 |
msgid "Right bottom"
|
11670 |
msgstr ""
|
11671 |
|
11672 |
+
#: includes/general-hooks.php:1720
|
11673 |
msgid "Background Attachment"
|
11674 |
msgstr ""
|
11675 |
|
11676 |
+
#: includes/general-hooks.php:1721
|
11677 |
msgid ""
|
11678 |
"Specifies whether the background is fixed or scrollable as user scrolls the "
|
11679 |
"page."
|
11680 |
msgstr ""
|
11681 |
|
11682 |
+
#: includes/general-hooks.php:1727
|
11683 |
msgid "Scroll"
|
11684 |
msgstr ""
|
11685 |
|
11686 |
+
#: includes/general-hooks.php:1748
|
11687 |
msgid "Custom CSS class name"
|
11688 |
msgstr ""
|
11689 |
|
11690 |
+
#: includes/general-hooks.php:1749
|
11691 |
msgid ""
|
11692 |
"In this field you can define custom CSS class name for login page.\n"
|
11693 |
" This class name will be added to body classes in "
|
11694 |
"login page and is useful for advance custom styling purposes."
|
11695 |
msgstr ""
|
11696 |
|
11697 |
+
#: includes/general-hooks.php:1765
|
11698 |
msgid "404 Page Options"
|
11699 |
msgstr ""
|
11700 |
|
11701 |
+
#: includes/general-hooks.php:1771
|
11702 |
msgid "Specifies a page to display on 404."
|
11703 |
msgstr ""
|
11704 |
|
11705 |
+
#: includes/general-hooks.php:1786 includes/general-hooks.php:1803
|
11706 |
msgid "Maintenance or Comingsoon Page"
|
11707 |
msgstr ""
|
11708 |
|
11709 |
+
#: includes/general-hooks.php:1787
|
11710 |
msgid "Maintenance or Comingsoon Page Options"
|
11711 |
msgstr ""
|
11712 |
|
11713 |
+
#: includes/general-hooks.php:1792
|
11714 |
msgid "Enable Maintenance or Comingsoon Mode"
|
11715 |
msgstr ""
|
11716 |
|
11717 |
+
#: includes/general-hooks.php:1793
|
11718 |
msgid "With this option you can manually enable Maintenance or Comingsoon mode"
|
11719 |
msgstr ""
|
11720 |
|
11721 |
+
#: includes/general-hooks.php:1804
|
11722 |
msgid ""
|
11723 |
"In This Case You Can Set Your Specifc Page for Maintenance or Comingsoon "
|
11724 |
"Mode"
|
11725 |
msgstr ""
|
11726 |
|
11727 |
+
#: includes/general-hooks.php:1823
|
11728 |
msgid "Search Results"
|
11729 |
msgstr ""
|
11730 |
|
11731 |
+
#: includes/general-hooks.php:1824
|
11732 |
msgid "Search Results Options"
|
11733 |
msgstr ""
|
11734 |
|
11735 |
+
#: includes/general-hooks.php:1830
|
11736 |
msgid "Exclude Posts Types"
|
11737 |
msgstr ""
|
11738 |
|
11739 |
+
#: includes/general-hooks.php:1831
|
11740 |
msgid "The post types which should be excluded from search results."
|
11741 |
msgstr ""
|
11742 |
|
11743 |
+
#: includes/general-hooks.php:1841
|
11744 |
msgid "Exclude Posts Without Featured Image"
|
11745 |
msgstr ""
|
11746 |
|
11747 |
+
#: includes/general-hooks.php:1842
|
11748 |
msgid "Exclude posts without featured image in search results."
|
11749 |
msgstr ""
|
11750 |
|
11751 |
+
#: includes/general-hooks.php:1853
|
11752 |
msgid ""
|
11753 |
"If you intend to include additional posts, you should specify the posts "
|
11754 |
"here.<br>You have to insert the Post IDs that are separated by camma (eg. "
|
11755 |
"53,34,87,25)"
|
11756 |
msgstr ""
|
11757 |
|
11758 |
+
#: includes/general-hooks.php:1867
|
11759 |
msgid "Import/Export"
|
11760 |
msgstr ""
|
11761 |
|
11762 |
+
#: includes/general-hooks.php:1868
|
11763 |
msgid "Import or Export options"
|
11764 |
msgstr ""
|
11765 |
|
11766 |
+
#: includes/general-hooks.php:1875
|
11767 |
msgid "Export Data"
|
11768 |
msgstr ""
|
11769 |
|
11770 |
+
#: includes/general-hooks.php:1876
|
11771 |
msgid "Your theme options code which you can import later."
|
11772 |
msgstr ""
|
11773 |
|
11774 |
+
#: includes/general-hooks.php:1886
|
11775 |
msgid "Import Data"
|
11776 |
msgstr ""
|
11777 |
|
11778 |
+
#: includes/general-hooks.php:1887
|
11779 |
msgid "Paste the exported theme options code to import into theme."
|
11780 |
msgstr ""
|
11781 |
|
11782 |
+
#: includes/general-hooks.php:1902
|
11783 |
msgid "White Label"
|
11784 |
msgstr ""
|
11785 |
|
11786 |
+
#: includes/general-hooks.php:1903
|
11787 |
msgid "White Label Settings"
|
11788 |
msgstr ""
|
11789 |
|
11790 |
+
#: includes/general-hooks.php:1913
|
11791 |
msgid "Change PHLOX labels."
|
11792 |
msgstr ""
|
11793 |
|
11794 |
+
#: includes/general-hooks.php:1917
|
11795 |
msgid "Theme Name"
|
11796 |
msgstr ""
|
11797 |
|
11798 |
+
#: includes/general-hooks.php:1928
|
11799 |
msgid "Theme Author Name"
|
11800 |
msgstr ""
|
11801 |
|
11802 |
+
#: includes/general-hooks.php:1937
|
11803 |
msgid "Theme Author URL"
|
11804 |
msgstr ""
|
11805 |
|
11806 |
+
#: includes/general-hooks.php:1946
|
11807 |
msgid "Theme Description"
|
11808 |
msgstr ""
|
11809 |
|
11810 |
+
#: includes/general-hooks.php:1955
|
11811 |
msgid "Theme Screenshot (1200x900)"
|
11812 |
msgstr ""
|
11813 |
|
11814 |
+
#: includes/general-hooks.php:1968
|
11815 |
msgid "Displays"
|
11816 |
msgstr ""
|
11817 |
|
11818 |
+
#: includes/general-hooks.php:1969
|
11819 |
msgid "Change PHLOX admin views."
|
11820 |
msgstr ""
|
11821 |
|
11822 |
+
#: includes/general-hooks.php:1973
|
11823 |
msgid "Hide Notifications"
|
11824 |
msgstr ""
|
11825 |
|
11826 |
+
#: includes/general-hooks.php:1984
|
11827 |
msgid "Hide Theme Badge"
|
11828 |
msgstr ""
|
11829 |
|
11830 |
+
#: includes/general-hooks.php:1995
|
11831 |
msgid "Hide Phlox Menu"
|
11832 |
msgstr ""
|
11833 |
|
11834 |
+
#: includes/general-hooks.php:2006
|
11835 |
msgid "Hide Dashboard Section"
|
11836 |
msgstr ""
|
11837 |
|
11838 |
+
#: includes/general-hooks.php:2024
|
11839 |
msgid "Hide Customization Section"
|
11840 |
msgstr ""
|
11841 |
|
11842 |
+
#: includes/general-hooks.php:2042
|
11843 |
msgid "Hide Demo Importer Section"
|
11844 |
msgstr ""
|
11845 |
|
11846 |
+
#: includes/general-hooks.php:2060
|
11847 |
msgid "Hide Template Kits Section"
|
11848 |
msgstr ""
|
11849 |
|
11850 |
+
#: includes/general-hooks.php:2078
|
11851 |
msgid "Hide Plugins Section"
|
11852 |
msgstr ""
|
11853 |
|
11854 |
+
#: includes/general-hooks.php:2096
|
11855 |
msgid "Hide Tutorials Section"
|
11856 |
msgstr ""
|
11857 |
|
11858 |
+
#: includes/general-hooks.php:2114
|
11859 |
msgid "Hide Feedback Section"
|
11860 |
msgstr ""
|
11861 |
|
11862 |
+
#: includes/general-hooks.php:2376
|
11863 |
msgid "Twitter"
|
11864 |
msgstr ""
|
11865 |
|
11866 |
+
#: includes/general-hooks.php:2377
|
11867 |
msgid "Facebook"
|
11868 |
msgstr ""
|
11869 |
|
11870 |
+
#: includes/general-hooks.php:2378
|
11871 |
msgid "Google Plus"
|
11872 |
msgstr ""
|
11873 |
|
11874 |
+
#: includes/general-hooks.php:2379
|
11875 |
msgid "Flickr"
|
11876 |
msgstr ""
|
11877 |
|
11878 |
+
#: includes/general-hooks.php:2380
|
11879 |
msgid "Delicious"
|
11880 |
msgstr ""
|
11881 |
|
11882 |
+
#: includes/general-hooks.php:2381
|
11883 |
msgid "Pinterest"
|
11884 |
msgstr ""
|
11885 |
|
11886 |
+
#: includes/general-hooks.php:2382
|
11887 |
msgid "GitHub"
|
11888 |
msgstr ""
|
11889 |
|
11890 |
+
#: includes/general-hooks.php:2569
|
11891 |
msgid "Page Options"
|
11892 |
msgstr ""
|
11893 |
|
11894 |
+
#: includes/general-hooks.php:2577
|
11895 |
msgid "Post Options"
|
11896 |
msgstr ""
|
11897 |
|
11898 |
+
#: includes/general-hooks.php:3052
|
11899 |
msgid "Page %s"
|
11900 |
msgstr ""
|
11901 |
|
11902 |
+
#: includes/general-hooks.php:3625
|
11903 |
msgid "current "
|
11904 |
msgstr ""
|
11905 |
|
11906 |
+
#: includes/general-hooks.php:3655
|
11907 |
msgid "Edit Header & Footer"
|
11908 |
msgstr ""
|
11909 |
|
12134 |
msgid "Chats"
|
12135 |
msgstr ""
|
12136 |
|
12137 |
+
#: includes/general-hooks.php:3073
|
12138 |
#. translators: playlist item title
|
12139 |
msgctxt "playlist item title"
|
12140 |
msgid "“%s”"
|
12141 |
msgstr ""
|
12142 |
|
12143 |
+
#: includes/general-hooks.php:3098 includes/general-hooks.php:3103
|
12144 |
#. translators: playlist item title
|
12145 |
msgctxt "playlist item title"
|
12146 |
msgid "%s"
|
public/assets/js/plugins.js
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
/*! Phlox Core Plugin - v2.7.
|
2 |
* All required plugins
|
3 |
* http://phlox.pro/
|
4 |
*/
|
1 |
+
/*! Phlox Core Plugin - v2.7.12 (2021-04)
|
2 |
* All required plugins
|
3 |
* http://phlox.pro/
|
4 |
*/
|