Version Description
- 22/10/2020 =
- Fixed: Assets not generating on Multi-sites
- Fixed: Critical Errors related to Template queries
- Few minor bug fix and improvements
Download this release
Release Info
Developer | re_enter_rupok |
Plugin | Elementor Essential Addons |
Version | 4.3.3 |
Comparing to | |
See all releases |
Code changes from version 4.3.2 to 4.3.3
- essential_adons_elementor.php +3 -3
- includes/Classes/Bootstrap.php +4 -1
- includes/Elements/Advanced_Data_Table.php +2 -2
- includes/Elements/Content_Ticker.php +16 -9
- includes/Elements/Event_Calendar.php +3 -3
- includes/Elements/Formstack.php +2 -2
- includes/Elements/Post_Grid.php +16 -9
- includes/Elements/Post_Timeline.php +14 -9
- includes/Elements/Product_Grid.php +26 -12
- includes/Template/Content-Ticker/default.php +41 -0
- includes/Template/Content-Ticker/dynamic.php +0 -13
- includes/Traits/Controls.php +11 -1
- includes/Traits/Core.php +3 -7
- includes/Traits/Elements.php +1 -1
- includes/Traits/Enqueue.php +1 -1
- includes/Traits/Generator.php +2 -2
- includes/Traits/Template_Query.php +57 -22
- languages/essential-addons-for-elementor-lite.pot +182 -170
- readme.txt +7 -2
essential_adons_elementor.php
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
* Plugin Name: Essential Addons for Elementor
|
4 |
-
* Description: The Essential plugin you install after Elementor!
|
5 |
* Plugin URI: https://essential-addons.com/elementor/
|
6 |
* Author: WPDeveloper
|
7 |
-
* Version: 4.3.
|
8 |
* Author URI: https://wpdeveloper.net/
|
9 |
* Text Domain: essential-addons-for-elementor-lite
|
10 |
* Domain Path: /languages
|
@@ -25,7 +25,7 @@ define('EAEL_PLUGIN_FILE', __FILE__);
|
|
25 |
define('EAEL_PLUGIN_BASENAME', plugin_basename(__FILE__));
|
26 |
define('EAEL_PLUGIN_PATH', trailingslashit(plugin_dir_path(__FILE__)));
|
27 |
define('EAEL_PLUGIN_URL', trailingslashit(plugins_url('/', __FILE__)));
|
28 |
-
define('EAEL_PLUGIN_VERSION', '4.3.
|
29 |
define('EAEL_ASSET_PATH', wp_upload_dir()['basedir'] . '/essential-addons-elementor');
|
30 |
define('EAEL_ASSET_URL', wp_upload_dir()['baseurl'] . '/essential-addons-elementor');
|
31 |
/**
|
1 |
<?php
|
2 |
/**
|
3 |
* Plugin Name: Essential Addons for Elementor
|
4 |
+
* Description: The Essential plugin you install after Elementor! Packed with 40+ stunning free elements including Advanced Data Table, Event Calendar, Filterable Gallery, WooCommerce, and many more.
|
5 |
* Plugin URI: https://essential-addons.com/elementor/
|
6 |
* Author: WPDeveloper
|
7 |
+
* Version: 4.3.3
|
8 |
* Author URI: https://wpdeveloper.net/
|
9 |
* Text Domain: essential-addons-for-elementor-lite
|
10 |
* Domain Path: /languages
|
25 |
define('EAEL_PLUGIN_BASENAME', plugin_basename(__FILE__));
|
26 |
define('EAEL_PLUGIN_PATH', trailingslashit(plugin_dir_path(__FILE__)));
|
27 |
define('EAEL_PLUGIN_URL', trailingslashit(plugins_url('/', __FILE__)));
|
28 |
+
define('EAEL_PLUGIN_VERSION', '4.3.3');
|
29 |
define('EAEL_ASSET_PATH', wp_upload_dir()['basedir'] . '/essential-addons-elementor');
|
30 |
define('EAEL_ASSET_URL', wp_upload_dir()['baseurl'] . '/essential-addons-elementor');
|
31 |
/**
|
includes/Classes/Bootstrap.php
CHANGED
@@ -120,7 +120,10 @@ class Bootstrap
|
|
120 |
{
|
121 |
// Core
|
122 |
add_action('init', [$this, 'i18n']);
|
123 |
-
|
|
|
|
|
|
|
124 |
add_filter('wpml_elementor_widgets_to_translate', [$this, 'translatable_widgets']);
|
125 |
add_action('elementor/editor/after_save', array($this, 'save_global_values'), 10, 2);
|
126 |
|
120 |
{
|
121 |
// Core
|
122 |
add_action('init', [$this, 'i18n']);
|
123 |
+
// TODO::RM
|
124 |
+
add_filter('eael/active_plugins', [$this, 'is_plugin_active'], 10, 1);
|
125 |
+
|
126 |
+
add_filter('eael/is_plugin_active', [$this, 'is_plugin_active'], 10, 1);
|
127 |
add_filter('wpml_elementor_widgets_to_translate', [$this, 'translatable_widgets']);
|
128 |
add_action('elementor/editor/after_save', array($this, 'save_global_values'), 10, 2);
|
129 |
|
includes/Elements/Advanced_Data_Table.php
CHANGED
@@ -1451,11 +1451,11 @@ class Advanced_Data_Table extends Widget_Base
|
|
1451 |
return;
|
1452 |
}
|
1453 |
|
1454 |
-
if (!apply_filters('eael/
|
1455 |
return;
|
1456 |
}
|
1457 |
} else if ($settings['ea_adv_data_table_source'] == "ninja") {
|
1458 |
-
if (!apply_filters('eael/
|
1459 |
return;
|
1460 |
}
|
1461 |
}
|
1451 |
return;
|
1452 |
}
|
1453 |
|
1454 |
+
if (!apply_filters('eael/is_plugin_active', 'tablepress/tablepress.php')) {
|
1455 |
return;
|
1456 |
}
|
1457 |
} else if ($settings['ea_adv_data_table_source'] == "ninja") {
|
1458 |
+
if (!apply_filters('eael/is_plugin_active', 'ninja-tables/ninja-tables.php')) {
|
1459 |
return;
|
1460 |
}
|
1461 |
}
|
includes/Elements/Content_Ticker.php
CHANGED
@@ -73,6 +73,16 @@ class Content_Ticker extends Widget_Base
|
|
73 |
]
|
74 |
);
|
75 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
76 |
$ticker_options = apply_filters(
|
77 |
'eael_ticker_options',
|
78 |
[
|
@@ -804,26 +814,23 @@ class Content_Ticker extends Widget_Base
|
|
804 |
<div class="swiper-wrapper">';
|
805 |
|
806 |
if ('dynamic' === $settings['eael_ticker_type']) {
|
807 |
-
|
|
|
808 |
$query = new \WP_Query($args);
|
809 |
-
|
810 |
if ($query->have_posts()) {
|
811 |
while ($query->have_posts()) {
|
812 |
$query->the_post();
|
813 |
-
|
814 |
-
include $this->get_template($settings['eael_ticker_type']);
|
815 |
}
|
816 |
-
|
817 |
wp_reset_postdata();
|
818 |
}
|
819 |
-
|
820 |
} else {
|
821 |
echo '<div class="swiper-slide"><a href="#" class="ticker-content">' . __('No content found!', 'essential-addons-for-elementor-lite') . '</a></div>';
|
822 |
}
|
823 |
-
} elseif ('custom' === $settings['eael_ticker_type']) {
|
824 |
-
if (\file_exists($this->get_template($settings['
|
825 |
foreach ($settings['eael_ticker_custom_contents'] as $content) {
|
826 |
-
echo Helper::include_with_variable($this->get_template($settings['
|
827 |
}
|
828 |
}
|
829 |
}
|
73 |
]
|
74 |
);
|
75 |
|
76 |
+
$this->add_control(
|
77 |
+
'eael_dynamic_template_Layout',
|
78 |
+
[
|
79 |
+
'label' => esc_html__('Template Layout', 'essential-addons-for-elementor-lite'),
|
80 |
+
'type' => Controls_Manager::SELECT,
|
81 |
+
'default' => 'default',
|
82 |
+
'options' => $this->get_template_list_for_dropdown(),
|
83 |
+
]
|
84 |
+
);
|
85 |
+
|
86 |
$ticker_options = apply_filters(
|
87 |
'eael_ticker_options',
|
88 |
[
|
814 |
<div class="swiper-wrapper">';
|
815 |
|
816 |
if ('dynamic' === $settings['eael_ticker_type']) {
|
817 |
+
|
818 |
+
if (\file_exists($this->get_template($settings['eael_dynamic_template_Layout']))) {
|
819 |
$query = new \WP_Query($args);
|
|
|
820 |
if ($query->have_posts()) {
|
821 |
while ($query->have_posts()) {
|
822 |
$query->the_post();
|
823 |
+
include $this->get_template($settings['eael_dynamic_template_Layout']);
|
|
|
824 |
}
|
|
|
825 |
wp_reset_postdata();
|
826 |
}
|
|
|
827 |
} else {
|
828 |
echo '<div class="swiper-slide"><a href="#" class="ticker-content">' . __('No content found!', 'essential-addons-for-elementor-lite') . '</a></div>';
|
829 |
}
|
830 |
+
} elseif ('custom' === $settings['eael_ticker_type'] && apply_filters('eael/is_plugin_active', 'essential-addons-elementor/essential_adons_elementor.php')) {
|
831 |
+
if (\file_exists($this->get_template($settings['eael_dynamic_template_Layout']))) {
|
832 |
foreach ($settings['eael_ticker_custom_contents'] as $content) {
|
833 |
+
echo Helper::include_with_variable($this->get_template($settings['eael_dynamic_template_Layout']), ['content' => $content['eael_ticker_custom_content'], 'link' => $content['eael_ticker_custom_content_link']]);
|
834 |
}
|
835 |
}
|
836 |
}
|
includes/Elements/Event_Calendar.php
CHANGED
@@ -102,7 +102,7 @@ class Event_Calendar extends Widget_Base
|
|
102 |
]
|
103 |
);
|
104 |
|
105 |
-
if (!apply_filters('eael/
|
106 |
$this->add_control(
|
107 |
'eael_the_event_calendar_warning_text',
|
108 |
[
|
@@ -351,7 +351,7 @@ class Event_Calendar extends Widget_Base
|
|
351 |
$this->end_controls_section();
|
352 |
|
353 |
//the events calendar
|
354 |
-
if (apply_filters('eael/
|
355 |
$this->start_controls_section(
|
356 |
'eael_event_the_events_calendar',
|
357 |
[
|
@@ -546,7 +546,7 @@ class Event_Calendar extends Widget_Base
|
|
546 |
]
|
547 |
);
|
548 |
|
549 |
-
if (apply_filters('eael/
|
550 |
$this->add_control(
|
551 |
'eael_event_on_featured_color',
|
552 |
[
|
102 |
]
|
103 |
);
|
104 |
|
105 |
+
if (!apply_filters('eael/is_plugin_active', 'the-events-calendar/the-events-calendar.php')) {
|
106 |
$this->add_control(
|
107 |
'eael_the_event_calendar_warning_text',
|
108 |
[
|
351 |
$this->end_controls_section();
|
352 |
|
353 |
//the events calendar
|
354 |
+
if (apply_filters('eael/is_plugin_active', 'the-events-calendar/the-events-calendar.php')) {
|
355 |
$this->start_controls_section(
|
356 |
'eael_event_the_events_calendar',
|
357 |
[
|
546 |
]
|
547 |
);
|
548 |
|
549 |
+
if (apply_filters('eael/is_plugin_active', 'eventON/eventon.php') && apply_filters('eael/pro_enabled', false)) {
|
550 |
$this->add_control(
|
551 |
'eael_event_on_featured_color',
|
552 |
[
|
includes/Elements/Formstack.php
CHANGED
@@ -148,7 +148,7 @@ class Formstack extends Widget_Base {
|
|
148 |
|
149 |
protected function _register_controls () {
|
150 |
|
151 |
-
if (!apply_filters('eael/
|
152 |
$this->formstack_not_activated();
|
153 |
return;
|
154 |
}
|
@@ -2039,7 +2039,7 @@ class Formstack extends Widget_Base {
|
|
2039 |
|
2040 |
protected function render () {
|
2041 |
|
2042 |
-
if (!apply_filters('eael/
|
2043 |
return;
|
2044 |
}
|
2045 |
|
148 |
|
149 |
protected function _register_controls () {
|
150 |
|
151 |
+
if (!apply_filters('eael/is_plugin_active', 'formstack/plugin.php')) {
|
152 |
$this->formstack_not_activated();
|
153 |
return;
|
154 |
}
|
2039 |
|
2040 |
protected function render () {
|
2041 |
|
2042 |
+
if (!apply_filters('eael/is_plugin_active', 'formstack/plugin.php') || empty($this->get_forms())) {
|
2043 |
return;
|
2044 |
}
|
2045 |
|
includes/Elements/Post_Grid.php
CHANGED
@@ -1223,18 +1223,25 @@ class Post_Grid extends Widget_Base
|
|
1223 |
echo '<div ' . $this->get_render_attribute_string( 'post_grid_wrapper' ) . '>
|
1224 |
<div ' . $this->get_render_attribute_string( 'post_grid_container' ) . ' data-layout-mode="' . $settings["layout_mode"] . '">';
|
1225 |
|
1226 |
-
$
|
|
|
|
|
1227 |
|
1228 |
-
|
1229 |
-
while ( $query->have_posts() ) {
|
1230 |
-
$query->the_post();
|
1231 |
|
1232 |
-
|
|
|
|
|
|
|
|
|
|
|
1233 |
}
|
1234 |
-
|
1235 |
-
|
|
|
1236 |
}
|
1237 |
-
|
|
|
1238 |
echo '</div>
|
1239 |
<div class="clearfix"></div>
|
1240 |
</div>';
|
@@ -1242,7 +1249,7 @@ class Post_Grid extends Widget_Base
|
|
1242 |
if ('yes' == $settings['show_load_more']) {
|
1243 |
if ($args['posts_per_page'] != '-1') {
|
1244 |
echo '<div class="eael-load-more-button-wrap">
|
1245 |
-
<button class="eael-load-more-button" id="eael-load-more-btn-' . $this->get_id() . '" data-widget="' . $this->get_id() . '" data-template='.json_encode([ 'dir' => 'free', 'file_name' => '
|
1246 |
<div class="eael-btn-loader button__loader"></div>
|
1247 |
<span>' . esc_html__($settings['show_load_more_text'], 'essential-addons-for-elementor-lite') . '</span>
|
1248 |
</button>
|
1223 |
echo '<div ' . $this->get_render_attribute_string( 'post_grid_wrapper' ) . '>
|
1224 |
<div ' . $this->get_render_attribute_string( 'post_grid_container' ) . ' data-layout-mode="' . $settings["layout_mode"] . '">';
|
1225 |
|
1226 |
+
$template = $this->get_template($settings['eael_dynamic_template_Layout']);
|
1227 |
+
if(file_exists($template)){
|
1228 |
+
$query = new \WP_Query( $args );
|
1229 |
|
1230 |
+
if ( $query->have_posts() ) {
|
|
|
|
|
1231 |
|
1232 |
+
while ( $query->have_posts() ) {
|
1233 |
+
$query->the_post();
|
1234 |
+
include($template);
|
1235 |
+
}
|
1236 |
+
}else {
|
1237 |
+
_e('<p class="no-posts-found">No posts found!</p>', 'essential-addons-for-elementor-lite');
|
1238 |
}
|
1239 |
+
wp_reset_postdata();
|
1240 |
+
} else {
|
1241 |
+
_e('<p class="no-posts-found">No Layout Found!</p>', 'essential-addons-for-elementor-lite');
|
1242 |
}
|
1243 |
+
|
1244 |
+
|
1245 |
echo '</div>
|
1246 |
<div class="clearfix"></div>
|
1247 |
</div>';
|
1249 |
if ('yes' == $settings['show_load_more']) {
|
1250 |
if ($args['posts_per_page'] != '-1') {
|
1251 |
echo '<div class="eael-load-more-button-wrap">
|
1252 |
+
<button class="eael-load-more-button" id="eael-load-more-btn-' . $this->get_id() . '" data-widget="' . $this->get_id() . '" data-template='.json_encode([ 'dir' => 'free', 'file_name' => $settings['eael_dynamic_template_Layout'], 'name' => $this->process_directory_name() ], 1).' data-class="' . get_class($this) . '" data-args="' . http_build_query($args) . '" data-settings="' . http_build_query($settings_arry) . '" data-layout="' . $settings['layout_mode'] . '" data-page="1">
|
1253 |
<div class="eael-btn-loader button__loader"></div>
|
1254 |
<span>' . esc_html__($settings['show_load_more_text'], 'essential-addons-for-elementor-lite') . '</span>
|
1255 |
</button>
|
includes/Elements/Post_Timeline.php
CHANGED
@@ -453,19 +453,24 @@ class Post_Timeline extends Widget_Base
|
|
453 |
|
454 |
echo '<div ' . $this->get_render_attribute_string('eael_post_timeline_wrapper') . '>
|
455 |
<div ' . $this->get_render_attribute_string('eael_post_timeline') . '>';
|
456 |
-
$query = new \WP_Query($args);
|
457 |
|
458 |
-
|
459 |
-
|
460 |
-
|
461 |
-
|
462 |
-
|
|
|
|
|
|
|
|
|
|
|
463 |
}
|
|
|
464 |
} else {
|
465 |
-
_e('<p class="no-posts-found">No
|
466 |
}
|
467 |
|
468 |
-
|
469 |
|
470 |
echo '</div>
|
471 |
</div>';
|
@@ -473,7 +478,7 @@ class Post_Timeline extends Widget_Base
|
|
473 |
if ('yes' == $settings['show_load_more']) {
|
474 |
if ($args['posts_per_page'] != '-1') {
|
475 |
echo '<div class="eael-load-more-button-wrap">
|
476 |
-
<button class="eael-load-more-button" id="eael-load-more-btn-' . $this->get_id() . '" data-template='.json_encode([ 'dir' => 'free', 'file_name' => '
|
477 |
<div class="eael-btn-loader button__loader"></div>
|
478 |
<span>' . esc_html__($settings['show_load_more_text'], 'essential-addons-for-elementor-lite') . '</span>
|
479 |
</button>
|
453 |
|
454 |
echo '<div ' . $this->get_render_attribute_string('eael_post_timeline_wrapper') . '>
|
455 |
<div ' . $this->get_render_attribute_string('eael_post_timeline') . '>';
|
|
|
456 |
|
457 |
+
$template = $this->get_template($this->get_settings('eael_dynamic_template_Layout'));
|
458 |
+
if(file_exists($template)){
|
459 |
+
$query = new \WP_Query($args);
|
460 |
+
if ($query->have_posts()) {
|
461 |
+
while ($query->have_posts()) {
|
462 |
+
$query->the_post();
|
463 |
+
include($template);
|
464 |
+
}
|
465 |
+
} else {
|
466 |
+
_e('<p class="no-posts-found">No posts found!</p>', 'essential-addons-for-elementor-lite');
|
467 |
}
|
468 |
+
wp_reset_postdata();
|
469 |
} else {
|
470 |
+
_e('<p class="no-posts-found">No layout found!</p>', 'essential-addons-for-elementor-lite');
|
471 |
}
|
472 |
|
473 |
+
|
474 |
|
475 |
echo '</div>
|
476 |
</div>';
|
478 |
if ('yes' == $settings['show_load_more']) {
|
479 |
if ($args['posts_per_page'] != '-1') {
|
480 |
echo '<div class="eael-load-more-button-wrap">
|
481 |
+
<button class="eael-load-more-button" id="eael-load-more-btn-' . $this->get_id() . '" data-template='.json_encode([ 'dir' => 'free', 'file_name' => $this->get_settings('eael_dynamic_template_Layout'), 'name' => $this->process_directory_name() ], 1).' data-widget="' . $this->get_id() . '" data-class="' . get_class($this) . '" data-args="' . http_build_query($args) . '" data-settings="' . http_build_query($settings) . '" data-page="1">
|
482 |
<div class="eael-btn-loader button__loader"></div>
|
483 |
<span>' . esc_html__($settings['show_load_more_text'], 'essential-addons-for-elementor-lite') . '</span>
|
484 |
</button>
|
includes/Elements/Product_Grid.php
CHANGED
@@ -127,7 +127,7 @@ class Product_Grid extends Widget_Base {
|
|
127 |
]
|
128 |
);
|
129 |
|
130 |
-
if (!apply_filters('eael/
|
131 |
$this->add_control(
|
132 |
'ea_product_grid_woo_required',
|
133 |
[
|
@@ -241,6 +241,16 @@ class Product_Grid extends Widget_Base {
|
|
241 |
]
|
242 |
);
|
243 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
244 |
$this->add_control(
|
245 |
'eael_product_grid_style_preset',
|
246 |
[
|
@@ -871,7 +881,7 @@ class Product_Grid extends Widget_Base {
|
|
871 |
{
|
872 |
$settings = $this->get_settings_for_display();
|
873 |
|
874 |
-
if (!apply_filters('eael/
|
875 |
return;
|
876 |
}
|
877 |
|
@@ -964,26 +974,30 @@ class Product_Grid extends Widget_Base {
|
|
964 |
echo '<div class="woocommerce">';
|
965 |
|
966 |
echo '<ul class="products">';
|
967 |
-
|
968 |
-
$query = new \WP_Query($args);
|
969 |
-
|
970 |
-
if ($query->have_posts()) {
|
971 |
-
while ($query->have_posts()) {
|
972 |
-
$query->the_post();
|
973 |
|
974 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
975 |
}
|
|
|
976 |
} else {
|
977 |
-
_e('<p class="no-posts-found">No
|
978 |
}
|
979 |
-
wp_reset_postdata();
|
980 |
|
981 |
echo '</ul>';
|
982 |
|
983 |
if ( 'true' == $settings['show_load_more'] ) {
|
984 |
if ( $args['posts_per_page'] != '-1' ) {
|
985 |
echo '<div class="eael-load-more-button-wrap">
|
986 |
-
<button class="eael-load-more-button" id="eael-load-more-btn-' . $this->get_id() . '" data-template='.json_encode([ 'dir' => 'free', 'file_name' => '
|
987 |
<div class="eael-btn-loader button__loader"></div>
|
988 |
<span>' . esc_html__($settings['show_load_more_text'], 'essential-addons-for-elementor-lite') . '</span>
|
989 |
</button>
|
127 |
]
|
128 |
);
|
129 |
|
130 |
+
if (!apply_filters('eael/is_plugin_active', 'woocommerce/woocommerce.php')) {
|
131 |
$this->add_control(
|
132 |
'ea_product_grid_woo_required',
|
133 |
[
|
241 |
]
|
242 |
);
|
243 |
|
244 |
+
$this->add_control(
|
245 |
+
'eael_dynamic_template_Layout',
|
246 |
+
[
|
247 |
+
'label' => esc_html__('Layout', 'essential-addons-for-elementor-lite'),
|
248 |
+
'type' => Controls_Manager::SELECT,
|
249 |
+
'default' => 'default',
|
250 |
+
'options' => $this->get_template_list_for_dropdown(),
|
251 |
+
]
|
252 |
+
);
|
253 |
+
|
254 |
$this->add_control(
|
255 |
'eael_product_grid_style_preset',
|
256 |
[
|
881 |
{
|
882 |
$settings = $this->get_settings_for_display();
|
883 |
|
884 |
+
if (!apply_filters('eael/is_plugin_active', 'woocommerce/woocommerce.php')) {
|
885 |
return;
|
886 |
}
|
887 |
|
974 |
echo '<div class="woocommerce">';
|
975 |
|
976 |
echo '<ul class="products">';
|
|
|
|
|
|
|
|
|
|
|
|
|
977 |
|
978 |
+
$template = $this->get_template( $settings[ 'eael_dynamic_template_Layout' ] );
|
979 |
+
if ( file_exists( $template ) ) {
|
980 |
+
$query = new \WP_Query( $args );
|
981 |
+
if ( $query->have_posts() ) {
|
982 |
+
while ( $query->have_posts() ) {
|
983 |
+
$query->the_post();
|
984 |
+
include( $template );
|
985 |
+
}
|
986 |
+
|
987 |
+
} else {
|
988 |
+
_e( '<p class="no-posts-found">No posts found!</p>', 'essential-addons-for-elementor-lite' );
|
989 |
}
|
990 |
+
wp_reset_postdata();
|
991 |
} else {
|
992 |
+
_e( '<p class="no-posts-found">No layout found!</p>', 'essential-addons-for-elementor-lite' );
|
993 |
}
|
|
|
994 |
|
995 |
echo '</ul>';
|
996 |
|
997 |
if ( 'true' == $settings['show_load_more'] ) {
|
998 |
if ( $args['posts_per_page'] != '-1' ) {
|
999 |
echo '<div class="eael-load-more-button-wrap">
|
1000 |
+
<button class="eael-load-more-button" id="eael-load-more-btn-' . $this->get_id() . '" data-template='.json_encode([ 'dir' => 'free', 'file_name' => $settings['eael_dynamic_template_Layout'], 'name' => $this->process_directory_name() ], 1).' data-widget="' . $this->get_id() . '" data-class="' . get_class( $this ) . '" data-args="' . http_build_query( $args ) . '" data-settings="' . http_build_query( $settings ) . '" data-layout="masonry" data-page="1">
|
1001 |
<div class="eael-btn-loader button__loader"></div>
|
1002 |
<span>' . esc_html__($settings['show_load_more_text'], 'essential-addons-for-elementor-lite') . '</span>
|
1003 |
</button>
|
includes/Template/Content-Ticker/default.php
ADDED
@@ -0,0 +1,41 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
/**
|
4 |
+
* Template Name: Default
|
5 |
+
*/
|
6 |
+
|
7 |
+
if (!defined('ABSPATH')) {
|
8 |
+
exit;
|
9 |
+
} // Exit if accessed directly
|
10 |
+
|
11 |
+
if (isset($content) && isset($link)) {
|
12 |
+
echo '<div class="swiper-slide">
|
13 |
+
<div class="ticker-content">';
|
14 |
+
if (!empty($link['url'])) {
|
15 |
+
echo '<a href="' . $link['url'] . '" ';
|
16 |
+
|
17 |
+
if ($link['is_external'] == 'on') {
|
18 |
+
echo 'target="_blank" ';
|
19 |
+
}
|
20 |
+
|
21 |
+
if ($link['nofollow'] == 'on') {
|
22 |
+
echo 'rel="nofollow"';
|
23 |
+
}
|
24 |
+
|
25 |
+
echo '>';
|
26 |
+
}
|
27 |
+
|
28 |
+
echo $content;
|
29 |
+
|
30 |
+
if (!empty($link['url'])) {
|
31 |
+
echo '</a>';
|
32 |
+
}
|
33 |
+
echo '</div>
|
34 |
+
</div>';
|
35 |
+
} else {
|
36 |
+
echo '<div class="swiper-slide">
|
37 |
+
<div class="ticker-content">
|
38 |
+
<a href="' . get_the_permalink() . '" class="ticker-content-link">' . get_the_title() . '</a>
|
39 |
+
</div>
|
40 |
+
</div>';
|
41 |
+
}
|
includes/Template/Content-Ticker/dynamic.php
DELETED
@@ -1,13 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
/**
|
4 |
-
* Template Name: Dynamic
|
5 |
-
*/
|
6 |
-
|
7 |
-
if (!defined('ABSPATH')) {
|
8 |
-
exit;
|
9 |
-
} // Exit if accessed directly
|
10 |
-
|
11 |
-
echo '<div class="swiper-slide"><div class="ticker-content">
|
12 |
-
<a href="' . get_the_permalink() . '" class="ticker-content-link">' . get_the_title() . '</a>
|
13 |
-
</div></div>';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
includes/Traits/Controls.php
CHANGED
@@ -395,6 +395,16 @@ trait Controls
|
|
395 |
]
|
396 |
);
|
397 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
398 |
if ('eael-post-grid' === $wb->get_name()) {
|
399 |
$wb->add_responsive_control(
|
400 |
'eael_post_grid_columns',
|
@@ -1609,7 +1619,7 @@ trait Controls
|
|
1609 |
|
1610 |
public function advanced_data_table_source($wb)
|
1611 |
{
|
1612 |
-
if (apply_filters('eael/
|
1613 |
$wb->add_control(
|
1614 |
'ea_adv_data_table_source_ninja_table_id',
|
1615 |
[
|
395 |
]
|
396 |
);
|
397 |
|
398 |
+
$wb->add_control(
|
399 |
+
'eael_dynamic_template_Layout',
|
400 |
+
[
|
401 |
+
'label' => esc_html__('Template Layout', 'essential-addons-for-elementor-lite'),
|
402 |
+
'type' => Controls_Manager::SELECT,
|
403 |
+
'default' => 'default',
|
404 |
+
'options' => $wb->get_template_list_for_dropdown(),
|
405 |
+
]
|
406 |
+
);
|
407 |
+
|
408 |
if ('eael-post-grid' === $wb->get_name()) {
|
409 |
$wb->add_responsive_control(
|
410 |
'eael_post_grid_columns',
|
1619 |
|
1620 |
public function advanced_data_table_source($wb)
|
1621 |
{
|
1622 |
+
if (apply_filters('eael/is_plugin_active', 'ninja-tables/ninja-tables.php')) {
|
1623 |
$wb->add_control(
|
1624 |
'ea_adv_data_table_source_ninja_table_id',
|
1625 |
[
|
includes/Traits/Core.php
CHANGED
@@ -26,15 +26,11 @@ trait Core
|
|
26 |
*
|
27 |
* @since 3.0.0
|
28 |
*/
|
29 |
-
public function
|
30 |
{
|
31 |
-
|
32 |
|
33 |
-
|
34 |
-
return true;
|
35 |
-
}
|
36 |
-
|
37 |
-
return false;
|
38 |
}
|
39 |
|
40 |
/**
|
26 |
*
|
27 |
* @since 3.0.0
|
28 |
*/
|
29 |
+
public function is_plugin_active($plugin)
|
30 |
{
|
31 |
+
include_once ABSPATH . 'wp-admin/includes/plugin.php';
|
32 |
|
33 |
+
return is_plugin_active($plugin);
|
|
|
|
|
|
|
|
|
34 |
}
|
35 |
|
36 |
/**
|
includes/Traits/Elements.php
CHANGED
@@ -313,7 +313,7 @@ trait Elements
|
|
313 |
*/
|
314 |
public function render_global_html()
|
315 |
{
|
316 |
-
if (!apply_filters('eael/
|
317 |
return;
|
318 |
}
|
319 |
|
313 |
*/
|
314 |
public function render_global_html()
|
315 |
{
|
316 |
+
if (!apply_filters('eael/is_plugin_active', 'elementor/elementor.php')) {
|
317 |
return;
|
318 |
}
|
319 |
|
includes/Traits/Enqueue.php
CHANGED
@@ -56,7 +56,7 @@ trait Enqueue
|
|
56 |
|
57 |
public function enqueue_scripts()
|
58 |
{
|
59 |
-
if (!apply_filters('eael/
|
60 |
return;
|
61 |
}
|
62 |
|
56 |
|
57 |
public function enqueue_scripts()
|
58 |
{
|
59 |
+
if (!apply_filters('eael/is_plugin_active', 'elementor/elementor.php')) {
|
60 |
return;
|
61 |
}
|
62 |
|
includes/Traits/Generator.php
CHANGED
@@ -11,7 +11,7 @@ trait Generator
|
|
11 |
{
|
12 |
public function init_request_data()
|
13 |
{
|
14 |
-
if (!apply_filters('eael/
|
15 |
return;
|
16 |
}
|
17 |
|
@@ -173,7 +173,7 @@ trait Generator
|
|
173 |
|
174 |
public function update_request_data()
|
175 |
{
|
176 |
-
if (!apply_filters('eael/
|
177 |
return;
|
178 |
}
|
179 |
|
11 |
{
|
12 |
public function init_request_data()
|
13 |
{
|
14 |
+
if (!apply_filters('eael/is_plugin_active', 'elementor/elementor.php')) {
|
15 |
return;
|
16 |
}
|
17 |
|
173 |
|
174 |
public function update_request_data()
|
175 |
{
|
176 |
+
if (!apply_filters('eael/is_plugin_active', 'elementor/elementor.php')) {
|
177 |
return;
|
178 |
}
|
179 |
|
includes/Traits/Template_Query.php
CHANGED
@@ -10,7 +10,7 @@ trait Template_Query
|
|
10 |
{
|
11 |
|
12 |
/**
|
13 |
-
*
|
14 |
*
|
15 |
* @array
|
16 |
*/
|
@@ -37,7 +37,7 @@ trait Template_Query
|
|
37 |
}
|
38 |
|
39 |
/**
|
40 |
-
*
|
41 |
*
|
42 |
* @return string templates directory from the active theme.
|
43 |
*/
|
@@ -63,7 +63,7 @@ trait Template_Query
|
|
63 |
}
|
64 |
|
65 |
/**
|
66 |
-
*
|
67 |
*
|
68 |
* @return string templates directory path of lite version.
|
69 |
*/
|
@@ -76,18 +76,13 @@ trait Template_Query
|
|
76 |
}
|
77 |
|
78 |
/**
|
79 |
-
*
|
80 |
*
|
81 |
* @return string templates directory path of pro version.
|
82 |
*/
|
83 |
private function get_pro_template_dir()
|
84 |
{
|
85 |
-
|
86 |
-
if (!function_exists('is_plugin_active')) {
|
87 |
-
include_once ABSPATH . 'wp-admin/includes/plugin.php';
|
88 |
-
}
|
89 |
-
|
90 |
-
if (!apply_filters('eael/active_plugins', 'essential-addons-elementor/essential_adons_elementor.php')) {
|
91 |
return false;
|
92 |
}
|
93 |
|
@@ -100,29 +95,29 @@ trait Template_Query
|
|
100 |
/**
|
101 |
* Collecting templates from different sources.
|
102 |
*
|
103 |
-
* @return array
|
104 |
*/
|
105 |
private function get_template_files()
|
106 |
{
|
107 |
-
|
108 |
-
return ['theme' => scandir($this->theme_templates_dir(), 1)];
|
109 |
-
}
|
110 |
-
|
111 |
-
$templates = $pro_templates = [];
|
112 |
|
113 |
if (is_dir($this->get_template_dir())) {
|
114 |
-
$templates['
|
|
|
|
|
|
|
|
|
115 |
}
|
116 |
|
117 |
if (is_dir($this->get_pro_template_dir())) {
|
118 |
-
$
|
119 |
}
|
120 |
|
121 |
-
return
|
122 |
}
|
123 |
|
124 |
/**
|
125 |
-
*
|
126 |
*
|
127 |
* @return array template list.
|
128 |
*/
|
@@ -135,7 +130,7 @@ trait Template_Query
|
|
135 |
foreach ($handler as $handle) {
|
136 |
if (strpos($handle, '.php') !== false) {
|
137 |
|
138 |
-
if ($key === '
|
139 |
$path = sprintf('%s/%s', $this->get_template_dir(), $handle);
|
140 |
} else if ($key === 'pro') {
|
141 |
$path = sprintf('%s/%s', $this->get_pro_template_dir(), $handle);
|
@@ -157,6 +152,46 @@ trait Template_Query
|
|
157 |
return $files;
|
158 |
}
|
159 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
160 |
/**
|
161 |
* Preparing template options for frontend select
|
162 |
*
|
@@ -191,7 +226,7 @@ trait Template_Query
|
|
191 |
}
|
192 |
|
193 |
/**
|
194 |
-
*
|
195 |
*
|
196 |
* @param string $filename
|
197 |
*
|
10 |
{
|
11 |
|
12 |
/**
|
13 |
+
* Retrieves Template name from file header.
|
14 |
*
|
15 |
* @array
|
16 |
*/
|
37 |
}
|
38 |
|
39 |
/**
|
40 |
+
* Retrieve `Theme Template Directory`
|
41 |
*
|
42 |
* @return string templates directory from the active theme.
|
43 |
*/
|
63 |
}
|
64 |
|
65 |
/**
|
66 |
+
* Retrieves the lite plugin template directory path.
|
67 |
*
|
68 |
* @return string templates directory path of lite version.
|
69 |
*/
|
76 |
}
|
77 |
|
78 |
/**
|
79 |
+
* Retrieves the pro plugin template directory path.
|
80 |
*
|
81 |
* @return string templates directory path of pro version.
|
82 |
*/
|
83 |
private function get_pro_template_dir()
|
84 |
{
|
85 |
+
if (!apply_filters('eael/is_plugin_active', 'essential-addons-elementor/essential_adons_elementor.php')) {
|
|
|
|
|
|
|
|
|
|
|
86 |
return false;
|
87 |
}
|
88 |
|
95 |
/**
|
96 |
* Collecting templates from different sources.
|
97 |
*
|
98 |
+
* @return array
|
99 |
*/
|
100 |
private function get_template_files()
|
101 |
{
|
102 |
+
$templates = [];
|
|
|
|
|
|
|
|
|
103 |
|
104 |
if (is_dir($this->get_template_dir())) {
|
105 |
+
$templates['lite'] = scandir($this->get_template_dir(), 1);
|
106 |
+
}
|
107 |
+
|
108 |
+
if ($this->theme_templates_dir()) {
|
109 |
+
$templates['theme'] = scandir($this->theme_templates_dir(), 1);
|
110 |
}
|
111 |
|
112 |
if (is_dir($this->get_pro_template_dir())) {
|
113 |
+
$templates['pro'] = scandir($this->get_pro_template_dir(), 1);
|
114 |
}
|
115 |
|
116 |
+
return $templates;
|
117 |
}
|
118 |
|
119 |
/**
|
120 |
+
* Retrieves template list from template directory.
|
121 |
*
|
122 |
* @return array template list.
|
123 |
*/
|
130 |
foreach ($handler as $handle) {
|
131 |
if (strpos($handle, '.php') !== false) {
|
132 |
|
133 |
+
if ($key === 'lite') {
|
134 |
$path = sprintf('%s/%s', $this->get_template_dir(), $handle);
|
135 |
} else if ($key === 'pro') {
|
136 |
$path = sprintf('%s/%s', $this->get_pro_template_dir(), $handle);
|
152 |
return $files;
|
153 |
}
|
154 |
|
155 |
+
/**
|
156 |
+
* Retrieves template list from template directory.
|
157 |
+
*
|
158 |
+
* @return array template list.
|
159 |
+
*/
|
160 |
+
public function get_template_list_for_dropdown()
|
161 |
+
{
|
162 |
+
$files = [];
|
163 |
+
if ($this->get_template_files()) {
|
164 |
+
foreach ($this->get_template_files() as $key => $handler) {
|
165 |
+
foreach ($handler as $handle) {
|
166 |
+
if (strpos($handle, '.php') !== false) {
|
167 |
+
|
168 |
+
$path = $this->_get_path($key, $handle);
|
169 |
+
$template_info = get_file_data($path, $this->template_headers);
|
170 |
+
$template_name = $template_info['Template Name'];
|
171 |
+
|
172 |
+
if ($template_name) {
|
173 |
+
$files[strtolower($template_name)] = sprintf("%s (%s)", ucfirst($template_name), ucfirst($key));
|
174 |
+
}
|
175 |
+
}
|
176 |
+
}
|
177 |
+
}
|
178 |
+
}
|
179 |
+
return $files;
|
180 |
+
}
|
181 |
+
|
182 |
+
public function _get_path($key, $handle)
|
183 |
+
{
|
184 |
+
$path = '';
|
185 |
+
if ($key === 'lite') {
|
186 |
+
$path = sprintf('%s/%s', $this->get_template_dir(), $handle);
|
187 |
+
} else if ($key === 'pro') {
|
188 |
+
$path = sprintf('%s/%s', $this->get_pro_template_dir(), $handle);
|
189 |
+
} else if ($key === 'theme') {
|
190 |
+
$path = sprintf('%s/%s', $this->theme_templates_dir(), $handle);
|
191 |
+
}
|
192 |
+
return $path;
|
193 |
+
}
|
194 |
+
|
195 |
/**
|
196 |
* Preparing template options for frontend select
|
197 |
*
|
226 |
}
|
227 |
|
228 |
/**
|
229 |
+
* Retrieve template
|
230 |
*
|
231 |
* @param string $filename
|
232 |
*
|
languages/essential-addons-for-elementor-lite.pot
CHANGED
@@ -13,11 +13,11 @@ msgstr ""
|
|
13 |
"X-Poedit-SourceCharset: UTF-8\n"
|
14 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
15 |
|
16 |
-
#: ../includes/Classes/Helper.php:168, ../includes/Elements/Adv_Accordion.php:265, ../includes/Elements/Adv_Tabs.php:233, ../includes/Elements/Contact_Form_7.php:264, ../includes/Elements/Content_Ticker.php:
|
17 |
msgid "Go Premium for More Features"
|
18 |
msgstr ""
|
19 |
|
20 |
-
#: ../includes/Classes/Helper.php:175, ../includes/Elements/Adv_Accordion.php:272, ../includes/Elements/Adv_Tabs.php:240, ../includes/Elements/Contact_Form_7.php:271, ../includes/Elements/Content_Ticker.php:
|
21 |
msgid "Unlock more possibilities"
|
22 |
msgstr ""
|
23 |
|
@@ -264,11 +264,11 @@ msgstr ""
|
|
264 |
msgid "Width"
|
265 |
msgstr ""
|
266 |
|
267 |
-
#: ../includes/Elements/Advanced_Data_Table.php:318, ../includes/Elements/Advanced_Data_Table.php:986, ../includes/Elements/Advanced_Data_Table.php:1184, ../includes/Elements/Advanced_Data_Table.php:1256, ../includes/Elements/Advanced_Data_Table.php:1384, ../includes/Elements/Adv_Accordion.php:326, ../includes/Elements/Adv_Accordion.php:533, ../includes/Elements/Adv_Accordion.php:606, ../includes/Elements/Adv_Accordion.php:679, ../includes/Elements/Adv_Accordion.php:776, ../includes/Elements/Adv_Accordion.php:900, ../includes/Elements/Adv_Accordion.php:947, ../includes/Elements/Adv_Accordion.php:994, ../includes/Elements/Adv_Tabs.php:295, ../includes/Elements/Adv_Tabs.php:485, ../includes/Elements/Adv_Tabs.php:551, ../includes/Elements/Adv_Tabs.php:620, ../includes/Elements/Adv_Tabs.php:715, ../includes/Elements/Betterdocs_Category_Box.php:298, ../includes/Elements/Betterdocs_Category_Box.php:366, ../includes/Elements/Betterdocs_Category_Box.php:487, ../includes/Elements/Betterdocs_Category_Box.php:563, ../includes/Elements/Betterdocs_Category_Box.php:883, ../includes/Elements/Betterdocs_Category_Box.php:988, ../includes/Elements/Betterdocs_Category_Grid.php:338, ../includes/Elements/Betterdocs_Category_Grid.php:386, ../includes/Elements/Betterdocs_Category_Grid.php:471, ../includes/Elements/Betterdocs_Category_Grid.php:512, ../includes/Elements/Betterdocs_Category_Grid.php:637, ../includes/Elements/Betterdocs_Category_Grid.php:691, ../includes/Elements/Betterdocs_Category_Grid.php:840, ../includes/Elements/Betterdocs_Category_Grid.php:937, ../includes/Elements/Betterdocs_Category_Grid.php:1182, ../includes/Elements/Betterdocs_Category_Grid.php:1382, ../includes/Elements/Betterdocs_Category_Grid.php:1481, ../includes/Elements/Betterdocs_Search_Form.php:211, ../includes/Elements/Betterdocs_Search_Form.php:366, ../includes/Elements/Betterdocs_Search_Form.php:424, ../includes/Elements/Betterdocs_Search_Form.php:534, ../includes/Elements/Caldera_Forms.php:611, ../includes/Elements/Caldera_Forms.php:807, ../includes/Elements/Caldera_Forms.php:1223, ../includes/Elements/Caldera_Forms.php:1381, ../includes/Elements/Contact_Form_7.php:705, ../includes/Elements/Contact_Form_7.php:770, ../includes/Elements/Contact_Form_7.php:1252, ../includes/Elements/Contact_Form_7.php:1489, ../includes/Elements/Contact_Form_7.php:1564, ../includes/Elements/Contact_Form_7.php:1641, ../includes/Elements/Content_Ticker.php:
|
268 |
msgid "Border"
|
269 |
msgstr ""
|
270 |
|
271 |
-
#: ../includes/Elements/Advanced_Data_Table.php:344, ../includes/Elements/Advanced_Data_Table.php:1012, ../includes/Elements/Advanced_Data_Table.php:1210, ../includes/Elements/Advanced_Data_Table.php:1282, ../includes/Elements/Advanced_Data_Table.php:1406, ../includes/Elements/Adv_Accordion.php:333, ../includes/Elements/Adv_Accordion.php:540, ../includes/Elements/Adv_Accordion.php:613, ../includes/Elements/Adv_Accordion.php:686, ../includes/Elements/Adv_Tabs.php:303, ../includes/Elements/Adv_Tabs.php:492, ../includes/Elements/Adv_Tabs.php:558, ../includes/Elements/Adv_Tabs.php:627, ../includes/Elements/Adv_Tabs.php:722, ../includes/Elements/Betterdocs_Category_Box.php:306, ../includes/Elements/Betterdocs_Category_Box.php:374, ../includes/Elements/Betterdocs_Category_Box.php:495, ../includes/Elements/Betterdocs_Category_Box.php:572, ../includes/Elements/Betterdocs_Category_Box.php:894, ../includes/Elements/Betterdocs_Category_Box.php:999, ../includes/Elements/Betterdocs_Category_Grid.php:346, ../includes/Elements/Betterdocs_Category_Grid.php:394, ../includes/Elements/Betterdocs_Category_Grid.php:479, ../includes/Elements/Betterdocs_Category_Grid.php:520, ../includes/Elements/Betterdocs_Category_Grid.php:645, ../includes/Elements/Betterdocs_Category_Grid.php:699, ../includes/Elements/Betterdocs_Category_Grid.php:851, ../includes/Elements/Betterdocs_Category_Grid.php:948, ../includes/Elements/Betterdocs_Category_Grid.php:1390, ../includes/Elements/Betterdocs_Category_Grid.php:1489, ../includes/Elements/Betterdocs_Search_Form.php:198, ../includes/Elements/Caldera_Forms.php:474, ../includes/Elements/Caldera_Forms.php:622, ../includes/Elements/Caldera_Forms.php:1040, ../includes/Elements/Caldera_Forms.php:1066, ../includes/Elements/Caldera_Forms.php:1233, ../includes/Elements/Contact_Form_7.php:390, ../includes/Elements/Contact_Form_7.php:716, ../includes/Elements/Contact_Form_7.php:1067, ../includes/Elements/Contact_Form_7.php:1093, ../includes/Elements/Contact_Form_7.php:1261, ../includes/Elements/Content_Ticker.php:
|
272 |
msgid "Border Radius"
|
273 |
msgstr ""
|
274 |
|
@@ -288,23 +288,23 @@ msgstr ""
|
|
288 |
msgid "Text Alignment"
|
289 |
msgstr ""
|
290 |
|
291 |
-
#: ../includes/Elements/Advanced_Data_Table.php:388, ../includes/Elements/Advanced_Data_Table.php:507, ../includes/Elements/Advanced_Data_Table.php:933, ../includes/Elements/Advanced_Data_Table.php:1080, ../includes/Elements/Adv_Accordion.php:137, ../includes/Elements/Betterdocs_Category_Box.php:765, ../includes/Elements/Betterdocs_Category_Grid.php:1509, ../includes/Elements/Betterdocs_Category_Grid.php:1534, ../includes/Elements/Caldera_Forms.php:227, ../includes/Elements/Caldera_Forms.php:409, ../includes/Elements/Caldera_Forms.php:555, ../includes/Elements/Caldera_Forms.php:1130, ../includes/Elements/Contact_Form_7.php:325, ../includes/Elements/Contact_Form_7.php:437, ../includes/Elements/Contact_Form_7.php:1157, ../includes/Elements/Content_Ticker.php:
|
292 |
msgid "Left"
|
293 |
msgstr ""
|
294 |
|
295 |
-
#: ../includes/Elements/Advanced_Data_Table.php:392, ../includes/Elements/Advanced_Data_Table.php:511, ../includes/Elements/Advanced_Data_Table.php:937, ../includes/Elements/Advanced_Data_Table.php:1084, ../includes/Elements/Betterdocs_Category_Box.php:769, ../includes/Elements/Betterdocs_Category_Grid.php:1513, ../includes/Elements/Betterdocs_Category_Grid.php:1538, ../includes/Elements/Caldera_Forms.php:231, ../includes/Elements/Caldera_Forms.php:413, ../includes/Elements/Caldera_Forms.php:559, ../includes/Elements/Caldera_Forms.php:1134, ../includes/Elements/Contact_Form_7.php:329, ../includes/Elements/Contact_Form_7.php:441, ../includes/Elements/Contact_Form_7.php:1161, ../includes/Elements/Countdown.php:122, ../includes/Elements/Countdown.php:1020, ../includes/Elements/Creative_Button.php:407, ../includes/Elements/Cta_Box.php:102, ../includes/Elements/Data_Table.php:517, ../includes/Elements/Data_Table.php:740, ../includes/Elements/Data_Table.php:989, ../includes/Elements/Dual_Color_Header.php:192, ../includes/Elements/Dual_Color_Header.php:537, ../includes/Elements/Event_Calendar.php:959, ../includes/Elements/Event_Calendar.php:1091, ../includes/Elements/Fancy_Text.php:175, ../includes/Elements/Filterable_Gallery.php:756, ../includes/Elements/Filterable_Gallery.php:1288, ../includes/Elements/Filterable_Gallery.php:1671, ../includes/Elements/Flip_Box.php:428, ../includes/Elements/FluentForm.php:237, ../includes/Elements/FluentForm.php:432, ../includes/Elements/FluentForm.php:578, ../includes/Elements/FluentForm.php:1209, ../includes/Elements/FluentForm.php:1454, ../includes/Elements/Formstack.php:332, ../includes/Elements/Formstack.php:447, ../includes/Elements/Formstack.php:761, ../includes/Elements/Formstack.php:1370, ../includes/Elements/GravityForms.php:345, ../includes/Elements/GravityForms.php:482, ../includes/Elements/GravityForms.php:627, ../includes/Elements/GravityForms.php:1719, ../includes/Elements/GravityForms.php:1969, ../includes/Elements/Image_Accordion.php:100, ../includes/Elements/Image_Accordion.php:123, ../includes/Elements/Info_Box.php:306, ../includes/Elements/Login_Register.php:2500, ../includes/Elements/Login_Register.php:3016, ../includes/Elements/Login_Register.php:3038, ../includes/Elements/Login_Register.php:3315, ../includes/Elements/Login_Register.php:3335, ../includes/Elements/Login_Register.php:3358, ../includes/Elements/NinjaForms.php:280, ../includes/Elements/NinjaForms.php:419, ../includes/Elements/NinjaForms.php:601, ../includes/Elements/NinjaForms.php:1296, ../includes/Elements/Post_Grid.php:453, ../includes/Elements/Post_Grid.php:608, ../includes/Elements/Post_Grid.php:676, ../includes/Elements/Post_Grid.php:771, ../includes/Elements/Post_Grid.php:854, ../includes/Elements/Post_Timeline.php:331, ../includes/Elements/Post_Timeline.php:387, ../includes/Elements/Pricing_Table.php:757, ../includes/Elements/Pricing_Table.php:782, ../includes/Elements/Product_Grid.php:
|
296 |
msgid "Center"
|
297 |
msgstr ""
|
298 |
|
299 |
-
#: ../includes/Elements/Advanced_Data_Table.php:396, ../includes/Elements/Advanced_Data_Table.php:515, ../includes/Elements/Advanced_Data_Table.php:941, ../includes/Elements/Advanced_Data_Table.php:1088, ../includes/Elements/Adv_Accordion.php:136, ../includes/Elements/Betterdocs_Category_Box.php:773, ../includes/Elements/Betterdocs_Category_Grid.php:1517, ../includes/Elements/Betterdocs_Category_Grid.php:1542, ../includes/Elements/Caldera_Forms.php:235, ../includes/Elements/Caldera_Forms.php:417, ../includes/Elements/Caldera_Forms.php:563, ../includes/Elements/Caldera_Forms.php:1138, ../includes/Elements/Contact_Form_7.php:333, ../includes/Elements/Contact_Form_7.php:445, ../includes/Elements/Contact_Form_7.php:1165, ../includes/Elements/Content_Ticker.php:
|
300 |
msgid "Right"
|
301 |
msgstr ""
|
302 |
|
303 |
-
#: ../includes/Elements/Advanced_Data_Table.php:411, ../includes/Elements/Advanced_Data_Table.php:530, ../includes/Elements/Advanced_Data_Table.php:624, ../includes/Elements/Advanced_Data_Table.php:655, ../includes/Elements/Advanced_Data_Table.php:686, ../includes/Elements/Advanced_Data_Table.php:717, ../includes/Elements/Advanced_Data_Table.php:748, ../includes/Elements/Advanced_Data_Table.php:779, ../includes/Elements/Advanced_Data_Table.php:961, ../includes/Elements/Advanced_Data_Table.php:1157, ../includes/Elements/Advanced_Data_Table.php:1227, ../includes/Elements/Adv_Accordion.php:506, ../includes/Elements/Adv_Accordion.php:579, ../includes/Elements/Adv_Accordion.php:652, ../includes/Elements/Adv_Accordion.php:735, ../includes/Elements/Adv_Tabs.php:459, ../includes/Elements/Adv_Tabs.php:525, ../includes/Elements/Adv_Tabs.php:592, ../includes/Elements/Adv_Tabs.php:674, ../includes/Elements/Caldera_Forms.php:264, ../includes/Elements/Caldera_Forms.php:325, ../includes/Elements/Caldera_Forms.php:517, ../includes/Elements/Caldera_Forms.php:598, ../includes/Elements/Caldera_Forms.php:844, ../includes/Elements/Caldera_Forms.php:900, ../includes/Elements/Caldera_Forms.php:1210, ../includes/Elements/Caldera_Forms.php:1316, ../includes/Elements/Caldera_Forms.php:1369, ../includes/Elements/Contact_Form_7.php:468, ../includes/Elements/Contact_Form_7.php:499, ../includes/Elements/Contact_Form_7.php:556, ../includes/Elements/Contact_Form_7.php:839, ../includes/Elements/Contact_Form_7.php:914, ../includes/Elements/Contact_Form_7.php:1239, ../includes/Elements/Contact_Form_7.php:1345, ../includes/Elements/Contact_Form_7.php:1409, ../includes/Elements/Contact_Form_7.php:1473, ../includes/Elements/Contact_Form_7.php:1534, ../includes/Elements/Contact_Form_7.php:1616, ../includes/Elements/Content_Ticker.php:
|
304 |
msgid "Text Color"
|
305 |
msgstr ""
|
306 |
|
307 |
-
#: ../includes/Elements/Advanced_Data_Table.php:425, ../includes/Elements/Advanced_Data_Table.php:566, ../includes/Elements/Advanced_Data_Table.php:639, ../includes/Elements/Advanced_Data_Table.php:670, ../includes/Elements/Advanced_Data_Table.php:701, ../includes/Elements/Advanced_Data_Table.php:732, ../includes/Elements/Advanced_Data_Table.php:763, ../includes/Elements/Advanced_Data_Table.php:794, ../includes/Elements/Advanced_Data_Table.php:973, ../includes/Elements/Advanced_Data_Table.php:1170, ../includes/Elements/Advanced_Data_Table.php:1241, ../includes/Elements/Advanced_Data_Table.php:1336, ../includes/Elements/Advanced_Data_Table.php:1366, ../includes/Elements/Adv_Accordion.php:487, ../includes/Elements/Adv_Accordion.php:560, ../includes/Elements/Adv_Accordion.php:633, ../includes/Elements/Adv_Accordion.php:714, ../includes/Elements/Adv_Accordion.php:886, ../includes/Elements/Adv_Accordion.php:932, ../includes/Elements/Adv_Accordion.php:979, ../includes/Elements/Adv_Tabs.php:440, ../includes/Elements/Adv_Tabs.php:655, ../includes/Elements/Caldera_Forms.php:586, ../includes/Elements/Caldera_Forms.php:794, ../includes/Elements/Caldera_Forms.php:1198, ../includes/Elements/Caldera_Forms.php:1304, ../includes/Elements/Caldera_Forms.php:1358, ../includes/Elements/Contact_Form_7.php:544, ../includes/Elements/Contact_Form_7.php:757, ../includes/Elements/Contact_Form_7.php:1227, ../includes/Elements/Contact_Form_7.php:1333, ../includes/Elements/Contact_Form_7.php:1458, ../includes/Elements/Contact_Form_7.php:1519, ../includes/Elements/Content_Ticker.php:
|
308 |
msgid "Background Color"
|
309 |
msgstr ""
|
310 |
|
@@ -312,7 +312,7 @@ msgstr ""
|
|
312 |
msgid "Cell Border"
|
313 |
msgstr ""
|
314 |
|
315 |
-
#: ../includes/Elements/Advanced_Data_Table.php:464, ../includes/Elements/Advanced_Data_Table.php:809, ../includes/Elements/Advanced_Data_Table.php:893, ../includes/Elements/Advanced_Data_Table.php:1111, ../includes/Elements/Advanced_Data_Table.php:1428, ../includes/Elements/Adv_Accordion.php:303, ../includes/Elements/Adv_Accordion.php:461, ../includes/Elements/Adv_Accordion.php:753, ../includes/Elements/Adv_Tabs.php:272, ../includes/Elements/Adv_Tabs.php:414, ../includes/Elements/Adv_Tabs.php:692, ../includes/Elements/Betterdocs_Category_Box.php:510, ../includes/Elements/Betterdocs_Category_Grid.php:555, ../includes/Elements/Betterdocs_Category_Grid.php:719, ../includes/Elements/Betterdocs_Category_Grid.php:1402, ../includes/Elements/Betterdocs_Search_Form.php:124, ../includes/Elements/Betterdocs_Search_Form.php:432, ../includes/Elements/Caldera_Forms.php:735, ../includes/Elements/Caldera_Forms.php:1245, ../includes/Elements/Contact_Form_7.php:592, ../includes/Elements/Contact_Form_7.php:1273, ../includes/Elements/Contact_Form_7.php:1689, ../includes/Elements/Content_Ticker.php:
|
316 |
msgid "Padding"
|
317 |
msgstr ""
|
318 |
|
@@ -368,23 +368,23 @@ msgstr ""
|
|
368 |
msgid "Margin Bottom"
|
369 |
msgstr ""
|
370 |
|
371 |
-
#: ../includes/Elements/Advanced_Data_Table.php:928, ../includes/Elements/Advanced_Data_Table.php:1076, ../includes/Elements/Caldera_Forms.php:223, ../includes/Elements/Caldera_Forms.php:551, ../includes/Elements/Caldera_Forms.php:1126, ../includes/Elements/Contact_Form_7.php:433, ../includes/Elements/Contact_Form_7.php:1152, ../includes/Elements/Countdown.php:114, ../includes/Elements/Cta_Box.php:96, ../includes/Elements/Data_Table.php:507, ../includes/Elements/Dual_Color_Header.php:183, ../includes/Elements/Dual_Color_Header.php:529, ../includes/Elements/Event_Calendar.php:951, ../includes/Elements/Event_Calendar.php:1083, ../includes/Elements/Fancy_Text.php:167, ../includes/Elements/Filterable_Gallery.php:748, ../includes/Elements/FluentForm.php:229, ../includes/Elements/FluentForm.php:570, ../includes/Elements/FluentForm.php:1201, ../includes/Elements/FluentForm.php:1446, ../includes/Elements/Formstack.php:439, ../includes/Elements/Formstack.php:753, ../includes/Elements/Formstack.php:1362, ../includes/Elements/GravityForms.php:474, ../includes/Elements/GravityForms.php:619, ../includes/Elements/GravityForms.php:1711, ../includes/Elements/GravityForms.php:1961, ../includes/Elements/Login_Register.php:3030, ../includes/Elements/Login_Register.php:3350, ../includes/Elements/NinjaForms.php:411, ../includes/Elements/NinjaForms.php:593, ../includes/Elements/NinjaForms.php:1288, ../includes/Elements/Post_Grid.php:445, ../includes/Elements/Post_Grid.php:763, ../includes/Elements/Post_Grid.php:846, ../includes/Elements/Product_Grid.php:
|
372 |
msgid "Alignment"
|
373 |
msgstr ""
|
374 |
|
375 |
-
#: ../includes/Elements/Advanced_Data_Table.php:1132, ../includes/Elements/Adv_Accordion.php:314, ../includes/Elements/Adv_Accordion.php:472, ../includes/Elements/Adv_Accordion.php:764, ../includes/Elements/Adv_Tabs.php:283, ../includes/Elements/Adv_Tabs.php:425, ../includes/Elements/Adv_Tabs.php:703, ../includes/Elements/Betterdocs_Category_Grid.php:567, ../includes/Elements/Betterdocs_Category_Grid.php:733, ../includes/Elements/Caldera_Forms.php:291, ../includes/Elements/Caldera_Forms.php:353, ../includes/Elements/Contact_Form_7.php:366, ../includes/Elements/Contact_Form_7.php:1578, ../includes/Elements/Contact_Form_7.php:1675, ../includes/Elements/Content_Ticker.php:
|
376 |
msgid "Margin"
|
377 |
msgstr ""
|
378 |
|
379 |
-
#: ../includes/Elements/Advanced_Data_Table.php:1152, ../includes/Elements/Advanced_Data_Table.php:1318, ../includes/Elements/Adv_Accordion.php:483, ../includes/Elements/Adv_Accordion.php:866, ../includes/Elements/Adv_Tabs.php:436, ../includes/Elements/Betterdocs_Category_Box.php:282, ../includes/Elements/Betterdocs_Category_Box.php:450, ../includes/Elements/Betterdocs_Category_Box.php:675, ../includes/Elements/Betterdocs_Category_Box.php:844, ../includes/Elements/Betterdocs_Category_Grid.php:312, ../includes/Elements/Betterdocs_Category_Grid.php:452, ../includes/Elements/Betterdocs_Category_Grid.php:607, ../includes/Elements/Betterdocs_Category_Grid.php:796, ../includes/Elements/Betterdocs_Category_Grid.php:1344, ../includes/Elements/Betterdocs_Search_Form.php:390, ../includes/Elements/Caldera_Forms.php:579, ../includes/Elements/Caldera_Forms.php:967, ../includes/Elements/Caldera_Forms.php:1191, ../includes/Elements/Contact_Form_7.php:537, ../includes/Elements/Contact_Form_7.php:994, ../includes/Elements/Contact_Form_7.php:1220, ../includes/Elements/Content_Ticker.php:
|
380 |
msgid "Normal"
|
381 |
msgstr ""
|
382 |
|
383 |
-
#: ../includes/Elements/Advanced_Data_Table.php:1222, ../includes/Elements/Advanced_Data_Table.php:1348, ../includes/Elements/Adv_Accordion.php:554, ../includes/Elements/Adv_Accordion.php:912, ../includes/Elements/Adv_Tabs.php:502, ../includes/Elements/Betterdocs_Category_Box.php:328, ../includes/Elements/Betterdocs_Category_Box.php:546, ../includes/Elements/Betterdocs_Category_Box.php:708, ../includes/Elements/Betterdocs_Category_Box.php:957, ../includes/Elements/Betterdocs_Category_Grid.php:360, ../includes/Elements/Betterdocs_Category_Grid.php:493, ../includes/Elements/Betterdocs_Category_Grid.php:661, ../includes/Elements/Betterdocs_Category_Grid.php:868, ../includes/Elements/Betterdocs_Category_Grid.php:1428, ../includes/Elements/Betterdocs_Search_Form.php:474, ../includes/Elements/Caldera_Forms.php:1297, ../includes/Elements/Contact_Form_7.php:1326, ../includes/Elements/Content_Ticker.php:
|
384 |
msgid "Hover"
|
385 |
msgstr ""
|
386 |
|
387 |
-
#: ../includes/Elements/Advanced_Data_Table.php:1323, ../includes/Elements/Advanced_Data_Table.php:1353, ../includes/Elements/Betterdocs_Category_Box.php:681, ../includes/Elements/Betterdocs_Category_Box.php:714, ../includes/Elements/Betterdocs_Category_Box.php:858, ../includes/Elements/Betterdocs_Category_Box.php:963, ../includes/Elements/Betterdocs_Category_Grid.php:613, ../includes/Elements/Betterdocs_Category_Grid.php:667, ../includes/Elements/Betterdocs_Category_Grid.php:802, ../includes/Elements/Betterdocs_Category_Grid.php:899, ../includes/Elements/Betterdocs_Category_Grid.php:1002, ../includes/Elements/Betterdocs_Category_Grid.php:1082, ../includes/Elements/Betterdocs_Category_Grid.php:1158, ../includes/Elements/Betterdocs_Category_Grid.php:1235, ../includes/Elements/Betterdocs_Category_Grid.php:1358, ../includes/Elements/Betterdocs_Category_Grid.php:1457, ../includes/Elements/Betterdocs_Search_Form.php:238, ../includes/Elements/Betterdocs_Search_Form.php:275, ../includes/Elements/Caldera_Forms.php:977, ../includes/Elements/Caldera_Forms.php:1093, ../includes/Elements/Caldera_Forms.php:1425, ../includes/Elements/Contact_Form_7.php:1004, ../includes/Elements/Contact_Form_7.php:1120, ../includes/Elements/Content_Ticker.php:
|
388 |
msgid "Color"
|
389 |
msgstr ""
|
390 |
|
@@ -416,39 +416,39 @@ msgstr ""
|
|
416 |
msgid "Select Accordion Tab Title Tag"
|
417 |
msgstr ""
|
418 |
|
419 |
-
#: ../includes/Elements/Adv_Accordion.php:110, ../includes/Elements/Betterdocs_Category_Box.php:184, ../includes/Elements/Betterdocs_Category_Grid.php:222, ../includes/Elements/Cta_Box.php:190, ../includes/Elements/Dual_Color_Header.php:135, ../includes/Elements/Filterable_Gallery.php:362, ../includes/Elements/Flip_Box.php:340, ../includes/Elements/Flip_Box.php:389, ../includes/Elements/Image_Accordion.php:143, ../includes/Elements/Info_Box.php:232, ../includes/Elements/Progress_Bar.php:133, ../includes/Elements/Tooltip.php:112, ../includes/Extensions/Table_of_Content.php:146, ../includes/Traits/Controls.php:
|
420 |
msgid "H1"
|
421 |
msgstr ""
|
422 |
|
423 |
-
#: ../includes/Elements/Adv_Accordion.php:111, ../includes/Elements/Betterdocs_Category_Box.php:185, ../includes/Elements/Betterdocs_Category_Grid.php:223, ../includes/Elements/Cta_Box.php:191, ../includes/Elements/Dual_Color_Header.php:136, ../includes/Elements/Filterable_Gallery.php:363, ../includes/Elements/Flip_Box.php:341, ../includes/Elements/Flip_Box.php:390, ../includes/Elements/Image_Accordion.php:144, ../includes/Elements/Info_Box.php:233, ../includes/Elements/Progress_Bar.php:134, ../includes/Elements/Tooltip.php:113, ../includes/Extensions/Table_of_Content.php:147, ../includes/Traits/Controls.php:
|
424 |
msgid "H2"
|
425 |
msgstr ""
|
426 |
|
427 |
-
#: ../includes/Elements/Adv_Accordion.php:112, ../includes/Elements/Betterdocs_Category_Box.php:186, ../includes/Elements/Betterdocs_Category_Grid.php:224, ../includes/Elements/Cta_Box.php:192, ../includes/Elements/Dual_Color_Header.php:137, ../includes/Elements/Filterable_Gallery.php:364, ../includes/Elements/Flip_Box.php:342, ../includes/Elements/Flip_Box.php:391, ../includes/Elements/Image_Accordion.php:145, ../includes/Elements/Info_Box.php:234, ../includes/Elements/Progress_Bar.php:135, ../includes/Elements/Tooltip.php:114, ../includes/Extensions/Table_of_Content.php:148, ../includes/Traits/Controls.php:
|
428 |
msgid "H3"
|
429 |
msgstr ""
|
430 |
|
431 |
-
#: ../includes/Elements/Adv_Accordion.php:113, ../includes/Elements/Betterdocs_Category_Box.php:187, ../includes/Elements/Betterdocs_Category_Grid.php:225, ../includes/Elements/Cta_Box.php:193, ../includes/Elements/Dual_Color_Header.php:138, ../includes/Elements/Filterable_Gallery.php:365, ../includes/Elements/Flip_Box.php:343, ../includes/Elements/Flip_Box.php:392, ../includes/Elements/Image_Accordion.php:146, ../includes/Elements/Info_Box.php:235, ../includes/Elements/Progress_Bar.php:136, ../includes/Elements/Tooltip.php:115, ../includes/Extensions/Table_of_Content.php:149, ../includes/Traits/Controls.php:
|
432 |
msgid "H4"
|
433 |
msgstr ""
|
434 |
|
435 |
-
#: ../includes/Elements/Adv_Accordion.php:114, ../includes/Elements/Betterdocs_Category_Box.php:188, ../includes/Elements/Betterdocs_Category_Grid.php:226, ../includes/Elements/Cta_Box.php:194, ../includes/Elements/Dual_Color_Header.php:139, ../includes/Elements/Filterable_Gallery.php:366, ../includes/Elements/Flip_Box.php:344, ../includes/Elements/Flip_Box.php:393, ../includes/Elements/Image_Accordion.php:147, ../includes/Elements/Info_Box.php:236, ../includes/Elements/Progress_Bar.php:137, ../includes/Elements/Tooltip.php:116, ../includes/Extensions/Table_of_Content.php:150, ../includes/Traits/Controls.php:
|
436 |
msgid "H5"
|
437 |
msgstr ""
|
438 |
|
439 |
-
#: ../includes/Elements/Adv_Accordion.php:115, ../includes/Elements/Betterdocs_Category_Box.php:189, ../includes/Elements/Betterdocs_Category_Grid.php:227, ../includes/Elements/Cta_Box.php:195, ../includes/Elements/Dual_Color_Header.php:140, ../includes/Elements/Filterable_Gallery.php:367, ../includes/Elements/Flip_Box.php:345, ../includes/Elements/Flip_Box.php:394, ../includes/Elements/Image_Accordion.php:148, ../includes/Elements/Info_Box.php:237, ../includes/Elements/Progress_Bar.php:138, ../includes/Elements/Tooltip.php:117, ../includes/Extensions/Table_of_Content.php:151, ../includes/Traits/Controls.php:
|
440 |
msgid "H6"
|
441 |
msgstr ""
|
442 |
|
443 |
-
#: ../includes/Elements/Adv_Accordion.php:116, ../includes/Elements/Betterdocs_Category_Box.php:190, ../includes/Elements/Betterdocs_Category_Grid.php:228, ../includes/Elements/Cta_Box.php:196, ../includes/Elements/Dual_Color_Header.php:141, ../includes/Elements/Filterable_Gallery.php:368, ../includes/Elements/Flip_Box.php:346, ../includes/Elements/Flip_Box.php:395, ../includes/Elements/Image_Accordion.php:149, ../includes/Elements/Info_Box.php:238, ../includes/Traits/Controls.php:
|
444 |
msgid "Span"
|
445 |
msgstr ""
|
446 |
|
447 |
-
#: ../includes/Elements/Adv_Accordion.php:117, ../includes/Elements/Betterdocs_Category_Box.php:191, ../includes/Elements/Betterdocs_Category_Grid.php:229, ../includes/Elements/Cta_Box.php:197, ../includes/Elements/Dual_Color_Header.php:142, ../includes/Elements/Filterable_Gallery.php:369, ../includes/Elements/Flip_Box.php:347, ../includes/Elements/Flip_Box.php:396, ../includes/Elements/Image_Accordion.php:150, ../includes/Elements/Info_Box.php:239, ../includes/Elements/Tooltip.php:120, ../includes/Traits/Controls.php:
|
448 |
msgid "P"
|
449 |
msgstr ""
|
450 |
|
451 |
-
#: ../includes/Elements/Adv_Accordion.php:118, ../includes/Elements/Betterdocs_Category_Box.php:192, ../includes/Elements/Betterdocs_Category_Grid.php:230, ../includes/Elements/Cta_Box.php:198, ../includes/Elements/Dual_Color_Header.php:143, ../includes/Elements/Filterable_Gallery.php:370, ../includes/Elements/Flip_Box.php:348, ../includes/Elements/Flip_Box.php:397, ../includes/Elements/Image_Accordion.php:151, ../includes/Elements/Info_Box.php:240, ../includes/Traits/Controls.php:
|
452 |
msgid "Div"
|
453 |
msgstr ""
|
454 |
|
@@ -492,7 +492,7 @@ msgstr ""
|
|
492 |
msgid "Enable Tab Icon"
|
493 |
msgstr ""
|
494 |
|
495 |
-
#: ../includes/Elements/Adv_Accordion.php:208, ../includes/Elements/Adv_Tabs.php:153, ../includes/Elements/Adv_Tabs.php:165, ../includes/Elements/Betterdocs_Category_Box.php:405, ../includes/Elements/Betterdocs_Category_Box.php:439, ../includes/Elements/Betterdocs_Category_Grid.php:438, ../includes/Elements/Betterdocs_Category_Grid.php:1061, ../includes/Elements/Betterdocs_Category_Grid.php:1070, ../includes/Elements/Betterdocs_Category_Grid.php:1202, ../includes/Elements/Betterdocs_Category_Grid.php:1309, ../includes/Elements/Creative_Button.php:114, ../includes/Elements/Cta_Box.php:150, ../includes/Elements/Data_Table.php:138, ../includes/Elements/Data_Table.php:157, ../includes/Elements/Dual_Color_Header.php:115, ../includes/Elements/Dual_Color_Header.php:270, ../includes/Elements/Feature_List.php:75, ../includes/Elements/Feature_List.php:91, ../includes/Elements/Feature_List.php:501, ../includes/Elements/Flip_Box.php:113, ../includes/Elements/Flip_Box.php:136, ../includes/Elements/Flip_Box.php:200, ../includes/Elements/Flip_Box.php:223, ../includes/Elements/Info_Box.php:106, ../includes/Elements/Info_Box.php:175, ../includes/Elements/Info_Box.php:434, ../includes/Elements/Pricing_Table.php:163, ../includes/Elements/Team_Member.php:187, ../includes/Elements/Tooltip.php:72, ../includes/Elements/Tooltip.php:142, ../includes/Elements/Twitter_Feed.php:864, ../includes/Extensions/Table_of_Content.php:619, ../includes/Traits/Controls.php:
|
496 |
msgid "Icon"
|
497 |
msgstr ""
|
498 |
|
@@ -576,7 +576,7 @@ msgstr ""
|
|
576 |
msgid "Advanced Tabs"
|
577 |
msgstr ""
|
578 |
|
579 |
-
#: ../includes/Elements/Adv_Tabs.php:78, ../includes/Elements/Countdown.php:148, ../includes/Elements/Facebook_Feed.php:166, ../includes/Elements/Filterable_Gallery.php:166, ../includes/Elements/Progress_Bar.php:73, ../includes/Elements/Progress_Bar.php:99, ../includes/Elements/Woo_Checkout.php:114, ../includes/Traits/Controls.php:
|
580 |
msgid "Layout"
|
581 |
msgstr ""
|
582 |
|
@@ -624,7 +624,7 @@ msgstr ""
|
|
624 |
msgid "Icon Type"
|
625 |
msgstr ""
|
626 |
|
627 |
-
#: ../includes/Elements/Adv_Tabs.php:157, ../includes/Elements/Adv_Tabs.php:178, ../includes/Elements/Data_Table.php:142, ../includes/Elements/Data_Table.php:174, ../includes/Elements/Feature_List.php:79, ../includes/Elements/Feature_List.php:166, ../includes/Elements/Filterable_Gallery.php:552, ../includes/Elements/Flip_Box.php:112, ../includes/Elements/Flip_Box.php:199, ../includes/Elements/Info_Box.php:110, ../includes/Elements/Post_Grid.php:100, ../includes/Elements/Tooltip.php:80, ../includes/Elements/Tooltip.php:157, ../includes/Traits/Controls.php:
|
628 |
msgid "Image"
|
629 |
msgstr ""
|
630 |
|
@@ -652,11 +652,11 @@ msgstr ""
|
|
652 |
msgid "Caret Size"
|
653 |
msgstr ""
|
654 |
|
655 |
-
#: ../includes/Elements/Adv_Tabs.php:818, ../includes/Elements/Caldera_Forms.php:109, ../includes/Elements/Caldera_Forms.php:930, ../includes/Elements/Contact_Form_7.php:905, ../includes/Elements/Contact_Form_7.php:957, ../includes/Elements/Content_Ticker.php:
|
656 |
msgid "Yes"
|
657 |
msgstr ""
|
658 |
|
659 |
-
#: ../includes/Elements/Adv_Tabs.php:819, ../includes/Elements/Caldera_Forms.php:110, ../includes/Elements/Caldera_Forms.php:931, ../includes/Elements/Contact_Form_7.php:906, ../includes/Elements/Contact_Form_7.php:958, ../includes/Elements/Content_Ticker.php:
|
660 |
msgid "No"
|
661 |
msgstr ""
|
662 |
|
@@ -680,19 +680,19 @@ msgstr ""
|
|
680 |
msgid "Show Icon"
|
681 |
msgstr ""
|
682 |
|
683 |
-
#: ../includes/Elements/Betterdocs_Category_Box.php:158, ../includes/Elements/Betterdocs_Category_Box.php:170, ../includes/Elements/Betterdocs_Category_Box.php:205, ../includes/Elements/Betterdocs_Category_Grid.php:177, ../includes/Elements/Betterdocs_Category_Grid.php:190, ../includes/Elements/Betterdocs_Category_Grid.php:205, ../includes/Elements/Betterdocs_Category_Grid.php:244, ../includes/Elements/Betterdocs_Category_Grid.php:260, ../includes/Elements/Betterdocs_Category_Grid.php:272, ../includes/Elements/Betterdocs_Category_Grid.php:1299, ../includes/Elements/Caldera_Forms.php:146, ../includes/Elements/Caldera_Forms.php:159, ../includes/Elements/Caldera_Forms.php:185, ../includes/Elements/Contact_Form_7.php:199, ../includes/Elements/Contact_Form_7.php:225, ../includes/Elements/Contact_Form_7.php:245, ../includes/Elements/Content_Ticker.php:
|
684 |
msgid "Show"
|
685 |
msgstr ""
|
686 |
|
687 |
-
#: ../includes/Elements/Betterdocs_Category_Box.php:159, ../includes/Elements/Betterdocs_Category_Box.php:171, ../includes/Elements/Betterdocs_Category_Box.php:206, ../includes/Elements/Betterdocs_Category_Grid.php:178, ../includes/Elements/Betterdocs_Category_Grid.php:191, ../includes/Elements/Betterdocs_Category_Grid.php:206, ../includes/Elements/Betterdocs_Category_Grid.php:245, ../includes/Elements/Betterdocs_Category_Grid.php:261, ../includes/Elements/Betterdocs_Category_Grid.php:273, ../includes/Elements/Betterdocs_Category_Grid.php:1300, ../includes/Elements/Caldera_Forms.php:147, ../includes/Elements/Caldera_Forms.php:160, ../includes/Elements/Caldera_Forms.php:186, ../includes/Elements/Contact_Form_7.php:200, ../includes/Elements/Contact_Form_7.php:226, ../includes/Elements/Contact_Form_7.php:246, ../includes/Elements/Content_Ticker.php:
|
688 |
msgid "Hide"
|
689 |
msgstr ""
|
690 |
|
691 |
-
#: ../includes/Elements/Betterdocs_Category_Box.php:168, ../includes/Elements/Betterdocs_Category_Grid.php:203, ../includes/Traits/Controls.php:
|
692 |
msgid "Show Title"
|
693 |
msgstr ""
|
694 |
|
695 |
-
#: ../includes/Elements/Betterdocs_Category_Box.php:180, ../includes/Elements/Betterdocs_Category_Grid.php:218, ../includes/Elements/Cta_Box.php:186, ../includes/Elements/Image_Accordion.php:139, ../includes/Traits/Controls.php:
|
696 |
msgid "Select Tag"
|
697 |
msgstr ""
|
698 |
|
@@ -764,7 +764,7 @@ msgstr ""
|
|
764 |
msgid "File Not Found"
|
765 |
msgstr ""
|
766 |
|
767 |
-
#: ../includes/Elements/Betterdocs_Category_Box.php:1180, ../includes/Elements/Betterdocs_Category_Box.php:1145, ../includes/Elements/Betterdocs_Category_Grid.php:1676, ../includes/Elements/Betterdocs_Category_Grid.php:1643, ../includes/Elements/Post_Grid.php:
|
768 |
msgid "<p class=\"no-posts-found\">No posts found!</p>"
|
769 |
msgstr ""
|
770 |
|
@@ -776,7 +776,7 @@ msgstr ""
|
|
776 |
msgid "Layout Mode"
|
777 |
msgstr ""
|
778 |
|
779 |
-
#: ../includes/Elements/Betterdocs_Category_Grid.php:141, ../includes/Elements/Betterdocs_Category_Grid.php:301, ../includes/Elements/Filterable_Gallery.php:142, ../includes/Traits/Controls.php:
|
780 |
msgid "Grid"
|
781 |
msgstr ""
|
782 |
|
@@ -784,7 +784,7 @@ msgstr ""
|
|
784 |
msgid "Fit to Screen"
|
785 |
msgstr ""
|
786 |
|
787 |
-
#: ../includes/Elements/Betterdocs_Category_Grid.php:143, ../includes/Elements/Filterable_Gallery.php:143, ../includes/Elements/Twitter_Feed.php:146, ../includes/Traits/Controls.php:
|
788 |
msgid "Masonry"
|
789 |
msgstr ""
|
790 |
|
@@ -804,7 +804,7 @@ msgstr ""
|
|
804 |
msgid "Show Button"
|
805 |
msgstr ""
|
806 |
|
807 |
-
#: ../includes/Elements/Betterdocs_Category_Grid.php:282, ../includes/Elements/Creative_Button.php:76, ../includes/Elements/Cta_Box.php:247, ../includes/Elements/Filterable_Gallery.php:676, ../includes/Elements/Flip_Box.php:495, ../includes/Elements/Info_Box.php:400, ../includes/Elements/Login_Register.php:625, ../includes/Elements/Login_Register.php:1117, ../includes/Elements/Pricing_Table.php:516, ../includes/Traits/Controls.php:
|
808 |
msgid "Button Text"
|
809 |
msgstr ""
|
810 |
|
@@ -864,7 +864,7 @@ msgstr ""
|
|
864 |
msgid "After"
|
865 |
msgstr ""
|
866 |
|
867 |
-
#: ../includes/Elements/Betterdocs_Category_Grid.php:1530, ../includes/Elements/Creative_Button.php:398, ../includes/Elements/Pricing_Table.php:773, ../includes/Elements/WeForms.php:626, ../includes/Traits/Controls.php:
|
868 |
msgid "Button Alignment"
|
869 |
msgstr ""
|
870 |
|
@@ -892,7 +892,7 @@ msgstr ""
|
|
892 |
msgid "Field Padding"
|
893 |
msgstr ""
|
894 |
|
895 |
-
#: ../includes/Elements/Betterdocs_Search_Form.php:220, ../includes/Elements/Facebook_Feed.php:504, ../includes/Elements/Post_Grid.php:393, ../includes/Elements/Pricing_Table.php:423, ../includes/Elements/Pricing_Table.php:1354, ../includes/Elements/Product_Grid.php:
|
896 |
msgid "Shadow"
|
897 |
msgstr ""
|
898 |
|
@@ -904,7 +904,7 @@ msgstr ""
|
|
904 |
msgid "Close Icon"
|
905 |
msgstr ""
|
906 |
|
907 |
-
#: ../includes/Elements/Betterdocs_Search_Form.php:286, ../includes/Elements/Caldera_Forms.php:1014, ../includes/Elements/Caldera_Forms.php:1328, ../includes/Elements/Contact_Form_7.php:1041, ../includes/Elements/Contact_Form_7.php:1357, ../includes/Elements/Content_Ticker.php:
|
908 |
msgid "Border Color"
|
909 |
msgstr ""
|
910 |
|
@@ -976,7 +976,7 @@ msgstr ""
|
|
976 |
msgid "Form Alignment"
|
977 |
msgstr ""
|
978 |
|
979 |
-
#: ../includes/Elements/Caldera_Forms.php:405, ../includes/Elements/Contact_Form_7.php:321, ../includes/Elements/Contact_Form_7.php:822, ../includes/Elements/Creative_Button.php:210, ../includes/Elements/Cta_Box.php:629, ../includes/Elements/Cta_Box.php:846, ../includes/Elements/Dual_Color_Header.php:78, ../includes/Elements/Flip_Box.php:687, ../includes/Elements/FluentForm.php:424, ../includes/Elements/Formstack.php:324, ../includes/Elements/GravityForms.php:337, ../includes/Elements/Login_Register.php:412, ../includes/Elements/Login_Register.php:509, ../includes/Elements/Login_Register.php:1046, ../includes/Elements/Login_Register.php:1402, ../includes/Elements/Login_Register.php:1528, ../includes/Elements/Login_Register.php:1785, ../includes/Elements/Login_Register.php:1929, ../includes/Elements/Login_Register.php:2079, ../includes/Elements/Login_Register.php:2222, ../includes/Elements/Login_Register.php:2313, ../includes/Elements/Login_Register.php:2411, ../includes/Elements/Login_Register.php:2612, ../includes/Elements/Login_Register.php:2657, ../includes/Elements/Login_Register.php:2689, ../includes/Elements/Login_Register.php:2955, ../includes/Elements/Login_Register.php:3254, ../includes/Elements/NinjaForms.php:272, ../includes/Elements/Post_Grid.php:234, ../includes/Elements/Pricing_Table.php:83, ../includes/Elements/Pricing_Table.php:419, ../includes/Elements/Product_Grid.php:
|
980 |
msgid "Default"
|
981 |
msgstr ""
|
982 |
|
@@ -1056,7 +1056,7 @@ msgstr ""
|
|
1056 |
msgid "Full Width"
|
1057 |
msgstr ""
|
1058 |
|
1059 |
-
#: ../includes/Elements/Caldera_Forms.php:1158, ../includes/Elements/Contact_Form_7.php:1187, ../includes/Elements/Content_Ticker.php:
|
1060 |
msgid "Custom"
|
1061 |
msgstr ""
|
1062 |
|
@@ -1124,7 +1124,7 @@ msgstr ""
|
|
1124 |
msgid "<strong>Contact Form 7</strong> is not installed/activated on your site. Please install and activate <strong>Contact Form 7</strong> first."
|
1125 |
msgstr ""
|
1126 |
|
1127 |
-
#: ../includes/Elements/Contact_Form_7.php:307, ../includes/Elements/Contact_Form_7.php:1630, ../includes/Elements/Cta_Box.php:715, ../includes/Elements/Cta_Box.php:785, ../includes/Elements/Cta_Box.php:905, ../includes/Elements/Cta_Box.php:957, ../includes/Elements/Dual_Color_Header.php:692, ../includes/Elements/Dual_Color_Header.php:772, ../includes/Elements/Event_Calendar.php:614, ../includes/Elements/Event_Calendar.php:746, ../includes/Elements/Event_Calendar.php:813, ../includes/Elements/Event_Calendar.php:867, ../includes/Elements/Event_Calendar.php:979, ../includes/Elements/Event_Calendar.php:1071, ../includes/Elements/Event_Calendar.php:1169, ../includes/Elements/Event_Calendar.php:1535, ../includes/Elements/Event_Calendar.php:1644, ../includes/Elements/Facebook_Feed.php:474, ../includes/Elements/Facebook_Feed.php:487, ../includes/Elements/Facebook_Feed.php:562, ../includes/Elements/Facebook_Feed.php:575, ../includes/Elements/Facebook_Feed.php:660, ../includes/Elements/Facebook_Feed.php:673, ../includes/Elements/Facebook_Feed.php:744, ../includes/Elements/Facebook_Feed.php:782, ../includes/Elements/Facebook_Feed.php:822, ../includes/Elements/Fancy_Text.php:354, ../includes/Elements/Filterable_Gallery.php:2038, ../includes/Elements/Filterable_Gallery.php:2257, ../includes/Elements/Flip_Box.php:1186, ../includes/Elements/Flip_Box.php:1244, ../includes/Elements/FluentForm.php:1847, ../includes/Elements/FluentForm.php:1872, ../includes/Elements/FluentForm.php:1937, ../includes/Elements/FluentForm.php:2000, ../includes/Elements/Formstack.php:632, ../includes/Elements/Formstack.php:1707, ../includes/Elements/Formstack.php:1732, ../includes/Elements/Formstack.php:1796, ../includes/Elements/Formstack.php:1861, ../includes/Elements/Formstack.php:1916, ../includes/Elements/Formstack.php:1999, ../includes/Elements/Post_Grid.php:352, ../includes/Elements/Pricing_Table.php:1824, ../includes/Elements/Pricing_Table.php:1893, ../includes/Elements/Product_Grid.php:
|
1128 |
msgid "Background"
|
1129 |
msgstr ""
|
1130 |
|
@@ -1172,7 +1172,7 @@ msgstr ""
|
|
1172 |
msgid "After Submit Feedback"
|
1173 |
msgstr ""
|
1174 |
|
1175 |
-
#: ../includes/Elements/Contact_Form_7.php:1652, ../includes/Elements/Dual_Color_Header.php:680, ../includes/Elements/Dual_Color_Header.php:760, ../includes/Elements/Flip_Box.php:686, ../includes/Elements/Info_Box.php:577, ../includes/Elements/Info_Box.php:632, ../includes/Elements/Info_Box.php:801, ../includes/Elements/Info_Box.php:881, ../includes/Elements/Info_Box.php:1017, ../includes/Elements/Info_Box.php:1112, ../includes/Elements/Post_Grid.php:324, ../includes/Elements/Product_Grid.php:
|
1176 |
msgid "Radius"
|
1177 |
msgstr ""
|
1178 |
|
@@ -1184,131 +1184,135 @@ msgstr ""
|
|
1184 |
msgid "Ticker Settings"
|
1185 |
msgstr ""
|
1186 |
|
1187 |
-
#: ../includes/Elements/Content_Ticker.php:
|
|
|
|
|
|
|
|
|
1188 |
msgid "Dynamic"
|
1189 |
msgstr ""
|
1190 |
|
1191 |
-
#: ../includes/Elements/Content_Ticker.php:
|
1192 |
msgid "Ticker Type"
|
1193 |
msgstr ""
|
1194 |
|
1195 |
-
#: ../includes/Elements/Content_Ticker.php:
|
1196 |
msgid "Custom Content available in pro version only!"
|
1197 |
msgstr ""
|
1198 |
|
1199 |
-
#: ../includes/Elements/Content_Ticker.php:
|
1200 |
msgid "Tag Text"
|
1201 |
msgstr ""
|
1202 |
|
1203 |
-
#: ../includes/Elements/Content_Ticker.php:
|
1204 |
msgid "Trending Today"
|
1205 |
msgstr ""
|
1206 |
|
1207 |
-
#: ../includes/Elements/Content_Ticker.php:
|
1208 |
msgid "Animation Settings"
|
1209 |
msgstr ""
|
1210 |
|
1211 |
-
#: ../includes/Elements/Content_Ticker.php:
|
1212 |
msgid "Effect"
|
1213 |
msgstr ""
|
1214 |
|
1215 |
-
#: ../includes/Elements/Content_Ticker.php:
|
1216 |
msgid "Sets transition effect"
|
1217 |
msgstr ""
|
1218 |
|
1219 |
-
#: ../includes/Elements/Content_Ticker.php:
|
1220 |
msgid "Slide"
|
1221 |
msgstr ""
|
1222 |
|
1223 |
-
#: ../includes/Elements/Content_Ticker.php:
|
1224 |
msgid "Fade"
|
1225 |
msgstr ""
|
1226 |
|
1227 |
-
#: ../includes/Elements/Content_Ticker.php:
|
1228 |
msgid "Visible Items"
|
1229 |
msgstr ""
|
1230 |
|
1231 |
-
#: ../includes/Elements/Content_Ticker.php:
|
1232 |
msgid "Items Gap"
|
1233 |
msgstr ""
|
1234 |
|
1235 |
-
#: ../includes/Elements/Content_Ticker.php:
|
1236 |
msgid "Slider Speed"
|
1237 |
msgstr ""
|
1238 |
|
1239 |
-
#: ../includes/Elements/Content_Ticker.php:
|
1240 |
msgid "Duration of transition between slides (in ms)"
|
1241 |
msgstr ""
|
1242 |
|
1243 |
-
#: ../includes/Elements/Content_Ticker.php:
|
1244 |
msgid "Autoplay"
|
1245 |
msgstr ""
|
1246 |
|
1247 |
-
#: ../includes/Elements/Content_Ticker.php:
|
1248 |
msgid "Autoplay Speed"
|
1249 |
msgstr ""
|
1250 |
|
1251 |
-
#: ../includes/Elements/Content_Ticker.php:
|
1252 |
msgid "Pause On Hover"
|
1253 |
msgstr ""
|
1254 |
|
1255 |
-
#: ../includes/Elements/Content_Ticker.php:
|
1256 |
msgid "Infinite Loop"
|
1257 |
msgstr ""
|
1258 |
|
1259 |
-
#: ../includes/Elements/Content_Ticker.php:
|
1260 |
msgid "Grab Cursor"
|
1261 |
msgstr ""
|
1262 |
|
1263 |
-
#: ../includes/Elements/Content_Ticker.php:
|
1264 |
msgid "Shows grab cursor when you hover over the slider"
|
1265 |
msgstr ""
|
1266 |
|
1267 |
-
#: ../includes/Elements/Content_Ticker.php:
|
1268 |
msgid "Navigation"
|
1269 |
msgstr ""
|
1270 |
|
1271 |
-
#: ../includes/Elements/Content_Ticker.php:
|
1272 |
msgid "Arrows"
|
1273 |
msgstr ""
|
1274 |
|
1275 |
-
#: ../includes/Elements/Content_Ticker.php:
|
1276 |
msgid "Direction"
|
1277 |
msgstr ""
|
1278 |
|
1279 |
-
#: ../includes/Elements/Content_Ticker.php:
|
1280 |
msgid "Ticker Content"
|
1281 |
msgstr ""
|
1282 |
|
1283 |
-
#: ../includes/Elements/Content_Ticker.php:
|
1284 |
msgid "Text Hover Color"
|
1285 |
msgstr ""
|
1286 |
|
1287 |
-
#: ../includes/Elements/Content_Ticker.php:
|
1288 |
msgid "Tag Style"
|
1289 |
msgstr ""
|
1290 |
|
1291 |
-
#: ../includes/Elements/Content_Ticker.php:
|
1292 |
msgid "Choose Prev Arrow"
|
1293 |
msgstr ""
|
1294 |
|
1295 |
-
#: ../includes/Elements/Content_Ticker.php:
|
1296 |
msgid "Choose Next Arrow"
|
1297 |
msgstr ""
|
1298 |
|
1299 |
-
#: ../includes/Elements/Content_Ticker.php:
|
1300 |
msgid "Arrows Size"
|
1301 |
msgstr ""
|
1302 |
|
1303 |
-
#: ../includes/Elements/Content_Ticker.php:
|
1304 |
msgid "Align Left Arrow"
|
1305 |
msgstr ""
|
1306 |
|
1307 |
-
#: ../includes/Elements/Content_Ticker.php:
|
1308 |
msgid "Align Right Arrow"
|
1309 |
msgstr ""
|
1310 |
|
1311 |
-
#: ../includes/Elements/Content_Ticker.php:
|
1312 |
msgid "No content found!"
|
1313 |
msgstr ""
|
1314 |
|
@@ -1496,7 +1500,7 @@ msgstr ""
|
|
1496 |
msgid "Space Below Container"
|
1497 |
msgstr ""
|
1498 |
|
1499 |
-
#: ../includes/Elements/Countdown.php:634, ../includes/Elements/Dual_Color_Header.php:435, ../includes/Elements/Facebook_Feed.php:850, ../includes/Elements/Flip_Box.php:976, ../includes/Elements/Image_Accordion.php:407, ../includes/Elements/Info_Box.php:1324, ../includes/Elements/Product_Grid.php:
|
1500 |
msgid "Color & Typography"
|
1501 |
msgstr ""
|
1502 |
|
@@ -1636,7 +1640,7 @@ msgstr ""
|
|
1636 |
msgid "Shikoba (Pro)"
|
1637 |
msgstr ""
|
1638 |
|
1639 |
-
#: ../includes/Elements/Creative_Button.php:233, ../includes/Elements/Cta_Box.php:670, ../includes/Elements/Product_Grid.php:
|
1640 |
msgid "Use Gradient Background"
|
1641 |
msgstr ""
|
1642 |
|
@@ -1816,7 +1820,7 @@ msgstr ""
|
|
1816 |
msgid "Row"
|
1817 |
msgstr ""
|
1818 |
|
1819 |
-
#: ../includes/Elements/Data_Table.php:255, ../includes/Traits/Controls.php:
|
1820 |
msgid "Column"
|
1821 |
msgstr ""
|
1822 |
|
@@ -2316,7 +2320,7 @@ msgstr ""
|
|
2316 |
msgid "Card"
|
2317 |
msgstr ""
|
2318 |
|
2319 |
-
#: ../includes/Elements/Facebook_Feed.php:170, ../includes/Elements/Filterable_Gallery.php:170, ../includes/Traits/Controls.php:
|
2320 |
msgid "Overlay"
|
2321 |
msgstr ""
|
2322 |
|
@@ -2324,27 +2328,27 @@ msgstr ""
|
|
2324 |
msgid "Columns"
|
2325 |
msgstr ""
|
2326 |
|
2327 |
-
#: ../includes/Elements/Facebook_Feed.php:183, ../includes/Elements/Product_Grid.php:220, ../includes/Elements/Testimonial.php:194, ../includes/Traits/Controls.php:
|
2328 |
msgid "1"
|
2329 |
msgstr ""
|
2330 |
|
2331 |
-
#: ../includes/Elements/Facebook_Feed.php:184, ../includes/Elements/Product_Grid.php:221, ../includes/Elements/Testimonial.php:195, ../includes/Traits/Controls.php:
|
2332 |
msgid "2"
|
2333 |
msgstr ""
|
2334 |
|
2335 |
-
#: ../includes/Elements/Facebook_Feed.php:185, ../includes/Elements/Product_Grid.php:222, ../includes/Elements/Testimonial.php:196, ../includes/Traits/Controls.php:
|
2336 |
msgid "3"
|
2337 |
msgstr ""
|
2338 |
|
2339 |
-
#: ../includes/Elements/Facebook_Feed.php:186, ../includes/Elements/Product_Grid.php:223, ../includes/Elements/Testimonial.php:197, ../includes/Traits/Controls.php:
|
2340 |
msgid "4"
|
2341 |
msgstr ""
|
2342 |
|
2343 |
-
#: ../includes/Elements/Facebook_Feed.php:187, ../includes/Elements/Filterable_Gallery.php:508, ../includes/Elements/Product_Grid.php:224, ../includes/Elements/Testimonial.php:198, ../includes/Traits/Controls.php:
|
2344 |
msgid "5"
|
2345 |
msgstr ""
|
2346 |
|
2347 |
-
#: ../includes/Elements/Facebook_Feed.php:188, ../includes/Elements/Product_Grid.php:225, ../includes/Traits/Controls.php:
|
2348 |
msgid "6"
|
2349 |
msgstr ""
|
2350 |
|
@@ -2396,7 +2400,7 @@ msgstr ""
|
|
2396 |
msgid "Show Preview Description"
|
2397 |
msgstr ""
|
2398 |
|
2399 |
-
#: ../includes/Elements/Facebook_Feed.php:371, ../includes/Elements/Product_Grid.php:
|
2400 |
msgid "Show Load More"
|
2401 |
msgstr ""
|
2402 |
|
@@ -2404,7 +2408,7 @@ msgstr ""
|
|
2404 |
msgid "Label"
|
2405 |
msgstr ""
|
2406 |
|
2407 |
-
#: ../includes/Elements/Facebook_Feed.php:392, ../includes/Elements/Filterable_Gallery.php:678, ../includes/Elements/Product_Grid.php:
|
2408 |
msgid "Load More"
|
2409 |
msgstr ""
|
2410 |
|
@@ -2688,7 +2692,7 @@ msgstr ""
|
|
2688 |
msgid "Framed"
|
2689 |
msgstr ""
|
2690 |
|
2691 |
-
#: ../includes/Elements/Feature_List.php:306, ../includes/Elements/Image_Accordion.php:119, ../includes/Elements/Info_Box.php:129, ../includes/Elements/Login_Register.php:700, ../includes/Elements/Pricing_Table.php:349, ../includes/Elements/Tooltip.php:282, ../includes/Elements/Twitter_Feed.php:339, ../includes/Extensions/Reading_Progress.php:115, ../includes/Traits/Controls.php:
|
2692 |
msgid "Top"
|
2693 |
msgstr ""
|
2694 |
|
@@ -2744,7 +2748,7 @@ msgstr ""
|
|
2744 |
msgid "Filterable Gallery"
|
2745 |
msgstr ""
|
2746 |
|
2747 |
-
#: ../includes/Elements/Filterable_Gallery.php:90, ../includes/Elements/Pricing_Table.php:75, ../includes/Traits/Core.php:
|
2748 |
msgid "Settings"
|
2749 |
msgstr ""
|
2750 |
|
@@ -3416,7 +3420,7 @@ msgstr ""
|
|
3416 |
msgid "Content Vertical Alignment"
|
3417 |
msgstr ""
|
3418 |
|
3419 |
-
#: ../includes/Elements/Image_Accordion.php:127, ../includes/Elements/Info_Box.php:137, ../includes/Elements/Pricing_Table.php:357, ../includes/Elements/Tooltip.php:283, ../includes/Elements/Twitter_Feed.php:347, ../includes/Extensions/Reading_Progress.php:116, ../includes/Traits/Controls.php:
|
3420 |
msgid "Bottom"
|
3421 |
msgstr ""
|
3422 |
|
@@ -4526,7 +4530,7 @@ msgstr ""
|
|
4526 |
msgid "Target Blank"
|
4527 |
msgstr ""
|
4528 |
|
4529 |
-
#: ../includes/Elements/Post_Grid.php:179, ../includes/Elements/Product_Grid.php:
|
4530 |
msgid "Read More"
|
4531 |
msgstr ""
|
4532 |
|
@@ -4570,7 +4574,7 @@ msgstr ""
|
|
4570 |
msgid "Meta Style"
|
4571 |
msgstr ""
|
4572 |
|
4573 |
-
#: ../includes/Elements/Post_Grid.php:530, ../includes/Elements/Post_Grid.php:542, ../includes/Traits/Controls.php:
|
4574 |
msgid "Meta Position"
|
4575 |
msgstr ""
|
4576 |
|
@@ -4646,6 +4650,10 @@ msgstr ""
|
|
4646 |
msgid "Icon font size"
|
4647 |
msgstr ""
|
4648 |
|
|
|
|
|
|
|
|
|
4649 |
#: ../includes/Elements/Post_Timeline.php:28, ../includes/templates/admin/elements.php:134
|
4650 |
msgid "Post Timeline"
|
4651 |
msgstr ""
|
@@ -4706,6 +4714,10 @@ msgstr ""
|
|
4706 |
msgid "Date Text Color"
|
4707 |
msgstr ""
|
4708 |
|
|
|
|
|
|
|
|
|
4709 |
#: ../includes/Elements/Pricing_Table.php:29, ../includes/templates/admin/elements.php:330
|
4710 |
msgid "Pricing Table"
|
4711 |
msgstr ""
|
@@ -5034,7 +5046,7 @@ msgstr ""
|
|
5034 |
msgid "Product ID"
|
5035 |
msgstr ""
|
5036 |
|
5037 |
-
#: ../includes/Elements/Product_Grid.php:164, ../includes/Elements/Product_Grid.php:
|
5038 |
msgid "Product Title"
|
5039 |
msgstr ""
|
5040 |
|
@@ -5066,7 +5078,7 @@ msgstr ""
|
|
5066 |
msgid "Products Count"
|
5067 |
msgstr ""
|
5068 |
|
5069 |
-
#: ../includes/Elements/Product_Grid.php:207, ../includes/Traits/Controls.php:162, ../includes/Traits/Controls.php:289, ../includes/Traits/Controls.php:
|
5070 |
msgid "Offset"
|
5071 |
msgstr ""
|
5072 |
|
@@ -5074,127 +5086,127 @@ msgstr ""
|
|
5074 |
msgid "Product Categories"
|
5075 |
msgstr ""
|
5076 |
|
5077 |
-
#: ../includes/Elements/Product_Grid.php:
|
5078 |
msgid "Style Preset"
|
5079 |
msgstr ""
|
5080 |
|
5081 |
-
#: ../includes/Elements/Product_Grid.php:
|
5082 |
msgid "Simple Style"
|
5083 |
msgstr ""
|
5084 |
|
5085 |
-
#: ../includes/Elements/Product_Grid.php:
|
5086 |
msgid "Reveal Style"
|
5087 |
msgstr ""
|
5088 |
|
5089 |
-
#: ../includes/Elements/Product_Grid.php:
|
5090 |
msgid "Overlay Style"
|
5091 |
msgstr ""
|
5092 |
|
5093 |
-
#: ../includes/Elements/Product_Grid.php:
|
5094 |
msgid "Show Product Rating?"
|
5095 |
msgstr ""
|
5096 |
|
5097 |
-
#: ../includes/Elements/Product_Grid.php:
|
5098 |
msgid "Add To Cart"
|
5099 |
msgstr ""
|
5100 |
|
5101 |
-
#: ../includes/Elements/Product_Grid.php:
|
5102 |
msgid "Show Add to cart custom text"
|
5103 |
msgstr ""
|
5104 |
|
5105 |
-
#: ../includes/Elements/Product_Grid.php:
|
5106 |
msgid "Simple Product Button Text"
|
5107 |
msgstr ""
|
5108 |
|
5109 |
-
#: ../includes/Elements/Product_Grid.php:
|
5110 |
msgid "Buy Now"
|
5111 |
msgstr ""
|
5112 |
|
5113 |
-
#: ../includes/Elements/Product_Grid.php:
|
5114 |
msgid "Variable Product Button Text"
|
5115 |
msgstr ""
|
5116 |
|
5117 |
-
#: ../includes/Elements/Product_Grid.php:
|
5118 |
msgid "Select options"
|
5119 |
msgstr ""
|
5120 |
|
5121 |
-
#: ../includes/Elements/Product_Grid.php:
|
5122 |
msgid "Grouped Product Button Text"
|
5123 |
msgstr ""
|
5124 |
|
5125 |
-
#: ../includes/Elements/Product_Grid.php:
|
5126 |
msgid "View products"
|
5127 |
msgstr ""
|
5128 |
|
5129 |
-
#: ../includes/Elements/Product_Grid.php:
|
5130 |
msgid "External Product Button Text"
|
5131 |
msgstr ""
|
5132 |
|
5133 |
-
#: ../includes/Elements/Product_Grid.php:
|
5134 |
msgid "Default Product Button Text"
|
5135 |
msgstr ""
|
5136 |
|
5137 |
-
#: ../includes/Elements/Product_Grid.php:
|
5138 |
msgid "Label Text"
|
5139 |
msgstr ""
|
5140 |
|
5141 |
-
#: ../includes/Elements/Product_Grid.php:
|
5142 |
msgid "Products Styles"
|
5143 |
msgstr ""
|
5144 |
|
5145 |
-
#: ../includes/Elements/Product_Grid.php:
|
5146 |
msgid "Content Background Color"
|
5147 |
msgstr ""
|
5148 |
|
5149 |
-
#: ../includes/Elements/Product_Grid.php:
|
5150 |
msgid "Product Title Color"
|
5151 |
msgstr ""
|
5152 |
|
5153 |
-
#: ../includes/Elements/Product_Grid.php:
|
5154 |
msgid "Product Price"
|
5155 |
msgstr ""
|
5156 |
|
5157 |
-
#: ../includes/Elements/Product_Grid.php:
|
5158 |
msgid "Product Price Color"
|
5159 |
msgstr ""
|
5160 |
|
5161 |
-
#: ../includes/Elements/Product_Grid.php:
|
5162 |
msgid "Star Rating"
|
5163 |
msgstr ""
|
5164 |
|
5165 |
-
#: ../includes/Elements/Product_Grid.php:
|
5166 |
msgid "Rating Color"
|
5167 |
msgstr ""
|
5168 |
|
5169 |
-
#: ../includes/Elements/Product_Grid.php:
|
5170 |
msgid "Sale Badge"
|
5171 |
msgstr ""
|
5172 |
|
5173 |
-
#: ../includes/Elements/Product_Grid.php:
|
5174 |
msgid "Sale Badge Color"
|
5175 |
msgstr ""
|
5176 |
|
5177 |
-
#: ../includes/Elements/Product_Grid.php:
|
5178 |
msgid "Sale Badge Background"
|
5179 |
msgstr ""
|
5180 |
|
5181 |
-
#: ../includes/Elements/Product_Grid.php:
|
5182 |
msgid "Stock Out Badge"
|
5183 |
msgstr ""
|
5184 |
|
5185 |
-
#: ../includes/Elements/Product_Grid.php:
|
5186 |
msgid "Stock Out Badge Color"
|
5187 |
msgstr ""
|
5188 |
|
5189 |
-
#: ../includes/Elements/Product_Grid.php:
|
5190 |
msgid "Stock Out Badge Background"
|
5191 |
msgstr ""
|
5192 |
|
5193 |
-
#: ../includes/Elements/Product_Grid.php:
|
5194 |
msgid "Add to Cart Button Styles"
|
5195 |
msgstr ""
|
5196 |
|
5197 |
-
#: ../includes/Elements/Product_Grid.php:
|
5198 |
msgid "Font Color"
|
5199 |
msgstr ""
|
5200 |
|
@@ -5330,7 +5342,7 @@ msgstr ""
|
|
5330 |
msgid "Sticky"
|
5331 |
msgstr ""
|
5332 |
|
5333 |
-
#: ../includes/Elements/Sticky_Video.php:116, ../includes/Extensions/Reading_Progress.php:110, ../includes/Extensions/Table_of_Content.php:407, ../includes/Traits/Controls.php:
|
5334 |
msgid "Position"
|
5335 |
msgstr ""
|
5336 |
|
@@ -5870,15 +5882,15 @@ msgstr ""
|
|
5870 |
msgid "Card Settings"
|
5871 |
msgstr ""
|
5872 |
|
5873 |
-
#: ../includes/Elements/Twitter_Feed.php:231, ../includes/Traits/Controls.php:
|
5874 |
msgid "Show Avatar"
|
5875 |
msgstr ""
|
5876 |
|
5877 |
-
#: ../includes/Elements/Twitter_Feed.php:243, ../includes/Traits/Controls.php:
|
5878 |
msgid "Show Date"
|
5879 |
msgstr ""
|
5880 |
|
5881 |
-
#: ../includes/Elements/Twitter_Feed.php:255, ../includes/Traits/Controls.php:
|
5882 |
msgid "Show Read More"
|
5883 |
msgstr ""
|
5884 |
|
@@ -6350,7 +6362,7 @@ msgstr ""
|
|
6350 |
msgid "EA TOC"
|
6351 |
msgstr ""
|
6352 |
|
6353 |
-
#: ../includes/Extensions/Table_of_Content.php:430, ../includes/Traits/Controls.php:
|
6354 |
msgid "Bullet"
|
6355 |
msgstr ""
|
6356 |
|
@@ -6634,159 +6646,159 @@ msgstr ""
|
|
6634 |
msgid "Enable Nested Subcategory"
|
6635 |
msgstr ""
|
6636 |
|
6637 |
-
#: ../includes/Traits/Controls.php:
|
6638 |
msgid "Post Block Style Preset"
|
6639 |
msgstr ""
|
6640 |
|
6641 |
-
#: ../includes/Traits/Controls.php:
|
6642 |
msgid "Date Position"
|
6643 |
msgstr ""
|
6644 |
|
6645 |
-
#: ../includes/Traits/Controls.php:
|
6646 |
msgid "Inside"
|
6647 |
msgstr ""
|
6648 |
|
6649 |
-
#: ../includes/Traits/Controls.php:
|
6650 |
msgid "Outside"
|
6651 |
msgstr ""
|
6652 |
|
6653 |
-
#: ../includes/Traits/Controls.php:
|
6654 |
msgid "Show Image"
|
6655 |
msgstr ""
|
6656 |
|
6657 |
-
#: ../includes/Traits/Controls.php:
|
6658 |
msgid "Show Circle Image / Icon"
|
6659 |
msgstr ""
|
6660 |
|
6661 |
-
#: ../includes/Traits/Controls.php:
|
6662 |
msgid "Icon Image"
|
6663 |
msgstr ""
|
6664 |
|
6665 |
-
#: ../includes/Traits/Controls.php:
|
6666 |
msgid "Icon Image Size"
|
6667 |
msgstr ""
|
6668 |
|
6669 |
-
#: ../includes/Traits/Controls.php:
|
6670 |
msgid "Title Length"
|
6671 |
msgstr ""
|
6672 |
|
6673 |
-
#: ../includes/Traits/Controls.php:
|
6674 |
msgid "Show excerpt"
|
6675 |
msgstr ""
|
6676 |
|
6677 |
-
#: ../includes/Traits/Controls.php:
|
6678 |
msgid "Excerpt Words"
|
6679 |
msgstr ""
|
6680 |
|
6681 |
-
#: ../includes/Traits/Controls.php:
|
6682 |
msgid "Expanison Indicator"
|
6683 |
msgstr ""
|
6684 |
|
6685 |
-
#: ../includes/Traits/Controls.php:
|
6686 |
msgid "..."
|
6687 |
msgstr ""
|
6688 |
|
6689 |
-
#: ../includes/Traits/Controls.php:
|
6690 |
msgid "Show Read More Button"
|
6691 |
msgstr ""
|
6692 |
|
6693 |
-
#: ../includes/Traits/Controls.php:
|
6694 |
msgid "Show Post Terms"
|
6695 |
msgstr ""
|
6696 |
|
6697 |
-
#: ../includes/Traits/Controls.php:
|
6698 |
msgid "Show Terms From"
|
6699 |
msgstr ""
|
6700 |
|
6701 |
-
#: ../includes/Traits/Controls.php:
|
6702 |
msgid "Category"
|
6703 |
msgstr ""
|
6704 |
|
6705 |
-
#: ../includes/Traits/Controls.php:
|
6706 |
msgid "Tags"
|
6707 |
msgstr ""
|
6708 |
|
6709 |
-
#: ../includes/Traits/Controls.php:
|
6710 |
msgid "Max Terms to Show"
|
6711 |
msgstr ""
|
6712 |
|
6713 |
-
#: ../includes/Traits/Controls.php:
|
6714 |
msgid "Show Meta"
|
6715 |
msgstr ""
|
6716 |
|
6717 |
-
#: ../includes/Traits/Controls.php:
|
6718 |
msgid "Entry Header"
|
6719 |
msgstr ""
|
6720 |
|
6721 |
-
#: ../includes/Traits/Controls.php:
|
6722 |
msgid "Entry Footer"
|
6723 |
msgstr ""
|
6724 |
|
6725 |
-
#: ../includes/Traits/Controls.php:
|
6726 |
msgid "Show Author Name"
|
6727 |
msgstr ""
|
6728 |
|
6729 |
-
#: ../includes/Traits/Controls.php:
|
6730 |
msgid "Read More Button Style"
|
6731 |
msgstr ""
|
6732 |
|
6733 |
-
#: ../includes/Traits/Controls.php:
|
6734 |
msgid "Load More Button Style"
|
6735 |
msgstr ""
|
6736 |
|
6737 |
-
#: ../includes/Traits/Controls.php:
|
6738 |
msgid "Absolute"
|
6739 |
msgstr ""
|
6740 |
|
6741 |
-
#: ../includes/Traits/Controls.php:
|
6742 |
msgid "Horizontal Orientation"
|
6743 |
msgstr ""
|
6744 |
|
6745 |
-
#: ../includes/Traits/Controls.php:
|
6746 |
msgid "Vertical Orientation"
|
6747 |
msgstr ""
|
6748 |
|
6749 |
-
#: ../includes/Traits/Controls.php:
|
6750 |
msgid "<strong>Ninja Tables</strong> is not installed/activated on your site. Please install and activate <a href=\"plugin-install.php?s=Ninja+Tables&tab=search&type=term\" target=\"_blank\">Ninja Tables</a> first."
|
6751 |
msgstr ""
|
6752 |
|
6753 |
-
#: ../includes/Traits/Controls.php:
|
6754 |
msgid "Table ID"
|
6755 |
msgstr ""
|
6756 |
|
6757 |
-
#: ../includes/Traits/Controls.php:
|
6758 |
msgid "EventON (Pro) "
|
6759 |
msgstr ""
|
6760 |
|
6761 |
-
#: ../includes/Traits/Controls.php:
|
6762 |
msgid "EventON"
|
6763 |
msgstr ""
|
6764 |
|
6765 |
-
#: ../includes/Traits/Core.php:
|
6766 |
msgid "Go Pro"
|
6767 |
msgstr ""
|
6768 |
|
6769 |
-
#: ../includes/Traits/Core.php:
|
6770 |
msgid "Docs & FAQs"
|
6771 |
msgstr ""
|
6772 |
|
6773 |
-
#: ../includes/Traits/Core.php:
|
6774 |
msgid "Video Tutorials"
|
6775 |
msgstr ""
|
6776 |
|
6777 |
-
#: ../includes/Traits/Core.php:
|
6778 |
msgid "%1$sEssential Addons for Elementor%2$s requires %1$sElementor%2$s plugin to be installed and activated. Please install Elementor to continue."
|
6779 |
msgstr ""
|
6780 |
|
6781 |
-
#: ../includes/Traits/Core.php:
|
6782 |
msgid "Install Elementor"
|
6783 |
msgstr ""
|
6784 |
|
6785 |
-
#: ../includes/Traits/Core.php:
|
6786 |
msgid "%1$sEssential Addons for Elementor%2$s requires %1$sElementor%2$s plugin to be active. Please activate Elementor to continue."
|
6787 |
msgstr ""
|
6788 |
|
6789 |
-
#: ../includes/Traits/Core.php:
|
6790 |
msgid "Activate Elementor"
|
6791 |
msgstr ""
|
6792 |
|
13 |
"X-Poedit-SourceCharset: UTF-8\n"
|
14 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
15 |
|
16 |
+
#: ../includes/Classes/Helper.php:168, ../includes/Elements/Adv_Accordion.php:265, ../includes/Elements/Adv_Tabs.php:233, ../includes/Elements/Contact_Form_7.php:264, ../includes/Elements/Content_Ticker.php:345, ../includes/Elements/Countdown.php:453, ../includes/Elements/Creative_Button.php:171, ../includes/Elements/Cta_Box.php:334, ../includes/Elements/Data_Table.php:442, ../includes/Elements/Dual_Color_Header.php:211, ../includes/Elements/Fancy_Text.php:266, ../includes/Elements/Filterable_Gallery.php:780, ../includes/Elements/Flip_Box.php:542, ../includes/Elements/Info_Box.php:486, ../includes/Elements/Pricing_Table.php:635, ../includes/Elements/Progress_Bar.php:264, ../includes/Elements/Team_Member.php:218, ../includes/Elements/Testimonial.php:213, ../includes/Elements/Tooltip.php:502, ../includes/Elements/Twitter_Feed.php:282, ../includes/Elements/WeForms.php:110
|
17 |
msgid "Go Premium for More Features"
|
18 |
msgstr ""
|
19 |
|
20 |
+
#: ../includes/Classes/Helper.php:175, ../includes/Elements/Adv_Accordion.php:272, ../includes/Elements/Adv_Tabs.php:240, ../includes/Elements/Contact_Form_7.php:271, ../includes/Elements/Content_Ticker.php:352, ../includes/Elements/Countdown.php:460, ../includes/Elements/Creative_Button.php:178, ../includes/Elements/Cta_Box.php:341, ../includes/Elements/Data_Table.php:449, ../includes/Elements/Dual_Color_Header.php:218, ../includes/Elements/Fancy_Text.php:273, ../includes/Elements/Filterable_Gallery.php:787, ../includes/Elements/Flip_Box.php:549, ../includes/Elements/Info_Box.php:493, ../includes/Elements/Pricing_Table.php:642, ../includes/Elements/Progress_Bar.php:271, ../includes/Elements/Team_Member.php:225, ../includes/Elements/Testimonial.php:220, ../includes/Elements/Tooltip.php:509, ../includes/Elements/Twitter_Feed.php:289, ../includes/Elements/WeForms.php:117
|
21 |
msgid "Unlock more possibilities"
|
22 |
msgstr ""
|
23 |
|
264 |
msgid "Width"
|
265 |
msgstr ""
|
266 |
|
267 |
+
#: ../includes/Elements/Advanced_Data_Table.php:318, ../includes/Elements/Advanced_Data_Table.php:986, ../includes/Elements/Advanced_Data_Table.php:1184, ../includes/Elements/Advanced_Data_Table.php:1256, ../includes/Elements/Advanced_Data_Table.php:1384, ../includes/Elements/Adv_Accordion.php:326, ../includes/Elements/Adv_Accordion.php:533, ../includes/Elements/Adv_Accordion.php:606, ../includes/Elements/Adv_Accordion.php:679, ../includes/Elements/Adv_Accordion.php:776, ../includes/Elements/Adv_Accordion.php:900, ../includes/Elements/Adv_Accordion.php:947, ../includes/Elements/Adv_Accordion.php:994, ../includes/Elements/Adv_Tabs.php:295, ../includes/Elements/Adv_Tabs.php:485, ../includes/Elements/Adv_Tabs.php:551, ../includes/Elements/Adv_Tabs.php:620, ../includes/Elements/Adv_Tabs.php:715, ../includes/Elements/Betterdocs_Category_Box.php:298, ../includes/Elements/Betterdocs_Category_Box.php:366, ../includes/Elements/Betterdocs_Category_Box.php:487, ../includes/Elements/Betterdocs_Category_Box.php:563, ../includes/Elements/Betterdocs_Category_Box.php:883, ../includes/Elements/Betterdocs_Category_Box.php:988, ../includes/Elements/Betterdocs_Category_Grid.php:338, ../includes/Elements/Betterdocs_Category_Grid.php:386, ../includes/Elements/Betterdocs_Category_Grid.php:471, ../includes/Elements/Betterdocs_Category_Grid.php:512, ../includes/Elements/Betterdocs_Category_Grid.php:637, ../includes/Elements/Betterdocs_Category_Grid.php:691, ../includes/Elements/Betterdocs_Category_Grid.php:840, ../includes/Elements/Betterdocs_Category_Grid.php:937, ../includes/Elements/Betterdocs_Category_Grid.php:1182, ../includes/Elements/Betterdocs_Category_Grid.php:1382, ../includes/Elements/Betterdocs_Category_Grid.php:1481, ../includes/Elements/Betterdocs_Search_Form.php:211, ../includes/Elements/Betterdocs_Search_Form.php:366, ../includes/Elements/Betterdocs_Search_Form.php:424, ../includes/Elements/Betterdocs_Search_Form.php:534, ../includes/Elements/Caldera_Forms.php:611, ../includes/Elements/Caldera_Forms.php:807, ../includes/Elements/Caldera_Forms.php:1223, ../includes/Elements/Caldera_Forms.php:1381, ../includes/Elements/Contact_Form_7.php:705, ../includes/Elements/Contact_Form_7.php:770, ../includes/Elements/Contact_Form_7.php:1252, ../includes/Elements/Contact_Form_7.php:1489, ../includes/Elements/Contact_Form_7.php:1564, ../includes/Elements/Contact_Form_7.php:1641, ../includes/Elements/Content_Ticker.php:661, ../includes/Elements/Countdown.php:605, ../includes/Elements/Cta_Box.php:451, ../includes/Elements/Cta_Box.php:728, ../includes/Elements/Cta_Box.php:915, ../includes/Elements/Data_Table.php:610, ../includes/Elements/Data_Table.php:649, ../includes/Elements/Data_Table.php:841, ../includes/Elements/Data_Table.php:1101, ../includes/Elements/Dual_Color_Header.php:344, ../includes/Elements/Event_Calendar.php:758, ../includes/Elements/Event_Calendar.php:825, ../includes/Elements/Event_Calendar.php:879, ../includes/Elements/Event_Calendar.php:1551, ../includes/Elements/Event_Calendar.php:1622, ../includes/Elements/Facebook_Feed.php:437, ../includes/Elements/Filterable_Gallery.php:856, ../includes/Elements/Filterable_Gallery.php:969, ../includes/Elements/Filterable_Gallery.php:1035, ../includes/Elements/Filterable_Gallery.php:1115, ../includes/Elements/Filterable_Gallery.php:1262, ../includes/Elements/Filterable_Gallery.php:1319, ../includes/Elements/Filterable_Gallery.php:1538, ../includes/Elements/Filterable_Gallery.php:1813, ../includes/Elements/Filterable_Gallery.php:1874, ../includes/Elements/Filterable_Gallery.php:2385, ../includes/Elements/Filterable_Gallery.php:2502, ../includes/Elements/Flip_Box.php:803, ../includes/Elements/Flip_Box.php:916, ../includes/Elements/FluentForm.php:630, ../includes/Elements/FluentForm.php:826, ../includes/Elements/FluentForm.php:1543, ../includes/Elements/FluentForm.php:1820, ../includes/Elements/FluentForm.php:1947, ../includes/Elements/FluentForm.php:2065, ../includes/Elements/Formstack.php:859, ../includes/Elements/Formstack.php:1055, ../includes/Elements/Formstack.php:1459, ../includes/Elements/Formstack.php:1680, ../includes/Elements/Formstack.php:1809, ../includes/Elements/GravityForms.php:829, ../includes/Elements/GravityForms.php:893, ../includes/Elements/GravityForms.php:1649, ../includes/Elements/GravityForms.php:1818, ../includes/Elements/GravityForms.php:2045, ../includes/Elements/Image_Accordion.php:284, ../includes/Elements/Image_Accordion.php:392, ../includes/Elements/Info_Box.php:562, ../includes/Elements/Info_Box.php:617, ../includes/Elements/Info_Box.php:812, ../includes/Elements/Info_Box.php:892, ../includes/Elements/Info_Box.php:1043, ../includes/Elements/Info_Box.php:1123, ../includes/Elements/Login_Register.php:2687, ../includes/Elements/NinjaForms.php:653, ../includes/Elements/NinjaForms.php:851, ../includes/Elements/NinjaForms.php:1391, ../includes/Elements/Post_Grid.php:283, ../includes/Elements/Pricing_Table.php:1671, ../includes/Elements/Pricing_Table.php:1837, ../includes/Elements/Team_Member.php:394, ../includes/Elements/Team_Member.php:482, ../includes/Elements/Testimonial.php:396, ../includes/Elements/Tooltip.php:428, ../includes/Elements/Tooltip.php:471, ../includes/Elements/Twitter_Feed.php:435, ../includes/Elements/Twitter_Feed.php:525, ../includes/Elements/Twitter_Feed.php:842, ../includes/Elements/Woo_Checkout.php:1234, ../includes/Elements/Woo_Checkout.php:1480, ../includes/Elements/WpForms.php:622, ../includes/Elements/WpForms.php:808, ../includes/Elements/WpForms.php:1227, ../includes/Extensions/Table_of_Content.php:495, ../includes/Traits/Controls.php:1087, ../includes/Traits/Controls.php:1141, ../includes/Traits/Controls.php:1271
|
268 |
msgid "Border"
|
269 |
msgstr ""
|
270 |
|
271 |
+
#: ../includes/Elements/Advanced_Data_Table.php:344, ../includes/Elements/Advanced_Data_Table.php:1012, ../includes/Elements/Advanced_Data_Table.php:1210, ../includes/Elements/Advanced_Data_Table.php:1282, ../includes/Elements/Advanced_Data_Table.php:1406, ../includes/Elements/Adv_Accordion.php:333, ../includes/Elements/Adv_Accordion.php:540, ../includes/Elements/Adv_Accordion.php:613, ../includes/Elements/Adv_Accordion.php:686, ../includes/Elements/Adv_Tabs.php:303, ../includes/Elements/Adv_Tabs.php:492, ../includes/Elements/Adv_Tabs.php:558, ../includes/Elements/Adv_Tabs.php:627, ../includes/Elements/Adv_Tabs.php:722, ../includes/Elements/Betterdocs_Category_Box.php:306, ../includes/Elements/Betterdocs_Category_Box.php:374, ../includes/Elements/Betterdocs_Category_Box.php:495, ../includes/Elements/Betterdocs_Category_Box.php:572, ../includes/Elements/Betterdocs_Category_Box.php:894, ../includes/Elements/Betterdocs_Category_Box.php:999, ../includes/Elements/Betterdocs_Category_Grid.php:346, ../includes/Elements/Betterdocs_Category_Grid.php:394, ../includes/Elements/Betterdocs_Category_Grid.php:479, ../includes/Elements/Betterdocs_Category_Grid.php:520, ../includes/Elements/Betterdocs_Category_Grid.php:645, ../includes/Elements/Betterdocs_Category_Grid.php:699, ../includes/Elements/Betterdocs_Category_Grid.php:851, ../includes/Elements/Betterdocs_Category_Grid.php:948, ../includes/Elements/Betterdocs_Category_Grid.php:1390, ../includes/Elements/Betterdocs_Category_Grid.php:1489, ../includes/Elements/Betterdocs_Search_Form.php:198, ../includes/Elements/Caldera_Forms.php:474, ../includes/Elements/Caldera_Forms.php:622, ../includes/Elements/Caldera_Forms.php:1040, ../includes/Elements/Caldera_Forms.php:1066, ../includes/Elements/Caldera_Forms.php:1233, ../includes/Elements/Contact_Form_7.php:390, ../includes/Elements/Contact_Form_7.php:716, ../includes/Elements/Contact_Form_7.php:1067, ../includes/Elements/Contact_Form_7.php:1093, ../includes/Elements/Contact_Form_7.php:1261, ../includes/Elements/Content_Ticker.php:440, ../includes/Elements/Content_Ticker.php:514, ../includes/Elements/Content_Ticker.php:671, ../includes/Elements/Countdown.php:613, ../includes/Elements/Creative_Button.php:306, ../includes/Elements/Cta_Box.php:459, ../includes/Elements/Cta_Box.php:736, ../includes/Elements/Cta_Box.php:923, ../includes/Elements/Dual_Color_Header.php:352, ../includes/Elements/Event_Calendar.php:766, ../includes/Elements/Event_Calendar.php:833, ../includes/Elements/Event_Calendar.php:887, ../includes/Elements/Event_Calendar.php:1123, ../includes/Elements/Event_Calendar.php:1291, ../includes/Elements/Event_Calendar.php:1559, ../includes/Elements/Event_Calendar.php:1630, ../includes/Elements/Facebook_Feed.php:462, ../includes/Elements/Facebook_Feed.php:522, ../includes/Elements/Fancy_Text.php:415, ../includes/Elements/Feature_List.php:638, ../includes/Elements/Filterable_Gallery.php:864, ../includes/Elements/Filterable_Gallery.php:977, ../includes/Elements/Filterable_Gallery.php:1043, ../includes/Elements/Filterable_Gallery.php:1123, ../includes/Elements/Filterable_Gallery.php:1327, ../includes/Elements/Filterable_Gallery.php:1821, ../includes/Elements/Filterable_Gallery.php:1882, ../includes/Elements/Filterable_Gallery.php:2047, ../includes/Elements/Filterable_Gallery.php:2176, ../includes/Elements/Filterable_Gallery.php:2311, ../includes/Elements/Filterable_Gallery.php:2407, ../includes/Elements/Filterable_Gallery.php:2516, ../includes/Elements/Flip_Box.php:641, ../includes/Elements/Flip_Box.php:702, ../includes/Elements/Flip_Box.php:826, ../includes/Elements/Flip_Box.php:939, ../includes/Elements/Flip_Box.php:1198, ../includes/Elements/FluentForm.php:493, ../includes/Elements/FluentForm.php:641, ../includes/Elements/FluentForm.php:1006, ../includes/Elements/FluentForm.php:1032, ../includes/Elements/FluentForm.php:1553, ../includes/Elements/FluentForm.php:1831, ../includes/Elements/FluentForm.php:1955, ../includes/Elements/FluentForm.php:2009, ../includes/Elements/Formstack.php:393, ../includes/Elements/Formstack.php:870, ../includes/Elements/Formstack.php:1196, ../includes/Elements/Formstack.php:1222, ../includes/Elements/Formstack.php:1469, ../includes/Elements/Formstack.php:1691, ../includes/Elements/Formstack.php:1817, ../includes/Elements/Formstack.php:1873, ../includes/Elements/GravityForms.php:430, ../includes/Elements/GravityForms.php:840, ../includes/Elements/GravityForms.php:1310, ../includes/Elements/GravityForms.php:1506, ../includes/Elements/GravityForms.php:1659, ../includes/Elements/GravityForms.php:1828, ../includes/Elements/GravityForms.php:2055, ../includes/Elements/Image_Accordion.php:292, ../includes/Elements/Image_Accordion.php:380, ../includes/Elements/Info_Box.php:1205, ../includes/Elements/Login_Register.php:1489, ../includes/Elements/Login_Register.php:1724, ../includes/Elements/Login_Register.php:1898, ../includes/Elements/Login_Register.php:2054, ../includes/Elements/Login_Register.php:2194, ../includes/Elements/Login_Register.php:2288, ../includes/Elements/Login_Register.php:2379, ../includes/Elements/Login_Register.php:2552, ../includes/Elements/Login_Register.php:2589, ../includes/Elements/Login_Register.php:2703, ../includes/Elements/Login_Register.php:3083, ../includes/Elements/Login_Register.php:3120, ../includes/Elements/Login_Register.php:3404, ../includes/Elements/Login_Register.php:3441, ../includes/Elements/NinjaForms.php:363, ../includes/Elements/NinjaForms.php:664, ../includes/Elements/NinjaForms.php:1088, ../includes/Elements/NinjaForms.php:1115, ../includes/Elements/NinjaForms.php:1401, ../includes/Elements/Post_Grid.php:291, ../includes/Elements/Pricing_Table.php:719, ../includes/Elements/Pricing_Table.php:1445, ../includes/Elements/Pricing_Table.php:1694, ../includes/Elements/Pricing_Table.php:1845, ../includes/Elements/Product_Grid.php:485, ../includes/Elements/Sticky_Video.php:587, ../includes/Elements/Team_Member.php:402, ../includes/Elements/Team_Member.php:501, ../includes/Elements/Team_Member.php:748, ../includes/Elements/Testimonial.php:415, ../includes/Elements/Tooltip.php:488, ../includes/Elements/Twitter_Feed.php:443, ../includes/Elements/Twitter_Feed.php:536, ../includes/Elements/TypeForm.php:310, ../includes/Elements/WeForms.php:253, ../includes/Elements/WeForms.php:394, ../includes/Elements/WeForms.php:722, ../includes/Elements/Woo_Checkout.php:378, ../includes/Elements/Woo_Checkout.php:523, ../includes/Elements/Woo_Checkout.php:719, ../includes/Elements/Woo_Checkout.php:967, ../includes/Elements/Woo_Checkout.php:1120, ../includes/Elements/Woo_Checkout.php:1243, ../includes/Elements/Woo_Checkout.php:1418, ../includes/Elements/Woo_Checkout.php:1626, ../includes/Elements/Woo_Checkout.php:1828, ../includes/Elements/Woo_Checkout.php:1922, ../includes/Elements/Woo_Checkout.php:2202, ../includes/Elements/WpForms.php:332, ../includes/Elements/WpForms.php:633, ../includes/Elements/WpForms.php:1041, ../includes/Elements/WpForms.php:1067, ../includes/Elements/WpForms.php:1237, ../includes/Extensions/Table_of_Content.php:518, ../includes/Extensions/Table_of_Content.php:733, ../includes/Traits/Controls.php:1095, ../includes/Traits/Controls.php:1149, ../includes/Traits/Controls.php:1279
|
272 |
msgid "Border Radius"
|
273 |
msgstr ""
|
274 |
|
288 |
msgid "Text Alignment"
|
289 |
msgstr ""
|
290 |
|
291 |
+
#: ../includes/Elements/Advanced_Data_Table.php:388, ../includes/Elements/Advanced_Data_Table.php:507, ../includes/Elements/Advanced_Data_Table.php:933, ../includes/Elements/Advanced_Data_Table.php:1080, ../includes/Elements/Adv_Accordion.php:137, ../includes/Elements/Betterdocs_Category_Box.php:765, ../includes/Elements/Betterdocs_Category_Grid.php:1509, ../includes/Elements/Betterdocs_Category_Grid.php:1534, ../includes/Elements/Caldera_Forms.php:227, ../includes/Elements/Caldera_Forms.php:409, ../includes/Elements/Caldera_Forms.php:555, ../includes/Elements/Caldera_Forms.php:1130, ../includes/Elements/Contact_Form_7.php:325, ../includes/Elements/Contact_Form_7.php:437, ../includes/Elements/Contact_Form_7.php:1157, ../includes/Elements/Content_Ticker.php:329, ../includes/Elements/Countdown.php:118, ../includes/Elements/Countdown.php:1016, ../includes/Elements/Creative_Button.php:403, ../includes/Elements/Cta_Box.php:101, ../includes/Elements/Data_Table.php:513, ../includes/Elements/Data_Table.php:736, ../includes/Elements/Data_Table.php:985, ../includes/Elements/Dual_Color_Header.php:188, ../includes/Elements/Event_Calendar.php:955, ../includes/Elements/Event_Calendar.php:1087, ../includes/Elements/Fancy_Text.php:171, ../includes/Elements/Feature_List.php:302, ../includes/Elements/Filterable_Gallery.php:752, ../includes/Elements/Filterable_Gallery.php:1284, ../includes/Elements/Filterable_Gallery.php:1667, ../includes/Elements/Flip_Box.php:424, ../includes/Elements/FluentForm.php:233, ../includes/Elements/FluentForm.php:428, ../includes/Elements/FluentForm.php:574, ../includes/Elements/FluentForm.php:1205, ../includes/Elements/FluentForm.php:1450, ../includes/Elements/Formstack.php:328, ../includes/Elements/Formstack.php:443, ../includes/Elements/Formstack.php:757, ../includes/Elements/Formstack.php:1366, ../includes/Elements/GravityForms.php:341, ../includes/Elements/GravityForms.php:478, ../includes/Elements/GravityForms.php:623, ../includes/Elements/GravityForms.php:1715, ../includes/Elements/GravityForms.php:1965, ../includes/Elements/Image_Accordion.php:96, ../includes/Elements/Info_Box.php:302, ../includes/Elements/Login_Register.php:663, ../includes/Elements/Login_Register.php:696, ../includes/Elements/Login_Register.php:2496, ../includes/Elements/Login_Register.php:3034, ../includes/Elements/Login_Register.php:3354, ../includes/Elements/NinjaForms.php:276, ../includes/Elements/NinjaForms.php:415, ../includes/Elements/NinjaForms.php:597, ../includes/Elements/NinjaForms.php:1292, ../includes/Elements/Post_Grid.php:449, ../includes/Elements/Post_Grid.php:604, ../includes/Elements/Post_Grid.php:672, ../includes/Elements/Post_Grid.php:767, ../includes/Elements/Post_Grid.php:850, ../includes/Elements/Post_Timeline.php:327, ../includes/Elements/Post_Timeline.php:383, ../includes/Elements/Pricing_Table.php:240, ../includes/Elements/Pricing_Table.php:345, ../includes/Elements/Pricing_Table.php:613, ../includes/Elements/Pricing_Table.php:753, ../includes/Elements/Pricing_Table.php:778, ../includes/Elements/Product_Grid.php:422, ../includes/Elements/Progress_Bar.php:314, ../includes/Elements/Progress_Bar.php:525, ../includes/Elements/Team_Member.php:361, ../includes/Elements/Testimonial.php:275, ../includes/Elements/Tooltip.php:175, ../includes/Elements/Tooltip.php:280, ../includes/Elements/Tooltip.php:369, ../includes/Elements/TypeForm.php:200, ../includes/Elements/WeForms.php:165, ../includes/Elements/WeForms.php:635, ../includes/Elements/WpForms.php:265, ../includes/Elements/WpForms.php:382, ../includes/Elements/WpForms.php:566, ../includes/Elements/WpForms.php:1131, ../includes/Extensions/Table_of_Content.php:412, ../includes/Traits/Controls.php:477, ../includes/Traits/Controls.php:1360, ../includes/Traits/Controls.php:1411, ../includes/Traits/Controls.php:1412
|
292 |
msgid "Left"
|
293 |
msgstr ""
|
294 |
|
295 |
+
#: ../includes/Elements/Advanced_Data_Table.php:392, ../includes/Elements/Advanced_Data_Table.php:511, ../includes/Elements/Advanced_Data_Table.php:937, ../includes/Elements/Advanced_Data_Table.php:1084, ../includes/Elements/Betterdocs_Category_Box.php:769, ../includes/Elements/Betterdocs_Category_Grid.php:1513, ../includes/Elements/Betterdocs_Category_Grid.php:1538, ../includes/Elements/Caldera_Forms.php:231, ../includes/Elements/Caldera_Forms.php:413, ../includes/Elements/Caldera_Forms.php:559, ../includes/Elements/Caldera_Forms.php:1134, ../includes/Elements/Contact_Form_7.php:329, ../includes/Elements/Contact_Form_7.php:441, ../includes/Elements/Contact_Form_7.php:1161, ../includes/Elements/Countdown.php:122, ../includes/Elements/Countdown.php:1020, ../includes/Elements/Creative_Button.php:407, ../includes/Elements/Cta_Box.php:102, ../includes/Elements/Data_Table.php:517, ../includes/Elements/Data_Table.php:740, ../includes/Elements/Data_Table.php:989, ../includes/Elements/Dual_Color_Header.php:192, ../includes/Elements/Dual_Color_Header.php:537, ../includes/Elements/Event_Calendar.php:959, ../includes/Elements/Event_Calendar.php:1091, ../includes/Elements/Fancy_Text.php:175, ../includes/Elements/Filterable_Gallery.php:756, ../includes/Elements/Filterable_Gallery.php:1288, ../includes/Elements/Filterable_Gallery.php:1671, ../includes/Elements/Flip_Box.php:428, ../includes/Elements/FluentForm.php:237, ../includes/Elements/FluentForm.php:432, ../includes/Elements/FluentForm.php:578, ../includes/Elements/FluentForm.php:1209, ../includes/Elements/FluentForm.php:1454, ../includes/Elements/Formstack.php:332, ../includes/Elements/Formstack.php:447, ../includes/Elements/Formstack.php:761, ../includes/Elements/Formstack.php:1370, ../includes/Elements/GravityForms.php:345, ../includes/Elements/GravityForms.php:482, ../includes/Elements/GravityForms.php:627, ../includes/Elements/GravityForms.php:1719, ../includes/Elements/GravityForms.php:1969, ../includes/Elements/Image_Accordion.php:100, ../includes/Elements/Image_Accordion.php:123, ../includes/Elements/Info_Box.php:306, ../includes/Elements/Login_Register.php:2500, ../includes/Elements/Login_Register.php:3016, ../includes/Elements/Login_Register.php:3038, ../includes/Elements/Login_Register.php:3315, ../includes/Elements/Login_Register.php:3335, ../includes/Elements/Login_Register.php:3358, ../includes/Elements/NinjaForms.php:280, ../includes/Elements/NinjaForms.php:419, ../includes/Elements/NinjaForms.php:601, ../includes/Elements/NinjaForms.php:1296, ../includes/Elements/Post_Grid.php:453, ../includes/Elements/Post_Grid.php:608, ../includes/Elements/Post_Grid.php:676, ../includes/Elements/Post_Grid.php:771, ../includes/Elements/Post_Grid.php:854, ../includes/Elements/Post_Timeline.php:331, ../includes/Elements/Post_Timeline.php:387, ../includes/Elements/Pricing_Table.php:757, ../includes/Elements/Pricing_Table.php:782, ../includes/Elements/Product_Grid.php:426, ../includes/Elements/Progress_Bar.php:318, ../includes/Elements/Progress_Bar.php:529, ../includes/Elements/Team_Member.php:365, ../includes/Elements/Testimonial.php:279, ../includes/Elements/Tooltip.php:179, ../includes/Elements/Tooltip.php:373, ../includes/Elements/TypeForm.php:204, ../includes/Elements/WeForms.php:169, ../includes/Elements/WeForms.php:639, ../includes/Elements/WpForms.php:269, ../includes/Elements/WpForms.php:386, ../includes/Elements/WpForms.php:570, ../includes/Elements/WpForms.php:1135, ../includes/Traits/Controls.php:476, ../includes/Traits/Controls.php:1364
|
296 |
msgid "Center"
|
297 |
msgstr ""
|
298 |
|
299 |
+
#: ../includes/Elements/Advanced_Data_Table.php:396, ../includes/Elements/Advanced_Data_Table.php:515, ../includes/Elements/Advanced_Data_Table.php:941, ../includes/Elements/Advanced_Data_Table.php:1088, ../includes/Elements/Adv_Accordion.php:136, ../includes/Elements/Betterdocs_Category_Box.php:773, ../includes/Elements/Betterdocs_Category_Grid.php:1517, ../includes/Elements/Betterdocs_Category_Grid.php:1542, ../includes/Elements/Caldera_Forms.php:235, ../includes/Elements/Caldera_Forms.php:417, ../includes/Elements/Caldera_Forms.php:563, ../includes/Elements/Caldera_Forms.php:1138, ../includes/Elements/Contact_Form_7.php:333, ../includes/Elements/Contact_Form_7.php:445, ../includes/Elements/Contact_Form_7.php:1165, ../includes/Elements/Content_Ticker.php:330, ../includes/Elements/Countdown.php:126, ../includes/Elements/Countdown.php:1024, ../includes/Elements/Creative_Button.php:411, ../includes/Elements/Cta_Box.php:103, ../includes/Elements/Data_Table.php:521, ../includes/Elements/Data_Table.php:744, ../includes/Elements/Data_Table.php:993, ../includes/Elements/Dual_Color_Header.php:196, ../includes/Elements/Event_Calendar.php:963, ../includes/Elements/Event_Calendar.php:1095, ../includes/Elements/Fancy_Text.php:179, ../includes/Elements/Feature_List.php:310, ../includes/Elements/Filterable_Gallery.php:760, ../includes/Elements/Filterable_Gallery.php:1292, ../includes/Elements/Filterable_Gallery.php:1675, ../includes/Elements/Flip_Box.php:432, ../includes/Elements/FluentForm.php:241, ../includes/Elements/FluentForm.php:436, ../includes/Elements/FluentForm.php:582, ../includes/Elements/FluentForm.php:1213, ../includes/Elements/FluentForm.php:1458, ../includes/Elements/Formstack.php:336, ../includes/Elements/Formstack.php:451, ../includes/Elements/Formstack.php:765, ../includes/Elements/Formstack.php:1374, ../includes/Elements/GravityForms.php:349, ../includes/Elements/GravityForms.php:486, ../includes/Elements/GravityForms.php:631, ../includes/Elements/GravityForms.php:1723, ../includes/Elements/GravityForms.php:1973, ../includes/Elements/Image_Accordion.php:104, ../includes/Elements/Info_Box.php:310, ../includes/Elements/Login_Register.php:667, ../includes/Elements/Login_Register.php:2504, ../includes/Elements/Login_Register.php:3042, ../includes/Elements/Login_Register.php:3362, ../includes/Elements/NinjaForms.php:284, ../includes/Elements/NinjaForms.php:423, ../includes/Elements/NinjaForms.php:605, ../includes/Elements/NinjaForms.php:1300, ../includes/Elements/Post_Grid.php:457, ../includes/Elements/Post_Grid.php:612, ../includes/Elements/Post_Grid.php:680, ../includes/Elements/Post_Grid.php:775, ../includes/Elements/Post_Grid.php:858, ../includes/Elements/Post_Timeline.php:335, ../includes/Elements/Post_Timeline.php:391, ../includes/Elements/Pricing_Table.php:241, ../includes/Elements/Pricing_Table.php:353, ../includes/Elements/Pricing_Table.php:617, ../includes/Elements/Pricing_Table.php:761, ../includes/Elements/Pricing_Table.php:786, ../includes/Elements/Product_Grid.php:430, ../includes/Elements/Progress_Bar.php:322, ../includes/Elements/Progress_Bar.php:533, ../includes/Elements/Team_Member.php:369, ../includes/Elements/Testimonial.php:283, ../includes/Elements/Tooltip.php:183, ../includes/Elements/Tooltip.php:281, ../includes/Elements/Tooltip.php:377, ../includes/Elements/TypeForm.php:208, ../includes/Elements/WeForms.php:173, ../includes/Elements/WeForms.php:643, ../includes/Elements/WpForms.php:273, ../includes/Elements/WpForms.php:390, ../includes/Elements/WpForms.php:574, ../includes/Elements/WpForms.php:1139, ../includes/Extensions/Table_of_Content.php:413, ../includes/Traits/Controls.php:475, ../includes/Traits/Controls.php:1368, ../includes/Traits/Controls.php:1411, ../includes/Traits/Controls.php:1412
|
300 |
msgid "Right"
|
301 |
msgstr ""
|
302 |
|
303 |
+
#: ../includes/Elements/Advanced_Data_Table.php:411, ../includes/Elements/Advanced_Data_Table.php:530, ../includes/Elements/Advanced_Data_Table.php:624, ../includes/Elements/Advanced_Data_Table.php:655, ../includes/Elements/Advanced_Data_Table.php:686, ../includes/Elements/Advanced_Data_Table.php:717, ../includes/Elements/Advanced_Data_Table.php:748, ../includes/Elements/Advanced_Data_Table.php:779, ../includes/Elements/Advanced_Data_Table.php:961, ../includes/Elements/Advanced_Data_Table.php:1157, ../includes/Elements/Advanced_Data_Table.php:1227, ../includes/Elements/Adv_Accordion.php:506, ../includes/Elements/Adv_Accordion.php:579, ../includes/Elements/Adv_Accordion.php:652, ../includes/Elements/Adv_Accordion.php:735, ../includes/Elements/Adv_Tabs.php:459, ../includes/Elements/Adv_Tabs.php:525, ../includes/Elements/Adv_Tabs.php:592, ../includes/Elements/Adv_Tabs.php:674, ../includes/Elements/Caldera_Forms.php:264, ../includes/Elements/Caldera_Forms.php:325, ../includes/Elements/Caldera_Forms.php:517, ../includes/Elements/Caldera_Forms.php:598, ../includes/Elements/Caldera_Forms.php:844, ../includes/Elements/Caldera_Forms.php:900, ../includes/Elements/Caldera_Forms.php:1210, ../includes/Elements/Caldera_Forms.php:1316, ../includes/Elements/Caldera_Forms.php:1369, ../includes/Elements/Contact_Form_7.php:468, ../includes/Elements/Contact_Form_7.php:499, ../includes/Elements/Contact_Form_7.php:556, ../includes/Elements/Contact_Form_7.php:839, ../includes/Elements/Contact_Form_7.php:914, ../includes/Elements/Contact_Form_7.php:1239, ../includes/Elements/Contact_Form_7.php:1345, ../includes/Elements/Contact_Form_7.php:1409, ../includes/Elements/Contact_Form_7.php:1473, ../includes/Elements/Contact_Form_7.php:1534, ../includes/Elements/Contact_Form_7.php:1616, ../includes/Elements/Content_Ticker.php:396, ../includes/Elements/Content_Ticker.php:472, ../includes/Elements/Countdown.php:1095, ../includes/Elements/Creative_Button.php:248, ../includes/Elements/Creative_Button.php:328, ../includes/Elements/Cta_Box.php:686, ../includes/Elements/Cta_Box.php:757, ../includes/Elements/Cta_Box.php:892, ../includes/Elements/Cta_Box.php:944, ../includes/Elements/Data_Table.php:947, ../includes/Elements/Data_Table.php:964, ../includes/Elements/Event_Calendar.php:1201, ../includes/Elements/Event_Calendar.php:1234, ../includes/Elements/Filterable_Gallery.php:944, ../includes/Elements/Filterable_Gallery.php:1010, ../includes/Elements/Filterable_Gallery.php:2485, ../includes/Elements/Filterable_Gallery.php:2678, ../includes/Elements/FluentForm.php:271, ../includes/Elements/FluentForm.php:332, ../includes/Elements/FluentForm.php:536, ../includes/Elements/FluentForm.php:617, ../includes/Elements/FluentForm.php:866, ../includes/Elements/FluentForm.php:1530, ../includes/Elements/FluentForm.php:1636, ../includes/Elements/FluentForm.php:2053, ../includes/Elements/Formstack.php:475, ../includes/Elements/Formstack.php:524, ../includes/Elements/Formstack.php:579, ../includes/Elements/Formstack.php:791, ../includes/Elements/Formstack.php:846, ../includes/Elements/Formstack.php:1095, ../includes/Elements/Formstack.php:1446, ../includes/Elements/Formstack.php:1552, ../includes/Elements/Formstack.php:1775, ../includes/Elements/Formstack.php:2014, ../includes/Elements/GravityForms.php:509, ../includes/Elements/GravityForms.php:540, ../includes/Elements/GravityForms.php:579, ../includes/Elements/GravityForms.php:666, ../includes/Elements/GravityForms.php:930, ../includes/Elements/GravityForms.php:983, ../includes/Elements/GravityForms.php:1170, ../includes/Elements/GravityForms.php:1804, ../includes/Elements/GravityForms.php:1896, ../includes/Elements/GravityForms.php:2032, ../includes/Elements/GravityForms.php:2119, ../includes/Elements/GravityForms.php:2193, ../includes/Elements/GravityForms.php:2328, ../includes/Elements/Info_Box.php:1227, ../includes/Elements/Info_Box.php:1273, ../includes/Elements/Login_Register.php:2525, ../includes/Elements/Login_Register.php:2664, ../includes/Elements/Login_Register.php:3063, ../includes/Elements/Login_Register.php:3100, ../includes/Elements/Login_Register.php:3384, ../includes/Elements/Login_Register.php:3421, ../includes/Elements/NinjaForms.php:446, ../includes/Elements/NinjaForms.php:495, ../includes/Elements/NinjaForms.php:553, ../includes/Elements/NinjaForms.php:640, ../includes/Elements/NinjaForms.php:888, ../includes/Elements/NinjaForms.php:944, ../includes/Elements/NinjaForms.php:1378, ../includes/Elements/NinjaForms.php:1465, ../includes/Elements/NinjaForms.php:1527, ../includes/Elements/NinjaForms.php:1627, ../includes/Elements/Pricing_Table.php:1797, ../includes/Elements/Pricing_Table.php:1866, ../includes/Elements/Tooltip.php:407, ../includes/Elements/Tooltip.php:450, ../includes/Elements/Tooltip.php:623, ../includes/Elements/WeForms.php:692, ../includes/Elements/WeForms.php:742, ../includes/Elements/WpForms.php:413, ../includes/Elements/WpForms.php:462, ../includes/Elements/WpForms.php:527, ../includes/Elements/WpForms.php:609, ../includes/Elements/WpForms.php:845, ../includes/Elements/WpForms.php:901, ../includes/Elements/WpForms.php:1214, ../includes/Elements/WpForms.php:1321, ../includes/Elements/WpForms.php:1366, ../includes/Extensions/Table_of_Content.php:576, ../includes/Extensions/Table_of_Content.php:891, ../includes/Extensions/Table_of_Content.php:914, ../includes/Extensions/Table_of_Content.php:940, ../includes/Traits/Controls.php:1061, ../includes/Traits/Controls.php:1116, ../includes/Traits/Controls.php:1246, ../includes/Traits/Controls.php:1308
|
304 |
msgid "Text Color"
|
305 |
msgstr ""
|
306 |
|
307 |
+
#: ../includes/Elements/Advanced_Data_Table.php:425, ../includes/Elements/Advanced_Data_Table.php:566, ../includes/Elements/Advanced_Data_Table.php:639, ../includes/Elements/Advanced_Data_Table.php:670, ../includes/Elements/Advanced_Data_Table.php:701, ../includes/Elements/Advanced_Data_Table.php:732, ../includes/Elements/Advanced_Data_Table.php:763, ../includes/Elements/Advanced_Data_Table.php:794, ../includes/Elements/Advanced_Data_Table.php:973, ../includes/Elements/Advanced_Data_Table.php:1170, ../includes/Elements/Advanced_Data_Table.php:1241, ../includes/Elements/Advanced_Data_Table.php:1336, ../includes/Elements/Advanced_Data_Table.php:1366, ../includes/Elements/Adv_Accordion.php:487, ../includes/Elements/Adv_Accordion.php:560, ../includes/Elements/Adv_Accordion.php:633, ../includes/Elements/Adv_Accordion.php:714, ../includes/Elements/Adv_Accordion.php:886, ../includes/Elements/Adv_Accordion.php:932, ../includes/Elements/Adv_Accordion.php:979, ../includes/Elements/Adv_Tabs.php:440, ../includes/Elements/Adv_Tabs.php:655, ../includes/Elements/Caldera_Forms.php:586, ../includes/Elements/Caldera_Forms.php:794, ../includes/Elements/Caldera_Forms.php:1198, ../includes/Elements/Caldera_Forms.php:1304, ../includes/Elements/Caldera_Forms.php:1358, ../includes/Elements/Contact_Form_7.php:544, ../includes/Elements/Contact_Form_7.php:757, ../includes/Elements/Contact_Form_7.php:1227, ../includes/Elements/Contact_Form_7.php:1333, ../includes/Elements/Contact_Form_7.php:1458, ../includes/Elements/Contact_Form_7.php:1519, ../includes/Elements/Content_Ticker.php:384, ../includes/Elements/Content_Ticker.php:461, ../includes/Elements/Content_Ticker.php:636, ../includes/Elements/Content_Ticker.php:692, ../includes/Elements/Countdown.php:719, ../includes/Elements/Countdown.php:731, ../includes/Elements/Countdown.php:791, ../includes/Elements/Countdown.php:803, ../includes/Elements/Countdown.php:863, ../includes/Elements/Countdown.php:875, ../includes/Elements/Countdown.php:935, ../includes/Elements/Countdown.php:947, ../includes/Elements/Creative_Button.php:261, ../includes/Elements/Creative_Button.php:341, ../includes/Elements/Cta_Box.php:121, ../includes/Elements/Cta_Box.php:414, ../includes/Elements/Cta_Box.php:700, ../includes/Elements/Cta_Box.php:769, ../includes/Elements/Data_Table.php:597, ../includes/Elements/Data_Table.php:637, ../includes/Elements/Data_Table.php:1074, ../includes/Elements/Dual_Color_Header.php:307, ../includes/Elements/Event_Calendar.php:1213, ../includes/Elements/Filterable_Gallery.php:819, ../includes/Elements/Filterable_Gallery.php:956, ../includes/Elements/Filterable_Gallery.php:1022, ../includes/Elements/Filterable_Gallery.php:1168, ../includes/Elements/Filterable_Gallery.php:1358, ../includes/Elements/Filterable_Gallery.php:1388, ../includes/Elements/Filterable_Gallery.php:1493, ../includes/Elements/Filterable_Gallery.php:1509, ../includes/Elements/Filterable_Gallery.php:1711, ../includes/Elements/Filterable_Gallery.php:1849, ../includes/Elements/Filterable_Gallery.php:2469, ../includes/Elements/Filterable_Gallery.php:2662, ../includes/Elements/FluentForm.php:605, ../includes/Elements/FluentForm.php:813, ../includes/Elements/FluentForm.php:1247, ../includes/Elements/FluentForm.php:1333, ../includes/Elements/FluentForm.php:1518, ../includes/Elements/FluentForm.php:1624, ../includes/Elements/FluentForm.php:2042, ../includes/Elements/Formstack.php:834, ../includes/Elements/Formstack.php:1042, ../includes/Elements/Formstack.php:1434, ../includes/Elements/Formstack.php:1540, ../includes/Elements/GravityForms.php:654, ../includes/Elements/GravityForms.php:880, ../includes/Elements/GravityForms.php:1613, ../includes/Elements/GravityForms.php:1791, ../includes/Elements/GravityForms.php:1883, ../includes/Elements/GravityForms.php:2020, ../includes/Elements/GravityForms.php:2107, ../includes/Elements/Image_Accordion.php:247, ../includes/Elements/Info_Box.php:537, ../includes/Elements/Info_Box.php:779, ../includes/Elements/Info_Box.php:858, ../includes/Elements/Info_Box.php:1027, ../includes/Elements/Info_Box.php:1089, ../includes/Elements/Info_Box.php:1239, ../includes/Elements/Info_Box.php:1285, ../includes/Elements/Login_Register.php:1504, ../includes/Elements/Login_Register.php:1637, ../includes/Elements/Login_Register.php:1739, ../includes/Elements/Login_Register.php:1913, ../includes/Elements/Login_Register.php:2269, ../includes/Elements/Login_Register.php:2360, ../includes/Elements/Login_Register.php:2539, ../includes/Elements/Login_Register.php:2577, ../includes/Elements/Login_Register.php:2674, ../includes/Elements/Login_Register.php:3071, ../includes/Elements/Login_Register.php:3108, ../includes/Elements/Login_Register.php:3392, ../includes/Elements/Login_Register.php:3429, ../includes/Elements/NinjaForms.php:628, ../includes/Elements/NinjaForms.php:838, ../includes/Elements/NinjaForms.php:1366, ../includes/Elements/NinjaForms.php:1453, ../includes/Elements/Post_Grid.php:924, ../includes/Elements/Pricing_Table.php:674, ../includes/Elements/Pricing_Table.php:834, ../includes/Elements/Pricing_Table.php:1322, ../includes/Elements/Pricing_Table.php:1381, ../includes/Elements/Pricing_Table.php:1547, ../includes/Elements/Pricing_Table.php:1809, ../includes/Elements/Pricing_Table.php:1878, ../includes/Elements/Progress_Bar.php:571, ../includes/Elements/Team_Member.php:712, ../includes/Elements/Tooltip.php:396, ../includes/Elements/Tooltip.php:439, ../includes/Elements/Tooltip.php:612, ../includes/Elements/Twitter_Feed.php:388, ../includes/Elements/WeForms.php:703, ../includes/Elements/WeForms.php:753, ../includes/Elements/Woo_Checkout.php:348, ../includes/Elements/Woo_Checkout.php:460, ../includes/Elements/Woo_Checkout.php:581, ../includes/Elements/Woo_Checkout.php:1039, ../includes/Elements/Woo_Checkout.php:1079, ../includes/Elements/Woo_Checkout.php:1337, ../includes/Elements/Woo_Checkout.php:1377, ../includes/Elements/Woo_Checkout.php:1881, ../includes/Elements/Woo_Checkout.php:2011, ../includes/Elements/Woo_Checkout.php:2121, ../includes/Elements/Woo_Checkout.php:2161, ../includes/Elements/WpForms.php:597, ../includes/Elements/WpForms.php:1202, ../includes/Elements/WpForms.php:1309, ../includes/Extensions/Reading_Progress.php:156, ../includes/Extensions/Table_of_Content.php:563, ../includes/Extensions/Table_of_Content.php:709, ../includes/Extensions/Table_of_Content.php:773, ../includes/Traits/Controls.php:1258, ../includes/Traits/Controls.php:1320
|
308 |
msgid "Background Color"
|
309 |
msgstr ""
|
310 |
|
312 |
msgid "Cell Border"
|
313 |
msgstr ""
|
314 |
|
315 |
+
#: ../includes/Elements/Advanced_Data_Table.php:464, ../includes/Elements/Advanced_Data_Table.php:809, ../includes/Elements/Advanced_Data_Table.php:893, ../includes/Elements/Advanced_Data_Table.php:1111, ../includes/Elements/Advanced_Data_Table.php:1428, ../includes/Elements/Adv_Accordion.php:303, ../includes/Elements/Adv_Accordion.php:461, ../includes/Elements/Adv_Accordion.php:753, ../includes/Elements/Adv_Tabs.php:272, ../includes/Elements/Adv_Tabs.php:414, ../includes/Elements/Adv_Tabs.php:692, ../includes/Elements/Betterdocs_Category_Box.php:510, ../includes/Elements/Betterdocs_Category_Grid.php:555, ../includes/Elements/Betterdocs_Category_Grid.php:719, ../includes/Elements/Betterdocs_Category_Grid.php:1402, ../includes/Elements/Betterdocs_Search_Form.php:124, ../includes/Elements/Betterdocs_Search_Form.php:432, ../includes/Elements/Caldera_Forms.php:735, ../includes/Elements/Caldera_Forms.php:1245, ../includes/Elements/Contact_Form_7.php:592, ../includes/Elements/Contact_Form_7.php:1273, ../includes/Elements/Contact_Form_7.php:1689, ../includes/Elements/Content_Ticker.php:428, ../includes/Elements/Content_Ticker.php:491, ../includes/Elements/Content_Ticker.php:732, ../includes/Elements/Countdown.php:592, ../includes/Elements/Countdown.php:1122, ../includes/Elements/Cta_Box.php:426, ../includes/Elements/Cta_Box.php:639, ../includes/Elements/Cta_Box.php:856, ../includes/Elements/Data_Table.php:565, ../includes/Elements/Data_Table.php:850, ../includes/Elements/Dual_Color_Header.php:319, ../includes/Elements/Facebook_Feed.php:591, ../includes/Elements/Facebook_Feed.php:617, ../includes/Elements/Facebook_Feed.php:689, ../includes/Elements/Fancy_Text.php:380, ../includes/Elements/Feature_List.php:595, ../includes/Elements/Filterable_Gallery.php:831, ../includes/Elements/Filterable_Gallery.php:908, ../includes/Elements/Filterable_Gallery.php:1090, ../includes/Elements/Filterable_Gallery.php:1180, ../includes/Elements/Filterable_Gallery.php:1524, ../includes/Elements/Filterable_Gallery.php:1735, ../includes/Elements/Filterable_Gallery.php:2586, ../includes/Elements/Flip_Box.php:814, ../includes/Elements/Flip_Box.php:927, ../includes/Elements/Flip_Box.php:1162, ../includes/Elements/FluentForm.php:754, ../includes/Elements/FluentForm.php:1122, ../includes/Elements/FluentForm.php:1177, ../includes/Elements/FluentForm.php:1300, ../includes/Elements/FluentForm.php:1385, ../includes/Elements/FluentForm.php:1565, ../includes/Elements/FluentForm.php:1967, ../includes/Elements/FluentForm.php:2133, ../includes/Elements/Formstack.php:674, ../includes/Elements/Formstack.php:729, ../includes/Elements/Formstack.php:983, ../includes/Elements/Formstack.php:1316, ../includes/Elements/Formstack.php:1481, ../includes/Elements/Formstack.php:1829, ../includes/Elements/Formstack.php:1958, ../includes/Elements/GravityForms.php:716, ../includes/Elements/GravityForms.php:1337, ../includes/Elements/GravityForms.php:1533, ../includes/Elements/GravityForms.php:1671, ../includes/Elements/GravityForms.php:1841, ../includes/Elements/GravityForms.php:2067, ../includes/Elements/Image_Accordion.php:259, ../includes/Elements/Image_Accordion.php:369, ../includes/Elements/Info_Box.php:549, ../includes/Elements/Login_Register.php:1467, ../includes/Elements/Login_Register.php:2032, ../includes/Elements/Login_Register.php:2171, ../includes/Elements/Login_Register.php:2244, ../includes/Elements/Login_Register.php:2335, ../includes/Elements/Login_Register.php:2437, ../includes/Elements/Login_Register.php:2472, ../includes/Elements/Login_Register.php:2634, ../includes/Elements/Login_Register.php:2976, ../includes/Elements/Login_Register.php:3275, ../includes/Elements/NinjaForms.php:778, ../includes/Elements/NinjaForms.php:1413, ../includes/Elements/Pricing_Table.php:686, ../includes/Elements/Pricing_Table.php:1423, ../includes/Elements/Pricing_Table.php:1728, ../includes/Elements/Product_Grid.php:496, ../includes/Elements/Product_Grid.php:704, ../includes/Elements/Team_Member.php:468, ../includes/Elements/Testimonial.php:382, ../includes/Elements/Tooltip.php:341, ../includes/Elements/Tooltip.php:590, ../includes/Elements/Twitter_Feed.php:418, ../includes/Elements/Twitter_Feed.php:477, ../includes/Elements/Twitter_Feed.php:510, ../includes/Elements/WeForms.php:676, ../includes/Elements/Woo_Checkout.php:359, ../includes/Elements/Woo_Checkout.php:947, ../includes/Elements/Woo_Checkout.php:1140, ../includes/Elements/Woo_Checkout.php:1270, ../includes/Elements/Woo_Checkout.php:1438, ../includes/Elements/Woo_Checkout.php:1653, ../includes/Elements/Woo_Checkout.php:1903, ../includes/Elements/Woo_Checkout.php:2234, ../includes/Elements/WpForms.php:746, ../includes/Elements/WpForms.php:1249, ../includes/Extensions/Table_of_Content.php:598, ../includes/Extensions/Table_of_Content.php:786, ../includes/Traits/Controls.php:1165, ../includes/Traits/Controls.php:1210
|
316 |
msgid "Padding"
|
317 |
msgstr ""
|
318 |
|
368 |
msgid "Margin Bottom"
|
369 |
msgstr ""
|
370 |
|
371 |
+
#: ../includes/Elements/Advanced_Data_Table.php:928, ../includes/Elements/Advanced_Data_Table.php:1076, ../includes/Elements/Caldera_Forms.php:223, ../includes/Elements/Caldera_Forms.php:551, ../includes/Elements/Caldera_Forms.php:1126, ../includes/Elements/Contact_Form_7.php:433, ../includes/Elements/Contact_Form_7.php:1152, ../includes/Elements/Countdown.php:114, ../includes/Elements/Cta_Box.php:96, ../includes/Elements/Data_Table.php:507, ../includes/Elements/Dual_Color_Header.php:183, ../includes/Elements/Dual_Color_Header.php:529, ../includes/Elements/Event_Calendar.php:951, ../includes/Elements/Event_Calendar.php:1083, ../includes/Elements/Fancy_Text.php:167, ../includes/Elements/Filterable_Gallery.php:748, ../includes/Elements/FluentForm.php:229, ../includes/Elements/FluentForm.php:570, ../includes/Elements/FluentForm.php:1201, ../includes/Elements/FluentForm.php:1446, ../includes/Elements/Formstack.php:439, ../includes/Elements/Formstack.php:753, ../includes/Elements/Formstack.php:1362, ../includes/Elements/GravityForms.php:474, ../includes/Elements/GravityForms.php:619, ../includes/Elements/GravityForms.php:1711, ../includes/Elements/GravityForms.php:1961, ../includes/Elements/Login_Register.php:3030, ../includes/Elements/Login_Register.php:3350, ../includes/Elements/NinjaForms.php:411, ../includes/Elements/NinjaForms.php:593, ../includes/Elements/NinjaForms.php:1288, ../includes/Elements/Post_Grid.php:445, ../includes/Elements/Post_Grid.php:763, ../includes/Elements/Post_Grid.php:846, ../includes/Elements/Product_Grid.php:418, ../includes/Elements/Progress_Bar.php:310, ../includes/Elements/Progress_Bar.php:521, ../includes/Elements/Tooltip.php:170, ../includes/Elements/WpForms.php:378, ../includes/Elements/WpForms.php:562, ../includes/Elements/WpForms.php:1127
|
372 |
msgid "Alignment"
|
373 |
msgstr ""
|
374 |
|
375 |
+
#: ../includes/Elements/Advanced_Data_Table.php:1132, ../includes/Elements/Adv_Accordion.php:314, ../includes/Elements/Adv_Accordion.php:472, ../includes/Elements/Adv_Accordion.php:764, ../includes/Elements/Adv_Tabs.php:283, ../includes/Elements/Adv_Tabs.php:425, ../includes/Elements/Adv_Tabs.php:703, ../includes/Elements/Betterdocs_Category_Grid.php:567, ../includes/Elements/Betterdocs_Category_Grid.php:733, ../includes/Elements/Caldera_Forms.php:291, ../includes/Elements/Caldera_Forms.php:353, ../includes/Elements/Contact_Form_7.php:366, ../includes/Elements/Contact_Form_7.php:1578, ../includes/Elements/Contact_Form_7.php:1675, ../includes/Elements/Content_Ticker.php:503, ../includes/Elements/Countdown.php:1074, ../includes/Elements/Cta_Box.php:438, ../includes/Elements/Cta_Box.php:651, ../includes/Elements/Cta_Box.php:868, ../includes/Elements/Dual_Color_Header.php:331, ../includes/Elements/Dual_Color_Header.php:581, ../includes/Elements/Fancy_Text.php:392, ../includes/Elements/Filterable_Gallery.php:843, ../includes/Elements/Filterable_Gallery.php:920, ../includes/Elements/Filterable_Gallery.php:1102, ../includes/Elements/Filterable_Gallery.php:1747, ../includes/Elements/Filterable_Gallery.php:2188, ../includes/Elements/Filterable_Gallery.php:2627, ../includes/Elements/Flip_Box.php:1150, ../includes/Elements/FluentForm.php:298, ../includes/Elements/FluentForm.php:360, ../includes/Elements/FluentForm.php:1134, ../includes/Elements/FluentForm.php:1189, ../includes/Elements/FluentForm.php:2145, ../includes/Elements/Formstack.php:496, ../includes/Elements/Formstack.php:546, ../includes/Elements/Formstack.php:686, ../includes/Elements/Formstack.php:741, ../includes/Elements/Formstack.php:1973, ../includes/Elements/GravityForms.php:1066, ../includes/Elements/GravityForms.php:1325, ../includes/Elements/GravityForms.php:1521, ../includes/Elements/GravityForms.php:1685, ../includes/Elements/Image_Accordion.php:271, ../includes/Elements/Image_Accordion.php:358, ../includes/Elements/Info_Box.php:683, ../includes/Elements/Info_Box.php:745, ../includes/Elements/Info_Box.php:976, ../includes/Elements/Info_Box.php:1366, ../includes/Elements/Login_Register.php:1452, ../includes/Elements/Login_Register.php:2017, ../includes/Elements/Login_Register.php:2156, ../includes/Elements/Login_Register.php:2229, ../includes/Elements/Login_Register.php:2320, ../includes/Elements/Login_Register.php:2422, ../includes/Elements/Login_Register.php:2457, ../includes/Elements/Login_Register.php:2619, ../includes/Elements/Login_Register.php:2961, ../includes/Elements/Login_Register.php:3196, ../includes/Elements/Login_Register.php:3260, ../includes/Elements/NinjaForms.php:467, ../includes/Elements/NinjaForms.php:517, ../includes/Elements/Post_Grid.php:381, ../includes/Elements/Post_Grid.php:496, ../includes/Elements/Post_Grid.php:511, ../includes/Elements/Post_Grid.php:635, ../includes/Elements/Post_Grid.php:723, ../includes/Elements/Post_Grid.php:799, ../includes/Elements/Pricing_Table.php:698, ../includes/Elements/Pricing_Table.php:1024, ../includes/Elements/Pricing_Table.php:1094, ../includes/Elements/Pricing_Table.php:1740, ../includes/Elements/Team_Member.php:456, ../includes/Elements/Testimonial.php:370, ../includes/Elements/Testimonial.php:468, ../includes/Elements/Testimonial.php:509, ../includes/Elements/Testimonial.php:550, ../includes/Elements/Testimonial.php:583, ../includes/Elements/Tooltip.php:352, ../includes/Elements/Tooltip.php:601, ../includes/Elements/WeForms.php:490, ../includes/Elements/WeForms.php:664, ../includes/Elements/WpForms.php:434, ../includes/Elements/WpForms.php:484, ../includes/Elements/WpForms.php:516, ../includes/Traits/Controls.php:1177, ../includes/Traits/Controls.php:1222
|
376 |
msgid "Margin"
|
377 |
msgstr ""
|
378 |
|
379 |
+
#: ../includes/Elements/Advanced_Data_Table.php:1152, ../includes/Elements/Advanced_Data_Table.php:1318, ../includes/Elements/Adv_Accordion.php:483, ../includes/Elements/Adv_Accordion.php:866, ../includes/Elements/Adv_Tabs.php:436, ../includes/Elements/Betterdocs_Category_Box.php:282, ../includes/Elements/Betterdocs_Category_Box.php:450, ../includes/Elements/Betterdocs_Category_Box.php:675, ../includes/Elements/Betterdocs_Category_Box.php:844, ../includes/Elements/Betterdocs_Category_Grid.php:312, ../includes/Elements/Betterdocs_Category_Grid.php:452, ../includes/Elements/Betterdocs_Category_Grid.php:607, ../includes/Elements/Betterdocs_Category_Grid.php:796, ../includes/Elements/Betterdocs_Category_Grid.php:1344, ../includes/Elements/Betterdocs_Search_Form.php:390, ../includes/Elements/Caldera_Forms.php:579, ../includes/Elements/Caldera_Forms.php:967, ../includes/Elements/Caldera_Forms.php:1191, ../includes/Elements/Contact_Form_7.php:537, ../includes/Elements/Contact_Form_7.php:994, ../includes/Elements/Contact_Form_7.php:1220, ../includes/Elements/Content_Ticker.php:629, ../includes/Elements/Creative_Button.php:243, ../includes/Elements/Cta_Box.php:681, ../includes/Elements/Cta_Box.php:887, ../includes/Elements/Data_Table.php:577, ../includes/Elements/Data_Table.php:770, ../includes/Elements/Data_Table.php:942, ../includes/Elements/Event_Calendar.php:728, ../includes/Elements/Filterable_Gallery.php:939, ../includes/Elements/Filterable_Gallery.php:1704, ../includes/Elements/Filterable_Gallery.php:2458, ../includes/Elements/Flip_Box.php:1144, ../includes/Elements/FluentForm.php:598, ../includes/Elements/FluentForm.php:933, ../includes/Elements/FluentForm.php:1511, ../includes/Elements/FluentForm.php:1683, ../includes/Elements/FluentForm.php:1900, ../includes/Elements/Formstack.php:827, ../includes/Elements/Formstack.php:1159, ../includes/Elements/Formstack.php:1427, ../includes/Elements/Formstack.php:1597, ../includes/Elements/Formstack.php:1760, ../includes/Elements/GravityForms.php:647, ../includes/Elements/GravityForms.php:1237, ../includes/Elements/GravityForms.php:1433, ../includes/Elements/GravityForms.php:1784, ../includes/Elements/GravityForms.php:2013, ../includes/Elements/Info_Box.php:530, ../includes/Elements/Info_Box.php:759, ../includes/Elements/Info_Box.php:990, ../includes/Elements/Info_Box.php:1221, ../includes/Elements/Info_Box.php:1332, ../includes/Elements/Login_Register.php:2522, ../includes/Elements/Login_Register.php:3060, ../includes/Elements/Login_Register.php:3223, ../includes/Elements/Login_Register.php:3381, ../includes/Elements/NinjaForms.php:621, ../includes/Elements/NinjaForms.php:1014, ../includes/Elements/NinjaForms.php:1359, ../includes/Elements/Pricing_Table.php:1792, ../includes/Elements/Product_Grid.php:741, ../includes/Elements/Team_Member.php:695, ../includes/Elements/Tooltip.php:392, ../includes/Elements/WeForms.php:687, ../includes/Elements/Woo_Checkout.php:627, ../includes/Elements/Woo_Checkout.php:670, ../includes/Elements/Woo_Checkout.php:813, ../includes/Elements/Woo_Checkout.php:1032, ../includes/Elements/Woo_Checkout.php:1330, ../includes/Elements/Woo_Checkout.php:1790, ../includes/Elements/Woo_Checkout.php:1960, ../includes/Elements/Woo_Checkout.php:2114, ../includes/Elements/WpForms.php:590, ../includes/Elements/WpForms.php:968, ../includes/Elements/WpForms.php:1195, ../includes/Extensions/Table_of_Content.php:884, ../includes/Traits/Controls.php:1054, ../includes/Traits/Controls.php:1241
|
380 |
msgid "Normal"
|
381 |
msgstr ""
|
382 |
|
383 |
+
#: ../includes/Elements/Advanced_Data_Table.php:1222, ../includes/Elements/Advanced_Data_Table.php:1348, ../includes/Elements/Adv_Accordion.php:554, ../includes/Elements/Adv_Accordion.php:912, ../includes/Elements/Adv_Tabs.php:502, ../includes/Elements/Betterdocs_Category_Box.php:328, ../includes/Elements/Betterdocs_Category_Box.php:546, ../includes/Elements/Betterdocs_Category_Box.php:708, ../includes/Elements/Betterdocs_Category_Box.php:957, ../includes/Elements/Betterdocs_Category_Grid.php:360, ../includes/Elements/Betterdocs_Category_Grid.php:493, ../includes/Elements/Betterdocs_Category_Grid.php:661, ../includes/Elements/Betterdocs_Category_Grid.php:868, ../includes/Elements/Betterdocs_Category_Grid.php:1428, ../includes/Elements/Betterdocs_Search_Form.php:474, ../includes/Elements/Caldera_Forms.php:1297, ../includes/Elements/Contact_Form_7.php:1326, ../includes/Elements/Content_Ticker.php:685, ../includes/Elements/Creative_Button.php:323, ../includes/Elements/Cta_Box.php:752, ../includes/Elements/Cta_Box.php:939, ../includes/Elements/Data_Table.php:617, ../includes/Elements/Data_Table.php:861, ../includes/Elements/Data_Table.php:959, ../includes/Elements/Event_Calendar.php:795, ../includes/Elements/Filterable_Gallery.php:1842, ../includes/Elements/Filterable_Gallery.php:2651, ../includes/Elements/Flip_Box.php:1226, ../includes/Elements/FluentForm.php:1617, ../includes/Elements/FluentForm.php:1981, ../includes/Elements/Formstack.php:1533, ../includes/Elements/Formstack.php:1843, ../includes/Elements/GravityForms.php:1876, ../includes/Elements/GravityForms.php:2100, ../includes/Elements/Info_Box.php:591, ../includes/Elements/Info_Box.php:830, ../includes/Elements/Info_Box.php:1061, ../includes/Elements/Info_Box.php:1267, ../includes/Elements/Info_Box.php:1442, ../includes/Elements/Login_Register.php:3097, ../includes/Elements/Login_Register.php:3418, ../includes/Elements/NinjaForms.php:1446, ../includes/Elements/Pricing_Table.php:371, ../includes/Elements/Pricing_Table.php:1861, ../includes/Elements/Product_Grid.php:810, ../includes/Elements/Team_Member.php:772, ../includes/Elements/Tooltip.php:435, ../includes/Elements/WeForms.php:737, ../includes/Elements/Woo_Checkout.php:643, ../includes/Elements/Woo_Checkout.php:687, ../includes/Elements/Woo_Checkout.php:829, ../includes/Elements/Woo_Checkout.php:1072, ../includes/Elements/Woo_Checkout.php:1370, ../includes/Elements/Woo_Checkout.php:1806, ../includes/Elements/Woo_Checkout.php:2154, ../includes/Elements/WpForms.php:1302, ../includes/Extensions/Table_of_Content.php:907, ../includes/Traits/Controls.php:1109, ../includes/Traits/Controls.php:1303
|
384 |
msgid "Hover"
|
385 |
msgstr ""
|
386 |
|
387 |
+
#: ../includes/Elements/Advanced_Data_Table.php:1323, ../includes/Elements/Advanced_Data_Table.php:1353, ../includes/Elements/Betterdocs_Category_Box.php:681, ../includes/Elements/Betterdocs_Category_Box.php:714, ../includes/Elements/Betterdocs_Category_Box.php:858, ../includes/Elements/Betterdocs_Category_Box.php:963, ../includes/Elements/Betterdocs_Category_Grid.php:613, ../includes/Elements/Betterdocs_Category_Grid.php:667, ../includes/Elements/Betterdocs_Category_Grid.php:802, ../includes/Elements/Betterdocs_Category_Grid.php:899, ../includes/Elements/Betterdocs_Category_Grid.php:1002, ../includes/Elements/Betterdocs_Category_Grid.php:1082, ../includes/Elements/Betterdocs_Category_Grid.php:1158, ../includes/Elements/Betterdocs_Category_Grid.php:1235, ../includes/Elements/Betterdocs_Category_Grid.php:1358, ../includes/Elements/Betterdocs_Category_Grid.php:1457, ../includes/Elements/Betterdocs_Search_Form.php:238, ../includes/Elements/Betterdocs_Search_Form.php:275, ../includes/Elements/Caldera_Forms.php:977, ../includes/Elements/Caldera_Forms.php:1093, ../includes/Elements/Caldera_Forms.php:1425, ../includes/Elements/Contact_Form_7.php:1004, ../includes/Elements/Contact_Form_7.php:1120, ../includes/Elements/Content_Ticker.php:648, ../includes/Elements/Content_Ticker.php:704, ../includes/Elements/Cta_Box.php:506, ../includes/Elements/Cta_Box.php:547, ../includes/Elements/Cta_Box.php:589, ../includes/Elements/Cta_Box.php:1030, ../includes/Elements/Data_Table.php:582, ../includes/Elements/Data_Table.php:622, ../includes/Elements/Data_Table.php:1059, ../includes/Elements/Dual_Color_Header.php:492, ../includes/Elements/Dual_Color_Header.php:592, ../includes/Elements/Event_Calendar.php:695, ../includes/Elements/Event_Calendar.php:735, ../includes/Elements/Event_Calendar.php:802, ../includes/Elements/Event_Calendar.php:856, ../includes/Elements/Event_Calendar.php:939, ../includes/Elements/Event_Calendar.php:1014, ../includes/Elements/Event_Calendar.php:1048, ../includes/Elements/Event_Calendar.php:1157, ../includes/Elements/Event_Calendar.php:1523, ../includes/Elements/Facebook_Feed.php:755, ../includes/Elements/Facebook_Feed.php:793, ../includes/Elements/Facebook_Feed.php:833, ../includes/Elements/Facebook_Feed.php:881, ../includes/Elements/Facebook_Feed.php:919, ../includes/Elements/Facebook_Feed.php:957, ../includes/Elements/Facebook_Feed.php:1010, ../includes/Elements/Facebook_Feed.php:1048, ../includes/Elements/Facebook_Feed.php:1086, ../includes/Elements/Facebook_Feed.php:1118, ../includes/Elements/Feature_List.php:540, ../includes/Elements/Feature_List.php:761, ../includes/Elements/Feature_List.php:795, ../includes/Elements/Filterable_Gallery.php:1201, ../includes/Elements/Filterable_Gallery.php:1241, ../includes/Elements/Filterable_Gallery.php:1563, ../includes/Elements/Filterable_Gallery.php:1578, ../includes/Elements/Filterable_Gallery.php:1623, ../includes/Elements/Filterable_Gallery.php:1638, ../includes/Elements/Filterable_Gallery.php:1723, ../includes/Elements/Filterable_Gallery.php:1861, ../includes/Elements/Filterable_Gallery.php:1937, ../includes/Elements/Filterable_Gallery.php:1971, ../includes/Elements/Filterable_Gallery.php:2016, ../includes/Elements/Filterable_Gallery.php:2153, ../includes/Elements/Filterable_Gallery.php:2340, ../includes/Elements/Flip_Box.php:760, ../includes/Elements/Flip_Box.php:873, ../includes/Elements/Flip_Box.php:1000, ../includes/Elements/Flip_Box.php:1031, ../includes/Elements/Flip_Box.php:1069, ../includes/Elements/Flip_Box.php:1101, ../includes/Elements/Flip_Box.php:1174, ../includes/Elements/Flip_Box.php:1232, ../includes/Elements/FluentForm.php:407, ../includes/Elements/FluentForm.php:943, ../includes/Elements/FluentForm.php:1059, ../includes/Elements/FluentForm.php:1100, ../includes/Elements/FluentForm.php:1155, ../includes/Elements/FluentForm.php:1259, ../includes/Elements/FluentForm.php:1321, ../includes/Elements/FluentForm.php:1915, ../includes/Elements/FluentForm.php:1988, ../includes/Elements/FluentForm.php:2109, ../includes/Elements/Formstack.php:652, ../includes/Elements/Formstack.php:707, ../includes/Elements/Formstack.php:1169, ../includes/Elements/Formstack.php:1249, ../includes/Elements/Formstack.php:1303, ../includes/Elements/Formstack.php:1850, ../includes/Elements/Formstack.php:1931, ../includes/Elements/GravityForms.php:1141, ../includes/Elements/GravityForms.php:1247, ../includes/Elements/GravityForms.php:1361, ../includes/Elements/GravityForms.php:1443, ../includes/Elements/GravityForms.php:1557, ../includes/Elements/GravityForms.php:1601, ../includes/Elements/Image_Accordion.php:424, ../includes/Elements/Image_Accordion.php:453, ../includes/Elements/Info_Box.php:1346, ../includes/Elements/Info_Box.php:1422, ../includes/Elements/Login_Register.php:2259, ../includes/Elements/Login_Register.php:2350, ../includes/Elements/Login_Register.php:2763, ../includes/Elements/NinjaForms.php:1024, ../includes/Elements/NinjaForms.php:1142, ../includes/Elements/NinjaForms.php:1561, ../includes/Elements/Post_Grid.php:360, ../includes/Elements/Post_Grid.php:433, ../includes/Elements/Post_Grid.php:825, ../includes/Elements/Pricing_Table.php:821, ../includes/Elements/Pricing_Table.php:885, ../includes/Elements/Pricing_Table.php:976, ../includes/Elements/Pricing_Table.php:1005, ../includes/Elements/Pricing_Table.php:1046, ../includes/Elements/Pricing_Table.php:1075, ../includes/Elements/Pricing_Table.php:1115, ../includes/Elements/Pricing_Table.php:1150, ../includes/Elements/Pricing_Table.php:1296, ../includes/Elements/Pricing_Table.php:1411, ../includes/Elements/Progress_Bar.php:400, ../includes/Elements/Progress_Bar.php:460, ../includes/Elements/Twitter_Feed.php:669, ../includes/Elements/Twitter_Feed.php:698, ../includes/Elements/Twitter_Feed.php:728, ../includes/Elements/Twitter_Feed.php:898, ../includes/Elements/Woo_Checkout.php:303, ../includes/Elements/Woo_Checkout.php:474, ../includes/Elements/Woo_Checkout.php:488, ../includes/Elements/Woo_Checkout.php:595, ../includes/Elements/Woo_Checkout.php:609, ../includes/Elements/Woo_Checkout.php:782, ../includes/Elements/Woo_Checkout.php:818, ../includes/Elements/Woo_Checkout.php:834, ../includes/Elements/Woo_Checkout.php:902, ../includes/Elements/Woo_Checkout.php:1001, ../includes/Elements/Woo_Checkout.php:1051, ../includes/Elements/Woo_Checkout.php:1091, ../includes/Elements/Woo_Checkout.php:1188, ../includes/Elements/Woo_Checkout.php:1349, ../includes/Elements/Woo_Checkout.php:1389, ../includes/Elements/Woo_Checkout.php:1507, ../includes/Elements/Woo_Checkout.php:1551, ../includes/Elements/Woo_Checkout.php:1595, ../includes/Elements/Woo_Checkout.php:1701, ../includes/Elements/Woo_Checkout.php:1740, ../includes/Elements/Woo_Checkout.php:1780, ../includes/Elements/Woo_Checkout.php:1967, ../includes/Elements/Woo_Checkout.php:1988, ../includes/Elements/Woo_Checkout.php:2023, ../includes/Elements/Woo_Checkout.php:2044, ../includes/Elements/Woo_Checkout.php:2133, ../includes/Elements/Woo_Checkout.php:2173, ../includes/Elements/WpForms.php:978, ../includes/Elements/WpForms.php:1094, ../includes/Extensions/Table_of_Content.php:1043
|
388 |
msgid "Color"
|
389 |
msgstr ""
|
390 |
|
416 |
msgid "Select Accordion Tab Title Tag"
|
417 |
msgstr ""
|
418 |
|
419 |
+
#: ../includes/Elements/Adv_Accordion.php:110, ../includes/Elements/Betterdocs_Category_Box.php:184, ../includes/Elements/Betterdocs_Category_Grid.php:222, ../includes/Elements/Cta_Box.php:190, ../includes/Elements/Dual_Color_Header.php:135, ../includes/Elements/Filterable_Gallery.php:362, ../includes/Elements/Flip_Box.php:340, ../includes/Elements/Flip_Box.php:389, ../includes/Elements/Image_Accordion.php:143, ../includes/Elements/Info_Box.php:232, ../includes/Elements/Progress_Bar.php:133, ../includes/Elements/Tooltip.php:112, ../includes/Extensions/Table_of_Content.php:146, ../includes/Traits/Controls.php:657
|
420 |
msgid "H1"
|
421 |
msgstr ""
|
422 |
|
423 |
+
#: ../includes/Elements/Adv_Accordion.php:111, ../includes/Elements/Betterdocs_Category_Box.php:185, ../includes/Elements/Betterdocs_Category_Grid.php:223, ../includes/Elements/Cta_Box.php:191, ../includes/Elements/Dual_Color_Header.php:136, ../includes/Elements/Filterable_Gallery.php:363, ../includes/Elements/Flip_Box.php:341, ../includes/Elements/Flip_Box.php:390, ../includes/Elements/Image_Accordion.php:144, ../includes/Elements/Info_Box.php:233, ../includes/Elements/Progress_Bar.php:134, ../includes/Elements/Tooltip.php:113, ../includes/Extensions/Table_of_Content.php:147, ../includes/Traits/Controls.php:658
|
424 |
msgid "H2"
|
425 |
msgstr ""
|
426 |
|
427 |
+
#: ../includes/Elements/Adv_Accordion.php:112, ../includes/Elements/Betterdocs_Category_Box.php:186, ../includes/Elements/Betterdocs_Category_Grid.php:224, ../includes/Elements/Cta_Box.php:192, ../includes/Elements/Dual_Color_Header.php:137, ../includes/Elements/Filterable_Gallery.php:364, ../includes/Elements/Flip_Box.php:342, ../includes/Elements/Flip_Box.php:391, ../includes/Elements/Image_Accordion.php:145, ../includes/Elements/Info_Box.php:234, ../includes/Elements/Progress_Bar.php:135, ../includes/Elements/Tooltip.php:114, ../includes/Extensions/Table_of_Content.php:148, ../includes/Traits/Controls.php:659
|
428 |
msgid "H3"
|
429 |
msgstr ""
|
430 |
|
431 |
+
#: ../includes/Elements/Adv_Accordion.php:113, ../includes/Elements/Betterdocs_Category_Box.php:187, ../includes/Elements/Betterdocs_Category_Grid.php:225, ../includes/Elements/Cta_Box.php:193, ../includes/Elements/Dual_Color_Header.php:138, ../includes/Elements/Filterable_Gallery.php:365, ../includes/Elements/Flip_Box.php:343, ../includes/Elements/Flip_Box.php:392, ../includes/Elements/Image_Accordion.php:146, ../includes/Elements/Info_Box.php:235, ../includes/Elements/Progress_Bar.php:136, ../includes/Elements/Tooltip.php:115, ../includes/Extensions/Table_of_Content.php:149, ../includes/Traits/Controls.php:660
|
432 |
msgid "H4"
|
433 |
msgstr ""
|
434 |
|
435 |
+
#: ../includes/Elements/Adv_Accordion.php:114, ../includes/Elements/Betterdocs_Category_Box.php:188, ../includes/Elements/Betterdocs_Category_Grid.php:226, ../includes/Elements/Cta_Box.php:194, ../includes/Elements/Dual_Color_Header.php:139, ../includes/Elements/Filterable_Gallery.php:366, ../includes/Elements/Flip_Box.php:344, ../includes/Elements/Flip_Box.php:393, ../includes/Elements/Image_Accordion.php:147, ../includes/Elements/Info_Box.php:236, ../includes/Elements/Progress_Bar.php:137, ../includes/Elements/Tooltip.php:116, ../includes/Extensions/Table_of_Content.php:150, ../includes/Traits/Controls.php:661
|
436 |
msgid "H5"
|
437 |
msgstr ""
|
438 |
|
439 |
+
#: ../includes/Elements/Adv_Accordion.php:115, ../includes/Elements/Betterdocs_Category_Box.php:189, ../includes/Elements/Betterdocs_Category_Grid.php:227, ../includes/Elements/Cta_Box.php:195, ../includes/Elements/Dual_Color_Header.php:140, ../includes/Elements/Filterable_Gallery.php:367, ../includes/Elements/Flip_Box.php:345, ../includes/Elements/Flip_Box.php:394, ../includes/Elements/Image_Accordion.php:148, ../includes/Elements/Info_Box.php:237, ../includes/Elements/Progress_Bar.php:138, ../includes/Elements/Tooltip.php:117, ../includes/Extensions/Table_of_Content.php:151, ../includes/Traits/Controls.php:662
|
440 |
msgid "H6"
|
441 |
msgstr ""
|
442 |
|
443 |
+
#: ../includes/Elements/Adv_Accordion.php:116, ../includes/Elements/Betterdocs_Category_Box.php:190, ../includes/Elements/Betterdocs_Category_Grid.php:228, ../includes/Elements/Cta_Box.php:196, ../includes/Elements/Dual_Color_Header.php:141, ../includes/Elements/Filterable_Gallery.php:368, ../includes/Elements/Flip_Box.php:346, ../includes/Elements/Flip_Box.php:395, ../includes/Elements/Image_Accordion.php:149, ../includes/Elements/Info_Box.php:238, ../includes/Traits/Controls.php:663
|
444 |
msgid "Span"
|
445 |
msgstr ""
|
446 |
|
447 |
+
#: ../includes/Elements/Adv_Accordion.php:117, ../includes/Elements/Betterdocs_Category_Box.php:191, ../includes/Elements/Betterdocs_Category_Grid.php:229, ../includes/Elements/Cta_Box.php:197, ../includes/Elements/Dual_Color_Header.php:142, ../includes/Elements/Filterable_Gallery.php:369, ../includes/Elements/Flip_Box.php:347, ../includes/Elements/Flip_Box.php:396, ../includes/Elements/Image_Accordion.php:150, ../includes/Elements/Info_Box.php:239, ../includes/Elements/Tooltip.php:120, ../includes/Traits/Controls.php:664
|
448 |
msgid "P"
|
449 |
msgstr ""
|
450 |
|
451 |
+
#: ../includes/Elements/Adv_Accordion.php:118, ../includes/Elements/Betterdocs_Category_Box.php:192, ../includes/Elements/Betterdocs_Category_Grid.php:230, ../includes/Elements/Cta_Box.php:198, ../includes/Elements/Dual_Color_Header.php:143, ../includes/Elements/Filterable_Gallery.php:370, ../includes/Elements/Flip_Box.php:348, ../includes/Elements/Flip_Box.php:397, ../includes/Elements/Image_Accordion.php:151, ../includes/Elements/Info_Box.php:240, ../includes/Traits/Controls.php:665
|
452 |
msgid "Div"
|
453 |
msgstr ""
|
454 |
|
492 |
msgid "Enable Tab Icon"
|
493 |
msgstr ""
|
494 |
|
495 |
+
#: ../includes/Elements/Adv_Accordion.php:208, ../includes/Elements/Adv_Tabs.php:153, ../includes/Elements/Adv_Tabs.php:165, ../includes/Elements/Betterdocs_Category_Box.php:405, ../includes/Elements/Betterdocs_Category_Box.php:439, ../includes/Elements/Betterdocs_Category_Grid.php:438, ../includes/Elements/Betterdocs_Category_Grid.php:1061, ../includes/Elements/Betterdocs_Category_Grid.php:1070, ../includes/Elements/Betterdocs_Category_Grid.php:1202, ../includes/Elements/Betterdocs_Category_Grid.php:1309, ../includes/Elements/Creative_Button.php:114, ../includes/Elements/Cta_Box.php:150, ../includes/Elements/Data_Table.php:138, ../includes/Elements/Data_Table.php:157, ../includes/Elements/Dual_Color_Header.php:115, ../includes/Elements/Dual_Color_Header.php:270, ../includes/Elements/Feature_List.php:75, ../includes/Elements/Feature_List.php:91, ../includes/Elements/Feature_List.php:501, ../includes/Elements/Flip_Box.php:113, ../includes/Elements/Flip_Box.php:136, ../includes/Elements/Flip_Box.php:200, ../includes/Elements/Flip_Box.php:223, ../includes/Elements/Info_Box.php:106, ../includes/Elements/Info_Box.php:175, ../includes/Elements/Info_Box.php:434, ../includes/Elements/Pricing_Table.php:163, ../includes/Elements/Team_Member.php:187, ../includes/Elements/Tooltip.php:72, ../includes/Elements/Tooltip.php:142, ../includes/Elements/Twitter_Feed.php:864, ../includes/Extensions/Table_of_Content.php:619, ../includes/Traits/Controls.php:569, ../includes/Traits/Controls.php:622
|
496 |
msgid "Icon"
|
497 |
msgstr ""
|
498 |
|
576 |
msgid "Advanced Tabs"
|
577 |
msgstr ""
|
578 |
|
579 |
+
#: ../includes/Elements/Adv_Tabs.php:78, ../includes/Elements/Countdown.php:148, ../includes/Elements/Facebook_Feed.php:166, ../includes/Elements/Filterable_Gallery.php:166, ../includes/Elements/Product_Grid.php:247, ../includes/Elements/Progress_Bar.php:73, ../includes/Elements/Progress_Bar.php:99, ../includes/Elements/Woo_Checkout.php:114, ../includes/Traits/Controls.php:433, ../includes/Traits/Controls.php:471
|
580 |
msgid "Layout"
|
581 |
msgstr ""
|
582 |
|
624 |
msgid "Icon Type"
|
625 |
msgstr ""
|
626 |
|
627 |
+
#: ../includes/Elements/Adv_Tabs.php:157, ../includes/Elements/Adv_Tabs.php:178, ../includes/Elements/Data_Table.php:142, ../includes/Elements/Data_Table.php:174, ../includes/Elements/Feature_List.php:79, ../includes/Elements/Feature_List.php:166, ../includes/Elements/Filterable_Gallery.php:552, ../includes/Elements/Flip_Box.php:112, ../includes/Elements/Flip_Box.php:199, ../includes/Elements/Info_Box.php:110, ../includes/Elements/Post_Grid.php:100, ../includes/Elements/Tooltip.php:80, ../includes/Elements/Tooltip.php:157, ../includes/Traits/Controls.php:565
|
628 |
msgid "Image"
|
629 |
msgstr ""
|
630 |
|
652 |
msgid "Caret Size"
|
653 |
msgstr ""
|
654 |
|
655 |
+
#: ../includes/Elements/Adv_Tabs.php:818, ../includes/Elements/Caldera_Forms.php:109, ../includes/Elements/Caldera_Forms.php:930, ../includes/Elements/Contact_Form_7.php:905, ../includes/Elements/Contact_Form_7.php:957, ../includes/Elements/Content_Ticker.php:233, ../includes/Elements/Content_Ticker.php:266, ../includes/Elements/Content_Ticker.php:281, ../includes/Elements/Content_Ticker.php:316, ../includes/Elements/Data_Table.php:1025, ../includes/Elements/Facebook_Feed.php:375, ../includes/Elements/Filterable_Gallery.php:283, ../includes/Elements/Filterable_Gallery.php:426, ../includes/Elements/Filterable_Gallery.php:473, ../includes/Elements/Filterable_Gallery.php:497, ../includes/Elements/Filterable_Gallery.php:521, ../includes/Elements/Filterable_Gallery.php:580, ../includes/Elements/Filterable_Gallery.php:595, ../includes/Elements/FluentForm.php:123, ../includes/Elements/FluentForm.php:896, ../includes/Elements/Formstack.php:192, ../includes/Elements/Formstack.php:1122, ../includes/Elements/GravityForms.php:149, ../includes/Elements/GravityForms.php:240, ../includes/Elements/GravityForms.php:1200, ../includes/Elements/GravityForms.php:1396, ../includes/Elements/Image_Accordion.php:172, ../includes/Elements/Info_Box.php:357, ../includes/Elements/Info_Box.php:371, ../includes/Elements/Login_Register.php:390, ../includes/Elements/Login_Register.php:468, ../includes/Elements/Login_Register.php:797, ../includes/Elements/NinjaForms.php:114, ../includes/Elements/NinjaForms.php:977, ../includes/Elements/Post_Grid.php:113, ../includes/Elements/Post_Grid.php:127, ../includes/Elements/Post_Grid.php:153, ../includes/Elements/Post_Grid.php:167, ../includes/Elements/Post_Grid.php:193, ../includes/Elements/Post_Grid.php:207, ../includes/Elements/Pricing_Table.php:205, ../includes/Elements/Pricing_Table.php:1783, ../includes/Elements/Team_Member.php:686, ../includes/Elements/WpForms.php:107, ../includes/Elements/WpForms.php:931, ../includes/Extensions/Reading_Progress.php:41, ../includes/Extensions/Reading_Progress.php:77, ../includes/Extensions/Table_of_Content.php:45, ../includes/Extensions/Table_of_Content.php:79, ../includes/Extensions/Table_of_Content.php:208, ../includes/Extensions/Table_of_Content.php:223, ../includes/Extensions/Table_of_Content.php:238, ../includes/Extensions/Table_of_Content.php:253, ../includes/Extensions/Table_of_Content.php:268, ../includes/Traits/Controls.php:374
|
656 |
msgid "Yes"
|
657 |
msgstr ""
|
658 |
|
659 |
+
#: ../includes/Elements/Adv_Tabs.php:819, ../includes/Elements/Caldera_Forms.php:110, ../includes/Elements/Caldera_Forms.php:931, ../includes/Elements/Contact_Form_7.php:906, ../includes/Elements/Contact_Form_7.php:958, ../includes/Elements/Content_Ticker.php:234, ../includes/Elements/Content_Ticker.php:267, ../includes/Elements/Content_Ticker.php:282, ../includes/Elements/Content_Ticker.php:317, ../includes/Elements/Cta_Box.php:673, ../includes/Elements/Data_Table.php:1026, ../includes/Elements/Facebook_Feed.php:379, ../includes/Elements/Feature_List.php:360, ../includes/Elements/Filterable_Gallery.php:284, ../includes/Elements/Filterable_Gallery.php:427, ../includes/Elements/Filterable_Gallery.php:474, ../includes/Elements/Filterable_Gallery.php:498, ../includes/Elements/Filterable_Gallery.php:522, ../includes/Elements/Filterable_Gallery.php:581, ../includes/Elements/Filterable_Gallery.php:596, ../includes/Elements/FluentForm.php:124, ../includes/Elements/FluentForm.php:897, ../includes/Elements/Formstack.php:193, ../includes/Elements/Formstack.php:1123, ../includes/Elements/GravityForms.php:150, ../includes/Elements/GravityForms.php:241, ../includes/Elements/GravityForms.php:1201, ../includes/Elements/GravityForms.php:1397, ../includes/Elements/Image_Accordion.php:173, ../includes/Elements/Info_Box.php:358, ../includes/Elements/Info_Box.php:372, ../includes/Elements/Login_Register.php:391, ../includes/Elements/Login_Register.php:469, ../includes/Elements/Login_Register.php:798, ../includes/Elements/NinjaForms.php:115, ../includes/Elements/NinjaForms.php:978, ../includes/Elements/Post_Grid.php:114, ../includes/Elements/Post_Grid.php:128, ../includes/Elements/Post_Grid.php:154, ../includes/Elements/Post_Grid.php:168, ../includes/Elements/Post_Grid.php:194, ../includes/Elements/Post_Grid.php:208, ../includes/Elements/Pricing_Table.php:206, ../includes/Elements/Pricing_Table.php:1784, ../includes/Elements/Team_Member.php:687, ../includes/Elements/WpForms.php:108, ../includes/Elements/WpForms.php:932, ../includes/Extensions/Reading_Progress.php:42, ../includes/Extensions/Reading_Progress.php:78, ../includes/Extensions/Table_of_Content.php:46, ../includes/Extensions/Table_of_Content.php:80, ../includes/Extensions/Table_of_Content.php:209, ../includes/Extensions/Table_of_Content.php:224, ../includes/Extensions/Table_of_Content.php:239, ../includes/Extensions/Table_of_Content.php:254, ../includes/Extensions/Table_of_Content.php:269, ../includes/Traits/Controls.php:375
|
660 |
msgid "No"
|
661 |
msgstr ""
|
662 |
|
680 |
msgid "Show Icon"
|
681 |
msgstr ""
|
682 |
|
683 |
+
#: ../includes/Elements/Betterdocs_Category_Box.php:158, ../includes/Elements/Betterdocs_Category_Box.php:170, ../includes/Elements/Betterdocs_Category_Box.php:205, ../includes/Elements/Betterdocs_Category_Grid.php:177, ../includes/Elements/Betterdocs_Category_Grid.php:190, ../includes/Elements/Betterdocs_Category_Grid.php:205, ../includes/Elements/Betterdocs_Category_Grid.php:244, ../includes/Elements/Betterdocs_Category_Grid.php:260, ../includes/Elements/Betterdocs_Category_Grid.php:272, ../includes/Elements/Betterdocs_Category_Grid.php:1299, ../includes/Elements/Caldera_Forms.php:146, ../includes/Elements/Caldera_Forms.php:159, ../includes/Elements/Caldera_Forms.php:185, ../includes/Elements/Contact_Form_7.php:199, ../includes/Elements/Contact_Form_7.php:225, ../includes/Elements/Contact_Form_7.php:245, ../includes/Elements/Content_Ticker.php:294, ../includes/Elements/Countdown.php:489, ../includes/Elements/Creative_Button.php:235, ../includes/Elements/Cta_Box.php:133, ../includes/Elements/Cta_Box.php:271, ../includes/Elements/Dual_Color_Header.php:92, ../includes/Elements/Dual_Color_Header.php:102, ../includes/Elements/Facebook_Feed.php:293, ../includes/Elements/Facebook_Feed.php:305, ../includes/Elements/Facebook_Feed.php:320, ../includes/Elements/Facebook_Feed.php:335, ../includes/Elements/Facebook_Feed.php:350, ../includes/Elements/Facebook_Feed.php:415, ../includes/Elements/Feature_List.php:359, ../includes/Elements/Filterable_Gallery.php:271, ../includes/Elements/FluentForm.php:160, ../includes/Elements/FluentForm.php:172, ../includes/Elements/FluentForm.php:198, ../includes/Elements/FluentForm.php:1700, ../includes/Elements/FluentForm.php:1768, ../includes/Elements/Formstack.php:229, ../includes/Elements/Formstack.php:241, ../includes/Elements/Formstack.php:267, ../includes/Elements/Formstack.php:280, ../includes/Elements/Formstack.php:1616, ../includes/Elements/GravityForms.php:161, ../includes/Elements/GravityForms.php:176, ../includes/Elements/GravityForms.php:216, ../includes/Elements/GravityForms.php:228, ../includes/Elements/GravityForms.php:266, ../includes/Elements/GravityForms.php:286, ../includes/Elements/Info_Box.php:289, ../includes/Elements/Login_Register.php:604, ../includes/Elements/Login_Register.php:611, ../includes/Elements/NinjaForms.php:126, ../includes/Elements/NinjaForms.php:167, ../includes/Elements/NinjaForms.php:180, ../includes/Elements/NinjaForms.php:206, ../includes/Elements/NinjaForms.php:226, ../includes/Elements/Post_Timeline.php:89, ../includes/Elements/Pricing_Table.php:453, ../includes/Elements/Pricing_Table.php:1535, ../includes/Elements/Product_Grid.php:298, ../includes/Elements/Product_Grid.php:385, ../includes/Elements/Product_Grid.php:733, ../includes/Elements/Sticky_Video.php:358, ../includes/Elements/Twitter_Feed.php:366, ../includes/Elements/WpForms.php:119, ../includes/Elements/WpForms.php:134, ../includes/Elements/WpForms.php:174, ../includes/Elements/WpForms.php:187, ../includes/Elements/WpForms.php:210, ../includes/Traits/Controls.php:506, ../includes/Traits/Controls.php:535, ../includes/Traits/Controls.php:643, ../includes/Traits/Controls.php:691, ../includes/Traits/Controls.php:757, ../includes/Traits/Controls.php:791, ../includes/Traits/Controls.php:821, ../includes/Traits/Controls.php:872, ../includes/Traits/Controls.php:900, ../includes/Traits/Controls.php:916, ../includes/Traits/Controls.php:931
|
684 |
msgid "Show"
|
685 |
msgstr ""
|
686 |
|
687 |
+
#: ../includes/Elements/Betterdocs_Category_Box.php:159, ../includes/Elements/Betterdocs_Category_Box.php:171, ../includes/Elements/Betterdocs_Category_Box.php:206, ../includes/Elements/Betterdocs_Category_Grid.php:178, ../includes/Elements/Betterdocs_Category_Grid.php:191, ../includes/Elements/Betterdocs_Category_Grid.php:206, ../includes/Elements/Betterdocs_Category_Grid.php:245, ../includes/Elements/Betterdocs_Category_Grid.php:261, ../includes/Elements/Betterdocs_Category_Grid.php:273, ../includes/Elements/Betterdocs_Category_Grid.php:1300, ../includes/Elements/Caldera_Forms.php:147, ../includes/Elements/Caldera_Forms.php:160, ../includes/Elements/Caldera_Forms.php:186, ../includes/Elements/Contact_Form_7.php:200, ../includes/Elements/Contact_Form_7.php:226, ../includes/Elements/Contact_Form_7.php:246, ../includes/Elements/Content_Ticker.php:295, ../includes/Elements/Countdown.php:490, ../includes/Elements/Creative_Button.php:236, ../includes/Elements/Cta_Box.php:134, ../includes/Elements/Cta_Box.php:272, ../includes/Elements/Dual_Color_Header.php:93, ../includes/Elements/Dual_Color_Header.php:103, ../includes/Elements/Facebook_Feed.php:294, ../includes/Elements/Facebook_Feed.php:306, ../includes/Elements/Facebook_Feed.php:321, ../includes/Elements/Facebook_Feed.php:336, ../includes/Elements/Facebook_Feed.php:351, ../includes/Elements/Facebook_Feed.php:416, ../includes/Elements/Filterable_Gallery.php:272, ../includes/Elements/FluentForm.php:161, ../includes/Elements/FluentForm.php:173, ../includes/Elements/FluentForm.php:199, ../includes/Elements/FluentForm.php:1701, ../includes/Elements/FluentForm.php:1769, ../includes/Elements/Formstack.php:230, ../includes/Elements/Formstack.php:242, ../includes/Elements/Formstack.php:268, ../includes/Elements/Formstack.php:281, ../includes/Elements/Formstack.php:1617, ../includes/Elements/GravityForms.php:162, ../includes/Elements/GravityForms.php:177, ../includes/Elements/GravityForms.php:217, ../includes/Elements/GravityForms.php:229, ../includes/Elements/GravityForms.php:267, ../includes/Elements/GravityForms.php:287, ../includes/Elements/Info_Box.php:290, ../includes/Elements/Login_Register.php:511, ../includes/Elements/Login_Register.php:603, ../includes/Elements/Login_Register.php:610, ../includes/Elements/NinjaForms.php:127, ../includes/Elements/NinjaForms.php:168, ../includes/Elements/NinjaForms.php:181, ../includes/Elements/NinjaForms.php:207, ../includes/Elements/NinjaForms.php:227, ../includes/Elements/Post_Timeline.php:90, ../includes/Elements/Pricing_Table.php:454, ../includes/Elements/Pricing_Table.php:1536, ../includes/Elements/Product_Grid.php:299, ../includes/Elements/Product_Grid.php:386, ../includes/Elements/Product_Grid.php:734, ../includes/Elements/Sticky_Video.php:359, ../includes/Elements/Twitter_Feed.php:367, ../includes/Elements/WpForms.php:120, ../includes/Elements/WpForms.php:135, ../includes/Elements/WpForms.php:175, ../includes/Elements/WpForms.php:188, ../includes/Elements/WpForms.php:211, ../includes/Traits/Controls.php:507, ../includes/Traits/Controls.php:536, ../includes/Traits/Controls.php:644, ../includes/Traits/Controls.php:692, ../includes/Traits/Controls.php:758, ../includes/Traits/Controls.php:792, ../includes/Traits/Controls.php:822, ../includes/Traits/Controls.php:873, ../includes/Traits/Controls.php:901, ../includes/Traits/Controls.php:917, ../includes/Traits/Controls.php:932
|
688 |
msgid "Hide"
|
689 |
msgstr ""
|
690 |
|
691 |
+
#: ../includes/Elements/Betterdocs_Category_Box.php:168, ../includes/Elements/Betterdocs_Category_Grid.php:203, ../includes/Traits/Controls.php:641
|
692 |
msgid "Show Title"
|
693 |
msgstr ""
|
694 |
|
695 |
+
#: ../includes/Elements/Betterdocs_Category_Box.php:180, ../includes/Elements/Betterdocs_Category_Grid.php:218, ../includes/Elements/Cta_Box.php:186, ../includes/Elements/Image_Accordion.php:139, ../includes/Traits/Controls.php:653
|
696 |
msgid "Select Tag"
|
697 |
msgstr ""
|
698 |
|
764 |
msgid "File Not Found"
|
765 |
msgstr ""
|
766 |
|
767 |
+
#: ../includes/Elements/Betterdocs_Category_Box.php:1180, ../includes/Elements/Betterdocs_Category_Box.php:1145, ../includes/Elements/Betterdocs_Category_Grid.php:1676, ../includes/Elements/Betterdocs_Category_Grid.php:1643, ../includes/Elements/Post_Grid.php:1237, ../includes/Elements/Post_Timeline.php:466, ../includes/Elements/Product_Grid.php:988
|
768 |
msgid "<p class=\"no-posts-found\">No posts found!</p>"
|
769 |
msgstr ""
|
770 |
|
776 |
msgid "Layout Mode"
|
777 |
msgstr ""
|
778 |
|
779 |
+
#: ../includes/Elements/Betterdocs_Category_Grid.php:141, ../includes/Elements/Betterdocs_Category_Grid.php:301, ../includes/Elements/Filterable_Gallery.php:142, ../includes/Traits/Controls.php:437
|
780 |
msgid "Grid"
|
781 |
msgstr ""
|
782 |
|
784 |
msgid "Fit to Screen"
|
785 |
msgstr ""
|
786 |
|
787 |
+
#: ../includes/Elements/Betterdocs_Category_Grid.php:143, ../includes/Elements/Filterable_Gallery.php:143, ../includes/Elements/Twitter_Feed.php:146, ../includes/Traits/Controls.php:438
|
788 |
msgid "Masonry"
|
789 |
msgstr ""
|
790 |
|
804 |
msgid "Show Button"
|
805 |
msgstr ""
|
806 |
|
807 |
+
#: ../includes/Elements/Betterdocs_Category_Grid.php:282, ../includes/Elements/Creative_Button.php:76, ../includes/Elements/Cta_Box.php:247, ../includes/Elements/Filterable_Gallery.php:676, ../includes/Elements/Flip_Box.php:495, ../includes/Elements/Info_Box.php:400, ../includes/Elements/Login_Register.php:625, ../includes/Elements/Login_Register.php:1117, ../includes/Elements/Pricing_Table.php:516, ../includes/Traits/Controls.php:804
|
808 |
msgid "Button Text"
|
809 |
msgstr ""
|
810 |
|
864 |
msgid "After"
|
865 |
msgstr ""
|
866 |
|
867 |
+
#: ../includes/Elements/Betterdocs_Category_Grid.php:1530, ../includes/Elements/Creative_Button.php:398, ../includes/Elements/Pricing_Table.php:773, ../includes/Elements/WeForms.php:626, ../includes/Traits/Controls.php:1356
|
868 |
msgid "Button Alignment"
|
869 |
msgstr ""
|
870 |
|
892 |
msgid "Field Padding"
|
893 |
msgstr ""
|
894 |
|
895 |
+
#: ../includes/Elements/Betterdocs_Search_Form.php:220, ../includes/Elements/Facebook_Feed.php:504, ../includes/Elements/Post_Grid.php:393, ../includes/Elements/Pricing_Table.php:423, ../includes/Elements/Pricing_Table.php:1354, ../includes/Elements/Product_Grid.php:509
|
896 |
msgid "Shadow"
|
897 |
msgstr ""
|
898 |
|
904 |
msgid "Close Icon"
|
905 |
msgstr ""
|
906 |
|
907 |
+
#: ../includes/Elements/Betterdocs_Search_Form.php:286, ../includes/Elements/Caldera_Forms.php:1014, ../includes/Elements/Caldera_Forms.php:1328, ../includes/Elements/Contact_Form_7.php:1041, ../includes/Elements/Contact_Form_7.php:1357, ../includes/Elements/Content_Ticker.php:716, ../includes/Elements/Countdown.php:770, ../includes/Elements/Countdown.php:842, ../includes/Elements/Countdown.php:914, ../includes/Elements/Countdown.php:986, ../includes/Elements/Creative_Button.php:378, ../includes/Elements/Cta_Box.php:797, ../includes/Elements/Cta_Box.php:966, ../includes/Elements/Event_Calendar.php:626, ../includes/Elements/Facebook_Feed.php:714, ../includes/Elements/Filterable_Gallery.php:2694, ../includes/Elements/FluentForm.php:980, ../includes/Elements/FluentForm.php:1648, ../includes/Elements/Formstack.php:1564, ../includes/Elements/GravityForms.php:1051, ../includes/Elements/GravityForms.php:1284, ../includes/Elements/GravityForms.php:1480, ../includes/Elements/GravityForms.php:1909, ../includes/Elements/GravityForms.php:2131, ../includes/Elements/NinjaForms.php:1061, ../includes/Elements/NinjaForms.php:1477, ../includes/Elements/Pricing_Table.php:1905, ../includes/Elements/Product_Grid.php:856, ../includes/Elements/Sticky_Video.php:575, ../includes/Elements/Twitter_Feed.php:616, ../includes/Elements/WeForms.php:464, ../includes/Elements/WeForms.php:764, ../includes/Elements/Woo_Checkout.php:502, ../includes/Elements/Woo_Checkout.php:708, ../includes/Elements/Woo_Checkout.php:1103, ../includes/Elements/Woo_Checkout.php:1299, ../includes/Elements/Woo_Checkout.php:1401, ../includes/Elements/Woo_Checkout.php:1518, ../includes/Elements/Woo_Checkout.php:1562, ../includes/Elements/Woo_Checkout.php:1606, ../includes/Elements/Woo_Checkout.php:1795, ../includes/Elements/Woo_Checkout.php:1811, ../includes/Elements/Woo_Checkout.php:2073, ../includes/Elements/Woo_Checkout.php:2185, ../includes/Elements/WpForms.php:1015, ../includes/Elements/WpForms.php:1333, ../includes/Traits/Controls.php:1332
|
908 |
msgid "Border Color"
|
909 |
msgstr ""
|
910 |
|
976 |
msgid "Form Alignment"
|
977 |
msgstr ""
|
978 |
|
979 |
+
#: ../includes/Elements/Caldera_Forms.php:405, ../includes/Elements/Contact_Form_7.php:321, ../includes/Elements/Contact_Form_7.php:822, ../includes/Elements/Creative_Button.php:210, ../includes/Elements/Cta_Box.php:629, ../includes/Elements/Cta_Box.php:846, ../includes/Elements/Dual_Color_Header.php:78, ../includes/Elements/Flip_Box.php:687, ../includes/Elements/FluentForm.php:424, ../includes/Elements/Formstack.php:324, ../includes/Elements/GravityForms.php:337, ../includes/Elements/Login_Register.php:412, ../includes/Elements/Login_Register.php:509, ../includes/Elements/Login_Register.php:1046, ../includes/Elements/Login_Register.php:1402, ../includes/Elements/Login_Register.php:1528, ../includes/Elements/Login_Register.php:1785, ../includes/Elements/Login_Register.php:1929, ../includes/Elements/Login_Register.php:2079, ../includes/Elements/Login_Register.php:2222, ../includes/Elements/Login_Register.php:2313, ../includes/Elements/Login_Register.php:2411, ../includes/Elements/Login_Register.php:2612, ../includes/Elements/Login_Register.php:2657, ../includes/Elements/Login_Register.php:2689, ../includes/Elements/Login_Register.php:2955, ../includes/Elements/Login_Register.php:3254, ../includes/Elements/NinjaForms.php:272, ../includes/Elements/Post_Grid.php:234, ../includes/Elements/Pricing_Table.php:83, ../includes/Elements/Pricing_Table.php:419, ../includes/Elements/Product_Grid.php:261, ../includes/Elements/Team_Member.php:357, ../includes/Elements/Testimonial.php:252, ../includes/Elements/Testimonial.php:271, ../includes/Elements/TypeForm.php:196, ../includes/Elements/WeForms.php:161, ../includes/Elements/WeForms.php:631, ../includes/Elements/Woo_Checkout.php:119, ../includes/Elements/WpForms.php:261, ../includes/Traits/Controls.php:453, ../includes/Traits/Controls.php:1402, ../includes/Traits/Login_Registration.php:528, ../includes/Template/Betterdocs-Category-Box/Layout_Default.php:4, ../includes/Template/Betterdocs-Category-Grid/Layout_Default.php:4, ../includes/Template/Eicon-Woocommerce/default.php:3, ../includes/Template/Post-Grid/default.php:4, ../includes/Template/Post-Timeline/default.php:3
|
980 |
msgid "Default"
|
981 |
msgstr ""
|
982 |
|
1056 |
msgid "Full Width"
|
1057 |
msgstr ""
|
1058 |
|
1059 |
+
#: ../includes/Elements/Caldera_Forms.php:1158, ../includes/Elements/Contact_Form_7.php:1187, ../includes/Elements/Content_Ticker.php:91, ../includes/Elements/FluentForm.php:1478, ../includes/Elements/Formstack.php:1394, ../includes/Elements/GravityForms.php:1746, ../includes/Elements/Login_Register.php:271, ../includes/Elements/Login_Register.php:413, ../includes/Elements/Login_Register.php:510, ../includes/Elements/Login_Register.php:822, ../includes/Elements/Login_Register.php:1229, ../includes/Elements/Login_Register.php:1335, ../includes/Elements/Login_Register.php:1403, ../includes/Elements/Login_Register.php:1529, ../includes/Elements/Login_Register.php:1786, ../includes/Elements/Login_Register.php:1930, ../includes/Elements/Login_Register.php:2080, ../includes/Elements/Login_Register.php:2223, ../includes/Elements/Login_Register.php:2314, ../includes/Elements/Login_Register.php:2412, ../includes/Elements/Login_Register.php:2613, ../includes/Elements/Login_Register.php:2658, ../includes/Elements/Login_Register.php:2690, ../includes/Elements/Login_Register.php:2956, ../includes/Elements/Login_Register.php:3255, ../includes/Elements/NinjaForms.php:1322, ../includes/Elements/WpForms.php:1162
|
1060 |
msgid "Custom"
|
1061 |
msgstr ""
|
1062 |
|
1124 |
msgid "<strong>Contact Form 7</strong> is not installed/activated on your site. Please install and activate <strong>Contact Form 7</strong> first."
|
1125 |
msgstr ""
|
1126 |
|
1127 |
+
#: ../includes/Elements/Contact_Form_7.php:307, ../includes/Elements/Contact_Form_7.php:1630, ../includes/Elements/Cta_Box.php:715, ../includes/Elements/Cta_Box.php:785, ../includes/Elements/Cta_Box.php:905, ../includes/Elements/Cta_Box.php:957, ../includes/Elements/Dual_Color_Header.php:692, ../includes/Elements/Dual_Color_Header.php:772, ../includes/Elements/Event_Calendar.php:614, ../includes/Elements/Event_Calendar.php:746, ../includes/Elements/Event_Calendar.php:813, ../includes/Elements/Event_Calendar.php:867, ../includes/Elements/Event_Calendar.php:979, ../includes/Elements/Event_Calendar.php:1071, ../includes/Elements/Event_Calendar.php:1169, ../includes/Elements/Event_Calendar.php:1535, ../includes/Elements/Event_Calendar.php:1644, ../includes/Elements/Facebook_Feed.php:474, ../includes/Elements/Facebook_Feed.php:487, ../includes/Elements/Facebook_Feed.php:562, ../includes/Elements/Facebook_Feed.php:575, ../includes/Elements/Facebook_Feed.php:660, ../includes/Elements/Facebook_Feed.php:673, ../includes/Elements/Facebook_Feed.php:744, ../includes/Elements/Facebook_Feed.php:782, ../includes/Elements/Facebook_Feed.php:822, ../includes/Elements/Fancy_Text.php:354, ../includes/Elements/Filterable_Gallery.php:2038, ../includes/Elements/Filterable_Gallery.php:2257, ../includes/Elements/Flip_Box.php:1186, ../includes/Elements/Flip_Box.php:1244, ../includes/Elements/FluentForm.php:1847, ../includes/Elements/FluentForm.php:1872, ../includes/Elements/FluentForm.php:1937, ../includes/Elements/FluentForm.php:2000, ../includes/Elements/Formstack.php:632, ../includes/Elements/Formstack.php:1707, ../includes/Elements/Formstack.php:1732, ../includes/Elements/Formstack.php:1796, ../includes/Elements/Formstack.php:1861, ../includes/Elements/Formstack.php:1916, ../includes/Elements/Formstack.php:1999, ../includes/Elements/Post_Grid.php:352, ../includes/Elements/Pricing_Table.php:1824, ../includes/Elements/Pricing_Table.php:1893, ../includes/Elements/Product_Grid.php:761, ../includes/Elements/Product_Grid.php:775, ../includes/Elements/Product_Grid.php:829, ../includes/Elements/Product_Grid.php:842, ../includes/Elements/Progress_Bar.php:338, ../includes/Elements/Team_Member.php:727, ../includes/Elements/Team_Member.php:804, ../includes/Elements/Twitter_Feed.php:376, ../includes/Elements/Twitter_Feed.php:628, ../includes/Elements/Woo_Checkout.php:1496, ../includes/Elements/Woo_Checkout.php:1540, ../includes/Elements/Woo_Checkout.php:1584, ../includes/Traits/Controls.php:1074, ../includes/Traits/Controls.php:1128
|
1128 |
msgid "Background"
|
1129 |
msgstr ""
|
1130 |
|
1172 |
msgid "After Submit Feedback"
|
1173 |
msgstr ""
|
1174 |
|
1175 |
+
#: ../includes/Elements/Contact_Form_7.php:1652, ../includes/Elements/Dual_Color_Header.php:680, ../includes/Elements/Dual_Color_Header.php:760, ../includes/Elements/Flip_Box.php:686, ../includes/Elements/Info_Box.php:577, ../includes/Elements/Info_Box.php:632, ../includes/Elements/Info_Box.php:801, ../includes/Elements/Info_Box.php:881, ../includes/Elements/Info_Box.php:1017, ../includes/Elements/Info_Box.php:1112, ../includes/Elements/Post_Grid.php:324, ../includes/Elements/Product_Grid.php:718
|
1176 |
msgid "Radius"
|
1177 |
msgstr ""
|
1178 |
|
1184 |
msgid "Ticker Settings"
|
1185 |
msgstr ""
|
1186 |
|
1187 |
+
#: ../includes/Elements/Content_Ticker.php:79, ../includes/Traits/Controls.php:401
|
1188 |
+
msgid "Template Layout"
|
1189 |
+
msgstr ""
|
1190 |
+
|
1191 |
+
#: ../includes/Elements/Content_Ticker.php:90, ../includes/Elements/Progress_Bar.php:155, ../includes/Traits/Controls.php:30, ../includes/Template/Content-Ticker/dynamic.php:3
|
1192 |
msgid "Dynamic"
|
1193 |
msgstr ""
|
1194 |
|
1195 |
+
#: ../includes/Elements/Content_Ticker.php:102
|
1196 |
msgid "Ticker Type"
|
1197 |
msgstr ""
|
1198 |
|
1199 |
+
#: ../includes/Elements/Content_Ticker.php:113
|
1200 |
msgid "Custom Content available in pro version only!"
|
1201 |
msgstr ""
|
1202 |
|
1203 |
+
#: ../includes/Elements/Content_Ticker.php:124
|
1204 |
msgid "Tag Text"
|
1205 |
msgstr ""
|
1206 |
|
1207 |
+
#: ../includes/Elements/Content_Ticker.php:127
|
1208 |
msgid "Trending Today"
|
1209 |
msgstr ""
|
1210 |
|
1211 |
+
#: ../includes/Elements/Content_Ticker.php:147
|
1212 |
msgid "Animation Settings"
|
1213 |
msgstr ""
|
1214 |
|
1215 |
+
#: ../includes/Elements/Content_Ticker.php:154, ../includes/Elements/Cta_Box.php:624, ../includes/Elements/Cta_Box.php:841
|
1216 |
msgid "Effect"
|
1217 |
msgstr ""
|
1218 |
|
1219 |
+
#: ../includes/Elements/Content_Ticker.php:155
|
1220 |
msgid "Sets transition effect"
|
1221 |
msgstr ""
|
1222 |
|
1223 |
+
#: ../includes/Elements/Content_Ticker.php:159, ../includes/Elements/Pricing_Table.php:387
|
1224 |
msgid "Slide"
|
1225 |
msgstr ""
|
1226 |
|
1227 |
+
#: ../includes/Elements/Content_Ticker.php:160, ../includes/Elements/Fancy_Text.php:198, ../includes/Elements/Pricing_Table.php:384
|
1228 |
msgid "Fade"
|
1229 |
msgstr ""
|
1230 |
|
1231 |
+
#: ../includes/Elements/Content_Ticker.php:168
|
1232 |
msgid "Visible Items"
|
1233 |
msgstr ""
|
1234 |
|
1235 |
+
#: ../includes/Elements/Content_Ticker.php:191
|
1236 |
msgid "Items Gap"
|
1237 |
msgstr ""
|
1238 |
|
1239 |
+
#: ../includes/Elements/Content_Ticker.php:211
|
1240 |
msgid "Slider Speed"
|
1241 |
msgstr ""
|
1242 |
|
1243 |
+
#: ../includes/Elements/Content_Ticker.php:212
|
1244 |
msgid "Duration of transition between slides (in ms)"
|
1245 |
msgstr ""
|
1246 |
|
1247 |
+
#: ../includes/Elements/Content_Ticker.php:230, ../includes/Elements/Sticky_Video.php:299
|
1248 |
msgid "Autoplay"
|
1249 |
msgstr ""
|
1250 |
|
1251 |
+
#: ../includes/Elements/Content_Ticker.php:243
|
1252 |
msgid "Autoplay Speed"
|
1253 |
msgstr ""
|
1254 |
|
1255 |
+
#: ../includes/Elements/Content_Ticker.php:263
|
1256 |
msgid "Pause On Hover"
|
1257 |
msgstr ""
|
1258 |
|
1259 |
+
#: ../includes/Elements/Content_Ticker.php:278
|
1260 |
msgid "Infinite Loop"
|
1261 |
msgstr ""
|
1262 |
|
1263 |
+
#: ../includes/Elements/Content_Ticker.php:290
|
1264 |
msgid "Grab Cursor"
|
1265 |
msgstr ""
|
1266 |
|
1267 |
+
#: ../includes/Elements/Content_Ticker.php:291
|
1268 |
msgid "Shows grab cursor when you hover over the slider"
|
1269 |
msgstr ""
|
1270 |
|
1271 |
+
#: ../includes/Elements/Content_Ticker.php:304
|
1272 |
msgid "Navigation"
|
1273 |
msgstr ""
|
1274 |
|
1275 |
+
#: ../includes/Elements/Content_Ticker.php:313, ../includes/Elements/Content_Ticker.php:530
|
1276 |
msgid "Arrows"
|
1277 |
msgstr ""
|
1278 |
|
1279 |
+
#: ../includes/Elements/Content_Ticker.php:325, ../includes/Elements/Image_Accordion.php:77
|
1280 |
msgid "Direction"
|
1281 |
msgstr ""
|
1282 |
|
1283 |
+
#: ../includes/Elements/Content_Ticker.php:376
|
1284 |
msgid "Ticker Content"
|
1285 |
msgstr ""
|
1286 |
|
1287 |
+
#: ../includes/Elements/Content_Ticker.php:407
|
1288 |
msgid "Text Hover Color"
|
1289 |
msgstr ""
|
1290 |
|
1291 |
+
#: ../includes/Elements/Content_Ticker.php:454
|
1292 |
msgid "Tag Style"
|
1293 |
msgstr ""
|
1294 |
|
1295 |
+
#: ../includes/Elements/Content_Ticker.php:541
|
1296 |
msgid "Choose Prev Arrow"
|
1297 |
msgstr ""
|
1298 |
|
1299 |
+
#: ../includes/Elements/Content_Ticker.php:554
|
1300 |
msgid "Choose Next Arrow"
|
1301 |
msgstr ""
|
1302 |
|
1303 |
+
#: ../includes/Elements/Content_Ticker.php:568
|
1304 |
msgid "Arrows Size"
|
1305 |
msgstr ""
|
1306 |
|
1307 |
+
#: ../includes/Elements/Content_Ticker.php:589
|
1308 |
msgid "Align Left Arrow"
|
1309 |
msgstr ""
|
1310 |
|
1311 |
+
#: ../includes/Elements/Content_Ticker.php:608
|
1312 |
msgid "Align Right Arrow"
|
1313 |
msgstr ""
|
1314 |
|
1315 |
+
#: ../includes/Elements/Content_Ticker.php:828
|
1316 |
msgid "No content found!"
|
1317 |
msgstr ""
|
1318 |
|
1500 |
msgid "Space Below Container"
|
1501 |
msgstr ""
|
1502 |
|
1503 |
+
#: ../includes/Elements/Countdown.php:634, ../includes/Elements/Dual_Color_Header.php:435, ../includes/Elements/Facebook_Feed.php:850, ../includes/Elements/Flip_Box.php:976, ../includes/Elements/Image_Accordion.php:407, ../includes/Elements/Info_Box.php:1324, ../includes/Elements/Product_Grid.php:519, ../includes/Elements/Team_Member.php:518, ../includes/Elements/Twitter_Feed.php:653
|
1504 |
msgid "Color & Typography"
|
1505 |
msgstr ""
|
1506 |
|
1640 |
msgid "Shikoba (Pro)"
|
1641 |
msgstr ""
|
1642 |
|
1643 |
+
#: ../includes/Elements/Creative_Button.php:233, ../includes/Elements/Cta_Box.php:670, ../includes/Elements/Product_Grid.php:731, ../includes/Elements/Team_Member.php:684
|
1644 |
msgid "Use Gradient Background"
|
1645 |
msgstr ""
|
1646 |
|
1820 |
msgid "Row"
|
1821 |
msgstr ""
|
1822 |
|
1823 |
+
#: ../includes/Elements/Data_Table.php:255, ../includes/Traits/Controls.php:412
|
1824 |
msgid "Column"
|
1825 |
msgstr ""
|
1826 |
|
2320 |
msgid "Card"
|
2321 |
msgstr ""
|
2322 |
|
2323 |
+
#: ../includes/Elements/Facebook_Feed.php:170, ../includes/Elements/Filterable_Gallery.php:170, ../includes/Traits/Controls.php:454
|
2324 |
msgid "Overlay"
|
2325 |
msgstr ""
|
2326 |
|
2328 |
msgid "Columns"
|
2329 |
msgstr ""
|
2330 |
|
2331 |
+
#: ../includes/Elements/Facebook_Feed.php:183, ../includes/Elements/Product_Grid.php:220, ../includes/Elements/Testimonial.php:194, ../includes/Traits/Controls.php:418, ../includes/Traits/Controls.php:852
|
2332 |
msgid "1"
|
2333 |
msgstr ""
|
2334 |
|
2335 |
+
#: ../includes/Elements/Facebook_Feed.php:184, ../includes/Elements/Product_Grid.php:221, ../includes/Elements/Testimonial.php:195, ../includes/Traits/Controls.php:419, ../includes/Traits/Controls.php:853
|
2336 |
msgid "2"
|
2337 |
msgstr ""
|
2338 |
|
2339 |
+
#: ../includes/Elements/Facebook_Feed.php:185, ../includes/Elements/Product_Grid.php:222, ../includes/Elements/Testimonial.php:196, ../includes/Traits/Controls.php:420, ../includes/Traits/Controls.php:854
|
2340 |
msgid "3"
|
2341 |
msgstr ""
|
2342 |
|
2343 |
+
#: ../includes/Elements/Facebook_Feed.php:186, ../includes/Elements/Product_Grid.php:223, ../includes/Elements/Testimonial.php:197, ../includes/Traits/Controls.php:421
|
2344 |
msgid "4"
|
2345 |
msgstr ""
|
2346 |
|
2347 |
+
#: ../includes/Elements/Facebook_Feed.php:187, ../includes/Elements/Filterable_Gallery.php:508, ../includes/Elements/Product_Grid.php:224, ../includes/Elements/Testimonial.php:198, ../includes/Traits/Controls.php:422
|
2348 |
msgid "5"
|
2349 |
msgstr ""
|
2350 |
|
2351 |
+
#: ../includes/Elements/Facebook_Feed.php:188, ../includes/Elements/Product_Grid.php:225, ../includes/Traits/Controls.php:423
|
2352 |
msgid "6"
|
2353 |
msgstr ""
|
2354 |
|
2400 |
msgid "Show Preview Description"
|
2401 |
msgstr ""
|
2402 |
|
2403 |
+
#: ../includes/Elements/Facebook_Feed.php:371, ../includes/Elements/Product_Grid.php:383, ../includes/Traits/Controls.php:504
|
2404 |
msgid "Show Load More"
|
2405 |
msgstr ""
|
2406 |
|
2408 |
msgid "Label"
|
2409 |
msgstr ""
|
2410 |
|
2411 |
+
#: ../includes/Elements/Facebook_Feed.php:392, ../includes/Elements/Filterable_Gallery.php:678, ../includes/Elements/Product_Grid.php:376, ../includes/Elements/Product_Grid.php:398, ../includes/Traits/Controls.php:519
|
2412 |
msgid "Load More"
|
2413 |
msgstr ""
|
2414 |
|
2692 |
msgid "Framed"
|
2693 |
msgstr ""
|
2694 |
|
2695 |
+
#: ../includes/Elements/Feature_List.php:306, ../includes/Elements/Image_Accordion.php:119, ../includes/Elements/Info_Box.php:129, ../includes/Elements/Login_Register.php:700, ../includes/Elements/Pricing_Table.php:349, ../includes/Elements/Tooltip.php:282, ../includes/Elements/Twitter_Feed.php:339, ../includes/Extensions/Reading_Progress.php:115, ../includes/Traits/Controls.php:1526
|
2696 |
msgid "Top"
|
2697 |
msgstr ""
|
2698 |
|
2748 |
msgid "Filterable Gallery"
|
2749 |
msgstr ""
|
2750 |
|
2751 |
+
#: ../includes/Elements/Filterable_Gallery.php:90, ../includes/Elements/Pricing_Table.php:75, ../includes/Traits/Core.php:44, ../includes/templates/admin/elements.php:559, ../includes/templates/admin/elements.php:542, ../includes/templates/admin/elements.php:539, ../includes/templates/admin/extensions.php:85
|
2752 |
msgid "Settings"
|
2753 |
msgstr ""
|
2754 |
|
3420 |
msgid "Content Vertical Alignment"
|
3421 |
msgstr ""
|
3422 |
|
3423 |
+
#: ../includes/Elements/Image_Accordion.php:127, ../includes/Elements/Info_Box.php:137, ../includes/Elements/Pricing_Table.php:357, ../includes/Elements/Tooltip.php:283, ../includes/Elements/Twitter_Feed.php:347, ../includes/Extensions/Reading_Progress.php:116, ../includes/Traits/Controls.php:1530
|
3424 |
msgid "Bottom"
|
3425 |
msgstr ""
|
3426 |
|
4530 |
msgid "Target Blank"
|
4531 |
msgstr ""
|
4532 |
|
4533 |
+
#: ../includes/Elements/Post_Grid.php:179, ../includes/Elements/Product_Grid.php:359, ../includes/Traits/Controls.php:773, ../includes/Traits/Controls.php:806
|
4534 |
msgid "Read More"
|
4535 |
msgstr ""
|
4536 |
|
4574 |
msgid "Meta Style"
|
4575 |
msgstr ""
|
4576 |
|
4577 |
+
#: ../includes/Elements/Post_Grid.php:530, ../includes/Elements/Post_Grid.php:542, ../includes/Traits/Controls.php:882
|
4578 |
msgid "Meta Position"
|
4579 |
msgstr ""
|
4580 |
|
4650 |
msgid "Icon font size"
|
4651 |
msgstr ""
|
4652 |
|
4653 |
+
#: ../includes/Elements/Post_Grid.php:1241
|
4654 |
+
msgid "<p class=\"no-posts-found\">No Layout Found!</p>"
|
4655 |
+
msgstr ""
|
4656 |
+
|
4657 |
#: ../includes/Elements/Post_Timeline.php:28, ../includes/templates/admin/elements.php:134
|
4658 |
msgid "Post Timeline"
|
4659 |
msgstr ""
|
4714 |
msgid "Date Text Color"
|
4715 |
msgstr ""
|
4716 |
|
4717 |
+
#: ../includes/Elements/Post_Timeline.php:470, ../includes/Elements/Product_Grid.php:992
|
4718 |
+
msgid "<p class=\"no-posts-found\">No layout found!</p>"
|
4719 |
+
msgstr ""
|
4720 |
+
|
4721 |
#: ../includes/Elements/Pricing_Table.php:29, ../includes/templates/admin/elements.php:330
|
4722 |
msgid "Pricing Table"
|
4723 |
msgstr ""
|
5046 |
msgid "Product ID"
|
5047 |
msgstr ""
|
5048 |
|
5049 |
+
#: ../includes/Elements/Product_Grid.php:164, ../includes/Elements/Product_Grid.php:527
|
5050 |
msgid "Product Title"
|
5051 |
msgstr ""
|
5052 |
|
5078 |
msgid "Products Count"
|
5079 |
msgstr ""
|
5080 |
|
5081 |
+
#: ../includes/Elements/Product_Grid.php:207, ../includes/Traits/Controls.php:162, ../includes/Traits/Controls.php:289, ../includes/Traits/Controls.php:1442, ../includes/Traits/Controls.php:1481, ../includes/Traits/Controls.php:1544, ../includes/Traits/Controls.php:1582
|
5082 |
msgid "Offset"
|
5083 |
msgstr ""
|
5084 |
|
5086 |
msgid "Product Categories"
|
5087 |
msgstr ""
|
5088 |
|
5089 |
+
#: ../includes/Elements/Product_Grid.php:257, ../includes/Elements/Team_Member.php:261
|
5090 |
msgid "Style Preset"
|
5091 |
msgstr ""
|
5092 |
|
5093 |
+
#: ../includes/Elements/Product_Grid.php:262, ../includes/Elements/Team_Member.php:250
|
5094 |
msgid "Simple Style"
|
5095 |
msgstr ""
|
5096 |
|
5097 |
+
#: ../includes/Elements/Product_Grid.php:263
|
5098 |
msgid "Reveal Style"
|
5099 |
msgstr ""
|
5100 |
|
5101 |
+
#: ../includes/Elements/Product_Grid.php:264, ../includes/Elements/Team_Member.php:251
|
5102 |
msgid "Overlay Style"
|
5103 |
msgstr ""
|
5104 |
|
5105 |
+
#: ../includes/Elements/Product_Grid.php:272
|
5106 |
msgid "Show Product Rating?"
|
5107 |
msgstr ""
|
5108 |
|
5109 |
+
#: ../includes/Elements/Product_Grid.php:289
|
5110 |
msgid "Add To Cart"
|
5111 |
msgstr ""
|
5112 |
|
5113 |
+
#: ../includes/Elements/Product_Grid.php:296
|
5114 |
msgid "Show Add to cart custom text"
|
5115 |
msgstr ""
|
5116 |
|
5117 |
+
#: ../includes/Elements/Product_Grid.php:308
|
5118 |
msgid "Simple Product Button Text"
|
5119 |
msgstr ""
|
5120 |
|
5121 |
+
#: ../includes/Elements/Product_Grid.php:311, ../includes/Elements/Product_Grid.php:347
|
5122 |
msgid "Buy Now"
|
5123 |
msgstr ""
|
5124 |
|
5125 |
+
#: ../includes/Elements/Product_Grid.php:320
|
5126 |
msgid "Variable Product Button Text"
|
5127 |
msgstr ""
|
5128 |
|
5129 |
+
#: ../includes/Elements/Product_Grid.php:323
|
5130 |
msgid "Select options"
|
5131 |
msgstr ""
|
5132 |
|
5133 |
+
#: ../includes/Elements/Product_Grid.php:332
|
5134 |
msgid "Grouped Product Button Text"
|
5135 |
msgstr ""
|
5136 |
|
5137 |
+
#: ../includes/Elements/Product_Grid.php:335
|
5138 |
msgid "View products"
|
5139 |
msgstr ""
|
5140 |
|
5141 |
+
#: ../includes/Elements/Product_Grid.php:344
|
5142 |
msgid "External Product Button Text"
|
5143 |
msgstr ""
|
5144 |
|
5145 |
+
#: ../includes/Elements/Product_Grid.php:356
|
5146 |
msgid "Default Product Button Text"
|
5147 |
msgstr ""
|
5148 |
|
5149 |
+
#: ../includes/Elements/Product_Grid.php:395, ../includes/Traits/Controls.php:516, ../includes/Traits/Controls.php:770
|
5150 |
msgid "Label Text"
|
5151 |
msgstr ""
|
5152 |
|
5153 |
+
#: ../includes/Elements/Product_Grid.php:410
|
5154 |
msgid "Products Styles"
|
5155 |
msgstr ""
|
5156 |
|
5157 |
+
#: ../includes/Elements/Product_Grid.php:445, ../includes/Elements/Team_Member.php:340
|
5158 |
msgid "Content Background Color"
|
5159 |
msgstr ""
|
5160 |
|
5161 |
+
#: ../includes/Elements/Product_Grid.php:535
|
5162 |
msgid "Product Title Color"
|
5163 |
msgstr ""
|
5164 |
|
5165 |
+
#: ../includes/Elements/Product_Grid.php:555
|
5166 |
msgid "Product Price"
|
5167 |
msgstr ""
|
5168 |
|
5169 |
+
#: ../includes/Elements/Product_Grid.php:563
|
5170 |
msgid "Product Price Color"
|
5171 |
msgstr ""
|
5172 |
|
5173 |
+
#: ../includes/Elements/Product_Grid.php:583
|
5174 |
msgid "Star Rating"
|
5175 |
msgstr ""
|
5176 |
|
5177 |
+
#: ../includes/Elements/Product_Grid.php:591
|
5178 |
msgid "Rating Color"
|
5179 |
msgstr ""
|
5180 |
|
5181 |
+
#: ../includes/Elements/Product_Grid.php:612
|
5182 |
msgid "Sale Badge"
|
5183 |
msgstr ""
|
5184 |
|
5185 |
+
#: ../includes/Elements/Product_Grid.php:620
|
5186 |
msgid "Sale Badge Color"
|
5187 |
msgstr ""
|
5188 |
|
5189 |
+
#: ../includes/Elements/Product_Grid.php:632
|
5190 |
msgid "Sale Badge Background"
|
5191 |
msgstr ""
|
5192 |
|
5193 |
+
#: ../includes/Elements/Product_Grid.php:653
|
5194 |
msgid "Stock Out Badge"
|
5195 |
msgstr ""
|
5196 |
|
5197 |
+
#: ../includes/Elements/Product_Grid.php:661
|
5198 |
msgid "Stock Out Badge Color"
|
5199 |
msgstr ""
|
5200 |
|
5201 |
+
#: ../includes/Elements/Product_Grid.php:673
|
5202 |
msgid "Stock Out Badge Background"
|
5203 |
msgstr ""
|
5204 |
|
5205 |
+
#: ../includes/Elements/Product_Grid.php:696
|
5206 |
msgid "Add to Cart Button Styles"
|
5207 |
msgstr ""
|
5208 |
|
5209 |
+
#: ../includes/Elements/Product_Grid.php:746, ../includes/Elements/Product_Grid.php:815
|
5210 |
msgid "Font Color"
|
5211 |
msgstr ""
|
5212 |
|
5342 |
msgid "Sticky"
|
5343 |
msgstr ""
|
5344 |
|
5345 |
+
#: ../includes/Elements/Sticky_Video.php:116, ../includes/Extensions/Reading_Progress.php:110, ../includes/Extensions/Table_of_Content.php:407, ../includes/Traits/Controls.php:1398
|
5346 |
msgid "Position"
|
5347 |
msgstr ""
|
5348 |
|
5882 |
msgid "Card Settings"
|
5883 |
msgstr ""
|
5884 |
|
5885 |
+
#: ../includes/Elements/Twitter_Feed.php:231, ../includes/Traits/Controls.php:898
|
5886 |
msgid "Show Avatar"
|
5887 |
msgstr ""
|
5888 |
|
5889 |
+
#: ../includes/Elements/Twitter_Feed.php:243, ../includes/Traits/Controls.php:929
|
5890 |
msgid "Show Date"
|
5891 |
msgstr ""
|
5892 |
|
5893 |
+
#: ../includes/Elements/Twitter_Feed.php:255, ../includes/Traits/Controls.php:755
|
5894 |
msgid "Show Read More"
|
5895 |
msgstr ""
|
5896 |
|
6362 |
msgid "EA TOC"
|
6363 |
msgstr ""
|
6364 |
|
6365 |
+
#: ../includes/Extensions/Table_of_Content.php:430, ../includes/Traits/Controls.php:573
|
6366 |
msgid "Bullet"
|
6367 |
msgstr ""
|
6368 |
|
6646 |
msgid "Enable Nested Subcategory"
|
6647 |
msgstr ""
|
6648 |
|
6649 |
+
#: ../includes/Traits/Controls.php:449
|
6650 |
msgid "Post Block Style Preset"
|
6651 |
msgstr ""
|
6652 |
|
6653 |
+
#: ../includes/Traits/Controls.php:486
|
6654 |
msgid "Date Position"
|
6655 |
msgstr ""
|
6656 |
|
6657 |
+
#: ../includes/Traits/Controls.php:490
|
6658 |
msgid "Inside"
|
6659 |
msgstr ""
|
6660 |
|
6661 |
+
#: ../includes/Traits/Controls.php:491
|
6662 |
msgid "Outside"
|
6663 |
msgstr ""
|
6664 |
|
6665 |
+
#: ../includes/Traits/Controls.php:533
|
6666 |
msgid "Show Image"
|
6667 |
msgstr ""
|
6668 |
|
6669 |
+
#: ../includes/Traits/Controls.php:561
|
6670 |
msgid "Show Circle Image / Icon"
|
6671 |
msgstr ""
|
6672 |
|
6673 |
+
#: ../includes/Traits/Controls.php:587
|
6674 |
msgid "Icon Image"
|
6675 |
msgstr ""
|
6676 |
|
6677 |
+
#: ../includes/Traits/Controls.php:600
|
6678 |
msgid "Icon Image Size"
|
6679 |
msgstr ""
|
6680 |
|
6681 |
+
#: ../includes/Traits/Controls.php:677
|
6682 |
msgid "Title Length"
|
6683 |
msgstr ""
|
6684 |
|
6685 |
+
#: ../includes/Traits/Controls.php:689
|
6686 |
msgid "Show excerpt"
|
6687 |
msgstr ""
|
6688 |
|
6689 |
+
#: ../includes/Traits/Controls.php:729, ../includes/Traits/Controls.php:702
|
6690 |
msgid "Excerpt Words"
|
6691 |
msgstr ""
|
6692 |
|
6693 |
+
#: ../includes/Traits/Controls.php:741, ../includes/Traits/Controls.php:715
|
6694 |
msgid "Expanison Indicator"
|
6695 |
msgstr ""
|
6696 |
|
6697 |
+
#: ../includes/Traits/Controls.php:744, ../includes/Traits/Controls.php:718
|
6698 |
msgid "..."
|
6699 |
msgstr ""
|
6700 |
|
6701 |
+
#: ../includes/Traits/Controls.php:789
|
6702 |
msgid "Show Read More Button"
|
6703 |
msgstr ""
|
6704 |
|
6705 |
+
#: ../includes/Traits/Controls.php:819
|
6706 |
msgid "Show Post Terms"
|
6707 |
msgstr ""
|
6708 |
|
6709 |
+
#: ../includes/Traits/Controls.php:833
|
6710 |
msgid "Show Terms From"
|
6711 |
msgstr ""
|
6712 |
|
6713 |
+
#: ../includes/Traits/Controls.php:836
|
6714 |
msgid "Category"
|
6715 |
msgstr ""
|
6716 |
|
6717 |
+
#: ../includes/Traits/Controls.php:837
|
6718 |
msgid "Tags"
|
6719 |
msgstr ""
|
6720 |
|
6721 |
+
#: ../includes/Traits/Controls.php:849
|
6722 |
msgid "Max Terms to Show"
|
6723 |
msgstr ""
|
6724 |
|
6725 |
+
#: ../includes/Traits/Controls.php:870
|
6726 |
msgid "Show Meta"
|
6727 |
msgstr ""
|
6728 |
|
6729 |
+
#: ../includes/Traits/Controls.php:886
|
6730 |
msgid "Entry Header"
|
6731 |
msgstr ""
|
6732 |
|
6733 |
+
#: ../includes/Traits/Controls.php:887
|
6734 |
msgid "Entry Footer"
|
6735 |
msgstr ""
|
6736 |
|
6737 |
+
#: ../includes/Traits/Controls.php:914
|
6738 |
msgid "Show Author Name"
|
6739 |
msgstr ""
|
6740 |
|
6741 |
+
#: ../includes/Traits/Controls.php:1032
|
6742 |
msgid "Read More Button Style"
|
6743 |
msgstr ""
|
6744 |
|
6745 |
+
#: ../includes/Traits/Controls.php:1199
|
6746 |
msgid "Load More Button Style"
|
6747 |
msgstr ""
|
6748 |
|
6749 |
+
#: ../includes/Traits/Controls.php:1403
|
6750 |
msgid "Absolute"
|
6751 |
msgstr ""
|
6752 |
|
6753 |
+
#: ../includes/Traits/Controls.php:1417
|
6754 |
msgid "Horizontal Orientation"
|
6755 |
msgstr ""
|
6756 |
|
6757 |
+
#: ../includes/Traits/Controls.php:1520
|
6758 |
msgid "Vertical Orientation"
|
6759 |
msgstr ""
|
6760 |
|
6761 |
+
#: ../includes/Traits/Controls.php:1639
|
6762 |
msgid "<strong>Ninja Tables</strong> is not installed/activated on your site. Please install and activate <a href=\"plugin-install.php?s=Ninja+Tables&tab=search&type=term\" target=\"_blank\">Ninja Tables</a> first."
|
6763 |
msgstr ""
|
6764 |
|
6765 |
+
#: ../includes/Traits/Controls.php:1626
|
6766 |
msgid "Table ID"
|
6767 |
msgstr ""
|
6768 |
|
6769 |
+
#: ../includes/Traits/Controls.php:1660
|
6770 |
msgid "EventON (Pro) "
|
6771 |
msgstr ""
|
6772 |
|
6773 |
+
#: ../includes/Traits/Controls.php:1658
|
6774 |
msgid "EventON"
|
6775 |
msgstr ""
|
6776 |
|
6777 |
+
#: ../includes/Traits/Core.php:48
|
6778 |
msgid "Go Pro"
|
6779 |
msgstr ""
|
6780 |
|
6781 |
+
#: ../includes/Traits/Core.php:63
|
6782 |
msgid "Docs & FAQs"
|
6783 |
msgstr ""
|
6784 |
|
6785 |
+
#: ../includes/Traits/Core.php:66
|
6786 |
msgid "Video Tutorials"
|
6787 |
msgstr ""
|
6788 |
|
6789 |
+
#: ../includes/Traits/Core.php:110
|
6790 |
msgid "%1$sEssential Addons for Elementor%2$s requires %1$sElementor%2$s plugin to be installed and activated. Please install Elementor to continue."
|
6791 |
msgstr ""
|
6792 |
|
6793 |
+
#: ../includes/Traits/Core.php:111
|
6794 |
msgid "Install Elementor"
|
6795 |
msgstr ""
|
6796 |
|
6797 |
+
#: ../includes/Traits/Core.php:104
|
6798 |
msgid "%1$sEssential Addons for Elementor%2$s requires %1$sElementor%2$s plugin to be active. Please activate Elementor to continue."
|
6799 |
msgstr ""
|
6800 |
|
6801 |
+
#: ../includes/Traits/Core.php:106
|
6802 |
msgid "Activate Elementor"
|
6803 |
msgstr ""
|
6804 |
|
readme.txt
CHANGED
@@ -4,11 +4,11 @@ Tags: elementor, elements, addons, elementor addon, elementor widget, elementor
|
|
4 |
Requires at least: 4.0
|
5 |
Tested up to: 5.5
|
6 |
Requires PHP: 5.4
|
7 |
-
Stable tag: 4.3.
|
8 |
License: GPLv3
|
9 |
License URI: https://opensource.org/licenses/GPL-3.0
|
10 |
|
11 |
-
The Essential plugin you install after Elementor!
|
12 |
|
13 |
== Description ==
|
14 |
|
@@ -224,6 +224,11 @@ Your existing elements/content will work with premium version. So you won't lose
|
|
224 |
|
225 |
== Changelog ==
|
226 |
|
|
|
|
|
|
|
|
|
|
|
227 |
= 4.3.2 - 18/10/2020 =
|
228 |
- Fixed: Assets not generating properly
|
229 |
- Fixed: Fatal error with BuddyPress plugin
|
4 |
Requires at least: 4.0
|
5 |
Tested up to: 5.5
|
6 |
Requires PHP: 5.4
|
7 |
+
Stable tag: 4.3.3
|
8 |
License: GPLv3
|
9 |
License URI: https://opensource.org/licenses/GPL-3.0
|
10 |
|
11 |
+
The Essential plugin you install after Elementor! Packed with 40+ stunning free elements including Advanced Data Table, Event Calendar, Filterable Gallery, WooCommerce, and many more.
|
12 |
|
13 |
== Description ==
|
14 |
|
224 |
|
225 |
== Changelog ==
|
226 |
|
227 |
+
= 4.3.3 - 22/10/2020 =
|
228 |
+
- Fixed: Assets not generating on Multi-sites
|
229 |
+
- Fixed: Critical Errors related to Template queries
|
230 |
+
- Few minor bug fix and improvements
|
231 |
+
|
232 |
= 4.3.2 - 18/10/2020 =
|
233 |
- Fixed: Assets not generating properly
|
234 |
- Fixed: Fatal error with BuddyPress plugin
|