Elementor Essential Addons - Version 4.5.5

Version Description

  • 23/03/2021 =

  • Fixed: PHP error related to HTML tags validation

  • Few minor bug fix and improvements

Download this release

Release Info

Developer re_enter_rupok
Plugin Icon 128x128 Elementor Essential Addons
Version 4.5.5
Comparing to
See all releases

Code changes from version 4.5.4 to 4.5.5

essential_adons_elementor.php CHANGED
@@ -4,7 +4,7 @@
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.5.4
8
  * Author URI: https://wpdeveloper.net/
9
  * Text Domain: essential-addons-for-elementor-lite
10
  * Domain Path: /languages
@@ -27,7 +27,7 @@ define('EAEL_PLUGIN_FILE', __FILE__);
27
  define('EAEL_PLUGIN_BASENAME', plugin_basename(__FILE__));
28
  define('EAEL_PLUGIN_PATH', trailingslashit(plugin_dir_path(__FILE__)));
29
  define('EAEL_PLUGIN_URL', trailingslashit(plugins_url('/', __FILE__)));
30
- define('EAEL_PLUGIN_VERSION', '4.5.4');
31
  define('EAEL_ASSET_PATH', wp_upload_dir()['basedir'] . '/essential-addons-elementor');
32
  define('EAEL_ASSET_URL', wp_upload_dir()['baseurl'] . '/essential-addons-elementor');
33
  /**
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.5.5
8
  * Author URI: https://wpdeveloper.net/
9
  * Text Domain: essential-addons-for-elementor-lite
10
  * Domain Path: /languages
27
  define('EAEL_PLUGIN_BASENAME', plugin_basename(__FILE__));
28
  define('EAEL_PLUGIN_PATH', trailingslashit(plugin_dir_path(__FILE__)));
29
  define('EAEL_PLUGIN_URL', trailingslashit(plugins_url('/', __FILE__)));
30
+ define('EAEL_PLUGIN_VERSION', '4.5.5');
31
  define('EAEL_ASSET_PATH', wp_upload_dir()['basedir'] . '/essential-addons-elementor');
32
  define('EAEL_ASSET_URL', wp_upload_dir()['baseurl'] . '/essential-addons-elementor');
33
  /**
includes/Classes/Helper.php CHANGED
@@ -7,11 +7,32 @@ if (!defined('ABSPATH')) {
7
  } // Exit if accessed directly
8
 
9
  use \Elementor\Controls_Manager;
 
10
  use Elementor\Plugin;
11
 
12
  class Helper
13
  {
14
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15
  /**
16
  * Include a file with variables
17
  *
@@ -921,4 +942,13 @@ class Helper
921
 
922
  return $plugins[ $basename ];
923
  }
 
 
 
 
 
 
 
 
 
924
  }
7
  } // Exit if accessed directly
8
 
9
  use \Elementor\Controls_Manager;
10
+ use \Elementor\Utils;
11
  use Elementor\Plugin;
12
 
13
  class Helper
14
  {
15
 
16
+
17
+ const EAEL_ALLOWED_HTML_TAGS = [
18
+ 'article',
19
+ 'aside',
20
+ 'div',
21
+ 'footer',
22
+ 'h1',
23
+ 'h2',
24
+ 'h3',
25
+ 'h4',
26
+ 'h5',
27
+ 'h6',
28
+ 'header',
29
+ 'main',
30
+ 'nav',
31
+ 'p',
32
+ 'section',
33
+ 'span',
34
+ ];
35
+
36
  /**
37
  * Include a file with variables
38
  *
942
 
943
  return $plugins[ $basename ];
944
  }
945
+
946
+ /**
947
+ * eael_validate_html_tag
948
+ * @param $tag
949
+ * @return mixed|string
950
+ */
951
+ public static function eael_validate_html_tag( $tag ){
952
+ return in_array( strtolower( $tag ), self::EAEL_ALLOWED_HTML_TAGS ) ? $tag : 'div';
953
+ }
954
  }
includes/Elements/Adv_Accordion.php CHANGED
@@ -14,7 +14,6 @@ use \Elementor\Group_Control_Box_Shadow;
14
  use \Elementor\Group_Control_Typography;
15
  use Elementor\Repeater;
16
  use \Elementor\Plugin;
17
- use \Elementor\Utils;
18
  use \Elementor\Widget_Base;
19
 
20
  use \Essential_Addons_Elementor\Classes\Helper;
@@ -1098,7 +1097,7 @@ class Adv_Accordion extends Widget_Base
1098
  }
1099
  // tab title
1100
  if ($settings['eael_adv_accordion_toggle_icon_postion'] === '') {
1101
- echo '<' . Utils::validate_html_tag($settings['eael_adv_accordion_title_tag']) . ' class="eael-accordion-tab-title">' . $tab['eael_adv_accordion_tab_title'] . '</' . Utils::validate_html_tag($settings['eael_adv_accordion_title_tag']) . '>';
1102
  }
1103
  // tab icon
1104
  if ($tab['eael_adv_accordion_tab_icon_show'] === 'yes') {
@@ -1114,7 +1113,7 @@ class Adv_Accordion extends Widget_Base
1114
  }
1115
  // tab title
1116
  if ($settings['eael_adv_accordion_toggle_icon_postion'] === 'right' || $settings['eael_adv_accordion_toggle_icon_postion'] === null) {
1117
- echo '<' . Utils::validate_html_tag($settings['eael_adv_accordion_title_tag']) . ' class="eael-accordion-tab-title">' . $tab['eael_adv_accordion_tab_title'] . '</' . Utils::validate_html_tag($settings['eael_adv_accordion_title_tag']) . '>';
1118
  }
1119
  // toggle icon
1120
  if ($settings['eael_adv_accordion_icon_show'] === 'yes' && $settings['eael_adv_accordion_toggle_icon_postion'] === 'right') {
14
  use \Elementor\Group_Control_Typography;
15
  use Elementor\Repeater;
16
  use \Elementor\Plugin;
 
17
  use \Elementor\Widget_Base;
18
 
19
  use \Essential_Addons_Elementor\Classes\Helper;
1097
  }
1098
  // tab title
1099
  if ($settings['eael_adv_accordion_toggle_icon_postion'] === '') {
1100
+ echo '<' . Helper::eael_validate_html_tag($settings['eael_adv_accordion_title_tag']) . ' class="eael-accordion-tab-title">' . $tab['eael_adv_accordion_tab_title'] . '</' . Helper::eael_validate_html_tag($settings['eael_adv_accordion_title_tag']) . '>';
1101
  }
1102
  // tab icon
1103
  if ($tab['eael_adv_accordion_tab_icon_show'] === 'yes') {
1113
  }
1114
  // tab title
1115
  if ($settings['eael_adv_accordion_toggle_icon_postion'] === 'right' || $settings['eael_adv_accordion_toggle_icon_postion'] === null) {
1116
+ echo '<' . Helper::eael_validate_html_tag($settings['eael_adv_accordion_title_tag']) . ' class="eael-accordion-tab-title">' . $tab['eael_adv_accordion_tab_title'] . '</' . Helper::eael_validate_html_tag($settings['eael_adv_accordion_title_tag']) . '>';
1117
  }
1118
  // toggle icon
1119
  if ($settings['eael_adv_accordion_icon_show'] === 'yes' && $settings['eael_adv_accordion_toggle_icon_postion'] === 'right') {
includes/Elements/Cta_Box.php CHANGED
@@ -1094,7 +1094,7 @@ class Cta_Box extends Widget_Base
1094
  if(!empty($sub_title)){
1095
  $headingMarkup .='<h4 class="sub-title">'.$sub_title.'</h4>';
1096
  }
1097
- $headingMarkup .='<'.Utils::validate_html_tag($settings['title_tag']).' class="title">'.$settings['eael_cta_title'].'</'.Utils::validate_html_tag($settings['title_tag']).'>';
1098
 
1099
  // content markup
1100
  $contentMarkup = '';
1094
  if(!empty($sub_title)){
1095
  $headingMarkup .='<h4 class="sub-title">'.$sub_title.'</h4>';
1096
  }
1097
+ $headingMarkup .='<'.Helper::eael_validate_html_tag($settings['title_tag']).' class="title">'.$settings['eael_cta_title'].'</'.Helper::eael_validate_html_tag($settings['title_tag']).'>';
1098
 
1099
  // content markup
1100
  $contentMarkup = '';
includes/Elements/Dual_Color_Header.php CHANGED
@@ -13,8 +13,8 @@ use \Elementor\Group_Control_Border;
13
  use \Elementor\Group_Control_Box_Shadow;
14
  use \Elementor\Group_Control_Typography;
15
  use \Elementor\Widget_Base;
16
- use \Elementor\Utils;
17
 
 
18
  class Dual_Color_Header extends Widget_Base
19
  {
20
  public function get_name()
@@ -849,8 +849,8 @@ class Dual_Color_Header extends Widget_Base
849
  <?php if ('dch-default' == $settings['eael_dch_type']) : ?>
850
  <div class="eael-dual-header">
851
  <?php echo ($settings['eael_dch_separator_position'] === 'before_title' ? $separator_markup : ''); ?>
852
- <<?php echo Utils::validate_html_tag($settings['title_tag']); ?> class="title"><span class="lead <?php echo $settings['eael_dch_dual_color_selector']; ?>"><?php esc_html_e
853
- ($settings['eael_dch_first_title'], 'essential-addons-for-elementor-lite'); ?></span> <span><?php esc_html_e($settings['eael_dch_last_title'], 'essential-addons-for-elementor-lite'); ?></span></<?php echo Utils::validate_html_tag($settings['title_tag']); ?>>
854
  <?php echo ($settings['eael_dch_separator_position'] === 'after_title' ? $separator_markup : ''); ?>
855
  <span class="subtext"><?php echo $settings['eael_dch_subtext']; ?></span>
856
  <?php if ('yes' == $settings['eael_show_dch_icon_content']) : ?>
@@ -881,7 +881,7 @@ class Dual_Color_Header extends Widget_Base
881
  <?php } ?>
882
  <?php endif; ?>
883
  <?php echo ($settings['eael_dch_separator_position'] === 'before_title' ? $separator_markup : ''); ?>
884
- <<?php echo Utils::validate_html_tag($settings['title_tag']); ?> class="title"><span class="lead <?php echo $settings['eael_dch_dual_color_selector']; ?>"><?php esc_html_e($settings['eael_dch_first_title'], 'essential-addons-for-elementor-lite'); ?></span> <span><?php esc_html_e($settings['eael_dch_last_title'], 'essential-addons-for-elementor-lite'); ?></span></<?php echo Utils::validate_html_tag($settings['title_tag']); ?>>
885
  <?php echo ($settings['eael_dch_separator_position'] === 'after_title' ? $separator_markup : ''); ?>
886
  <span class="subtext"><?php echo $settings['eael_dch_subtext']; ?></span>
887
  </div>
@@ -902,7 +902,7 @@ class Dual_Color_Header extends Widget_Base
902
  <?php endif; ?>
903
  <span class="subtext"><?php echo $settings['eael_dch_subtext']; ?></span>
904
  <?php echo ($settings['eael_dch_separator_position'] === 'before_title' ? $separator_markup : ''); ?>
905
- <<?php echo Utils::validate_html_tag($settings['title_tag']); ?> class="title"><span class="lead <?php echo $settings['eael_dch_dual_color_selector']; ?>"><?php esc_html_e($settings['eael_dch_first_title'], 'essential-addons-for-elementor-lite'); ?></span> <span><?php esc_html_e($settings['eael_dch_last_title'], 'essential-addons-for-elementor-lite'); ?></span></<?php echo Utils::validate_html_tag($settings['title_tag']); ?>>
906
  <?php echo ($settings['eael_dch_separator_position'] === 'after_title' ? $separator_markup : ''); ?>
907
  </div>
908
  <?php endif; ?>
@@ -911,7 +911,7 @@ class Dual_Color_Header extends Widget_Base
911
  <div class="eael-dual-header">
912
  <span class="subtext"><?php echo $settings['eael_dch_subtext']; ?></span>
913
  <?php echo ($settings['eael_dch_separator_position'] === 'before_title' ? $separator_markup : ''); ?>
914
- <<?php echo Utils::validate_html_tag($settings['title_tag']); ?> class="title"><span class="lead <?php echo $settings['eael_dch_dual_color_selector']; ?>"><?php esc_html_e($settings['eael_dch_first_title'], 'essential-addons-for-elementor-lite'); ?></span> <span><?php esc_html_e($settings['eael_dch_last_title'], 'essential-addons-for-elementor-lite'); ?></span></<?php echo Utils::validate_html_tag($settings['title_tag']); ?>>
915
  <?php echo ($settings['eael_dch_separator_position'] === 'after_title' ? $separator_markup : ''); ?>
916
  <?php if ('yes' == $settings['eael_show_dch_icon_content']) : ?>
917
  <?php if ($icon_is_new || $icon_migrated) { ?>
13
  use \Elementor\Group_Control_Box_Shadow;
14
  use \Elementor\Group_Control_Typography;
15
  use \Elementor\Widget_Base;
 
16
 
17
+ use \Essential_Addons_Elementor\Classes\Helper;
18
  class Dual_Color_Header extends Widget_Base
19
  {
20
  public function get_name()
849
  <?php if ('dch-default' == $settings['eael_dch_type']) : ?>
850
  <div class="eael-dual-header">
851
  <?php echo ($settings['eael_dch_separator_position'] === 'before_title' ? $separator_markup : ''); ?>
852
+ <<?php echo Helper::eael_validate_html_tag($settings['title_tag']); ?> class="title"><span class="lead <?php echo $settings['eael_dch_dual_color_selector']; ?>"><?php esc_html_e
853
+ ($settings['eael_dch_first_title'], 'essential-addons-for-elementor-lite'); ?></span> <span><?php esc_html_e($settings['eael_dch_last_title'], 'essential-addons-for-elementor-lite'); ?></span></<?php echo Helper::eael_validate_html_tag($settings['title_tag']); ?>>
854
  <?php echo ($settings['eael_dch_separator_position'] === 'after_title' ? $separator_markup : ''); ?>
855
  <span class="subtext"><?php echo $settings['eael_dch_subtext']; ?></span>
856
  <?php if ('yes' == $settings['eael_show_dch_icon_content']) : ?>
881
  <?php } ?>
882
  <?php endif; ?>
883
  <?php echo ($settings['eael_dch_separator_position'] === 'before_title' ? $separator_markup : ''); ?>
884
+ <<?php echo Helper::eael_validate_html_tag($settings['title_tag']); ?> class="title"><span class="lead <?php echo $settings['eael_dch_dual_color_selector']; ?>"><?php esc_html_e($settings['eael_dch_first_title'], 'essential-addons-for-elementor-lite'); ?></span> <span><?php esc_html_e($settings['eael_dch_last_title'], 'essential-addons-for-elementor-lite'); ?></span></<?php echo Helper::eael_validate_html_tag($settings['title_tag']); ?>>
885
  <?php echo ($settings['eael_dch_separator_position'] === 'after_title' ? $separator_markup : ''); ?>
886
  <span class="subtext"><?php echo $settings['eael_dch_subtext']; ?></span>
887
  </div>
902
  <?php endif; ?>
903
  <span class="subtext"><?php echo $settings['eael_dch_subtext']; ?></span>
904
  <?php echo ($settings['eael_dch_separator_position'] === 'before_title' ? $separator_markup : ''); ?>
905
+ <<?php echo Helper::eael_validate_html_tag($settings['title_tag']); ?> class="title"><span class="lead <?php echo $settings['eael_dch_dual_color_selector']; ?>"><?php esc_html_e($settings['eael_dch_first_title'], 'essential-addons-for-elementor-lite'); ?></span> <span><?php esc_html_e($settings['eael_dch_last_title'], 'essential-addons-for-elementor-lite'); ?></span></<?php echo Helper::eael_validate_html_tag($settings['title_tag']); ?>>
906
  <?php echo ($settings['eael_dch_separator_position'] === 'after_title' ? $separator_markup : ''); ?>
907
  </div>
908
  <?php endif; ?>
911
  <div class="eael-dual-header">
912
  <span class="subtext"><?php echo $settings['eael_dch_subtext']; ?></span>
913
  <?php echo ($settings['eael_dch_separator_position'] === 'before_title' ? $separator_markup : ''); ?>
914
+ <<?php echo Helper::eael_validate_html_tag($settings['title_tag']); ?> class="title"><span class="lead <?php echo $settings['eael_dch_dual_color_selector']; ?>"><?php esc_html_e($settings['eael_dch_first_title'], 'essential-addons-for-elementor-lite'); ?></span> <span><?php esc_html_e($settings['eael_dch_last_title'], 'essential-addons-for-elementor-lite'); ?></span></<?php echo Helper::eael_validate_html_tag($settings['title_tag']); ?>>
915
  <?php echo ($settings['eael_dch_separator_position'] === 'after_title' ? $separator_markup : ''); ?>
916
  <?php if ('yes' == $settings['eael_show_dch_icon_content']) : ?>
917
  <?php if ($icon_is_new || $icon_migrated) { ?>
includes/Elements/Feature_List.php CHANGED
@@ -16,6 +16,8 @@ use \Elementor\Scheme_Typography;
16
  use \Elementor\Utils;
17
  use \Elementor\Widget_Base;
18
 
 
 
19
  class Feature_List extends Widget_Base {
20
  public function get_name() {
21
  return 'eael-feature-list';
@@ -898,7 +900,7 @@ class Feature_List extends Widget_Base {
898
  $icon_bg = ( ( $item['eael_feature_list_icon_is_individual_style'] == 'on' ) ? ' style="background-color:' . esc_attr( $item['eael_feature_list_icon_individual_bg_color'] ) . '"' : '' );
899
  $icon_box_bg = ( ( $item['eael_feature_list_icon_is_individual_style'] == 'on' ) ? ' style="background-color:' . esc_attr( $item['eael_feature_list_icon_individual_box_bg_color'] ) . '"' : '' );
900
 
901
- $feat_title_tag = Utils::validate_html_tag($settings['eael_feature_list_title_size']);
902
 
903
  if ( $item['eael_feature_list_link']['url'] ) {
904
  $this->add_render_attribute( 'eael_feature_list_title_anchor' . $i, 'href', esc_url( $item['eael_feature_list_link']['url'] ) );
16
  use \Elementor\Utils;
17
  use \Elementor\Widget_Base;
18
 
19
+ use \Essential_Addons_Elementor\Classes\Helper;
20
+
21
  class Feature_List extends Widget_Base {
22
  public function get_name() {
23
  return 'eael-feature-list';
900
  $icon_bg = ( ( $item['eael_feature_list_icon_is_individual_style'] == 'on' ) ? ' style="background-color:' . esc_attr( $item['eael_feature_list_icon_individual_bg_color'] ) . '"' : '' );
901
  $icon_box_bg = ( ( $item['eael_feature_list_icon_is_individual_style'] == 'on' ) ? ' style="background-color:' . esc_attr( $item['eael_feature_list_icon_individual_box_bg_color'] ) . '"' : '' );
902
 
903
+ $feat_title_tag = Helper::eael_validate_html_tag($settings['eael_feature_list_title_size']);
904
 
905
  if ( $item['eael_feature_list_link']['url'] ) {
906
  $this->add_render_attribute( 'eael_feature_list_title_anchor' . $i, 'href', esc_url( $item['eael_feature_list_link']['url'] ) );
includes/Elements/Filterable_Gallery.php CHANGED
@@ -17,6 +17,8 @@ use \Elementor\Repeater;
17
  use \Elementor\Group_Control_Background;
18
  use \Elementor\Utils;
19
 
 
 
20
  class Filterable_Gallery extends Widget_Base
21
  {
22
 
@@ -3054,7 +3056,7 @@ class Filterable_Gallery extends Widget_Base
3054
  $html .= '<div class="fg-item-category"><span>' . $item['category'] . '</span></div>';
3055
  }
3056
 
3057
- $html .= '<' . Utils::validate_html_tag($settings['title_tag']) . ' class="fg-item-title">' . $item['title'] . '</' . Utils::validate_html_tag($settings['title_tag']) . '>';
3058
  $html .= '<div class="fg-item-content">' . wpautop($item['content']) . '</div>';
3059
  $html .= '</div>';
3060
 
@@ -3161,7 +3163,7 @@ class Filterable_Gallery extends Widget_Base
3161
  $html .= '<div class="gallery-item-caption-over">';
3162
  if (isset($item['title']) && !empty($item['title']) || isset($item['content']) && !empty($item['content'])) {
3163
  if (!empty($item['title'])) {
3164
- $html .= '<' . Utils::validate_html_tag($settings['title_tag']) . ' class="fg-item-title">' . $item['title'] . '</' . Utils::validate_html_tag($settings['title_tag']) . '>';
3165
  }
3166
 
3167
  if (!empty($item['content'])) {
17
  use \Elementor\Group_Control_Background;
18
  use \Elementor\Utils;
19
 
20
+ use \Essential_Addons_Elementor\Classes\Helper;
21
+
22
  class Filterable_Gallery extends Widget_Base
23
  {
24
 
3056
  $html .= '<div class="fg-item-category"><span>' . $item['category'] . '</span></div>';
3057
  }
3058
 
3059
+ $html .= '<' . Helper::eael_validate_html_tag($settings['title_tag']) . ' class="fg-item-title">' . $item['title'] . '</' . Helper::eael_validate_html_tag($settings['title_tag']) . '>';
3060
  $html .= '<div class="fg-item-content">' . wpautop($item['content']) . '</div>';
3061
  $html .= '</div>';
3062
 
3163
  $html .= '<div class="gallery-item-caption-over">';
3164
  if (isset($item['title']) && !empty($item['title']) || isset($item['content']) && !empty($item['content'])) {
3165
  if (!empty($item['title'])) {
3166
+ $html .= '<' . Helper::eael_validate_html_tag($settings['title_tag']) . ' class="fg-item-title">' . $item['title'] . '</' . Helper::eael_validate_html_tag($settings['title_tag']) . '>';
3167
  }
3168
 
3169
  if (!empty($item['content'])) {
includes/Elements/Flip_Box.php CHANGED
@@ -1450,7 +1450,7 @@ class Flip_Box extends Widget_Base
1450
  (empty($flipbox_image_url)) ? $flipbox_image_url = $flipbox_image['url'] : $flipbox_image_url = $flipbox_image_url;
1451
 
1452
  $flipbox_if_html_tag = 'div';
1453
- $flipbox_if_html_title_tag = Utils::validate_html_tag($settings['eael_flipbox_back_title_tag']);
1454
  $this->add_render_attribute('flipbox-container', 'class', 'eael-elements-flip-box-flip-card');
1455
  $this->add_render_attribute('flipbox-title-container', 'class', 'eael-elements-flip-box-heading');
1456
 
@@ -1570,7 +1570,7 @@ class Flip_Box extends Widget_Base
1570
  <img class="eael-flipbox-image-as-icon" src="<?php echo esc_url($flipbox_image_url); ?>" alt="<?php echo esc_attr(get_post_meta($flipbox_image['id'], '_wp_attachment_image_alt', true)); ?>">
1571
  <?php endif; ?>
1572
  </div>
1573
- <<?php echo Utils::validate_html_tag($settings['eael_flipbox_front_title_tag']); ?> class="eael-elements-flip-box-heading"><?php echo esc_html__($settings['eael_flipbox_front_title'], 'essential-addons-for-elementor-lite'); ?></<?php echo Utils::validate_html_tag($settings['eael_flipbox_front_title_tag']); ?>>
1574
  <div class="eael-elements-flip-box-content">
1575
  <p><?php echo __($settings['eael_flipbox_front_text'], 'essential-addons-for-elementor-lite'); ?></p>
1576
  </div>
1450
  (empty($flipbox_image_url)) ? $flipbox_image_url = $flipbox_image['url'] : $flipbox_image_url = $flipbox_image_url;
1451
 
1452
  $flipbox_if_html_tag = 'div';
1453
+ $flipbox_if_html_title_tag = Helper::eael_validate_html_tag($settings['eael_flipbox_back_title_tag']);
1454
  $this->add_render_attribute('flipbox-container', 'class', 'eael-elements-flip-box-flip-card');
1455
  $this->add_render_attribute('flipbox-title-container', 'class', 'eael-elements-flip-box-heading');
1456
 
1570
  <img class="eael-flipbox-image-as-icon" src="<?php echo esc_url($flipbox_image_url); ?>" alt="<?php echo esc_attr(get_post_meta($flipbox_image['id'], '_wp_attachment_image_alt', true)); ?>">
1571
  <?php endif; ?>
1572
  </div>
1573
+ <<?php echo Helper::eael_validate_html_tag($settings['eael_flipbox_front_title_tag']); ?> class="eael-elements-flip-box-heading"><?php echo esc_html__($settings['eael_flipbox_front_title'], 'essential-addons-for-elementor-lite'); ?></<?php echo Helper::eael_validate_html_tag($settings['eael_flipbox_front_title_tag']); ?>>
1574
  <div class="eael-elements-flip-box-content">
1575
  <p><?php echo __($settings['eael_flipbox_front_text'], 'essential-addons-for-elementor-lite'); ?></p>
1576
  </div>
includes/Elements/Image_Accordion.php CHANGED
@@ -11,11 +11,12 @@ use \Elementor\Controls_Manager;
11
  use \Elementor\Group_Control_Border;
12
  use \Elementor\Group_Control_Box_Shadow;
13
  use \Elementor\Group_Control_Typography;
14
- use \Elementor\Utils;
15
  use \Elementor\Widget_Base;
16
  use \Elementor\Repeater;
17
 
18
 
 
 
19
  class Image_Accordion extends Widget_Base {
20
  public function get_name() {
21
  return 'eael-image-accordion';
@@ -604,7 +605,7 @@ class Image_Accordion extends Widget_Base {
604
  <div class="overlay">
605
  <div class="overlay-inner">
606
  <div class="overlay-inner <?php echo( $active === 'yes' ? ' overlay-inner-show' : '' ); ?>">
607
- <?php printf( '<%1$s>%2$s</%1$s>', Utils::validate_html_tag($settings[ 'title_tag' ]), $img_accordion[ 'eael_accordion_tittle' ] ); ?>
608
  <p><?php echo sprintf( "%s", $this->parse_text_editor( $img_accordion[ 'eael_accordion_content' ] ) ); ?></p>
609
  </div>
610
  </div>
11
  use \Elementor\Group_Control_Border;
12
  use \Elementor\Group_Control_Box_Shadow;
13
  use \Elementor\Group_Control_Typography;
 
14
  use \Elementor\Widget_Base;
15
  use \Elementor\Repeater;
16
 
17
 
18
+ use \Essential_Addons_Elementor\Classes\Helper;
19
+
20
  class Image_Accordion extends Widget_Base {
21
  public function get_name() {
22
  return 'eael-image-accordion';
605
  <div class="overlay">
606
  <div class="overlay-inner">
607
  <div class="overlay-inner <?php echo( $active === 'yes' ? ' overlay-inner-show' : '' ); ?>">
608
+ <?php printf( '<%1$s>%2$s</%1$s>', Helper::eael_validate_html_tag($settings[ 'title_tag' ]), $img_accordion[ 'eael_accordion_tittle' ] ); ?>
609
  <p><?php echo sprintf( "%s", $this->parse_text_editor( $img_accordion[ 'eael_accordion_content' ] ) ); ?></p>
610
  </div>
611
  </div>
includes/Elements/Info_Box.php CHANGED
@@ -1633,7 +1633,7 @@ echo ob_get_clean();
1633
  ob_start();
1634
  ?>
1635
  <div <?php echo $this->get_render_attribute_string('infobox_content'); ?>>
1636
- <<?php echo Utils::validate_html_tag($settings['eael_infobox_title_tag']); ?> class="title"><?php echo $settings['eael_infobox_title']; ?></<?php echo Utils::validate_html_tag($settings['eael_infobox_title_tag']); ?>>
1637
  <?php if ('yes' == $settings['eael_show_infobox_content']): ?>
1638
  <?php if ('content' === $settings['eael_infobox_text_type']): ?>
1639
  <?php if (!empty($settings['eael_infobox_text'])): ?>
1633
  ob_start();
1634
  ?>
1635
  <div <?php echo $this->get_render_attribute_string('infobox_content'); ?>>
1636
+ <<?php echo Helper::eael_validate_html_tag($settings['eael_infobox_title_tag']); ?> class="title"><?php echo $settings['eael_infobox_title']; ?></<?php echo Helper::eael_validate_html_tag($settings['eael_infobox_title_tag']); ?>>
1637
  <?php if ('yes' == $settings['eael_show_infobox_content']): ?>
1638
  <?php if ('content' === $settings['eael_infobox_text_type']): ?>
1639
  <?php if (!empty($settings['eael_infobox_text'])): ?>
includes/Elements/Progress_Bar.php CHANGED
@@ -12,7 +12,8 @@ use \Elementor\Group_Control_Box_Shadow;
12
  use \Elementor\Group_Control_Typography;
13
  use \Elementor\Scheme_Typography;
14
  use \Elementor\Widget_Base;
15
- use \Elementor\Utils;
 
16
 
17
  class Progress_Bar extends Widget_Base
18
  {
@@ -790,7 +791,7 @@ class Progress_Bar extends Widget_Base
790
  ]);
791
 
792
  echo '<div class="eael-progressbar-line-container ' . $settings['progress_bar_line_alignment'] . '">
793
- ' . ($settings['progress_bar_title'] ? sprintf('<%1$s class="%2$s">', Utils::validate_html_tag($settings['progress_bar_title_html_tag']), 'eael-progressbar-title') . $settings['progress_bar_title'] . sprintf('</%1$s>', Utils::validate_html_tag($settings['progress_bar_title_html_tag'])) : '') . '
794
 
795
  <div ' . $this->get_render_attribute_string('eael-progressbar-line') . '>
796
  ' . ($settings['progress_bar_show_count'] === 'yes' ? '<span class="eael-progressbar-count-wrap"><span class="eael-progressbar-count">0</span><span class="postfix">' . __('%', 'essential-addons-for-elementor-lite') . '</span></span>' : '') . '
@@ -823,7 +824,7 @@ class Progress_Bar extends Widget_Base
823
  </div>
824
  <div class="eael-progressbar-circle-inner"></div>
825
  <div class="eael-progressbar-circle-inner-content">
826
- ' . ($settings['progress_bar_title'] ? sprintf('<%1$s class="%2$s">', Utils::validate_html_tag($settings['progress_bar_title_html_tag']), 'eael-progressbar-title') . $settings['progress_bar_title'] . sprintf('</%1$s>', Utils::validate_html_tag($settings['progress_bar_title_html_tag'])) : '') . '
827
  ' . ($settings['progress_bar_show_count'] === 'yes' ? '<span class="eael-progressbar-count-wrap"><span class="eael-progressbar-count">0</span><span class="postfix">' . __('%', 'essential-addons-for-elementor-lite') . '</span></span>' : '') . '
828
  </div>
829
  </div>
@@ -869,7 +870,7 @@ class Progress_Bar extends Widget_Base
869
  <div class="eael-progressbar-circle-inner"></div>
870
  </div>
871
  <div class="eael-progressbar-circle-inner-content">
872
- ' . ($settings['progress_bar_title'] ? sprintf('<%1$s class="%2$s">', Utils::validate_html_tag($settings['progress_bar_title_html_tag']), 'eael-progressbar-title') . $settings['progress_bar_title'] . sprintf('</%1$s>', Utils::validate_html_tag($settings['progress_bar_title_html_tag'])) : '') . '
873
  ' . ($settings['progress_bar_show_count'] === 'yes' ? '<span class="eael-progressbar-count-wrap"><span class="eael-progressbar-count">0</span><span class="postfix">' . __('%', 'essential-addons-for-elementor-lite') . '</span></span>' : '') . '
874
  </div>
875
  </div>
12
  use \Elementor\Group_Control_Typography;
13
  use \Elementor\Scheme_Typography;
14
  use \Elementor\Widget_Base;
15
+
16
+ use \Essential_Addons_Elementor\Classes\Helper;
17
 
18
  class Progress_Bar extends Widget_Base
19
  {
791
  ]);
792
 
793
  echo '<div class="eael-progressbar-line-container ' . $settings['progress_bar_line_alignment'] . '">
794
+ ' . ($settings['progress_bar_title'] ? sprintf('<%1$s class="%2$s">', Helper::eael_validate_html_tag($settings['progress_bar_title_html_tag']), 'eael-progressbar-title') . $settings['progress_bar_title'] . sprintf('</%1$s>', Helper::eael_validate_html_tag($settings['progress_bar_title_html_tag'])) : '') . '
795
 
796
  <div ' . $this->get_render_attribute_string('eael-progressbar-line') . '>
797
  ' . ($settings['progress_bar_show_count'] === 'yes' ? '<span class="eael-progressbar-count-wrap"><span class="eael-progressbar-count">0</span><span class="postfix">' . __('%', 'essential-addons-for-elementor-lite') . '</span></span>' : '') . '
824
  </div>
825
  <div class="eael-progressbar-circle-inner"></div>
826
  <div class="eael-progressbar-circle-inner-content">
827
+ ' . ($settings['progress_bar_title'] ? sprintf('<%1$s class="%2$s">', Helper::eael_validate_html_tag($settings['progress_bar_title_html_tag']), 'eael-progressbar-title') . $settings['progress_bar_title'] . sprintf('</%1$s>', Helper::eael_validate_html_tag($settings['progress_bar_title_html_tag'])) : '') . '
828
  ' . ($settings['progress_bar_show_count'] === 'yes' ? '<span class="eael-progressbar-count-wrap"><span class="eael-progressbar-count">0</span><span class="postfix">' . __('%', 'essential-addons-for-elementor-lite') . '</span></span>' : '') . '
829
  </div>
830
  </div>
870
  <div class="eael-progressbar-circle-inner"></div>
871
  </div>
872
  <div class="eael-progressbar-circle-inner-content">
873
+ ' . ($settings['progress_bar_title'] ? sprintf('<%1$s class="%2$s">', Helper::eael_validate_html_tag($settings['progress_bar_title_html_tag']), 'eael-progressbar-title') . $settings['progress_bar_title'] . sprintf('</%1$s>', Helper::eael_validate_html_tag($settings['progress_bar_title_html_tag'])) : '') . '
874
  ' . ($settings['progress_bar_show_count'] === 'yes' ? '<span class="eael-progressbar-count-wrap"><span class="eael-progressbar-count">0</span><span class="postfix">' . __('%', 'essential-addons-for-elementor-lite') . '</span></span>' : '') . '
875
  </div>
876
  </div>
includes/Elements/Tooltip.php CHANGED
@@ -13,6 +13,8 @@ use \Elementor\Group_Control_Typography;
13
  use \Elementor\Utils;
14
  use \Elementor\Widget_Base;
15
 
 
 
16
  class Tooltip extends Widget_Base {
17
 
18
  public function get_name() {
@@ -698,7 +700,7 @@ class Tooltip extends Widget_Base {
698
  ?>
699
  <div class="eael-tooltip">
700
  <?php if( $settings['eael_tooltip_type'] === 'text' ) : ?>
701
- <<?php echo esc_attr( Utils::validate_html_tag($settings['eael_tooltip_content_tag']) ); ?> class="eael-tooltip-content"><?php if( $settings['eael_tooltip_enable_link'] === 'yes' ) : ?><a href="<?php echo esc_url( $settings['eael_tooltip_link']['url'] ); ?>" <?php echo $target; ?> <?php echo $nofollow; ?> ><?php endif; ?><?php echo wp_kses_post($settings['eael_tooltip_content']); ?><?php if( $settings['eael_tooltip_enable_link'] === 'yes' ) : ?></a><?php endif; ?></<?php echo esc_attr( Utils::validate_html_tag($settings['eael_tooltip_content_tag']) ); ?>>
702
  <span class="eael-tooltip-text eael-tooltip-<?php echo esc_attr( $settings['eael_tooltip_hover_dir'] ) ?>"><?php echo __( $settings['eael_tooltip_hover_content'] ); ?></span>
703
  <?php elseif( $settings['eael_tooltip_type'] === 'icon' ) : ?>
704
  <span class="eael-tooltip-content"><?php if( $settings['eael_tooltip_enable_link'] === 'yes' ) : ?><a href="<?php echo esc_url( $settings['eael_tooltip_link']['url'] ); ?>" <?php echo $target; ?> <?php echo $nofollow; ?> ><?php endif; ?>
13
  use \Elementor\Utils;
14
  use \Elementor\Widget_Base;
15
 
16
+ use \Essential_Addons_Elementor\Classes\Helper;
17
+
18
  class Tooltip extends Widget_Base {
19
 
20
  public function get_name() {
700
  ?>
701
  <div class="eael-tooltip">
702
  <?php if( $settings['eael_tooltip_type'] === 'text' ) : ?>
703
+ <<?php echo esc_attr( Helper::eael_validate_html_tag($settings['eael_tooltip_content_tag']) ); ?> class="eael-tooltip-content"><?php if( $settings['eael_tooltip_enable_link'] === 'yes' ) : ?><a href="<?php echo esc_url( $settings['eael_tooltip_link']['url'] ); ?>" <?php echo $target; ?> <?php echo $nofollow; ?> ><?php endif; ?><?php echo wp_kses_post($settings['eael_tooltip_content']); ?><?php if( $settings['eael_tooltip_enable_link'] === 'yes' ) : ?></a><?php endif; ?></<?php echo esc_attr( Helper::eael_validate_html_tag($settings['eael_tooltip_content_tag']) ); ?>>
704
  <span class="eael-tooltip-text eael-tooltip-<?php echo esc_attr( $settings['eael_tooltip_hover_dir'] ) ?>"><?php echo __( $settings['eael_tooltip_hover_content'] ); ?></span>
705
  <?php elseif( $settings['eael_tooltip_type'] === 'icon' ) : ?>
706
  <span class="eael-tooltip-content"><?php if( $settings['eael_tooltip_enable_link'] === 'yes' ) : ?><a href="<?php echo esc_url( $settings['eael_tooltip_link']['url'] ); ?>" <?php echo $target; ?> <?php echo $nofollow; ?> ><?php endif; ?>
includes/Template/Betterdocs-Category-Box/Layout_2.php CHANGED
@@ -1,7 +1,6 @@
1
  <?php
2
 
3
  use \Essential_Addons_Elementor\Classes\Helper;
4
- use \Elementor\Utils;
5
  /**
6
  * Template Name: Layout 2
7
  *
@@ -33,7 +32,7 @@ if ($settings['show_icon']) {
33
  }
34
 
35
  if ($settings['show_title']) {
36
- echo '<' . Utils::validate_html_tag($settings['title_tag']) . ' class="eael-bd-cb-cat-title__layout-2"><span>' . $term->name . '</span></' . Utils::validate_html_tag($settings['title_tag']) . '>';
37
  }
38
 
39
  if ($settings['show_count']) {
1
  <?php
2
 
3
  use \Essential_Addons_Elementor\Classes\Helper;
 
4
  /**
5
  * Template Name: Layout 2
6
  *
32
  }
33
 
34
  if ($settings['show_title']) {
35
+ echo '<' . Helper::eael_validate_html_tag($settings['title_tag']) . ' class="eael-bd-cb-cat-title__layout-2"><span>' . $term->name . '</span></' . Helper::eael_validate_html_tag($settings['title_tag']) . '>';
36
  }
37
 
38
  if ($settings['show_count']) {
includes/Template/Betterdocs-Category-Box/Layout_Default.php CHANGED
@@ -1,7 +1,6 @@
1
  <?php
2
 
3
  use \Essential_Addons_Elementor\Classes\Helper;
4
- use \Elementor\Utils;
5
  /**
6
  * Template Name: Default
7
  *
@@ -33,7 +32,7 @@ echo '<a href="' . $button_link . '" class="eael-better-docs-category-box-post">
33
  }
34
 
35
  if ($settings['show_title']) {
36
- echo '<' . Utils::validate_html_tag($settings['title_tag'] ). ' class="eael-bd-cb-cat-title">' . $term->name . '</' . Utils::validate_html_tag($settings['title_tag']) . '>';
37
  }
38
 
39
  if ($settings['show_count']) {
1
  <?php
2
 
3
  use \Essential_Addons_Elementor\Classes\Helper;
 
4
  /**
5
  * Template Name: Default
6
  *
32
  }
33
 
34
  if ($settings['show_title']) {
35
+ echo '<' . Helper::eael_validate_html_tag($settings['title_tag'] ). ' class="eael-bd-cb-cat-title">' . $term->name . '</' . Helper::eael_validate_html_tag($settings['title_tag']) . '>';
36
  }
37
 
38
  if ($settings['show_count']) {
includes/Template/Betterdocs-Category-Grid/Layout_2.php CHANGED
@@ -1,7 +1,6 @@
1
  <?php
2
 
3
  use \Essential_Addons_Elementor\Classes\Helper;
4
- use \Elementor\Utils;
5
  /**
6
  * Template Name: Layout 2
7
  *
@@ -16,7 +15,7 @@ echo '<article class="eael-better-docs-category-grid-post layout-2" data-id="' .
16
  echo '<div class="eael-docs-item-count" data-content="' . Helper::get_doc_post_count($term->count, $term->term_id) . '"></div>';
17
  }
18
  if ($settings['show_title']) {
19
- echo '<' . Utils::validate_html_tag($settings['title_tag']) . ' class="eael-docs-cat-title">' . $term->name . '</' . Utils::validate_html_tag($settings['title_tag']) . '>';
20
  }
21
  echo '</div>';
22
  }
1
  <?php
2
 
3
  use \Essential_Addons_Elementor\Classes\Helper;
 
4
  /**
5
  * Template Name: Layout 2
6
  *
15
  echo '<div class="eael-docs-item-count" data-content="' . Helper::get_doc_post_count($term->count, $term->term_id) . '"></div>';
16
  }
17
  if ($settings['show_title']) {
18
+ echo '<' . Helper::eael_validate_html_tag($settings['title_tag']) . ' class="eael-docs-cat-title">' . $term->name . '</' . Helper::eael_validate_html_tag($settings['title_tag']) . '>';
19
  }
20
  echo '</div>';
21
  }
includes/Template/Betterdocs-Category-Grid/Layout_Default.php CHANGED
@@ -1,7 +1,6 @@
1
  <?php
2
 
3
  use \Essential_Addons_Elementor\Classes\Helper;
4
- use \Elementor\Utils;
5
  /**
6
  * Template Name: Default
7
  *
@@ -24,7 +23,7 @@ echo '<article class="eael-better-docs-category-grid-post" data-id="' . get_the_
24
  echo '<div class="eael-docs-cat-icon">' . $cat_icon . '</div>';
25
  }
26
  if ($settings['show_title']) {
27
- echo '<' . Utils::validate_html_tag($settings['title_tag']) . ' class="eael-docs-cat-title">' . $term->name . '</' . Utils::validate_html_tag($settings['title_tag']) . '>';
28
  }
29
  if ($settings['show_count']) {
30
  echo '<div class="eael-docs-item-count">' . Helper::get_doc_post_count($term->count, $term->term_id) . '</div>';
1
  <?php
2
 
3
  use \Essential_Addons_Elementor\Classes\Helper;
 
4
  /**
5
  * Template Name: Default
6
  *
23
  echo '<div class="eael-docs-cat-icon">' . $cat_icon . '</div>';
24
  }
25
  if ($settings['show_title']) {
26
+ echo '<' . Helper::eael_validate_html_tag($settings['title_tag']) . ' class="eael-docs-cat-title">' . $term->name . '</' . Helper::eael_validate_html_tag($settings['title_tag']) . '>';
27
  }
28
  if ($settings['show_count']) {
29
  echo '<div class="eael-docs-item-count">' . Helper::get_doc_post_count($term->count, $term->term_id) . '</div>';
includes/Template/Post-Grid/default.php CHANGED
@@ -1,7 +1,6 @@
1
  <?php
2
 
3
  use \Essential_Addons_Elementor\Classes\Helper;
4
- use \Elementor\Utils;
5
  /**
6
  * Template Name: Default
7
  */
@@ -10,7 +9,7 @@ if (!defined('ABSPATH')) {
10
  exit;
11
  } // Exit if accessed directly
12
 
13
- $title_tag = isset($settings['title_tag']) ? Utils::validate_html_tag($settings['title_tag']) : 'h2';
14
 
15
  if ($settings['eael_post_grid_preset_style'] === 'two') {
16
  echo '<article class="eael-grid-post eael-post-grid-column" data-id="' . get_the_ID() . '">
1
  <?php
2
 
3
  use \Essential_Addons_Elementor\Classes\Helper;
 
4
  /**
5
  * Template Name: Default
6
  */
9
  exit;
10
  } // Exit if accessed directly
11
 
12
+ $title_tag = isset($settings['title_tag']) ? Helper::eael_validate_html_tag($settings['title_tag']) : 'h2';
13
 
14
  if ($settings['eael_post_grid_preset_style'] === 'two') {
15
  echo '<article class="eael-grid-post eael-post-grid-column" data-id="' . get_the_ID() . '">
includes/Traits/Woo_Product_Comparable.php CHANGED
@@ -9,9 +9,10 @@ use Elementor\Group_Control_Box_Shadow;
9
  use Elementor\Group_Control_Typography;
10
  use Elementor\Icons_Manager;
11
  use Elementor\Repeater;
12
- use Elementor\Utils;
13
  use WC_Product;
14
 
 
 
15
  if ( ! defined( 'ABSPATH' ) ) {
16
  exit();
17
  }
@@ -1742,7 +1743,7 @@ trait Woo_Product_Comparable {
1742
  extract( $options );
1743
  $not_found_text = isset( $ds['no_products_found_text'] ) ? $ds['no_products_found_text'] : '';
1744
  $title = isset( $ds['table_title'] ) ? $ds['table_title'] : '';
1745
- $title_tag = isset( $ds['table_title_tag'] ) ? Utils::validate_html_tag($ds['table_title_tag']) : 'h1';
1746
  $ribbon = isset( $ds['ribbon'] ) ? $ds['ribbon'] : '';
1747
  $repeat_price = isset( $ds['repeat_price'] ) ? $ds['repeat_price'] : '';
1748
  $repeat_add_to_cart = isset( $ds['repeat_add_to_cart'] ) ? $ds['repeat_add_to_cart'] : '';
9
  use Elementor\Group_Control_Typography;
10
  use Elementor\Icons_Manager;
11
  use Elementor\Repeater;
 
12
  use WC_Product;
13
 
14
+
15
+ use \Essential_Addons_Elementor\Classes\Helper;
16
  if ( ! defined( 'ABSPATH' ) ) {
17
  exit();
18
  }
1743
  extract( $options );
1744
  $not_found_text = isset( $ds['no_products_found_text'] ) ? $ds['no_products_found_text'] : '';
1745
  $title = isset( $ds['table_title'] ) ? $ds['table_title'] : '';
1746
+ $title_tag = isset( $ds['table_title_tag'] ) ? Helper::eael_validate_html_tag($ds['table_title_tag']) : 'h1';
1747
  $ribbon = isset( $ds['ribbon'] ) ? $ds['ribbon'] : '';
1748
  $repeat_price = isset( $ds['repeat_price'] ) ? $ds['repeat_price'] : '';
1749
  $repeat_add_to_cart = isset( $ds['repeat_add_to_cart'] ) ? $ds['repeat_add_to_cart'] : '';
languages/essential-addons-for-elementor-lite.pot CHANGED
@@ -13,47 +13,47 @@ msgstr ""
13
  "X-Poedit-SourceCharset: UTF-8\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
 
16
- #: ../includes/Classes/Helper.php:169, ../includes/Elements/Adv_Accordion.php:293, ../includes/Elements/Adv_Tabs.php:261, ../includes/Elements/Contact_Form_7.php:270, ../includes/Elements/Content_Ticker.php:349, ../includes/Elements/Countdown.php:467, ../includes/Elements/Creative_Button.php:186, ../includes/Elements/Cta_Box.php:346, ../includes/Elements/Data_Table.php:450, ../includes/Elements/Dual_Color_Header.php:212, ../includes/Elements/Fancy_Text.php:267, ../includes/Elements/Filterable_Gallery.php:792, ../includes/Elements/Flip_Box.php:726, ../includes/Elements/Info_Box.php:492, ../includes/Elements/Pricing_Table.php:702, ../includes/Elements/Progress_Bar.php:269, ../includes/Elements/Team_Member.php:236, ../includes/Elements/Testimonial.php:213, ../includes/Elements/Tooltip.php:503, ../includes/Elements/Twitter_Feed.php:284, ../includes/Elements/WeForms.php:110
17
  msgid "Go Premium for More Features"
18
  msgstr ""
19
 
20
- #: ../includes/Classes/Helper.php:176, ../includes/Elements/Adv_Accordion.php:300, ../includes/Elements/Adv_Tabs.php:268, ../includes/Elements/Contact_Form_7.php:277, ../includes/Elements/Content_Ticker.php:356, ../includes/Elements/Countdown.php:474, ../includes/Elements/Creative_Button.php:193, ../includes/Elements/Cta_Box.php:353, ../includes/Elements/Data_Table.php:457, ../includes/Elements/Dual_Color_Header.php:219, ../includes/Elements/Fancy_Text.php:274, ../includes/Elements/Filterable_Gallery.php:799, ../includes/Elements/Flip_Box.php:733, ../includes/Elements/Info_Box.php:499, ../includes/Elements/Pricing_Table.php:709, ../includes/Elements/Progress_Bar.php:276, ../includes/Elements/Team_Member.php:243, ../includes/Elements/Testimonial.php:220, ../includes/Elements/Tooltip.php:510, ../includes/Elements/Twitter_Feed.php:291, ../includes/Elements/WeForms.php:117
21
  msgid "Unlock more possibilities"
22
  msgstr ""
23
 
24
- #: ../includes/Classes/Helper.php:393
25
  msgid "Select a Contact Form"
26
  msgstr ""
27
 
28
- #: ../includes/Classes/Helper.php:399, ../includes/Classes/Helper.php:425, ../includes/Classes/Helper.php:452, ../includes/Classes/Helper.php:479, ../includes/Classes/Helper.php:504, ../includes/Classes/Helper.php:534, ../includes/Classes/Helper.php:560
29
  msgid "Create a Form First"
30
  msgstr ""
31
 
32
- #: ../includes/Classes/Helper.php:419
33
  msgid "Select Gravity Form"
34
  msgstr ""
35
 
36
- #: ../includes/Classes/Helper.php:447, ../includes/Elements/WeForms.php:95
37
  msgid "Select weForm"
38
  msgstr ""
39
 
40
- #: ../includes/Classes/Helper.php:472
41
  msgid "Select Ninja Form"
42
  msgstr ""
43
 
44
- #: ../includes/Classes/Helper.php:498
45
  msgid "Select Caldera Form"
46
  msgstr ""
47
 
48
- #: ../includes/Classes/Helper.php:528
49
  msgid "Select a WPForm"
50
  msgstr ""
51
 
52
- #: ../includes/Classes/Helper.php:555
53
  msgid "Select a Fluent Form"
54
  msgstr ""
55
 
56
- #: ../includes/Classes/Helper.php:881, ../includes/Template/Content/Product_Grid.php:63, ../includes/Template/Content/Product_Grid.php:29, ../includes/Template/Eicon-Woocommerce/default.php:265, ../includes/Template/Eicon-Woocommerce/default.php:204, ../includes/Template/Eicon-Woocommerce/default.php:98, ../includes/Template/Eicon-Woocommerce/default.php:82, ../includes/Template/Eicon-Woocommerce/default.php:45
57
  msgid "Sale!"
58
  msgstr ""
59
 
@@ -210,7 +210,7 @@ msgid ""
210
  " option."
211
  msgstr ""
212
 
213
- #: ../includes/Classes/WPDeveloper_Setup_Wizard.php:215, ../includes/Elements/Caldera_Forms.php:1164, ../includes/Elements/Contact_Form_7.php:1193, ../includes/Elements/Content_Ticker.php:92, ../includes/Elements/FluentForm.php:1484, ../includes/Elements/Formstack.php:1400, ../includes/Elements/GravityForms.php:1752, ../includes/Elements/Login_Register.php:271, ../includes/Elements/Login_Register.php:431, ../includes/Elements/Login_Register.php:528, ../includes/Elements/Login_Register.php:815, ../includes/Elements/Login_Register.php:1222, ../includes/Elements/Login_Register.php:1328, ../includes/Elements/Login_Register.php:1396, ../includes/Elements/Login_Register.php:1522, ../includes/Elements/Login_Register.php:1779, ../includes/Elements/Login_Register.php:1923, ../includes/Elements/Login_Register.php:2073, ../includes/Elements/Login_Register.php:2216, ../includes/Elements/Login_Register.php:2307, ../includes/Elements/Login_Register.php:2405, ../includes/Elements/Login_Register.php:2607, ../includes/Elements/Login_Register.php:2652, ../includes/Elements/Login_Register.php:2684, ../includes/Elements/Login_Register.php:2918, ../includes/Elements/Login_Register.php:3080, ../includes/Elements/Login_Register.php:3379, ../includes/Elements/NinjaForms.php:1328, ../includes/Elements/WpForms.php:1168, ../includes/Traits/Woo_Product_Comparable.php:407, ../includes/Traits/Woo_Product_Comparable.php:521, ../includes/Traits/Woo_Product_Comparable.php:612, ../includes/Traits/Woo_Product_Comparable.php:681
214
  msgid "Custom"
215
  msgstr ""
216
 
@@ -335,11 +335,11 @@ msgstr ""
335
  msgid "Info Box"
336
  msgstr ""
337
 
338
- #: ../includes/Classes/WPDeveloper_Setup_Wizard.php:562, ../includes/Elements/Dual_Color_Header.php:26, ../includes/templates/admin/elements.php:39
339
  msgid "Dual Color Heading"
340
  msgstr ""
341
 
342
- #: ../includes/Classes/WPDeveloper_Setup_Wizard.php:567, ../includes/Elements/Pricing_Table.php:1468, ../includes/Elements/Tooltip.php:23, ../includes/templates/admin/elements.php:45
343
  msgid "Tooltip"
344
  msgstr ""
345
 
@@ -351,7 +351,7 @@ msgstr ""
351
  msgid "Advanced Tabs"
352
  msgstr ""
353
 
354
- #: ../includes/Classes/WPDeveloper_Setup_Wizard.php:582, ../includes/Elements/Feature_List.php:25, ../includes/Elements/Pricing_Table.php:1209, ../includes/templates/admin/elements.php:63
355
  msgid "Feature List"
356
  msgstr ""
357
 
@@ -395,15 +395,15 @@ msgstr ""
395
  msgid "Fancy Text"
396
  msgstr ""
397
 
398
- #: ../includes/Classes/WPDeveloper_Setup_Wizard.php:641, ../includes/Elements/Filterable_Gallery.php:29, ../includes/templates/admin/elements.php:217
399
  msgid "Filterable Gallery"
400
  msgstr ""
401
 
402
- #: ../includes/Classes/WPDeveloper_Setup_Wizard.php:646, ../includes/Elements/Image_Accordion.php:25, ../includes/templates/admin/elements.php:223
403
  msgid "Image Accordion"
404
  msgstr ""
405
 
406
- #: ../includes/Classes/WPDeveloper_Setup_Wizard.php:651, ../includes/Elements/Progress_Bar.php:26, ../includes/Elements/Progress_Bar.php:125, ../includes/templates/admin/elements.php:229
407
  msgid "Progress Bar"
408
  msgstr ""
409
 
@@ -475,7 +475,7 @@ msgstr ""
475
  msgid "BetterDocs Category Grid"
476
  msgstr ""
477
 
478
- #: ../includes/Classes/WPDeveloper_Setup_Wizard.php:738, ../includes/Elements/Betterdocs_Category_Box.php:34, ../includes/templates/admin/elements.php:469
479
  msgid "BetterDocs Category Box"
480
  msgstr ""
481
 
@@ -563,7 +563,7 @@ msgstr ""
563
  msgid "Sort"
564
  msgstr ""
565
 
566
- #: ../includes/Elements/Advanced_Data_Table.php:151, ../includes/Elements/Caldera_Forms.php:162, ../includes/Elements/Caldera_Forms.php:895, ../includes/Elements/Contact_Form_7.php:900, ../includes/Elements/Filterable_Gallery.php:2280, ../includes/Elements/FluentForm.php:175, ../includes/Elements/FluentForm.php:861, ../includes/Elements/Formstack.php:244, ../includes/Elements/Formstack.php:1090, ../includes/Elements/GravityForms.php:231, ../includes/Elements/GravityForms.php:1165, ../includes/Elements/Login_Register.php:1002, ../includes/Elements/NinjaForms.php:183, ../includes/Elements/NinjaForms.php:939, ../includes/Elements/WpForms.php:190, ../includes/Elements/WpForms.php:896
567
  msgid "Placeholder"
568
  msgstr ""
569
 
@@ -575,7 +575,7 @@ msgstr ""
575
  msgid "Pagination Type"
576
  msgstr ""
577
 
578
- #: ../includes/Elements/Advanced_Data_Table.php:179, ../includes/Elements/Advanced_Data_Table.php:1305, ../includes/Elements/Betterdocs_Category_Grid.php:1289, ../includes/Elements/Event_Calendar.php:720, ../includes/Elements/Flip_Box.php:650, ../includes/Elements/FluentForm.php:1913, ../includes/Elements/Formstack.php:1773, ../includes/Elements/Info_Box.php:349, ../includes/Elements/Pricing_Table.php:506, ../includes/Elements/Pricing_Table.php:1815, ../includes/Elements/Product_Grid.php:1728, ../includes/Elements/Woo_Checkout.php:1287, ../includes/Elements/Woo_Checkout.php:1585, ../includes/Elements/Woo_Checkout.php:2358, ../includes/Traits/Woo_Product_Comparable.php:1198, ../includes/Traits/Woo_Product_Comparable.php:1248
579
  msgid "Button"
580
  msgstr ""
581
 
@@ -611,19 +611,19 @@ msgstr ""
611
  msgid "Table"
612
  msgstr ""
613
 
614
- #: ../includes/Elements/Advanced_Data_Table.php:284, ../includes/Elements/Advanced_Data_Table.php:845, ../includes/Elements/Advanced_Data_Table.php:1040, ../includes/Elements/Betterdocs_Search_Form.php:312, ../includes/Elements/Caldera_Forms.php:1159, ../includes/Elements/Caldera_Forms.php:1173, ../includes/Elements/Contact_Form_7.php:1188, ../includes/Elements/Contact_Form_7.php:1202, ../includes/Elements/Creative_Button.php:464, ../includes/Elements/Data_Table.php:489, ../includes/Elements/Data_Table.php:1044, ../includes/Elements/Dual_Color_Header.php:677, ../includes/Elements/Dual_Color_Header.php:757, ../includes/Elements/Filterable_Gallery.php:2145, ../includes/Elements/Filterable_Gallery.php:2303, ../includes/Elements/FluentForm.php:1479, ../includes/Elements/FluentForm.php:1493, ../includes/Elements/Formstack.php:1395, ../includes/Elements/Formstack.php:1409, ../includes/Elements/GravityForms.php:1631, ../includes/Elements/GravityForms.php:1747, ../includes/Elements/GravityForms.php:1761, ../includes/Elements/GravityForms.php:1994, ../includes/Elements/Login_Register.php:1401, ../includes/Elements/Login_Register.php:1929, ../includes/Elements/NinjaForms.php:1323, ../includes/Elements/NinjaForms.php:1337, ../includes/Elements/Progress_Bar.php:354, ../includes/Elements/Sticky_Video.php:441, ../includes/Elements/Sticky_Video.php:525, ../includes/Elements/Twitter_Feed.php:780, ../includes/Elements/WpForms.php:1163, ../includes/Elements/WpForms.php:1177, ../includes/Extensions/Table_of_Content.php:384, ../includes/Traits/Woo_Product_Comparable.php:294, ../includes/Traits/Woo_Product_Comparable.php:956, ../includes/Traits/Woo_Product_Comparable.php:1105
615
  msgid "Width"
616
  msgstr ""
617
 
618
- #: ../includes/Elements/Advanced_Data_Table.php:321, ../includes/Elements/Advanced_Data_Table.php:989, ../includes/Elements/Advanced_Data_Table.php:1187, ../includes/Elements/Advanced_Data_Table.php:1259, ../includes/Elements/Advanced_Data_Table.php:1387, ../includes/Elements/Adv_Accordion.php:354, ../includes/Elements/Adv_Accordion.php:561, ../includes/Elements/Adv_Accordion.php:634, ../includes/Elements/Adv_Accordion.php:707, ../includes/Elements/Adv_Accordion.php:804, ../includes/Elements/Adv_Accordion.php:928, ../includes/Elements/Adv_Accordion.php:975, ../includes/Elements/Adv_Accordion.php:1022, ../includes/Elements/Adv_Tabs.php:323, ../includes/Elements/Adv_Tabs.php:513, ../includes/Elements/Adv_Tabs.php:579, ../includes/Elements/Adv_Tabs.php:648, ../includes/Elements/Adv_Tabs.php:743, ../includes/Elements/Betterdocs_Category_Box.php:300, ../includes/Elements/Betterdocs_Category_Box.php:368, ../includes/Elements/Betterdocs_Category_Box.php:489, ../includes/Elements/Betterdocs_Category_Box.php:565, ../includes/Elements/Betterdocs_Category_Box.php:885, ../includes/Elements/Betterdocs_Category_Box.php:990, ../includes/Elements/Betterdocs_Category_Grid.php:341, ../includes/Elements/Betterdocs_Category_Grid.php:389, ../includes/Elements/Betterdocs_Category_Grid.php:474, ../includes/Elements/Betterdocs_Category_Grid.php:515, ../includes/Elements/Betterdocs_Category_Grid.php:640, ../includes/Elements/Betterdocs_Category_Grid.php:694, ../includes/Elements/Betterdocs_Category_Grid.php:843, ../includes/Elements/Betterdocs_Category_Grid.php:940, ../includes/Elements/Betterdocs_Category_Grid.php:1185, ../includes/Elements/Betterdocs_Category_Grid.php:1385, ../includes/Elements/Betterdocs_Category_Grid.php:1484, ../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:617, ../includes/Elements/Caldera_Forms.php:813, ../includes/Elements/Caldera_Forms.php:1229, ../includes/Elements/Caldera_Forms.php:1387, ../includes/Elements/Contact_Form_7.php:711, ../includes/Elements/Contact_Form_7.php:776, ../includes/Elements/Contact_Form_7.php:1258, ../includes/Elements/Contact_Form_7.php:1495, ../includes/Elements/Contact_Form_7.php:1570, ../includes/Elements/Contact_Form_7.php:1647, ../includes/Elements/Content_Ticker.php:665, ../includes/Elements/Countdown.php:619, ../includes/Elements/Cta_Box.php:463, ../includes/Elements/Cta_Box.php:740, ../includes/Elements/Cta_Box.php:927, ../includes/Elements/Data_Table.php:620, ../includes/Elements/Data_Table.php:659, ../includes/Elements/Data_Table.php:851, ../includes/Elements/Data_Table.php:1111, ../includes/Elements/Dual_Color_Header.php:345, ../includes/Elements/Event_Calendar.php:771, ../includes/Elements/Event_Calendar.php:838, ../includes/Elements/Event_Calendar.php:892, ../includes/Elements/Event_Calendar.php:1564, ../includes/Elements/Event_Calendar.php:1635, ../includes/Elements/Facebook_Feed.php:440, ../includes/Elements/Filterable_Gallery.php:868, ../includes/Elements/Filterable_Gallery.php:981, ../includes/Elements/Filterable_Gallery.php:1047, ../includes/Elements/Filterable_Gallery.php:1127, ../includes/Elements/Filterable_Gallery.php:1274, ../includes/Elements/Filterable_Gallery.php:1331, ../includes/Elements/Filterable_Gallery.php:1550, ../includes/Elements/Filterable_Gallery.php:1825, ../includes/Elements/Filterable_Gallery.php:1886, ../includes/Elements/Filterable_Gallery.php:2397, ../includes/Elements/Filterable_Gallery.php:2514, ../includes/Elements/Flip_Box.php:987, ../includes/Elements/Flip_Box.php:1100, ../includes/Elements/FluentForm.php:636, ../includes/Elements/FluentForm.php:832, ../includes/Elements/FluentForm.php:1549, ../includes/Elements/FluentForm.php:1826, ../includes/Elements/FluentForm.php:1953, ../includes/Elements/FluentForm.php:2071, ../includes/Elements/Formstack.php:865, ../includes/Elements/Formstack.php:1061, ../includes/Elements/Formstack.php:1465, ../includes/Elements/Formstack.php:1686, ../includes/Elements/Formstack.php:1815, ../includes/Elements/GravityForms.php:835, ../includes/Elements/GravityForms.php:899, ../includes/Elements/GravityForms.php:1655, ../includes/Elements/GravityForms.php:1824, ../includes/Elements/GravityForms.php:2051, ../includes/Elements/Image_Accordion.php:353, ../includes/Elements/Image_Accordion.php:463, ../includes/Elements/Info_Box.php:568, ../includes/Elements/Info_Box.php:623, ../includes/Elements/Info_Box.php:817, ../includes/Elements/Info_Box.php:897, ../includes/Elements/Info_Box.php:1048, ../includes/Elements/Info_Box.php:1128, ../includes/Elements/Login_Register.php:2681, ../includes/Elements/NinjaForms.php:659, ../includes/Elements/NinjaForms.php:857, ../includes/Elements/NinjaForms.php:1397, ../includes/Elements/Post_Grid.php:282, ../includes/Elements/Pricing_Table.php:1766, ../includes/Elements/Pricing_Table.php:1932, ../includes/Elements/Product_Grid.php:2169, ../includes/Elements/Team_Member.php:412, ../includes/Elements/Team_Member.php:500, ../includes/Elements/Testimonial.php:434, ../includes/Elements/Tooltip.php:429, ../includes/Elements/Tooltip.php:472, ../includes/Elements/Twitter_Feed.php:437, ../includes/Elements/Twitter_Feed.php:527, ../includes/Elements/Twitter_Feed.php:844, ../includes/Elements/Woo_Checkout.php:1507, ../includes/Elements/Woo_Checkout.php:1753, ../includes/Elements/WpForms.php:628, ../includes/Elements/WpForms.php:814, ../includes/Elements/WpForms.php:1233, ../includes/Extensions/Table_of_Content.php:498, ../includes/Traits/Controls.php:1210, ../includes/Traits/Controls.php:1264, ../includes/Traits/Controls.php:1394
619
  msgid "Border"
620
  msgstr ""
621
 
622
- #: ../includes/Elements/Advanced_Data_Table.php:347, ../includes/Elements/Advanced_Data_Table.php:1015, ../includes/Elements/Advanced_Data_Table.php:1213, ../includes/Elements/Advanced_Data_Table.php:1285, ../includes/Elements/Advanced_Data_Table.php:1409, ../includes/Elements/Adv_Accordion.php:361, ../includes/Elements/Adv_Accordion.php:568, ../includes/Elements/Adv_Accordion.php:641, ../includes/Elements/Adv_Accordion.php:714, ../includes/Elements/Adv_Tabs.php:331, ../includes/Elements/Adv_Tabs.php:520, ../includes/Elements/Adv_Tabs.php:586, ../includes/Elements/Adv_Tabs.php:655, ../includes/Elements/Adv_Tabs.php:750, ../includes/Elements/Betterdocs_Category_Box.php:308, ../includes/Elements/Betterdocs_Category_Box.php:376, ../includes/Elements/Betterdocs_Category_Box.php:497, ../includes/Elements/Betterdocs_Category_Box.php:574, ../includes/Elements/Betterdocs_Category_Box.php:896, ../includes/Elements/Betterdocs_Category_Box.php:1001, ../includes/Elements/Betterdocs_Category_Grid.php:349, ../includes/Elements/Betterdocs_Category_Grid.php:397, ../includes/Elements/Betterdocs_Category_Grid.php:482, ../includes/Elements/Betterdocs_Category_Grid.php:523, ../includes/Elements/Betterdocs_Category_Grid.php:648, ../includes/Elements/Betterdocs_Category_Grid.php:702, ../includes/Elements/Betterdocs_Category_Grid.php:854, ../includes/Elements/Betterdocs_Category_Grid.php:951, ../includes/Elements/Betterdocs_Category_Grid.php:1393, ../includes/Elements/Betterdocs_Category_Grid.php:1492, ../includes/Elements/Betterdocs_Search_Form.php:198, ../includes/Elements/Caldera_Forms.php:480, ../includes/Elements/Caldera_Forms.php:628, ../includes/Elements/Caldera_Forms.php:1046, ../includes/Elements/Caldera_Forms.php:1072, ../includes/Elements/Caldera_Forms.php:1239, ../includes/Elements/Contact_Form_7.php:396, ../includes/Elements/Contact_Form_7.php:722, ../includes/Elements/Contact_Form_7.php:1073, ../includes/Elements/Contact_Form_7.php:1099, ../includes/Elements/Contact_Form_7.php:1267, ../includes/Elements/Content_Ticker.php:444, ../includes/Elements/Content_Ticker.php:518, ../includes/Elements/Content_Ticker.php:675, ../includes/Elements/Countdown.php:627, ../includes/Elements/Creative_Button.php:333, ../includes/Elements/Cta_Box.php:471, ../includes/Elements/Cta_Box.php:748, ../includes/Elements/Cta_Box.php:935, ../includes/Elements/Dual_Color_Header.php:353, ../includes/Elements/Event_Calendar.php:779, ../includes/Elements/Event_Calendar.php:846, ../includes/Elements/Event_Calendar.php:900, ../includes/Elements/Event_Calendar.php:1136, ../includes/Elements/Event_Calendar.php:1304, ../includes/Elements/Event_Calendar.php:1572, ../includes/Elements/Event_Calendar.php:1643, ../includes/Elements/Facebook_Feed.php:465, ../includes/Elements/Facebook_Feed.php:525, ../includes/Elements/Fancy_Text.php:518, ../includes/Elements/Feature_List.php:638, ../includes/Elements/Filterable_Gallery.php:876, ../includes/Elements/Filterable_Gallery.php:989, ../includes/Elements/Filterable_Gallery.php:1055, ../includes/Elements/Filterable_Gallery.php:1135, ../includes/Elements/Filterable_Gallery.php:1339, ../includes/Elements/Filterable_Gallery.php:1833, ../includes/Elements/Filterable_Gallery.php:1894, ../includes/Elements/Filterable_Gallery.php:2059, ../includes/Elements/Filterable_Gallery.php:2188, ../includes/Elements/Filterable_Gallery.php:2323, ../includes/Elements/Filterable_Gallery.php:2419, ../includes/Elements/Filterable_Gallery.php:2528, ../includes/Elements/Flip_Box.php:825, ../includes/Elements/Flip_Box.php:886, ../includes/Elements/Flip_Box.php:1010, ../includes/Elements/Flip_Box.php:1123, ../includes/Elements/Flip_Box.php:1383, ../includes/Elements/FluentForm.php:499, ../includes/Elements/FluentForm.php:647, ../includes/Elements/FluentForm.php:1012, ../includes/Elements/FluentForm.php:1038, ../includes/Elements/FluentForm.php:1559, ../includes/Elements/FluentForm.php:1837, ../includes/Elements/FluentForm.php:1961, ../includes/Elements/FluentForm.php:2015, ../includes/Elements/Formstack.php:399, ../includes/Elements/Formstack.php:876, ../includes/Elements/Formstack.php:1202, ../includes/Elements/Formstack.php:1228, ../includes/Elements/Formstack.php:1475, ../includes/Elements/Formstack.php:1697, ../includes/Elements/Formstack.php:1823, ../includes/Elements/Formstack.php:1879, ../includes/Elements/GravityForms.php:436, ../includes/Elements/GravityForms.php:846, ../includes/Elements/GravityForms.php:1316, ../includes/Elements/GravityForms.php:1512, ../includes/Elements/GravityForms.php:1665, ../includes/Elements/GravityForms.php:1834, ../includes/Elements/GravityForms.php:2061, ../includes/Elements/Image_Accordion.php:361, ../includes/Elements/Image_Accordion.php:451, ../includes/Elements/Info_Box.php:1210, ../includes/Elements/Login_Register.php:1482, ../includes/Elements/Login_Register.php:1717, ../includes/Elements/Login_Register.php:1891, ../includes/Elements/Login_Register.php:2047, ../includes/Elements/Login_Register.php:2187, ../includes/Elements/Login_Register.php:2281, ../includes/Elements/Login_Register.php:2372, ../includes/Elements/Login_Register.php:2546, ../includes/Elements/Login_Register.php:2583, ../includes/Elements/Login_Register.php:2697, ../includes/Elements/Login_Register.php:3207, ../includes/Elements/Login_Register.php:3244, ../includes/Elements/Login_Register.php:3528, ../includes/Elements/Login_Register.php:3565, ../includes/Elements/NinjaForms.php:369, ../includes/Elements/NinjaForms.php:670, ../includes/Elements/NinjaForms.php:1094, ../includes/Elements/NinjaForms.php:1121, ../includes/Elements/NinjaForms.php:1407, ../includes/Elements/Post_Grid.php:290, ../includes/Elements/Pricing_Table.php:786, ../includes/Elements/Pricing_Table.php:1540, ../includes/Elements/Pricing_Table.php:1789, ../includes/Elements/Pricing_Table.php:1940, ../includes/Elements/Product_Grid.php:906, ../includes/Elements/Product_Grid.php:1913, ../includes/Elements/Product_Grid.php:2269, ../includes/Elements/Product_Grid.php:2606, ../includes/Elements/Product_Grid.php:2801, ../includes/Elements/Product_Grid.php:2833, ../includes/Elements/Sticky_Video.php:591, ../includes/Elements/Team_Member.php:420, ../includes/Elements/Team_Member.php:519, ../includes/Elements/Team_Member.php:766, ../includes/Elements/Testimonial.php:453, ../includes/Elements/Tooltip.php:489, ../includes/Elements/Twitter_Feed.php:445, ../includes/Elements/Twitter_Feed.php:538, ../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:647, ../includes/Elements/Woo_Checkout.php:796, ../includes/Elements/Woo_Checkout.php:992, ../includes/Elements/Woo_Checkout.php:1240, ../includes/Elements/Woo_Checkout.php:1393, ../includes/Elements/Woo_Checkout.php:1516, ../includes/Elements/Woo_Checkout.php:1691, ../includes/Elements/Woo_Checkout.php:1899, ../includes/Elements/Woo_Checkout.php:2101, ../includes/Elements/Woo_Checkout.php:2195, ../includes/Elements/Woo_Checkout.php:2475, ../includes/Elements/WpForms.php:338, ../includes/Elements/WpForms.php:639, ../includes/Elements/WpForms.php:1047, ../includes/Elements/WpForms.php:1073, ../includes/Elements/WpForms.php:1243, ../includes/Extensions/Table_of_Content.php:521, ../includes/Extensions/Table_of_Content.php:736, ../includes/Traits/Controls.php:1218, ../includes/Traits/Controls.php:1272, ../includes/Traits/Controls.php:1402, ../includes/Traits/Woo_Product_Comparable.php:355, ../includes/Traits/Woo_Product_Comparable.php:500, ../includes/Traits/Woo_Product_Comparable.php:1381
623
  msgid "Border Radius"
624
  msgstr ""
625
 
626
- #: ../includes/Elements/Advanced_Data_Table.php:360, ../includes/Elements/Advanced_Data_Table.php:1423, ../includes/Elements/Betterdocs_Category_Grid.php:331, ../includes/Elements/Betterdocs_Category_Grid.php:379, ../includes/Elements/Event_Calendar.php:658, ../includes/Elements/Event_Calendar.php:1596, ../includes/Elements/Event_Calendar.php:1670, ../includes/Elements/Product_Grid.php:866, ../includes/Elements/Product_Grid.php:894, ../includes/Elements/Product_Grid.php:2825, ../includes/Elements/Product_Grid.php:2860, ../includes/Elements/Progress_Bar.php:650, ../includes/Elements/Twitter_Feed.php:640, ../includes/Elements/Twitter_Feed.php:852, ../includes/Extensions/Table_of_Content.php:510, ../includes/Extensions/Table_of_Content.php:755, ../includes/Traits/Woo_Product_Comparable.php:1405
627
  msgid "Box Shadow"
628
  msgstr ""
629
 
@@ -631,31 +631,31 @@ msgstr ""
631
  msgid "Head"
632
  msgstr ""
633
 
634
- #: ../includes/Elements/Advanced_Data_Table.php:379, ../includes/Elements/Advanced_Data_Table.php:498, ../includes/Elements/Advanced_Data_Table.php:956, ../includes/Elements/Advanced_Data_Table.php:1106, ../includes/Elements/Advanced_Data_Table.php:1314, ../includes/Elements/Caldera_Forms.php:286, ../includes/Elements/Caldera_Forms.php:347, ../includes/Elements/Caldera_Forms.php:535, ../includes/Elements/Caldera_Forms.php:773, ../includes/Elements/Caldera_Forms.php:862, ../includes/Elements/Caldera_Forms.php:1283, ../includes/Elements/Caldera_Forms.php:1398, ../includes/Elements/Contact_Form_7.php:487, ../includes/Elements/Contact_Form_7.php:518, ../includes/Elements/Contact_Form_7.php:735, ../includes/Elements/Contact_Form_7.php:883, ../includes/Elements/Contact_Form_7.php:935, ../includes/Elements/Contact_Form_7.php:1311, ../includes/Elements/Contact_Form_7.php:1556, ../includes/Elements/Contact_Form_7.php:1613, ../includes/Elements/Event_Calendar.php:700, ../includes/Elements/Event_Calendar.php:730, ../includes/Elements/Event_Calendar.php:944, ../includes/Elements/Event_Calendar.php:1019, ../includes/Elements/Event_Calendar.php:1053, ../includes/Elements/Event_Calendar.php:1296, ../includes/Elements/Event_Calendar.php:1359, ../includes/Elements/Event_Calendar.php:1388, ../includes/Elements/Event_Calendar.php:1456, ../includes/Elements/Event_Calendar.php:1614, ../includes/Elements/Filterable_Gallery.php:1961, ../includes/Elements/Filterable_Gallery.php:2006, ../includes/Elements/Filterable_Gallery.php:2040, ../includes/Elements/Filterable_Gallery.php:2095, ../includes/Elements/Filterable_Gallery.php:2387, ../includes/Elements/Filterable_Gallery.php:2545, ../includes/Elements/FluentForm.php:293, ../includes/Elements/FluentForm.php:354, ../includes/Elements/FluentForm.php:554, ../includes/Elements/FluentForm.php:792, ../includes/Elements/FluentForm.php:1119, ../includes/Elements/FluentForm.php:1174, ../includes/Elements/FluentForm.php:1278, ../includes/Elements/FluentForm.php:1364, ../includes/Elements/FluentForm.php:1430, ../includes/Elements/FluentForm.php:1603, ../includes/Elements/FluentForm.php:1736, ../includes/Elements/FluentForm.php:1933, ../includes/Elements/FluentForm.php:2082, ../includes/Elements/FluentForm.php:2131, ../includes/Elements/Formstack.php:494, ../includes/Elements/Formstack.php:543, ../includes/Elements/Formstack.php:597, ../includes/Elements/Formstack.php:671, ../includes/Elements/Formstack.php:726, ../includes/Elements/Formstack.php:809, ../includes/Elements/Formstack.php:1021, ../includes/Elements/Formstack.php:1519, ../includes/Elements/Formstack.php:1652, ../includes/Elements/Formstack.php:1793, ../includes/Elements/Formstack.php:1953, ../includes/Elements/GravityForms.php:528, ../includes/Elements/GravityForms.php:559, ../includes/Elements/GravityForms.php:600, ../includes/Elements/GravityForms.php:859, ../includes/Elements/GravityForms.php:948, ../includes/Elements/GravityForms.php:1002, ../includes/Elements/GravityForms.php:1138, ../includes/Elements/GravityForms.php:1598, ../includes/Elements/GravityForms.php:1933, ../includes/Elements/GravityForms.php:2154, ../includes/Elements/GravityForms.php:2347, ../includes/Elements/NinjaForms.php:465, ../includes/Elements/NinjaForms.php:514, ../includes/Elements/NinjaForms.php:574, ../includes/Elements/NinjaForms.php:817, ../includes/Elements/NinjaForms.php:906, ../includes/Elements/NinjaForms.php:1500, ../includes/Elements/NinjaForms.php:1545, ../includes/Elements/NinjaForms.php:1599, ../includes/Elements/Post_Grid.php:371, ../includes/Elements/Post_Grid.php:471, ../includes/Elements/Post_Grid.php:483, ../includes/Elements/Post_Grid.php:625, ../includes/Elements/Post_Grid.php:837, ../includes/Elements/Post_Timeline.php:292, ../includes/Elements/Product_Grid.php:2329, ../includes/Elements/Product_Grid.php:2359, ../includes/Elements/Product_Grid.php:2401, ../includes/Elements/Product_Grid.php:2467, ../includes/Elements/Product_Grid.php:2506, ../includes/Elements/Product_Grid.php:2563, ../includes/Elements/Product_Grid.php:2680, ../includes/Elements/Progress_Bar.php:670, ../includes/Elements/Woo_Checkout.php:1296, ../includes/Elements/Woo_Checkout.php:1594, ../includes/Elements/WpForms.php:432, ../includes/Elements/WpForms.php:481, ../includes/Elements/WpForms.php:545, ../includes/Elements/WpForms.php:785, ../includes/Elements/WpForms.php:863, ../includes/Elements/WpForms.php:1287, ../includes/Traits/Woo_Product_Comparable.php:1064, ../includes/Traits/Woo_Product_Comparable.php:1182
635
  msgid "Typography"
636
  msgstr ""
637
 
638
- #: ../includes/Elements/Advanced_Data_Table.php:387, ../includes/Elements/Advanced_Data_Table.php:506, ../includes/Elements/Betterdocs_Category_Box.php:763, ../includes/Elements/Betterdocs_Category_Grid.php:1508, ../includes/Elements/Countdown.php:1025, ../includes/Elements/Login_Register.php:2486
639
  msgid "Text Alignment"
640
  msgstr ""
641
 
642
- #: ../includes/Elements/Advanced_Data_Table.php:391, ../includes/Elements/Advanced_Data_Table.php:510, ../includes/Elements/Advanced_Data_Table.php:936, ../includes/Elements/Advanced_Data_Table.php:1083, ../includes/Elements/Adv_Accordion.php:138, ../includes/Elements/Betterdocs_Category_Box.php:767, ../includes/Elements/Betterdocs_Category_Grid.php:1512, ../includes/Elements/Betterdocs_Category_Grid.php:1537, ../includes/Elements/Caldera_Forms.php:233, ../includes/Elements/Caldera_Forms.php:415, ../includes/Elements/Caldera_Forms.php:561, ../includes/Elements/Caldera_Forms.php:1136, ../includes/Elements/Contact_Form_7.php:331, ../includes/Elements/Contact_Form_7.php:443, ../includes/Elements/Contact_Form_7.php:1163, ../includes/Elements/Content_Ticker.php:333, ../includes/Elements/Countdown.php:118, ../includes/Elements/Countdown.php:1030, ../includes/Elements/Creative_Button.php:442, ../includes/Elements/Cta_Box.php:102, ../includes/Elements/Data_Table.php:521, ../includes/Elements/Data_Table.php:746, ../includes/Elements/Data_Table.php:995, ../includes/Elements/Dual_Color_Header.php:189, ../includes/Elements/Event_Calendar.php:968, ../includes/Elements/Event_Calendar.php:1100, ../includes/Elements/Fancy_Text.php:172, ../includes/Elements/Feature_List.php:302, ../includes/Elements/Filterable_Gallery.php:764, ../includes/Elements/Filterable_Gallery.php:1296, ../includes/Elements/Filterable_Gallery.php:1679, ../includes/Elements/Flip_Box.php:368, ../includes/Elements/Flip_Box.php:597, ../includes/Elements/FluentForm.php:239, ../includes/Elements/FluentForm.php:434, ../includes/Elements/FluentForm.php:580, ../includes/Elements/FluentForm.php:1211, ../includes/Elements/FluentForm.php:1456, ../includes/Elements/Formstack.php:334, ../includes/Elements/Formstack.php:449, ../includes/Elements/Formstack.php:763, ../includes/Elements/Formstack.php:1372, ../includes/Elements/GravityForms.php:347, ../includes/Elements/GravityForms.php:484, ../includes/Elements/GravityForms.php:629, ../includes/Elements/GravityForms.php:1721, ../includes/Elements/GravityForms.php:1971, ../includes/Elements/Image_Accordion.php:108, ../includes/Elements/Info_Box.php:303, ../includes/Elements/Login_Register.php:673, ../includes/Elements/Login_Register.php:706, ../includes/Elements/Login_Register.php:2490, ../includes/Elements/Login_Register.php:3158, ../includes/Elements/Login_Register.php:3478, ../includes/Elements/NinjaForms.php:282, ../includes/Elements/NinjaForms.php:421, ../includes/Elements/NinjaForms.php:603, ../includes/Elements/NinjaForms.php:1298, ../includes/Elements/Post_Grid.php:448, ../includes/Elements/Post_Grid.php:603, ../includes/Elements/Post_Grid.php:671, ../includes/Elements/Post_Grid.php:766, ../includes/Elements/Post_Grid.php:849, ../includes/Elements/Post_Timeline.php:326, ../includes/Elements/Post_Timeline.php:384, ../includes/Elements/Pricing_Table.php:261, ../includes/Elements/Pricing_Table.php:378, ../includes/Elements/Pricing_Table.php:680, ../includes/Elements/Pricing_Table.php:820, ../includes/Elements/Pricing_Table.php:845, ../includes/Elements/Product_Grid.php:658, ../includes/Elements/Product_Grid.php:976, ../includes/Elements/Product_Grid.php:1647, ../includes/Elements/Product_Grid.php:2090, ../includes/Elements/Progress_Bar.php:319, ../includes/Elements/Progress_Bar.php:530, ../includes/Elements/Team_Member.php:379, ../includes/Elements/Testimonial.php:313, ../includes/Elements/Tooltip.php:175, ../includes/Elements/Tooltip.php:281, ../includes/Elements/Tooltip.php:370, ../includes/Elements/TypeForm.php:200, ../includes/Elements/WeForms.php:165, ../includes/Elements/WeForms.php:635, ../includes/Elements/WpForms.php:271, ../includes/Elements/WpForms.php:388, ../includes/Elements/WpForms.php:572, ../includes/Elements/WpForms.php:1137, ../includes/Extensions/Table_of_Content.php:415, ../includes/Traits/Controls.php:597, ../includes/Traits/Controls.php:1483, ../includes/Traits/Controls.php:1534, ../includes/Traits/Controls.php:1535
643
  msgid "Left"
644
  msgstr ""
645
 
646
- #: ../includes/Elements/Advanced_Data_Table.php:395, ../includes/Elements/Advanced_Data_Table.php:514, ../includes/Elements/Advanced_Data_Table.php:940, ../includes/Elements/Advanced_Data_Table.php:1087, ../includes/Elements/Betterdocs_Category_Box.php:771, ../includes/Elements/Betterdocs_Category_Grid.php:1516, ../includes/Elements/Betterdocs_Category_Grid.php:1541, ../includes/Elements/Caldera_Forms.php:237, ../includes/Elements/Caldera_Forms.php:419, ../includes/Elements/Caldera_Forms.php:565, ../includes/Elements/Caldera_Forms.php:1140, ../includes/Elements/Contact_Form_7.php:335, ../includes/Elements/Contact_Form_7.php:447, ../includes/Elements/Contact_Form_7.php:1167, ../includes/Elements/Countdown.php:122, ../includes/Elements/Countdown.php:1034, ../includes/Elements/Creative_Button.php:446, ../includes/Elements/Cta_Box.php:103, ../includes/Elements/Data_Table.php:525, ../includes/Elements/Data_Table.php:750, ../includes/Elements/Data_Table.php:999, ../includes/Elements/Dual_Color_Header.php:193, ../includes/Elements/Dual_Color_Header.php:586, ../includes/Elements/Event_Calendar.php:972, ../includes/Elements/Event_Calendar.php:1104, ../includes/Elements/Fancy_Text.php:176, ../includes/Elements/Filterable_Gallery.php:768, ../includes/Elements/Filterable_Gallery.php:1300, ../includes/Elements/Filterable_Gallery.php:1683, ../includes/Elements/Flip_Box.php:372, ../includes/Elements/Flip_Box.php:601, ../includes/Elements/FluentForm.php:243, ../includes/Elements/FluentForm.php:438, ../includes/Elements/FluentForm.php:584, ../includes/Elements/FluentForm.php:1215, ../includes/Elements/FluentForm.php:1460, ../includes/Elements/Formstack.php:338, ../includes/Elements/Formstack.php:453, ../includes/Elements/Formstack.php:767, ../includes/Elements/Formstack.php:1376, ../includes/Elements/GravityForms.php:351, ../includes/Elements/GravityForms.php:488, ../includes/Elements/GravityForms.php:633, ../includes/Elements/GravityForms.php:1725, ../includes/Elements/GravityForms.php:1975, ../includes/Elements/Image_Accordion.php:112, ../includes/Elements/Image_Accordion.php:135, ../includes/Elements/Info_Box.php:307, ../includes/Elements/Login_Register.php:2494, ../includes/Elements/Login_Register.php:3140, ../includes/Elements/Login_Register.php:3162, ../includes/Elements/Login_Register.php:3439, ../includes/Elements/Login_Register.php:3459, ../includes/Elements/Login_Register.php:3482, ../includes/Elements/NinjaForms.php:286, ../includes/Elements/NinjaForms.php:425, ../includes/Elements/NinjaForms.php:607, ../includes/Elements/NinjaForms.php:1302, ../includes/Elements/Post_Grid.php:452, ../includes/Elements/Post_Grid.php:607, ../includes/Elements/Post_Grid.php:675, ../includes/Elements/Post_Grid.php:770, ../includes/Elements/Post_Grid.php:853, ../includes/Elements/Post_Timeline.php:330, ../includes/Elements/Post_Timeline.php:388, ../includes/Elements/Pricing_Table.php:824, ../includes/Elements/Pricing_Table.php:849, ../includes/Elements/Product_Grid.php:662, ../includes/Elements/Product_Grid.php:980, ../includes/Elements/Product_Grid.php:2094, ../includes/Elements/Progress_Bar.php:323, ../includes/Elements/Progress_Bar.php:534, ../includes/Elements/Team_Member.php:383, ../includes/Elements/Testimonial.php:317, ../includes/Elements/Tooltip.php:179, ../includes/Elements/Tooltip.php:374, ../includes/Elements/TypeForm.php:204, ../includes/Elements/WeForms.php:169, ../includes/Elements/WeForms.php:639, ../includes/Elements/WpForms.php:275, ../includes/Elements/WpForms.php:392, ../includes/Elements/WpForms.php:576, ../includes/Elements/WpForms.php:1141, ../includes/Traits/Controls.php:596, ../includes/Traits/Controls.php:1487
647
  msgid "Center"
648
  msgstr ""
649
 
650
- #: ../includes/Elements/Advanced_Data_Table.php:399, ../includes/Elements/Advanced_Data_Table.php:518, ../includes/Elements/Advanced_Data_Table.php:944, ../includes/Elements/Advanced_Data_Table.php:1091, ../includes/Elements/Adv_Accordion.php:137, ../includes/Elements/Betterdocs_Category_Box.php:775, ../includes/Elements/Betterdocs_Category_Grid.php:1520, ../includes/Elements/Betterdocs_Category_Grid.php:1545, ../includes/Elements/Caldera_Forms.php:241, ../includes/Elements/Caldera_Forms.php:423, ../includes/Elements/Caldera_Forms.php:569, ../includes/Elements/Caldera_Forms.php:1144, ../includes/Elements/Contact_Form_7.php:339, ../includes/Elements/Contact_Form_7.php:451, ../includes/Elements/Contact_Form_7.php:1171, ../includes/Elements/Content_Ticker.php:334, ../includes/Elements/Countdown.php:126, ../includes/Elements/Countdown.php:1038, ../includes/Elements/Creative_Button.php:450, ../includes/Elements/Cta_Box.php:104, ../includes/Elements/Data_Table.php:529, ../includes/Elements/Data_Table.php:754, ../includes/Elements/Data_Table.php:1003, ../includes/Elements/Dual_Color_Header.php:197, ../includes/Elements/Event_Calendar.php:976, ../includes/Elements/Event_Calendar.php:1108, ../includes/Elements/Fancy_Text.php:180, ../includes/Elements/Feature_List.php:310, ../includes/Elements/Filterable_Gallery.php:772, ../includes/Elements/Filterable_Gallery.php:1304, ../includes/Elements/Filterable_Gallery.php:1687, ../includes/Elements/Flip_Box.php:376, ../includes/Elements/Flip_Box.php:605, ../includes/Elements/FluentForm.php:247, ../includes/Elements/FluentForm.php:442, ../includes/Elements/FluentForm.php:588, ../includes/Elements/FluentForm.php:1219, ../includes/Elements/FluentForm.php:1464, ../includes/Elements/Formstack.php:342, ../includes/Elements/Formstack.php:457, ../includes/Elements/Formstack.php:771, ../includes/Elements/Formstack.php:1380, ../includes/Elements/GravityForms.php:355, ../includes/Elements/GravityForms.php:492, ../includes/Elements/GravityForms.php:637, ../includes/Elements/GravityForms.php:1729, ../includes/Elements/GravityForms.php:1979, ../includes/Elements/Image_Accordion.php:116, ../includes/Elements/Info_Box.php:311, ../includes/Elements/Login_Register.php:677, ../includes/Elements/Login_Register.php:2498, ../includes/Elements/Login_Register.php:3166, ../includes/Elements/Login_Register.php:3486, ../includes/Elements/NinjaForms.php:290, ../includes/Elements/NinjaForms.php:429, ../includes/Elements/NinjaForms.php:611, ../includes/Elements/NinjaForms.php:1306, ../includes/Elements/Post_Grid.php:456, ../includes/Elements/Post_Grid.php:611, ../includes/Elements/Post_Grid.php:679, ../includes/Elements/Post_Grid.php:774, ../includes/Elements/Post_Grid.php:857, ../includes/Elements/Post_Timeline.php:334, ../includes/Elements/Post_Timeline.php:392, ../includes/Elements/Pricing_Table.php:262, ../includes/Elements/Pricing_Table.php:386, ../includes/Elements/Pricing_Table.php:684, ../includes/Elements/Pricing_Table.php:828, ../includes/Elements/Pricing_Table.php:853, ../includes/Elements/Product_Grid.php:666, ../includes/Elements/Product_Grid.php:984, ../includes/Elements/Product_Grid.php:1651, ../includes/Elements/Product_Grid.php:2098, ../includes/Elements/Progress_Bar.php:327, ../includes/Elements/Progress_Bar.php:538, ../includes/Elements/Team_Member.php:387, ../includes/Elements/Testimonial.php:321, ../includes/Elements/Tooltip.php:183, ../includes/Elements/Tooltip.php:282, ../includes/Elements/Tooltip.php:378, ../includes/Elements/TypeForm.php:208, ../includes/Elements/WeForms.php:173, ../includes/Elements/WeForms.php:643, ../includes/Elements/WpForms.php:279, ../includes/Elements/WpForms.php:396, ../includes/Elements/WpForms.php:580, ../includes/Elements/WpForms.php:1145, ../includes/Extensions/Table_of_Content.php:416, ../includes/Traits/Controls.php:595, ../includes/Traits/Controls.php:1491, ../includes/Traits/Controls.php:1534, ../includes/Traits/Controls.php:1535
651
  msgid "Right"
652
  msgstr ""
653
 
654
- #: ../includes/Elements/Advanced_Data_Table.php:414, ../includes/Elements/Advanced_Data_Table.php:533, ../includes/Elements/Advanced_Data_Table.php:627, ../includes/Elements/Advanced_Data_Table.php:658, ../includes/Elements/Advanced_Data_Table.php:689, ../includes/Elements/Advanced_Data_Table.php:720, ../includes/Elements/Advanced_Data_Table.php:751, ../includes/Elements/Advanced_Data_Table.php:782, ../includes/Elements/Advanced_Data_Table.php:964, ../includes/Elements/Advanced_Data_Table.php:1160, ../includes/Elements/Advanced_Data_Table.php:1230, ../includes/Elements/Adv_Accordion.php:534, ../includes/Elements/Adv_Accordion.php:607, ../includes/Elements/Adv_Accordion.php:680, ../includes/Elements/Adv_Accordion.php:763, ../includes/Elements/Adv_Tabs.php:487, ../includes/Elements/Adv_Tabs.php:553, ../includes/Elements/Adv_Tabs.php:620, ../includes/Elements/Adv_Tabs.php:702, ../includes/Elements/Caldera_Forms.php:270, ../includes/Elements/Caldera_Forms.php:331, ../includes/Elements/Caldera_Forms.php:523, ../includes/Elements/Caldera_Forms.php:604, ../includes/Elements/Caldera_Forms.php:850, ../includes/Elements/Caldera_Forms.php:906, ../includes/Elements/Caldera_Forms.php:1216, ../includes/Elements/Caldera_Forms.php:1322, ../includes/Elements/Caldera_Forms.php:1375, ../includes/Elements/Contact_Form_7.php:474, ../includes/Elements/Contact_Form_7.php:505, ../includes/Elements/Contact_Form_7.php:562, ../includes/Elements/Contact_Form_7.php:845, ../includes/Elements/Contact_Form_7.php:920, ../includes/Elements/Contact_Form_7.php:1245, ../includes/Elements/Contact_Form_7.php:1351, ../includes/Elements/Contact_Form_7.php:1415, ../includes/Elements/Contact_Form_7.php:1479, ../includes/Elements/Contact_Form_7.php:1540, ../includes/Elements/Contact_Form_7.php:1622, ../includes/Elements/Content_Ticker.php:400, ../includes/Elements/Content_Ticker.php:476, ../includes/Elements/Countdown.php:1109, ../includes/Elements/Creative_Button.php:275, ../includes/Elements/Creative_Button.php:367, ../includes/Elements/Cta_Box.php:698, ../includes/Elements/Cta_Box.php:769, ../includes/Elements/Cta_Box.php:904, ../includes/Elements/Cta_Box.php:956, ../includes/Elements/Data_Table.php:957, ../includes/Elements/Data_Table.php:974, ../includes/Elements/Event_Calendar.php:1214, ../includes/Elements/Event_Calendar.php:1247, ../includes/Elements/Filterable_Gallery.php:956, ../includes/Elements/Filterable_Gallery.php:1022, ../includes/Elements/Filterable_Gallery.php:2497, ../includes/Elements/Filterable_Gallery.php:2690, ../includes/Elements/FluentForm.php:277, ../includes/Elements/FluentForm.php:338, ../includes/Elements/FluentForm.php:542, ../includes/Elements/FluentForm.php:623, ../includes/Elements/FluentForm.php:872, ../includes/Elements/FluentForm.php:1536, ../includes/Elements/FluentForm.php:1642, ../includes/Elements/FluentForm.php:2059, ../includes/Elements/Formstack.php:481, ../includes/Elements/Formstack.php:530, ../includes/Elements/Formstack.php:585, ../includes/Elements/Formstack.php:797, ../includes/Elements/Formstack.php:852, ../includes/Elements/Formstack.php:1101, ../includes/Elements/Formstack.php:1452, ../includes/Elements/Formstack.php:1558, ../includes/Elements/Formstack.php:1781, ../includes/Elements/Formstack.php:2020, ../includes/Elements/GravityForms.php:515, ../includes/Elements/GravityForms.php:546, ../includes/Elements/GravityForms.php:585, ../includes/Elements/GravityForms.php:672, ../includes/Elements/GravityForms.php:936, ../includes/Elements/GravityForms.php:989, ../includes/Elements/GravityForms.php:1176, ../includes/Elements/GravityForms.php:1810, ../includes/Elements/GravityForms.php:1902, ../includes/Elements/GravityForms.php:2038, ../includes/Elements/GravityForms.php:2125, ../includes/Elements/GravityForms.php:2199, ../includes/Elements/GravityForms.php:2334, ../includes/Elements/Info_Box.php:1232, ../includes/Elements/Info_Box.php:1278, ../includes/Elements/Login_Register.php:2519, ../includes/Elements/Login_Register.php:2658, ../includes/Elements/Login_Register.php:3002, ../includes/Elements/Login_Register.php:3187, ../includes/Elements/Login_Register.php:3224, ../includes/Elements/Login_Register.php:3508, ../includes/Elements/Login_Register.php:3545, ../includes/Elements/NinjaForms.php:452, ../includes/Elements/NinjaForms.php:501, ../includes/Elements/NinjaForms.php:559, ../includes/Elements/NinjaForms.php:646, ../includes/Elements/NinjaForms.php:894, ../includes/Elements/NinjaForms.php:950, ../includes/Elements/NinjaForms.php:1384, ../includes/Elements/NinjaForms.php:1471, ../includes/Elements/NinjaForms.php:1533, ../includes/Elements/NinjaForms.php:1633, ../includes/Elements/Pricing_Table.php:1892, ../includes/Elements/Pricing_Table.php:1961, ../includes/Elements/Product_Grid.php:2144, ../includes/Elements/Product_Grid.php:2182, ../includes/Elements/Product_Grid.php:2226, ../includes/Elements/Tooltip.php:408, ../includes/Elements/Tooltip.php:451, ../includes/Elements/Tooltip.php:624, ../includes/Elements/WeForms.php:692, ../includes/Elements/WeForms.php:742, ../includes/Elements/WpForms.php:419, ../includes/Elements/WpForms.php:468, ../includes/Elements/WpForms.php:533, ../includes/Elements/WpForms.php:615, ../includes/Elements/WpForms.php:851, ../includes/Elements/WpForms.php:907, ../includes/Elements/WpForms.php:1220, ../includes/Elements/WpForms.php:1327, ../includes/Elements/WpForms.php:1372, ../includes/Extensions/Table_of_Content.php:579, ../includes/Extensions/Table_of_Content.php:894, ../includes/Extensions/Table_of_Content.php:917, ../includes/Extensions/Table_of_Content.php:943, ../includes/Traits/Controls.php:1184, ../includes/Traits/Controls.php:1239, ../includes/Traits/Controls.php:1369, ../includes/Traits/Controls.php:1431
655
  msgid "Text Color"
656
  msgstr ""
657
 
658
- #: ../includes/Elements/Advanced_Data_Table.php:428, ../includes/Elements/Advanced_Data_Table.php:569, ../includes/Elements/Advanced_Data_Table.php:642, ../includes/Elements/Advanced_Data_Table.php:673, ../includes/Elements/Advanced_Data_Table.php:704, ../includes/Elements/Advanced_Data_Table.php:735, ../includes/Elements/Advanced_Data_Table.php:766, ../includes/Elements/Advanced_Data_Table.php:797, ../includes/Elements/Advanced_Data_Table.php:976, ../includes/Elements/Advanced_Data_Table.php:1173, ../includes/Elements/Advanced_Data_Table.php:1244, ../includes/Elements/Advanced_Data_Table.php:1339, ../includes/Elements/Advanced_Data_Table.php:1369, ../includes/Elements/Adv_Accordion.php:515, ../includes/Elements/Adv_Accordion.php:588, ../includes/Elements/Adv_Accordion.php:661, ../includes/Elements/Adv_Accordion.php:742, ../includes/Elements/Adv_Accordion.php:914, ../includes/Elements/Adv_Accordion.php:960, ../includes/Elements/Adv_Accordion.php:1007, ../includes/Elements/Adv_Tabs.php:468, ../includes/Elements/Adv_Tabs.php:683, ../includes/Elements/Caldera_Forms.php:592, ../includes/Elements/Caldera_Forms.php:800, ../includes/Elements/Caldera_Forms.php:1204, ../includes/Elements/Caldera_Forms.php:1310, ../includes/Elements/Caldera_Forms.php:1364, ../includes/Elements/Contact_Form_7.php:550, ../includes/Elements/Contact_Form_7.php:763, ../includes/Elements/Contact_Form_7.php:1233, ../includes/Elements/Contact_Form_7.php:1339, ../includes/Elements/Contact_Form_7.php:1464, ../includes/Elements/Contact_Form_7.php:1525, ../includes/Elements/Content_Ticker.php:388, ../includes/Elements/Content_Ticker.php:465, ../includes/Elements/Content_Ticker.php:640, ../includes/Elements/Content_Ticker.php:696, ../includes/Elements/Countdown.php:733, ../includes/Elements/Countdown.php:745, ../includes/Elements/Countdown.php:805, ../includes/Elements/Countdown.php:817, ../includes/Elements/Countdown.php:877, ../includes/Elements/Countdown.php:889, ../includes/Elements/Countdown.php:949, ../includes/Elements/Countdown.php:961, ../includes/Elements/Creative_Button.php:288, ../includes/Elements/Creative_Button.php:380, ../includes/Elements/Cta_Box.php:122, ../includes/Elements/Cta_Box.php:426, ../includes/Elements/Cta_Box.php:712, ../includes/Elements/Cta_Box.php:781, ../includes/Elements/Data_Table.php:607, ../includes/Elements/Data_Table.php:647, ../includes/Elements/Data_Table.php:1084, ../includes/Elements/Dual_Color_Header.php:308, ../includes/Elements/Event_Calendar.php:1226, ../includes/Elements/Filterable_Gallery.php:831, ../includes/Elements/Filterable_Gallery.php:968, ../includes/Elements/Filterable_Gallery.php:1034, ../includes/Elements/Filterable_Gallery.php:1180, ../includes/Elements/Filterable_Gallery.php:1370, ../includes/Elements/Filterable_Gallery.php:1400, ../includes/Elements/Filterable_Gallery.php:1505, ../includes/Elements/Filterable_Gallery.php:1521, ../includes/Elements/Filterable_Gallery.php:1723, ../includes/Elements/Filterable_Gallery.php:1861, ../includes/Elements/Filterable_Gallery.php:2481, ../includes/Elements/Filterable_Gallery.php:2674, ../includes/Elements/FluentForm.php:611, ../includes/Elements/FluentForm.php:819, ../includes/Elements/FluentForm.php:1253, ../includes/Elements/FluentForm.php:1339, ../includes/Elements/FluentForm.php:1524, ../includes/Elements/FluentForm.php:1630, ../includes/Elements/FluentForm.php:2048, ../includes/Elements/Formstack.php:840, ../includes/Elements/Formstack.php:1048, ../includes/Elements/Formstack.php:1440, ../includes/Elements/Formstack.php:1546, ../includes/Elements/GravityForms.php:660, ../includes/Elements/GravityForms.php:886, ../includes/Elements/GravityForms.php:1619, ../includes/Elements/GravityForms.php:1797, ../includes/Elements/GravityForms.php:1889, ../includes/Elements/GravityForms.php:2026, ../includes/Elements/GravityForms.php:2113, ../includes/Elements/Image_Accordion.php:316, ../includes/Elements/Info_Box.php:543, ../includes/Elements/Info_Box.php:784, ../includes/Elements/Info_Box.php:863, ../includes/Elements/Info_Box.php:1032, ../includes/Elements/Info_Box.php:1094, ../includes/Elements/Info_Box.php:1244, ../includes/Elements/Info_Box.php:1290, ../includes/Elements/Login_Register.php:1497, ../includes/Elements/Login_Register.php:1630, ../includes/Elements/Login_Register.php:1732, ../includes/Elements/Login_Register.php:1906, ../includes/Elements/Login_Register.php:2262, ../includes/Elements/Login_Register.php:2353, ../includes/Elements/Login_Register.php:2533, ../includes/Elements/Login_Register.php:2571, ../includes/Elements/Login_Register.php:2668, ../includes/Elements/Login_Register.php:3195, ../includes/Elements/Login_Register.php:3232, ../includes/Elements/Login_Register.php:3516, ../includes/Elements/Login_Register.php:3553, ../includes/Elements/NinjaForms.php:634, ../includes/Elements/NinjaForms.php:844, ../includes/Elements/NinjaForms.php:1372, ../includes/Elements/NinjaForms.php:1459, ../includes/Elements/Post_Grid.php:923, ../includes/Elements/Pricing_Table.php:741, ../includes/Elements/Pricing_Table.php:901, ../includes/Elements/Pricing_Table.php:1407, ../includes/Elements/Pricing_Table.php:1476, ../includes/Elements/Pricing_Table.php:1642, ../includes/Elements/Pricing_Table.php:1904, ../includes/Elements/Pricing_Table.php:1973, ../includes/Elements/Product_Grid.php:1756, ../includes/Elements/Product_Grid.php:1864, ../includes/Elements/Product_Grid.php:1970, ../includes/Elements/Product_Grid.php:2156, ../includes/Elements/Product_Grid.php:2194, ../includes/Elements/Product_Grid.php:2238, ../includes/Elements/Product_Grid.php:2484, ../includes/Elements/Product_Grid.php:2526, ../includes/Elements/Product_Grid.php:2587, ../includes/Elements/Product_Grid.php:2638, ../includes/Elements/Progress_Bar.php:576, ../includes/Elements/Team_Member.php:730, ../includes/Elements/Tooltip.php:397, ../includes/Elements/Tooltip.php:440, ../includes/Elements/Tooltip.php:613, ../includes/Elements/Twitter_Feed.php:390, ../includes/Elements/WeForms.php:703, ../includes/Elements/WeForms.php:753, ../includes/Elements/Woo_Checkout.php:617, ../includes/Elements/Woo_Checkout.php:732, ../includes/Elements/Woo_Checkout.php:854, ../includes/Elements/Woo_Checkout.php:1312, ../includes/Elements/Woo_Checkout.php:1352, ../includes/Elements/Woo_Checkout.php:1610, ../includes/Elements/Woo_Checkout.php:1650, ../includes/Elements/Woo_Checkout.php:2154, ../includes/Elements/Woo_Checkout.php:2284, ../includes/Elements/Woo_Checkout.php:2394, ../includes/Elements/Woo_Checkout.php:2434, ../includes/Elements/WpForms.php:603, ../includes/Elements/WpForms.php:1208, ../includes/Elements/WpForms.php:1315, ../includes/Extensions/Reading_Progress.php:156, ../includes/Extensions/Table_of_Content.php:566, ../includes/Extensions/Table_of_Content.php:712, ../includes/Extensions/Table_of_Content.php:776, ../includes/Traits/Controls.php:1381, ../includes/Traits/Controls.php:1443, ../includes/Traits/Woo_Product_Comparable.php:367, ../includes/Traits/Woo_Product_Comparable.php:473
659
  msgid "Background Color"
660
  msgstr ""
661
 
@@ -663,7 +663,7 @@ msgstr ""
663
  msgid "Cell Border"
664
  msgstr ""
665
 
666
- #: ../includes/Elements/Advanced_Data_Table.php:467, ../includes/Elements/Advanced_Data_Table.php:812, ../includes/Elements/Advanced_Data_Table.php:896, ../includes/Elements/Advanced_Data_Table.php:1114, ../includes/Elements/Advanced_Data_Table.php:1431, ../includes/Elements/Adv_Accordion.php:331, ../includes/Elements/Adv_Accordion.php:489, ../includes/Elements/Adv_Accordion.php:781, ../includes/Elements/Adv_Tabs.php:300, ../includes/Elements/Adv_Tabs.php:442, ../includes/Elements/Adv_Tabs.php:720, ../includes/Elements/Betterdocs_Category_Box.php:512, ../includes/Elements/Betterdocs_Category_Grid.php:558, ../includes/Elements/Betterdocs_Category_Grid.php:722, ../includes/Elements/Betterdocs_Category_Grid.php:1405, ../includes/Elements/Betterdocs_Search_Form.php:124, ../includes/Elements/Betterdocs_Search_Form.php:432, ../includes/Elements/Caldera_Forms.php:741, ../includes/Elements/Caldera_Forms.php:1251, ../includes/Elements/Contact_Form_7.php:598, ../includes/Elements/Contact_Form_7.php:1279, ../includes/Elements/Contact_Form_7.php:1695, ../includes/Elements/Content_Ticker.php:432, ../includes/Elements/Content_Ticker.php:495, ../includes/Elements/Content_Ticker.php:736, ../includes/Elements/Countdown.php:606, ../includes/Elements/Countdown.php:1136, ../includes/Elements/Cta_Box.php:438, ../includes/Elements/Cta_Box.php:651, ../includes/Elements/Cta_Box.php:868, ../includes/Elements/Data_Table.php:575, ../includes/Elements/Data_Table.php:860, ../includes/Elements/Dual_Color_Header.php:320, ../includes/Elements/Facebook_Feed.php:594, ../includes/Elements/Facebook_Feed.php:620, ../includes/Elements/Facebook_Feed.php:692, ../includes/Elements/Fancy_Text.php:483, ../includes/Elements/Feature_List.php:595, ../includes/Elements/Filterable_Gallery.php:843, ../includes/Elements/Filterable_Gallery.php:920, ../includes/Elements/Filterable_Gallery.php:1102, ../includes/Elements/Filterable_Gallery.php:1192, ../includes/Elements/Filterable_Gallery.php:1536, ../includes/Elements/Filterable_Gallery.php:1747, ../includes/Elements/Filterable_Gallery.php:2598, ../includes/Elements/Flip_Box.php:998, ../includes/Elements/Flip_Box.php:1111, ../includes/Elements/Flip_Box.php:1347, ../includes/Elements/FluentForm.php:760, ../includes/Elements/FluentForm.php:1128, ../includes/Elements/FluentForm.php:1183, ../includes/Elements/FluentForm.php:1306, ../includes/Elements/FluentForm.php:1391, ../includes/Elements/FluentForm.php:1571, ../includes/Elements/FluentForm.php:1973, ../includes/Elements/FluentForm.php:2139, ../includes/Elements/Formstack.php:680, ../includes/Elements/Formstack.php:735, ../includes/Elements/Formstack.php:989, ../includes/Elements/Formstack.php:1322, ../includes/Elements/Formstack.php:1487, ../includes/Elements/Formstack.php:1835, ../includes/Elements/Formstack.php:1964, ../includes/Elements/GravityForms.php:722, ../includes/Elements/GravityForms.php:1343, ../includes/Elements/GravityForms.php:1539, ../includes/Elements/GravityForms.php:1677, ../includes/Elements/GravityForms.php:1847, ../includes/Elements/GravityForms.php:2073, ../includes/Elements/Image_Accordion.php:328, ../includes/Elements/Image_Accordion.php:440, ../includes/Elements/Info_Box.php:555, ../includes/Elements/Login_Register.php:1460, ../includes/Elements/Login_Register.php:2025, ../includes/Elements/Login_Register.php:2164, ../includes/Elements/Login_Register.php:2237, ../includes/Elements/Login_Register.php:2328, ../includes/Elements/Login_Register.php:2430, ../includes/Elements/Login_Register.php:2466, ../includes/Elements/Login_Register.php:2628, ../includes/Elements/Login_Register.php:3100, ../includes/Elements/Login_Register.php:3399, ../includes/Elements/NinjaForms.php:784, ../includes/Elements/NinjaForms.php:1419, ../includes/Elements/Pricing_Table.php:753, ../includes/Elements/Pricing_Table.php:1518, ../includes/Elements/Pricing_Table.php:1823, ../includes/Elements/Product_Grid.php:769, ../includes/Elements/Product_Grid.php:1020, ../includes/Elements/Product_Grid.php:1418, ../includes/Elements/Team_Member.php:486, ../includes/Elements/Testimonial.php:420, ../includes/Elements/Tooltip.php:342, ../includes/Elements/Tooltip.php:591, ../includes/Elements/Twitter_Feed.php:420, ../includes/Elements/Twitter_Feed.php:479, ../includes/Elements/Twitter_Feed.php:512, ../includes/Elements/WeForms.php:676, ../includes/Elements/Woo_Checkout.php:628, ../includes/Elements/Woo_Checkout.php:1220, ../includes/Elements/Woo_Checkout.php:1413, ../includes/Elements/Woo_Checkout.php:1543, ../includes/Elements/Woo_Checkout.php:1711, ../includes/Elements/Woo_Checkout.php:1926, ../includes/Elements/Woo_Checkout.php:2176, ../includes/Elements/Woo_Checkout.php:2507, ../includes/Elements/WpForms.php:752, ../includes/Elements/WpForms.php:1255, ../includes/Extensions/Table_of_Content.php:601, ../includes/Extensions/Table_of_Content.php:789, ../includes/Traits/Controls.php:1288, ../includes/Traits/Controls.php:1333, ../includes/Traits/Woo_Product_Comparable.php:339, ../includes/Traits/Woo_Product_Comparable.php:984, ../includes/Traits/Woo_Product_Comparable.php:1133, ../includes/Traits/Woo_Product_Comparable.php:1601
667
  msgid "Padding"
668
  msgstr ""
669
 
@@ -683,7 +683,7 @@ msgstr ""
683
  msgid "Highlight"
684
  msgstr ""
685
 
686
- #: ../includes/Elements/Advanced_Data_Table.php:611, ../includes/Elements/Adv_Tabs.php:146, ../includes/Elements/Countdown.php:402, ../includes/Elements/Data_Table.php:136, ../includes/Elements/Filterable_Gallery.php:185, ../includes/Elements/Filterable_Gallery.php:225, ../includes/Elements/Flip_Box.php:199, ../includes/Elements/Flip_Box.php:428, ../includes/Elements/Flip_Box.php:647, ../includes/Elements/GravityForms.php:1016, ../includes/Elements/Info_Box.php:98, ../includes/Elements/Info_Box.php:804, ../includes/Elements/Info_Box.php:884, ../includes/Elements/Info_Box.php:1020, ../includes/Elements/Info_Box.php:1115, ../includes/Elements/Post_Grid.php:897, ../includes/Elements/Sticky_Video.php:552, ../includes/Extensions/Table_of_Content.php:814, ../includes/Extensions/Table_of_Content.php:1035
687
  msgid "None"
688
  msgstr ""
689
 
@@ -711,7 +711,7 @@ msgstr ""
711
  msgid "Odd Row"
712
  msgstr ""
713
 
714
- #: ../includes/Elements/Advanced_Data_Table.php:873, ../includes/Elements/Dual_Color_Header.php:703, ../includes/Elements/Dual_Color_Header.php:783, ../includes/Elements/Flip_Box.php:122, ../includes/Elements/FluentForm.php:1287, ../includes/Elements/FluentForm.php:1372, ../includes/Elements/FluentForm.php:1785, ../includes/Elements/Formstack.php:1661, ../includes/Elements/Image_Accordion.php:303, ../includes/Elements/Login_Register.php:1972, ../includes/Elements/Progress_Bar.php:382, ../includes/Elements/Progress_Bar.php:434, ../includes/Elements/Sticky_Video.php:459, ../includes/Elements/Team_Member.php:317, ../includes/Elements/Twitter_Feed.php:807, ../includes/Extensions/Reading_Progress.php:128
715
  msgid "Height"
716
  msgstr ""
717
 
@@ -719,23 +719,23 @@ msgstr ""
719
  msgid "Margin Bottom"
720
  msgstr ""
721
 
722
- #: ../includes/Elements/Advanced_Data_Table.php:931, ../includes/Elements/Advanced_Data_Table.php:1079, ../includes/Elements/Caldera_Forms.php:229, ../includes/Elements/Caldera_Forms.php:557, ../includes/Elements/Caldera_Forms.php:1132, ../includes/Elements/Contact_Form_7.php:439, ../includes/Elements/Contact_Form_7.php:1158, ../includes/Elements/Countdown.php:114, ../includes/Elements/Cta_Box.php:97, ../includes/Elements/Data_Table.php:515, ../includes/Elements/Dual_Color_Header.php:184, ../includes/Elements/Dual_Color_Header.php:578, ../includes/Elements/Event_Calendar.php:964, ../includes/Elements/Event_Calendar.php:1096, ../includes/Elements/Fancy_Text.php:168, ../includes/Elements/Filterable_Gallery.php:760, ../includes/Elements/FluentForm.php:235, ../includes/Elements/FluentForm.php:576, ../includes/Elements/FluentForm.php:1207, ../includes/Elements/FluentForm.php:1452, ../includes/Elements/Formstack.php:445, ../includes/Elements/Formstack.php:759, ../includes/Elements/Formstack.php:1368, ../includes/Elements/GravityForms.php:480, ../includes/Elements/GravityForms.php:625, ../includes/Elements/GravityForms.php:1717, ../includes/Elements/GravityForms.php:1967, ../includes/Elements/Login_Register.php:3154, ../includes/Elements/Login_Register.php:3474, ../includes/Elements/NinjaForms.php:417, ../includes/Elements/NinjaForms.php:599, ../includes/Elements/NinjaForms.php:1294, ../includes/Elements/Post_Grid.php:444, ../includes/Elements/Post_Grid.php:762, ../includes/Elements/Post_Grid.php:845, ../includes/Elements/Product_Grid.php:654, ../includes/Elements/Product_Grid.php:972, ../includes/Elements/Product_Grid.php:1643, ../includes/Elements/Product_Grid.php:2086, ../includes/Elements/Progress_Bar.php:315, ../includes/Elements/Progress_Bar.php:526, ../includes/Elements/Tooltip.php:170, ../includes/Elements/WpForms.php:384, ../includes/Elements/WpForms.php:568, ../includes/Elements/WpForms.php:1133
723
  msgid "Alignment"
724
  msgstr ""
725
 
726
- #: ../includes/Elements/Advanced_Data_Table.php:1135, ../includes/Elements/Adv_Accordion.php:342, ../includes/Elements/Adv_Accordion.php:500, ../includes/Elements/Adv_Accordion.php:792, ../includes/Elements/Adv_Tabs.php:311, ../includes/Elements/Adv_Tabs.php:453, ../includes/Elements/Adv_Tabs.php:731, ../includes/Elements/Betterdocs_Category_Grid.php:570, ../includes/Elements/Betterdocs_Category_Grid.php:736, ../includes/Elements/Caldera_Forms.php:297, ../includes/Elements/Caldera_Forms.php:359, ../includes/Elements/Contact_Form_7.php:372, ../includes/Elements/Contact_Form_7.php:1584, ../includes/Elements/Contact_Form_7.php:1681, ../includes/Elements/Content_Ticker.php:507, ../includes/Elements/Countdown.php:1088, ../includes/Elements/Cta_Box.php:450, ../includes/Elements/Cta_Box.php:663, ../includes/Elements/Cta_Box.php:880, ../includes/Elements/Dual_Color_Header.php:332, ../includes/Elements/Dual_Color_Header.php:630, ../includes/Elements/Fancy_Text.php:495, ../includes/Elements/Filterable_Gallery.php:855, ../includes/Elements/Filterable_Gallery.php:932, ../includes/Elements/Filterable_Gallery.php:1114, ../includes/Elements/Filterable_Gallery.php:1759, ../includes/Elements/Filterable_Gallery.php:2200, ../includes/Elements/Filterable_Gallery.php:2639, ../includes/Elements/Flip_Box.php:1335, ../includes/Elements/FluentForm.php:304, ../includes/Elements/FluentForm.php:366, ../includes/Elements/FluentForm.php:1140, ../includes/Elements/FluentForm.php:1195, ../includes/Elements/FluentForm.php:2151, ../includes/Elements/Formstack.php:502, ../includes/Elements/Formstack.php:552, ../includes/Elements/Formstack.php:692, ../includes/Elements/Formstack.php:747, ../includes/Elements/Formstack.php:1979, ../includes/Elements/GravityForms.php:1072, ../includes/Elements/GravityForms.php:1331, ../includes/Elements/GravityForms.php:1527, ../includes/Elements/GravityForms.php:1691, ../includes/Elements/Image_Accordion.php:340, ../includes/Elements/Image_Accordion.php:429, ../includes/Elements/Info_Box.php:688, ../includes/Elements/Info_Box.php:750, ../includes/Elements/Info_Box.php:981, ../includes/Elements/Info_Box.php:1371, ../includes/Elements/Login_Register.php:1445, ../includes/Elements/Login_Register.php:2010, ../includes/Elements/Login_Register.php:2149, ../includes/Elements/Login_Register.php:2222, ../includes/Elements/Login_Register.php:2313, ../includes/Elements/Login_Register.php:2415, ../includes/Elements/Login_Register.php:2451, ../includes/Elements/Login_Register.php:2613, ../includes/Elements/Login_Register.php:3085, ../includes/Elements/Login_Register.php:3320, ../includes/Elements/Login_Register.php:3384, ../includes/Elements/NinjaForms.php:473, ../includes/Elements/NinjaForms.php:523, ../includes/Elements/Post_Grid.php:380, ../includes/Elements/Post_Grid.php:495, ../includes/Elements/Post_Grid.php:510, ../includes/Elements/Post_Grid.php:634, ../includes/Elements/Post_Grid.php:722, ../includes/Elements/Post_Grid.php:798, ../includes/Elements/Pricing_Table.php:765, ../includes/Elements/Pricing_Table.php:1091, ../includes/Elements/Pricing_Table.php:1161, ../includes/Elements/Pricing_Table.php:1835, ../includes/Elements/Team_Member.php:474, ../includes/Elements/Testimonial.php:408, ../includes/Elements/Testimonial.php:506, ../includes/Elements/Testimonial.php:547, ../includes/Elements/Testimonial.php:588, ../includes/Elements/Testimonial.php:621, ../includes/Elements/Tooltip.php:353, ../includes/Elements/Tooltip.php:602, ../includes/Elements/WeForms.php:490, ../includes/Elements/WeForms.php:664, ../includes/Elements/WpForms.php:440, ../includes/Elements/WpForms.php:490, ../includes/Elements/WpForms.php:522, ../includes/Traits/Controls.php:1300, ../includes/Traits/Controls.php:1345, ../includes/Traits/Woo_Product_Comparable.php:327, ../includes/Traits/Woo_Product_Comparable.php:1449
727
  msgid "Margin"
728
  msgstr ""
729
 
730
- #: ../includes/Elements/Advanced_Data_Table.php:1155, ../includes/Elements/Advanced_Data_Table.php:1321, ../includes/Elements/Adv_Accordion.php:511, ../includes/Elements/Adv_Accordion.php:894, ../includes/Elements/Adv_Tabs.php:464, ../includes/Elements/Betterdocs_Category_Box.php:284, ../includes/Elements/Betterdocs_Category_Box.php:452, ../includes/Elements/Betterdocs_Category_Box.php:677, ../includes/Elements/Betterdocs_Category_Box.php:846, ../includes/Elements/Betterdocs_Category_Grid.php:315, ../includes/Elements/Betterdocs_Category_Grid.php:455, ../includes/Elements/Betterdocs_Category_Grid.php:610, ../includes/Elements/Betterdocs_Category_Grid.php:799, ../includes/Elements/Betterdocs_Category_Grid.php:1347, ../includes/Elements/Betterdocs_Search_Form.php:390, ../includes/Elements/Caldera_Forms.php:585, ../includes/Elements/Caldera_Forms.php:973, ../includes/Elements/Caldera_Forms.php:1197, ../includes/Elements/Contact_Form_7.php:543, ../includes/Elements/Contact_Form_7.php:1000, ../includes/Elements/Contact_Form_7.php:1226, ../includes/Elements/Content_Ticker.php:633, ../includes/Elements/Creative_Button.php:258, ../includes/Elements/Cta_Box.php:693, ../includes/Elements/Cta_Box.php:899, ../includes/Elements/Data_Table.php:587, ../includes/Elements/Data_Table.php:780, ../includes/Elements/Data_Table.php:952, ../includes/Elements/Event_Calendar.php:741, ../includes/Elements/Filterable_Gallery.php:951, ../includes/Elements/Filterable_Gallery.php:1716, ../includes/Elements/Filterable_Gallery.php:2470, ../includes/Elements/Flip_Box.php:1329, ../includes/Elements/FluentForm.php:604, ../includes/Elements/FluentForm.php:939, ../includes/Elements/FluentForm.php:1517, ../includes/Elements/FluentForm.php:1689, ../includes/Elements/FluentForm.php:1906, ../includes/Elements/Formstack.php:833, ../includes/Elements/Formstack.php:1165, ../includes/Elements/Formstack.php:1433, ../includes/Elements/Formstack.php:1603, ../includes/Elements/Formstack.php:1766, ../includes/Elements/GravityForms.php:653, ../includes/Elements/GravityForms.php:1243, ../includes/Elements/GravityForms.php:1439, ../includes/Elements/GravityForms.php:1790, ../includes/Elements/GravityForms.php:2019, ../includes/Elements/Info_Box.php:536, ../includes/Elements/Info_Box.php:764, ../includes/Elements/Info_Box.php:995, ../includes/Elements/Info_Box.php:1226, ../includes/Elements/Info_Box.php:1337, ../includes/Elements/Login_Register.php:2516, ../includes/Elements/Login_Register.php:3184, ../includes/Elements/Login_Register.php:3347, ../includes/Elements/Login_Register.php:3505, ../includes/Elements/NinjaForms.php:627, ../includes/Elements/NinjaForms.php:1020, ../includes/Elements/NinjaForms.php:1365, ../includes/Elements/Pricing_Table.php:1887, ../includes/Elements/Product_Grid.php:824, ../includes/Elements/Product_Grid.php:1455, ../includes/Elements/Product_Grid.php:1846, ../includes/Elements/Product_Grid.php:2139, ../includes/Elements/Product_Grid.php:2570, ../includes/Elements/Team_Member.php:713, ../includes/Elements/Tooltip.php:393, ../includes/Elements/WeForms.php:687, ../includes/Elements/Woo_Checkout.php:900, ../includes/Elements/Woo_Checkout.php:943, ../includes/Elements/Woo_Checkout.php:1086, ../includes/Elements/Woo_Checkout.php:1305, ../includes/Elements/Woo_Checkout.php:1603, ../includes/Elements/Woo_Checkout.php:2063, ../includes/Elements/Woo_Checkout.php:2233, ../includes/Elements/Woo_Checkout.php:2387, ../includes/Elements/WpForms.php:596, ../includes/Elements/WpForms.php:974, ../includes/Elements/WpForms.php:1201, ../includes/Extensions/Table_of_Content.php:887, ../includes/Traits/Controls.php:1177, ../includes/Traits/Controls.php:1364, ../includes/Traits/Woo_Product_Comparable.php:825, ../includes/Traits/Woo_Product_Comparable.php:1211, ../includes/Traits/Woo_Product_Comparable.php:1629
731
  msgid "Normal"
732
  msgstr ""
733
 
734
- #: ../includes/Elements/Advanced_Data_Table.php:1225, ../includes/Elements/Advanced_Data_Table.php:1351, ../includes/Elements/Adv_Accordion.php:582, ../includes/Elements/Adv_Accordion.php:940, ../includes/Elements/Adv_Tabs.php:530, ../includes/Elements/Betterdocs_Category_Box.php:330, ../includes/Elements/Betterdocs_Category_Box.php:548, ../includes/Elements/Betterdocs_Category_Box.php:710, ../includes/Elements/Betterdocs_Category_Box.php:959, ../includes/Elements/Betterdocs_Category_Grid.php:363, ../includes/Elements/Betterdocs_Category_Grid.php:496, ../includes/Elements/Betterdocs_Category_Grid.php:664, ../includes/Elements/Betterdocs_Category_Grid.php:871, ../includes/Elements/Betterdocs_Category_Grid.php:1431, ../includes/Elements/Betterdocs_Search_Form.php:474, ../includes/Elements/Caldera_Forms.php:1303, ../includes/Elements/Contact_Form_7.php:1332, ../includes/Elements/Content_Ticker.php:689, ../includes/Elements/Creative_Button.php:350, ../includes/Elements/Cta_Box.php:764, ../includes/Elements/Cta_Box.php:951, ../includes/Elements/Data_Table.php:627, ../includes/Elements/Data_Table.php:871, ../includes/Elements/Data_Table.php:969, ../includes/Elements/Event_Calendar.php:808, ../includes/Elements/Filterable_Gallery.php:1854, ../includes/Elements/Filterable_Gallery.php:2663, ../includes/Elements/Flip_Box.php:1411, ../includes/Elements/FluentForm.php:1623, ../includes/Elements/FluentForm.php:1987, ../includes/Elements/Formstack.php:1539, ../includes/Elements/Formstack.php:1849, ../includes/Elements/GravityForms.php:1882, ../includes/Elements/GravityForms.php:2106, ../includes/Elements/Info_Box.php:597, ../includes/Elements/Info_Box.php:835, ../includes/Elements/Info_Box.php:1066, ../includes/Elements/Info_Box.php:1272, ../includes/Elements/Info_Box.php:1447, ../includes/Elements/Login_Register.php:3221, ../includes/Elements/Login_Register.php:3542, ../includes/Elements/NinjaForms.php:1452, ../includes/Elements/Pricing_Table.php:407, ../includes/Elements/Pricing_Table.php:1956, ../includes/Elements/Product_Grid.php:874, ../includes/Elements/Product_Grid.php:1524, ../includes/Elements/Product_Grid.php:1953, ../includes/Elements/Product_Grid.php:2177, ../includes/Elements/Product_Grid.php:2621, ../includes/Elements/Team_Member.php:790, ../includes/Elements/Tooltip.php:436, ../includes/Elements/WeForms.php:737, ../includes/Elements/Woo_Checkout.php:916, ../includes/Elements/Woo_Checkout.php:960, ../includes/Elements/Woo_Checkout.php:1102, ../includes/Elements/Woo_Checkout.php:1345, ../includes/Elements/Woo_Checkout.php:1643, ../includes/Elements/Woo_Checkout.php:2079, ../includes/Elements/Woo_Checkout.php:2427, ../includes/Elements/WpForms.php:1308, ../includes/Extensions/Table_of_Content.php:910, ../includes/Traits/Controls.php:1232, ../includes/Traits/Controls.php:1426, ../includes/Traits/Woo_Product_Comparable.php:925, ../includes/Traits/Woo_Product_Comparable.php:1292, ../includes/Traits/Woo_Product_Comparable.php:1679
735
  msgid "Hover"
736
  msgstr ""
737
 
738
- #: ../includes/Elements/Advanced_Data_Table.php:1326, ../includes/Elements/Advanced_Data_Table.php:1356, ../includes/Elements/Betterdocs_Category_Box.php:683, ../includes/Elements/Betterdocs_Category_Box.php:716, ../includes/Elements/Betterdocs_Category_Box.php:860, ../includes/Elements/Betterdocs_Category_Box.php:965, ../includes/Elements/Betterdocs_Category_Grid.php:616, ../includes/Elements/Betterdocs_Category_Grid.php:670, ../includes/Elements/Betterdocs_Category_Grid.php:805, ../includes/Elements/Betterdocs_Category_Grid.php:902, ../includes/Elements/Betterdocs_Category_Grid.php:1005, ../includes/Elements/Betterdocs_Category_Grid.php:1085, ../includes/Elements/Betterdocs_Category_Grid.php:1161, ../includes/Elements/Betterdocs_Category_Grid.php:1238, ../includes/Elements/Betterdocs_Category_Grid.php:1361, ../includes/Elements/Betterdocs_Category_Grid.php:1460, ../includes/Elements/Betterdocs_Search_Form.php:238, ../includes/Elements/Betterdocs_Search_Form.php:275, ../includes/Elements/Caldera_Forms.php:983, ../includes/Elements/Caldera_Forms.php:1099, ../includes/Elements/Caldera_Forms.php:1431, ../includes/Elements/Contact_Form_7.php:1010, ../includes/Elements/Contact_Form_7.php:1126, ../includes/Elements/Content_Ticker.php:652, ../includes/Elements/Content_Ticker.php:708, ../includes/Elements/Cta_Box.php:518, ../includes/Elements/Cta_Box.php:559, ../includes/Elements/Cta_Box.php:601, ../includes/Elements/Cta_Box.php:1042, ../includes/Elements/Data_Table.php:592, ../includes/Elements/Data_Table.php:632, ../includes/Elements/Data_Table.php:1069, ../includes/Elements/Dual_Color_Header.php:468, ../includes/Elements/Dual_Color_Header.php:541, ../includes/Elements/Dual_Color_Header.php:641, ../includes/Elements/Event_Calendar.php:708, ../includes/Elements/Event_Calendar.php:748, ../includes/Elements/Event_Calendar.php:815, ../includes/Elements/Event_Calendar.php:869, ../includes/Elements/Event_Calendar.php:952, ../includes/Elements/Event_Calendar.php:1027, ../includes/Elements/Event_Calendar.php:1061, ../includes/Elements/Event_Calendar.php:1170, ../includes/Elements/Event_Calendar.php:1536, ../includes/Elements/Facebook_Feed.php:758, ../includes/Elements/Facebook_Feed.php:796, ../includes/Elements/Facebook_Feed.php:836, ../includes/Elements/Facebook_Feed.php:884, ../includes/Elements/Facebook_Feed.php:922, ../includes/Elements/Facebook_Feed.php:960, ../includes/Elements/Facebook_Feed.php:1013, ../includes/Elements/Facebook_Feed.php:1051, ../includes/Elements/Facebook_Feed.php:1089, ../includes/Elements/Facebook_Feed.php:1121, ../includes/Elements/Fancy_Text.php:344, ../includes/Elements/Feature_List.php:540, ../includes/Elements/Feature_List.php:761, ../includes/Elements/Feature_List.php:795, ../includes/Elements/Filterable_Gallery.php:1213, ../includes/Elements/Filterable_Gallery.php:1253, ../includes/Elements/Filterable_Gallery.php:1575, ../includes/Elements/Filterable_Gallery.php:1590, ../includes/Elements/Filterable_Gallery.php:1635, ../includes/Elements/Filterable_Gallery.php:1650, ../includes/Elements/Filterable_Gallery.php:1735, ../includes/Elements/Filterable_Gallery.php:1873, ../includes/Elements/Filterable_Gallery.php:1949, ../includes/Elements/Filterable_Gallery.php:1983, ../includes/Elements/Filterable_Gallery.php:2028, ../includes/Elements/Filterable_Gallery.php:2165, ../includes/Elements/Filterable_Gallery.php:2352, ../includes/Elements/Flip_Box.php:944, ../includes/Elements/Flip_Box.php:1057, ../includes/Elements/Flip_Box.php:1184, ../includes/Elements/Flip_Box.php:1215, ../includes/Elements/Flip_Box.php:1253, ../includes/Elements/Flip_Box.php:1285, ../includes/Elements/Flip_Box.php:1359, ../includes/Elements/Flip_Box.php:1417, ../includes/Elements/FluentForm.php:413, ../includes/Elements/FluentForm.php:949, ../includes/Elements/FluentForm.php:1065, ../includes/Elements/FluentForm.php:1106, ../includes/Elements/FluentForm.php:1161, ../includes/Elements/FluentForm.php:1265, ../includes/Elements/FluentForm.php:1327, ../includes/Elements/FluentForm.php:1921, ../includes/Elements/FluentForm.php:1994, ../includes/Elements/FluentForm.php:2115, ../includes/Elements/Formstack.php:658, ../includes/Elements/Formstack.php:713, ../includes/Elements/Formstack.php:1175, ../includes/Elements/Formstack.php:1255, ../includes/Elements/Formstack.php:1309, ../includes/Elements/Formstack.php:1856, ../includes/Elements/Formstack.php:1937, ../includes/Elements/GravityForms.php:1147, ../includes/Elements/GravityForms.php:1253, ../includes/Elements/GravityForms.php:1367, ../includes/Elements/GravityForms.php:1449, ../includes/Elements/GravityForms.php:1563, ../includes/Elements/GravityForms.php:1607, ../includes/Elements/Image_Accordion.php:495, ../includes/Elements/Image_Accordion.php:524, ../includes/Elements/Info_Box.php:1351, ../includes/Elements/Info_Box.php:1427, ../includes/Elements/Login_Register.php:2252, ../includes/Elements/Login_Register.php:2343, ../includes/Elements/Login_Register.php:2757, ../includes/Elements/NinjaForms.php:1030, ../includes/Elements/NinjaForms.php:1148, ../includes/Elements/NinjaForms.php:1567, ../includes/Elements/Post_Grid.php:359, ../includes/Elements/Post_Grid.php:432, ../includes/Elements/Post_Grid.php:824, ../includes/Elements/Pricing_Table.php:888, ../includes/Elements/Pricing_Table.php:952, ../includes/Elements/Pricing_Table.php:1043, ../includes/Elements/Pricing_Table.php:1072, ../includes/Elements/Pricing_Table.php:1113, ../includes/Elements/Pricing_Table.php:1142, ../includes/Elements/Pricing_Table.php:1182, ../includes/Elements/Pricing_Table.php:1217, ../includes/Elements/Pricing_Table.php:1374, ../includes/Elements/Pricing_Table.php:1506, ../includes/Elements/Product_Grid.php:1283, ../includes/Elements/Product_Grid.php:1851, ../includes/Elements/Product_Grid.php:1958, ../includes/Elements/Product_Grid.php:2295, ../includes/Elements/Product_Grid.php:2474, ../includes/Elements/Product_Grid.php:2514, ../includes/Elements/Product_Grid.php:2575, ../includes/Elements/Product_Grid.php:2626, ../includes/Elements/Product_Grid.php:2779, ../includes/Elements/Progress_Bar.php:405, ../includes/Elements/Progress_Bar.php:465, ../includes/Elements/Twitter_Feed.php:671, ../includes/Elements/Twitter_Feed.php:700, ../includes/Elements/Twitter_Feed.php:730, ../includes/Elements/Twitter_Feed.php:900, ../includes/Elements/Woo_Checkout.php:572, ../includes/Elements/Woo_Checkout.php:746, ../includes/Elements/Woo_Checkout.php:760, ../includes/Elements/Woo_Checkout.php:868, ../includes/Elements/Woo_Checkout.php:882, ../includes/Elements/Woo_Checkout.php:1055, ../includes/Elements/Woo_Checkout.php:1091, ../includes/Elements/Woo_Checkout.php:1107, ../includes/Elements/Woo_Checkout.php:1175, ../includes/Elements/Woo_Checkout.php:1274, ../includes/Elements/Woo_Checkout.php:1324, ../includes/Elements/Woo_Checkout.php:1364, ../includes/Elements/Woo_Checkout.php:1461, ../includes/Elements/Woo_Checkout.php:1622, ../includes/Elements/Woo_Checkout.php:1662, ../includes/Elements/Woo_Checkout.php:1780, ../includes/Elements/Woo_Checkout.php:1824, ../includes/Elements/Woo_Checkout.php:1868, ../includes/Elements/Woo_Checkout.php:1974, ../includes/Elements/Woo_Checkout.php:2013, ../includes/Elements/Woo_Checkout.php:2053, ../includes/Elements/Woo_Checkout.php:2240, ../includes/Elements/Woo_Checkout.php:2261, ../includes/Elements/Woo_Checkout.php:2296, ../includes/Elements/Woo_Checkout.php:2317, ../includes/Elements/Woo_Checkout.php:2406, ../includes/Elements/Woo_Checkout.php:2446, ../includes/Elements/WpForms.php:984, ../includes/Elements/WpForms.php:1100, ../includes/Extensions/Table_of_Content.php:1046, ../includes/Traits/Woo_Product_Comparable.php:47, ../includes/Traits/Woo_Product_Comparable.php:107, ../includes/Traits/Woo_Product_Comparable.php:1359, ../includes/Traits/Woo_Product_Comparable.php:1471
739
  msgid "Color"
740
  msgstr ""
741
 
@@ -763,39 +763,39 @@ msgstr ""
763
  msgid "Select Accordion Tab Title Tag"
764
  msgstr ""
765
 
766
- #: ../includes/Elements/Adv_Accordion.php:111, ../includes/Elements/Betterdocs_Category_Box.php:184, ../includes/Elements/Betterdocs_Category_Grid.php:222, ../includes/Elements/Cta_Box.php:198, ../includes/Elements/Dual_Color_Header.php:136, ../includes/Elements/Filterable_Gallery.php:364, ../includes/Elements/Flip_Box.php:297, ../includes/Elements/Flip_Box.php:526, ../includes/Elements/Image_Accordion.php:155, ../includes/Elements/Info_Box.php:233, ../includes/Elements/Progress_Bar.php:136, ../includes/Elements/Tooltip.php:112, ../includes/Extensions/Table_of_Content.php:147, ../includes/Traits/Controls.php:776
767
  msgid "H1"
768
  msgstr ""
769
 
770
- #: ../includes/Elements/Adv_Accordion.php:112, ../includes/Elements/Betterdocs_Category_Box.php:185, ../includes/Elements/Betterdocs_Category_Grid.php:223, ../includes/Elements/Cta_Box.php:199, ../includes/Elements/Dual_Color_Header.php:137, ../includes/Elements/Filterable_Gallery.php:365, ../includes/Elements/Flip_Box.php:298, ../includes/Elements/Flip_Box.php:527, ../includes/Elements/Image_Accordion.php:156, ../includes/Elements/Info_Box.php:234, ../includes/Elements/Progress_Bar.php:137, ../includes/Elements/Tooltip.php:113, ../includes/Extensions/Table_of_Content.php:148, ../includes/Traits/Controls.php:777
771
  msgid "H2"
772
  msgstr ""
773
 
774
- #: ../includes/Elements/Adv_Accordion.php:113, ../includes/Elements/Betterdocs_Category_Box.php:186, ../includes/Elements/Betterdocs_Category_Grid.php:224, ../includes/Elements/Cta_Box.php:200, ../includes/Elements/Dual_Color_Header.php:138, ../includes/Elements/Filterable_Gallery.php:366, ../includes/Elements/Flip_Box.php:299, ../includes/Elements/Flip_Box.php:528, ../includes/Elements/Image_Accordion.php:157, ../includes/Elements/Info_Box.php:235, ../includes/Elements/Progress_Bar.php:138, ../includes/Elements/Tooltip.php:114, ../includes/Extensions/Table_of_Content.php:149, ../includes/Traits/Controls.php:778
775
  msgid "H3"
776
  msgstr ""
777
 
778
- #: ../includes/Elements/Adv_Accordion.php:114, ../includes/Elements/Betterdocs_Category_Box.php:187, ../includes/Elements/Betterdocs_Category_Grid.php:225, ../includes/Elements/Cta_Box.php:201, ../includes/Elements/Dual_Color_Header.php:139, ../includes/Elements/Filterable_Gallery.php:367, ../includes/Elements/Flip_Box.php:300, ../includes/Elements/Flip_Box.php:529, ../includes/Elements/Image_Accordion.php:158, ../includes/Elements/Info_Box.php:236, ../includes/Elements/Progress_Bar.php:139, ../includes/Elements/Tooltip.php:115, ../includes/Extensions/Table_of_Content.php:150, ../includes/Traits/Controls.php:779
779
  msgid "H4"
780
  msgstr ""
781
 
782
- #: ../includes/Elements/Adv_Accordion.php:115, ../includes/Elements/Betterdocs_Category_Box.php:188, ../includes/Elements/Betterdocs_Category_Grid.php:226, ../includes/Elements/Cta_Box.php:202, ../includes/Elements/Dual_Color_Header.php:140, ../includes/Elements/Filterable_Gallery.php:368, ../includes/Elements/Flip_Box.php:301, ../includes/Elements/Flip_Box.php:530, ../includes/Elements/Image_Accordion.php:159, ../includes/Elements/Info_Box.php:237, ../includes/Elements/Progress_Bar.php:140, ../includes/Elements/Tooltip.php:116, ../includes/Extensions/Table_of_Content.php:151, ../includes/Traits/Controls.php:780
783
  msgid "H5"
784
  msgstr ""
785
 
786
- #: ../includes/Elements/Adv_Accordion.php:116, ../includes/Elements/Betterdocs_Category_Box.php:189, ../includes/Elements/Betterdocs_Category_Grid.php:227, ../includes/Elements/Cta_Box.php:203, ../includes/Elements/Dual_Color_Header.php:141, ../includes/Elements/Filterable_Gallery.php:369, ../includes/Elements/Flip_Box.php:302, ../includes/Elements/Flip_Box.php:531, ../includes/Elements/Image_Accordion.php:160, ../includes/Elements/Info_Box.php:238, ../includes/Elements/Progress_Bar.php:141, ../includes/Elements/Tooltip.php:117, ../includes/Extensions/Table_of_Content.php:152, ../includes/Traits/Controls.php:781
787
  msgid "H6"
788
  msgstr ""
789
 
790
- #: ../includes/Elements/Adv_Accordion.php:117, ../includes/Elements/Betterdocs_Category_Box.php:190, ../includes/Elements/Betterdocs_Category_Grid.php:228, ../includes/Elements/Cta_Box.php:204, ../includes/Elements/Dual_Color_Header.php:142, ../includes/Elements/Filterable_Gallery.php:370, ../includes/Elements/Flip_Box.php:303, ../includes/Elements/Flip_Box.php:532, ../includes/Elements/Image_Accordion.php:161, ../includes/Elements/Info_Box.php:239, ../includes/Traits/Controls.php:782
791
  msgid "Span"
792
  msgstr ""
793
 
794
- #: ../includes/Elements/Adv_Accordion.php:118, ../includes/Elements/Betterdocs_Category_Box.php:191, ../includes/Elements/Betterdocs_Category_Grid.php:229, ../includes/Elements/Cta_Box.php:205, ../includes/Elements/Dual_Color_Header.php:143, ../includes/Elements/Filterable_Gallery.php:371, ../includes/Elements/Flip_Box.php:304, ../includes/Elements/Flip_Box.php:533, ../includes/Elements/Image_Accordion.php:162, ../includes/Elements/Info_Box.php:240, ../includes/Elements/Tooltip.php:120, ../includes/Traits/Controls.php:783
795
  msgid "P"
796
  msgstr ""
797
 
798
- #: ../includes/Elements/Adv_Accordion.php:119, ../includes/Elements/Betterdocs_Category_Box.php:192, ../includes/Elements/Betterdocs_Category_Grid.php:230, ../includes/Elements/Cta_Box.php:206, ../includes/Elements/Dual_Color_Header.php:144, ../includes/Elements/Filterable_Gallery.php:372, ../includes/Elements/Flip_Box.php:305, ../includes/Elements/Flip_Box.php:534, ../includes/Elements/Image_Accordion.php:163, ../includes/Elements/Info_Box.php:241, ../includes/Traits/Controls.php:784
799
  msgid "Div"
800
  msgstr ""
801
 
@@ -815,7 +815,7 @@ msgstr ""
815
  msgid "Toggle Speed (ms)"
816
  msgstr ""
817
 
818
- #: ../includes/Elements/Adv_Accordion.php:179, ../includes/Elements/Countdown.php:142, ../includes/Elements/Cta_Box.php:72, ../includes/Elements/Dual_Color_Header.php:67, ../includes/Elements/Facebook_Feed.php:198, ../includes/Elements/Feature_List.php:62, ../includes/Elements/Tooltip.php:61
819
  msgid "Content Settings"
820
  msgstr ""
821
 
@@ -827,7 +827,7 @@ msgstr ""
827
  msgid "Enable Tab Icon"
828
  msgstr ""
829
 
830
- #: ../includes/Elements/Adv_Accordion.php:208, ../includes/Elements/Adv_Tabs.php:150, ../includes/Elements/Adv_Tabs.php:165, ../includes/Elements/Betterdocs_Category_Box.php:407, ../includes/Elements/Betterdocs_Category_Box.php:441, ../includes/Elements/Betterdocs_Category_Grid.php:441, ../includes/Elements/Betterdocs_Category_Grid.php:1064, ../includes/Elements/Betterdocs_Category_Grid.php:1073, ../includes/Elements/Betterdocs_Category_Grid.php:1205, ../includes/Elements/Betterdocs_Category_Grid.php:1312, ../includes/Elements/Creative_Button.php:129, ../includes/Elements/Cta_Box.php:151, ../includes/Elements/Data_Table.php:140, ../includes/Elements/Data_Table.php:159, ../includes/Elements/Dual_Color_Header.php:116, ../includes/Elements/Dual_Color_Header.php:271, ../includes/Elements/Feature_List.php:75, ../includes/Elements/Feature_List.php:91, ../includes/Elements/Feature_List.php:501, ../includes/Elements/Flip_Box.php:201, ../includes/Elements/Flip_Box.php:227, ../includes/Elements/Flip_Box.php:430, ../includes/Elements/Flip_Box.php:456, ../includes/Elements/Info_Box.php:106, ../includes/Elements/Info_Box.php:175, ../includes/Elements/Info_Box.php:440, ../includes/Elements/Pricing_Table.php:171, ../includes/Elements/Team_Member.php:165, ../includes/Elements/Tooltip.php:72, ../includes/Elements/Tooltip.php:142, ../includes/Elements/Twitter_Feed.php:866, ../includes/Extensions/Table_of_Content.php:622, ../includes/Traits/Controls.php:688, ../includes/Traits/Controls.php:741
831
  msgid "Icon"
832
  msgstr ""
833
 
@@ -835,11 +835,11 @@ msgstr ""
835
  msgid "Tab Title"
836
  msgstr ""
837
 
838
- #: ../includes/Elements/Adv_Accordion.php:235, ../includes/Elements/Adv_Tabs.php:206, ../includes/Elements/Cta_Box.php:214, ../includes/Elements/Data_Table.php:282, ../includes/Elements/Info_Box.php:248, ../includes/Elements/Tooltip.php:67
839
  msgid "Content Type"
840
  msgstr ""
841
 
842
- #: ../includes/Elements/Adv_Accordion.php:238, ../includes/Elements/Adv_Tabs.php:122, ../includes/Elements/Adv_Tabs.php:209, ../includes/Elements/Adv_Tabs.php:676, ../includes/Elements/Cta_Box.php:217, ../includes/Elements/Cta_Box.php:238, ../includes/Elements/Data_Table.php:244, ../includes/Elements/Data_Table.php:339, ../includes/Elements/Data_Table.php:353, ../includes/Elements/Event_Calendar.php:258, ../includes/Elements/Event_Calendar.php:1446, ../includes/Elements/Facebook_Feed.php:937, ../includes/Elements/Feature_List.php:190, ../includes/Elements/Feature_List.php:693, ../includes/Elements/Flip_Box.php:156, ../includes/Elements/Image_Accordion.php:96, ../includes/Elements/Image_Accordion.php:207, ../includes/Elements/Image_Accordion.php:515, ../includes/Elements/Info_Box.php:251, ../includes/Elements/Product_Grid.php:2391, ../includes/Elements/Tooltip.php:94, ../includes/Elements/Tooltip.php:266
843
  msgid "Content"
844
  msgstr ""
845
 
@@ -855,7 +855,7 @@ msgstr ""
855
  msgid "Tab Content"
856
  msgstr ""
857
 
858
- #: ../includes/Elements/Adv_Accordion.php:264, ../includes/Elements/Adv_Tabs.php:233, ../includes/Elements/Feature_List.php:192
859
  msgid "Lorem ipsum dolor sit amet, consectetur adipisicing elit. Optio, neque qui velit. Magni dolorum quidem ipsam eligendi, totam, facilis laudantium cum accusamus ullam voluptatibus commodi numquam, error, est. Ea, consequatur."
860
  msgstr ""
861
 
@@ -871,7 +871,7 @@ msgstr ""
871
  msgid "Accordion Tab Title 3"
872
  msgstr ""
873
 
874
- #: ../includes/Elements/Adv_Accordion.php:324, ../includes/Elements/Data_Table.php:481, ../includes/Elements/Filterable_Gallery.php:823
875
  msgid "General Style"
876
  msgstr ""
877
 
@@ -879,7 +879,7 @@ msgstr ""
879
  msgid "Tab Style"
880
  msgstr ""
881
 
882
- #: ../includes/Elements/Adv_Accordion.php:400, ../includes/Elements/Adv_Accordion.php:832, ../includes/Elements/Adv_Tabs.php:396, ../includes/Elements/Creative_Button.php:496, ../includes/Elements/Data_Table.php:679, ../includes/Elements/Dual_Color_Header.php:395, ../includes/Elements/Event_Calendar.php:1417, ../includes/Elements/Event_Calendar.php:1484, ../includes/Elements/Feature_List.php:573, ../includes/Elements/Filterable_Gallery.php:1771, ../includes/Elements/Filterable_Gallery.php:2125, ../includes/Elements/Filterable_Gallery.php:2558, ../includes/Elements/Flip_Box.php:959, ../includes/Elements/Flip_Box.php:1072, ../includes/Elements/Info_Box.php:935, ../includes/Elements/Info_Box.php:1174, ../includes/Elements/Login_Register.php:2821, ../includes/Elements/Pricing_Table.php:1241, ../includes/Elements/Pricing_Table.php:1676, ../includes/Elements/Pricing_Table.php:1847, ../includes/Elements/Product_Grid.php:1233, ../includes/Elements/Product_Grid.php:2727, ../includes/Elements/Team_Member.php:642, ../includes/Elements/Tooltip.php:199, ../includes/Extensions/Table_of_Content.php:658, ../includes/Traits/Woo_Product_Comparable.php:1332
883
  msgid "Icon Size"
884
  msgstr ""
885
 
@@ -891,15 +891,15 @@ msgstr ""
891
  msgid "Distance"
892
  msgstr ""
893
 
894
- #: ../includes/Elements/Adv_Accordion.php:546, ../includes/Elements/Adv_Accordion.php:619, ../includes/Elements/Adv_Accordion.php:692, ../includes/Elements/Adv_Tabs.php:498, ../includes/Elements/Adv_Tabs.php:564, ../includes/Elements/Adv_Tabs.php:632, ../includes/Elements/Dual_Color_Header.php:417, ../includes/Elements/Event_Calendar.php:1435, ../includes/Elements/Feature_List.php:119, ../includes/Elements/Info_Box.php:771, ../includes/Elements/Info_Box.php:850, ../includes/Elements/Info_Box.php:1002, ../includes/Elements/Info_Box.php:1081, ../includes/Elements/Post_Grid.php:947, ../includes/Elements/Pricing_Table.php:342, ../includes/Elements/Pricing_Table.php:1740, ../includes/Elements/Team_Member.php:718, ../includes/Elements/Twitter_Feed.php:607, ../includes/Elements/Woo_Checkout.php:1186, ../includes/Elements/Woo_Checkout.php:1472
895
  msgid "Icon Color"
896
  msgstr ""
897
 
898
- #: ../includes/Elements/Adv_Accordion.php:655, ../includes/Elements/Adv_Accordion.php:986, ../includes/Elements/Adv_Tabs.php:596, ../includes/Elements/Event_Calendar.php:862, ../includes/Elements/Filterable_Gallery.php:1017, ../includes/Elements/Product_Grid.php:2221, ../includes/Extensions/Table_of_Content.php:936
899
  msgid "Active"
900
  msgstr ""
901
 
902
- #: ../includes/Elements/Adv_Accordion.php:734, ../includes/Elements/Countdown.php:1100, ../includes/Elements/Cta_Box.php:79, ../includes/Elements/Cta_Box.php:592, ../includes/Elements/Data_Table.php:773, ../includes/Elements/Dual_Color_Header.php:74, ../includes/Elements/Facebook_Feed.php:609, ../includes/Elements/Facebook_Feed.php:773, ../includes/Elements/Flip_Box.php:1207, ../includes/Elements/Flip_Box.php:1276, ../includes/Elements/Info_Box.php:1382, ../includes/Elements/Tooltip.php:313, ../includes/Elements/Twitter_Feed.php:691
903
  msgid "Content Style"
904
  msgstr ""
905
 
@@ -919,15 +919,15 @@ msgstr ""
919
  msgid "Caret Color"
920
  msgstr ""
921
 
922
- #: ../includes/Elements/Adv_Tabs.php:79, ../includes/Elements/Countdown.php:148, ../includes/Elements/Facebook_Feed.php:168, ../includes/Elements/Filterable_Gallery.php:167, ../includes/Elements/Product_Grid.php:226, ../includes/Elements/Product_Grid.php:419, ../includes/Elements/Progress_Bar.php:73, ../includes/Elements/Progress_Bar.php:99, ../includes/Elements/Woo_Checkout.php:115, ../includes/Traits/Controls.php:402, ../includes/Traits/Controls.php:531, ../includes/Traits/Controls.php:591
923
  msgid "Layout"
924
  msgstr ""
925
 
926
- #: ../includes/Elements/Adv_Tabs.php:84, ../includes/Elements/Image_Accordion.php:86
927
  msgid "Horizontal"
928
  msgstr ""
929
 
930
- #: ../includes/Elements/Adv_Tabs.php:85, ../includes/Elements/Image_Accordion.php:87
931
  msgid "Vertical"
932
  msgstr ""
933
 
@@ -935,11 +935,11 @@ msgstr ""
935
  msgid "Enable Icon"
936
  msgstr ""
937
 
938
- #: ../includes/Elements/Adv_Tabs.php:101, ../includes/Elements/Betterdocs_Category_Grid.php:1327, ../includes/Elements/Creative_Button.php:141, ../includes/Elements/Data_Table.php:701, ../includes/Elements/Feature_List.php:298, ../includes/Elements/Filterable_Gallery.php:744, ../includes/Elements/Flip_Box.php:707, ../includes/Elements/Info_Box.php:121, ../includes/Elements/Info_Box.php:452, ../includes/Elements/Pricing_Table.php:540
939
  msgid "Icon Position"
940
  msgstr ""
941
 
942
- #: ../includes/Elements/Adv_Tabs.php:106, ../includes/Elements/Feature_List.php:290
943
  msgid "Stacked"
944
  msgstr ""
945
 
@@ -951,11 +951,11 @@ msgstr ""
951
  msgid "Set as Default"
952
  msgstr ""
953
 
954
- #: ../includes/Elements/Adv_Tabs.php:141, ../includes/Elements/Feature_List.php:71, ../includes/Elements/Flip_Box.php:196, ../includes/Elements/Flip_Box.php:425
955
  msgid "Icon Type"
956
  msgstr ""
957
 
958
- #: ../includes/Elements/Adv_Tabs.php:154, ../includes/Elements/Adv_Tabs.php:181, ../includes/Elements/Data_Table.php:144, ../includes/Elements/Data_Table.php:176, ../includes/Elements/Feature_List.php:79, ../includes/Elements/Feature_List.php:166, ../includes/Elements/Filterable_Gallery.php:560, ../includes/Elements/Flip_Box.php:200, ../includes/Elements/Flip_Box.php:429, ../includes/Elements/Info_Box.php:110, ../includes/Elements/Post_Grid.php:99, ../includes/Elements/Tooltip.php:80, ../includes/Elements/Tooltip.php:157, ../includes/Traits/Controls.php:571, ../includes/Traits/Controls.php:684, ../includes/Traits/Woo_Product_Comparable.php:38, ../includes/Traits/Woo_Product_Comparable.php:71
959
  msgid "Image"
960
  msgstr ""
961
 
@@ -971,7 +971,7 @@ msgstr ""
971
  msgid "Tab Title 3"
972
  msgstr ""
973
 
974
- #: ../includes/Elements/Adv_Tabs.php:292, ../includes/Elements/Event_Calendar.php:141, ../includes/Elements/Image_Accordion.php:60, ../includes/Elements/Image_Accordion.php:295, ../includes/Elements/Login_Register.php:235, ../includes/Elements/Login_Register.php:1388, ../includes/Elements/Progress_Bar.php:304, ../includes/Elements/Progress_Bar.php:515, ../includes/Traits/Admin.php:111
975
  msgid "General"
976
  msgstr ""
977
 
@@ -995,107 +995,107 @@ msgstr ""
995
  msgid "Caret Size"
996
  msgstr ""
997
 
998
- #: ../includes/Elements/Adv_Tabs.php:847, ../includes/Elements/Caldera_Forms.php:109, ../includes/Elements/Caldera_Forms.php:936, ../includes/Elements/Contact_Form_7.php:911, ../includes/Elements/Contact_Form_7.php:963, ../includes/Elements/Content_Ticker.php:237, ../includes/Elements/Content_Ticker.php:270, ../includes/Elements/Content_Ticker.php:285, ../includes/Elements/Content_Ticker.php:320, ../includes/Elements/Data_Table.php:1035, ../includes/Elements/Facebook_Feed.php:377, ../includes/Elements/Filterable_Gallery.php:284, ../includes/Elements/Filterable_Gallery.php:429, ../includes/Elements/Filterable_Gallery.php:478, ../includes/Elements/Filterable_Gallery.php:503, ../includes/Elements/Filterable_Gallery.php:528, ../includes/Elements/Filterable_Gallery.php:588, ../includes/Elements/Filterable_Gallery.php:603, ../includes/Elements/FluentForm.php:123, ../includes/Elements/FluentForm.php:902, ../includes/Elements/Formstack.php:192, ../includes/Elements/Formstack.php:1128, ../includes/Elements/GravityForms.php:149, ../includes/Elements/GravityForms.php:246, ../includes/Elements/GravityForms.php:1206, ../includes/Elements/GravityForms.php:1402, ../includes/Elements/Image_Accordion.php:175, ../includes/Elements/Info_Box.php:358, ../includes/Elements/Info_Box.php:372, ../includes/Elements/Login_Register.php:408, ../includes/Elements/Login_Register.php:486, ../includes/Elements/Login_Register.php:790, ../includes/Elements/NinjaForms.php:114, ../includes/Elements/NinjaForms.php:983, ../includes/Elements/Post_Grid.php:112, ../includes/Elements/Post_Grid.php:126, ../includes/Elements/Post_Grid.php:152, ../includes/Elements/Post_Grid.php:166, ../includes/Elements/Post_Grid.php:192, ../includes/Elements/Post_Grid.php:206, ../includes/Elements/Pricing_Table.php:219, ../includes/Elements/Pricing_Table.php:1878, ../includes/Elements/Team_Member.php:704, ../includes/Elements/WpForms.php:107, ../includes/Elements/WpForms.php:937, ../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:211, ../includes/Extensions/Table_of_Content.php:226, ../includes/Extensions/Table_of_Content.php:241, ../includes/Extensions/Table_of_Content.php:256, ../includes/Extensions/Table_of_Content.php:271, ../includes/Traits/Controls.php:374
999
  msgid "Yes"
1000
  msgstr ""
1001
 
1002
- #: ../includes/Elements/Adv_Tabs.php:848, ../includes/Elements/Caldera_Forms.php:110, ../includes/Elements/Caldera_Forms.php:937, ../includes/Elements/Contact_Form_7.php:912, ../includes/Elements/Contact_Form_7.php:964, ../includes/Elements/Content_Ticker.php:238, ../includes/Elements/Content_Ticker.php:271, ../includes/Elements/Content_Ticker.php:286, ../includes/Elements/Content_Ticker.php:321, ../includes/Elements/Cta_Box.php:685, ../includes/Elements/Data_Table.php:1036, ../includes/Elements/Facebook_Feed.php:381, ../includes/Elements/Feature_List.php:360, ../includes/Elements/Filterable_Gallery.php:285, ../includes/Elements/Filterable_Gallery.php:430, ../includes/Elements/Filterable_Gallery.php:479, ../includes/Elements/Filterable_Gallery.php:504, ../includes/Elements/Filterable_Gallery.php:529, ../includes/Elements/Filterable_Gallery.php:589, ../includes/Elements/Filterable_Gallery.php:604, ../includes/Elements/FluentForm.php:124, ../includes/Elements/FluentForm.php:903, ../includes/Elements/Formstack.php:193, ../includes/Elements/Formstack.php:1129, ../includes/Elements/GravityForms.php:150, ../includes/Elements/GravityForms.php:247, ../includes/Elements/GravityForms.php:1207, ../includes/Elements/GravityForms.php:1403, ../includes/Elements/Image_Accordion.php:176, ../includes/Elements/Info_Box.php:359, ../includes/Elements/Info_Box.php:373, ../includes/Elements/Login_Register.php:409, ../includes/Elements/Login_Register.php:487, ../includes/Elements/Login_Register.php:791, ../includes/Elements/NinjaForms.php:115, ../includes/Elements/NinjaForms.php:984, ../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:220, ../includes/Elements/Pricing_Table.php:1879, ../includes/Elements/Team_Member.php:705, ../includes/Elements/WpForms.php:108, ../includes/Elements/WpForms.php:938, ../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:212, ../includes/Extensions/Table_of_Content.php:227, ../includes/Extensions/Table_of_Content.php:242, ../includes/Extensions/Table_of_Content.php:257, ../includes/Extensions/Table_of_Content.php:272, ../includes/Traits/Controls.php:375
1003
  msgid "No"
1004
  msgstr ""
1005
 
1006
- #: ../includes/Elements/Betterdocs_Category_Box.php:118, ../includes/Elements/Betterdocs_Category_Grid.php:120
1007
  msgid "Layout Options"
1008
  msgstr ""
1009
 
1010
- #: ../includes/Elements/Betterdocs_Category_Box.php:125, ../includes/Elements/Betterdocs_Category_Grid.php:127
1011
  msgid "Select Layout"
1012
  msgstr ""
1013
 
1014
- #: ../includes/Elements/Betterdocs_Category_Box.php:136
1015
  msgid "Box Column"
1016
  msgstr ""
1017
 
1018
- #: ../includes/Elements/Betterdocs_Category_Box.php:156, ../includes/Elements/Betterdocs_Category_Grid.php:188, ../includes/Elements/Betterdocs_Category_Grid.php:1300, ../includes/Elements/Dual_Color_Header.php:90, ../includes/Elements/Twitter_Feed.php:269
1019
  msgid "Show Icon"
1020
  msgstr ""
1021
 
1022
- #: ../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:1302, ../includes/Elements/Caldera_Forms.php:152, ../includes/Elements/Caldera_Forms.php:165, ../includes/Elements/Caldera_Forms.php:191, ../includes/Elements/Contact_Form_7.php:205, ../includes/Elements/Contact_Form_7.php:231, ../includes/Elements/Contact_Form_7.php:251, ../includes/Elements/Content_Ticker.php:298, ../includes/Elements/Countdown.php:503, ../includes/Elements/Creative_Button.php:250, ../includes/Elements/Cta_Box.php:134, ../includes/Elements/Cta_Box.php:281, ../includes/Elements/Dual_Color_Header.php:93, ../includes/Elements/Dual_Color_Header.php:103, ../includes/Elements/Facebook_Feed.php:295, ../includes/Elements/Facebook_Feed.php:307, ../includes/Elements/Facebook_Feed.php:322, ../includes/Elements/Facebook_Feed.php:337, ../includes/Elements/Facebook_Feed.php:352, ../includes/Elements/Facebook_Feed.php:418, ../includes/Elements/Feature_List.php:359, ../includes/Elements/Filterable_Gallery.php:272, ../includes/Elements/FluentForm.php:166, ../includes/Elements/FluentForm.php:178, ../includes/Elements/FluentForm.php:204, ../includes/Elements/FluentForm.php:1706, ../includes/Elements/FluentForm.php:1774, ../includes/Elements/Formstack.php:235, ../includes/Elements/Formstack.php:247, ../includes/Elements/Formstack.php:273, ../includes/Elements/Formstack.php:286, ../includes/Elements/Formstack.php:1622, ../includes/Elements/GravityForms.php:161, ../includes/Elements/GravityForms.php:176, ../includes/Elements/GravityForms.php:222, ../includes/Elements/GravityForms.php:234, ../includes/Elements/GravityForms.php:272, ../includes/Elements/GravityForms.php:292, ../includes/Elements/Info_Box.php:290, ../includes/Elements/Login_Register.php:330, ../includes/Elements/Login_Register.php:621, ../includes/Elements/NinjaForms.php:126, ../includes/Elements/NinjaForms.php:173, ../includes/Elements/NinjaForms.php:186, ../includes/Elements/NinjaForms.php:212, ../includes/Elements/NinjaForms.php:232, ../includes/Elements/Post_Timeline.php:88, ../includes/Elements/Pricing_Table.php:515, ../includes/Elements/Pricing_Table.php:1630, ../includes/Elements/Product_Grid.php:520, ../includes/Elements/Product_Grid.php:622, ../includes/Elements/Product_Grid.php:1447, ../includes/Elements/Product_Grid.php:2037, ../includes/Elements/Sticky_Video.php:362, ../includes/Elements/Twitter_Feed.php:368, ../includes/Elements/WpForms.php:119, ../includes/Elements/WpForms.php:134, ../includes/Elements/WpForms.php:180, ../includes/Elements/WpForms.php:193, ../includes/Elements/WpForms.php:216, ../includes/Traits/Controls.php:562, ../includes/Traits/Controls.php:624, ../includes/Traits/Controls.php:654, ../includes/Traits/Controls.php:762, ../includes/Traits/Controls.php:810, ../includes/Traits/Controls.php:878, ../includes/Traits/Controls.php:913, ../includes/Traits/Controls.php:944, ../includes/Traits/Controls.php:995, ../includes/Traits/Controls.php:1023, ../includes/Traits/Controls.php:1039, ../includes/Traits/Controls.php:1054
1023
  msgid "Show"
1024
  msgstr ""
1025
 
1026
- #: ../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:1303, ../includes/Elements/Caldera_Forms.php:153, ../includes/Elements/Caldera_Forms.php:166, ../includes/Elements/Caldera_Forms.php:192, ../includes/Elements/Contact_Form_7.php:206, ../includes/Elements/Contact_Form_7.php:232, ../includes/Elements/Contact_Form_7.php:252, ../includes/Elements/Content_Ticker.php:299, ../includes/Elements/Countdown.php:504, ../includes/Elements/Creative_Button.php:251, ../includes/Elements/Cta_Box.php:135, ../includes/Elements/Cta_Box.php:282, ../includes/Elements/Dual_Color_Header.php:94, ../includes/Elements/Dual_Color_Header.php:104, ../includes/Elements/Facebook_Feed.php:296, ../includes/Elements/Facebook_Feed.php:308, ../includes/Elements/Facebook_Feed.php:323, ../includes/Elements/Facebook_Feed.php:338, ../includes/Elements/Facebook_Feed.php:353, ../includes/Elements/Facebook_Feed.php:419, ../includes/Elements/Filterable_Gallery.php:273, ../includes/Elements/FluentForm.php:167, ../includes/Elements/FluentForm.php:179, ../includes/Elements/FluentForm.php:205, ../includes/Elements/FluentForm.php:1707, ../includes/Elements/FluentForm.php:1775, ../includes/Elements/Formstack.php:236, ../includes/Elements/Formstack.php:248, ../includes/Elements/Formstack.php:274, ../includes/Elements/Formstack.php:287, ../includes/Elements/Formstack.php:1623, ../includes/Elements/GravityForms.php:162, ../includes/Elements/GravityForms.php:177, ../includes/Elements/GravityForms.php:223, ../includes/Elements/GravityForms.php:235, ../includes/Elements/GravityForms.php:273, ../includes/Elements/GravityForms.php:293, ../includes/Elements/Info_Box.php:291, ../includes/Elements/Login_Register.php:329, ../includes/Elements/Login_Register.php:529, ../includes/Elements/Login_Register.php:620, ../includes/Elements/NinjaForms.php:127, ../includes/Elements/NinjaForms.php:174, ../includes/Elements/NinjaForms.php:187, ../includes/Elements/NinjaForms.php:213, ../includes/Elements/NinjaForms.php:233, ../includes/Elements/Post_Timeline.php:89, ../includes/Elements/Pricing_Table.php:516, ../includes/Elements/Pricing_Table.php:1631, ../includes/Elements/Product_Grid.php:521, ../includes/Elements/Product_Grid.php:623, ../includes/Elements/Product_Grid.php:1448, ../includes/Elements/Product_Grid.php:2038, ../includes/Elements/Sticky_Video.php:363, ../includes/Elements/Twitter_Feed.php:369, ../includes/Elements/WpForms.php:120, ../includes/Elements/WpForms.php:135, ../includes/Elements/WpForms.php:181, ../includes/Elements/WpForms.php:194, ../includes/Elements/WpForms.php:217, ../includes/Traits/Controls.php:563, ../includes/Traits/Controls.php:625, ../includes/Traits/Controls.php:655, ../includes/Traits/Controls.php:763, ../includes/Traits/Controls.php:811, ../includes/Traits/Controls.php:879, ../includes/Traits/Controls.php:914, ../includes/Traits/Controls.php:945, ../includes/Traits/Controls.php:996, ../includes/Traits/Controls.php:1024, ../includes/Traits/Controls.php:1040, ../includes/Traits/Controls.php:1055
1027
  msgid "Hide"
1028
  msgstr ""
1029
 
1030
- #: ../includes/Elements/Betterdocs_Category_Box.php:168, ../includes/Elements/Betterdocs_Category_Grid.php:203, ../includes/Traits/Controls.php:760
1031
  msgid "Show Title"
1032
  msgstr ""
1033
 
1034
- #: ../includes/Elements/Betterdocs_Category_Box.php:180, ../includes/Elements/Betterdocs_Category_Grid.php:218, ../includes/Elements/Cta_Box.php:194, ../includes/Elements/Image_Accordion.php:151
1035
  msgid "Select Tag"
1036
  msgstr ""
1037
 
1038
- #: ../includes/Elements/Betterdocs_Category_Box.php:203, ../includes/Elements/Betterdocs_Category_Grid.php:242
1039
  msgid "Show Count"
1040
  msgstr ""
1041
 
1042
- #: ../includes/Elements/Betterdocs_Category_Box.php:215, ../includes/Elements/Progress_Bar.php:241
1043
  msgid "Prefix"
1044
  msgstr ""
1045
 
1046
- #: ../includes/Elements/Betterdocs_Category_Box.php:228
1047
  msgid "Suffix"
1048
  msgstr ""
1049
 
1050
- #: ../includes/Elements/Betterdocs_Category_Box.php:231
1051
  msgid "articles"
1052
  msgstr ""
1053
 
1054
- #: ../includes/Elements/Betterdocs_Category_Box.php:250, ../includes/Elements/Flip_Box.php:648
1055
  msgid "Box"
1056
  msgstr ""
1057
 
1058
- #: ../includes/Elements/Betterdocs_Category_Box.php:258
1059
  msgid "Box Spacing"
1060
  msgstr ""
1061
 
1062
- #: ../includes/Elements/Betterdocs_Category_Box.php:270
1063
  msgid "Box Padding"
1064
  msgstr ""
1065
 
1066
- #: ../includes/Elements/Betterdocs_Category_Box.php:336, ../includes/Elements/Betterdocs_Category_Box.php:589, ../includes/Elements/Betterdocs_Category_Box.php:728, ../includes/Elements/Betterdocs_Category_Box.php:1027, ../includes/Elements/Betterdocs_Search_Form.php:480, ../includes/Elements/Filterable_Gallery.php:1913, ../includes/Elements/Info_Box.php:1477
1067
  msgid "Transition"
1068
  msgstr ""
1069
 
1070
- #: ../includes/Elements/Betterdocs_Category_Box.php:415, ../includes/Elements/Betterdocs_Category_Box.php:635, ../includes/Elements/Betterdocs_Category_Box.php:807
1071
  msgid "Area"
1072
  msgstr ""
1073
 
1074
- #: ../includes/Elements/Betterdocs_Category_Box.php:423, ../includes/Elements/Betterdocs_Category_Box.php:458, ../includes/Elements/Betterdocs_Category_Box.php:815, ../includes/Elements/Betterdocs_Category_Box.php:922, ../includes/Elements/Betterdocs_Category_Grid.php:539, ../includes/Elements/Betterdocs_Category_Grid.php:776, ../includes/Elements/Betterdocs_Category_Grid.php:1096, ../includes/Elements/Betterdocs_Category_Grid.php:1249, ../includes/Elements/Betterdocs_Search_Form.php:249, ../includes/Elements/Caldera_Forms.php:945, ../includes/Elements/Contact_Form_7.php:972, ../includes/Elements/Feature_List.php:553, ../includes/Elements/Filterable_Gallery.php:712, ../includes/Elements/FluentForm.php:911, ../includes/Elements/Formstack.php:1137, ../includes/Elements/Formstack.php:1290, ../includes/Elements/GravityForms.php:1215, ../includes/Elements/GravityForms.php:1411, ../includes/Elements/Login_Register.php:2735, ../includes/Elements/Login_Register.php:3344, ../includes/Elements/NinjaForms.php:992, ../includes/Elements/Progress_Bar.php:549, ../includes/Elements/WpForms.php:946, ../includes/Traits/Woo_Product_Comparable.php:48, ../includes/Traits/Woo_Product_Comparable.php:111, ../includes/Traits/Woo_Product_Comparable.php:1424
1075
  msgid "Size"
1076
  msgstr ""
1077
 
1078
- #: ../includes/Elements/Betterdocs_Category_Box.php:527, ../includes/Elements/Betterdocs_Category_Box.php:695, ../includes/Elements/Betterdocs_Category_Box.php:942, ../includes/Elements/Betterdocs_Category_Grid.php:1115, ../includes/Elements/Betterdocs_Category_Grid.php:1193, ../includes/Elements/Caldera_Forms.php:753, ../includes/Elements/Caldera_Forms.php:870, ../includes/Elements/Contact_Form_7.php:575, ../includes/Elements/Contact_Form_7.php:860, ../includes/Elements/Contact_Form_7.php:1430, ../includes/Elements/Feature_List.php:654, ../includes/Elements/Filterable_Gallery.php:2406, ../includes/Elements/FluentForm.php:772, ../includes/Elements/FluentForm.php:1748, ../includes/Elements/Formstack.php:605, ../includes/Elements/Formstack.php:1001, ../includes/Elements/GravityForms.php:684, ../includes/Elements/GravityForms.php:956, ../includes/Elements/Login_Register.php:2402, ../includes/Elements/Login_Register.php:2604, ../includes/Elements/Login_Register.php:3077, ../includes/Elements/Login_Register.php:3376, ../includes/Elements/NinjaForms.php:797, ../includes/Elements/NinjaForms.php:914, ../includes/Elements/NinjaForms.php:1579, ../includes/Elements/Post_Grid.php:870, ../includes/Elements/Woo_Checkout.php:1985, ../includes/Elements/WpForms.php:765, ../includes/Elements/WpForms.php:871
1079
  msgid "Spacing"
1080
  msgstr ""
1081
 
1082
- #: ../includes/Elements/Betterdocs_Category_Box.php:627, ../includes/Elements/Betterdocs_Category_Box.php:666, ../includes/Elements/Betterdocs_Category_Grid.php:589, ../includes/Elements/Betterdocs_Category_Grid.php:1145, ../includes/Elements/Caldera_Forms.php:118, ../includes/Elements/Caldera_Forms.php:258, ../includes/Elements/Contact_Form_7.php:160, ../includes/Elements/Contact_Form_7.php:465, ../includes/Elements/Cta_Box.php:183, ../includes/Elements/Event_Calendar.php:148, ../includes/Elements/Event_Calendar.php:691, ../includes/Elements/Event_Calendar.php:1350, ../includes/Elements/Feature_List.php:180, ../includes/Elements/Feature_List.php:182, ../includes/Elements/Feature_List.php:733, ../includes/Elements/Flip_Box.php:649, ../includes/Elements/FluentForm.php:132, ../includes/Elements/FluentForm.php:265, ../includes/Elements/Formstack.php:201, ../includes/Elements/Formstack.php:472, ../includes/Elements/GravityForms.php:158, ../includes/Elements/GravityForms.php:188, ../includes/Elements/GravityForms.php:506, ../includes/Elements/Image_Accordion.php:196, ../includes/Elements/Image_Accordion.php:486, ../includes/Elements/Login_Register.php:2213, ../includes/Elements/NinjaForms.php:123, ../includes/Elements/NinjaForms.php:139, ../includes/Elements/NinjaForms.php:443, ../includes/Elements/Post_Grid.php:138, ../includes/Elements/Pricing_Table.php:135, ../includes/Elements/Product_Grid.php:2320, ../includes/Elements/Progress_Bar.php:120, ../includes/Elements/Progress_Bar.php:679, ../includes/Elements/Woo_Checkout.php:323, ../includes/Elements/Woo_Checkout.php:433, ../includes/Elements/Woo_Checkout.php:527, ../includes/Elements/WpForms.php:116, ../includes/Elements/WpForms.php:146, ../includes/Elements/WpForms.php:410, ../includes/Extensions/Table_of_Content.php:110, ../includes/Traits/Woo_Product_Comparable.php:39, ../includes/Traits/Woo_Product_Comparable.php:75, ../includes/Traits/Woo_Product_Comparable.php:1070, ../includes/Traits/Woo_Product_Comparable.php:1188
1083
  msgid "Title"
1084
  msgstr ""
1085
 
1086
- #: ../includes/Elements/Betterdocs_Category_Box.php:646
1087
  msgid "Area Size"
1088
  msgstr ""
1089
 
1090
- #: ../includes/Elements/Betterdocs_Category_Box.php:799, ../includes/Elements/Betterdocs_Category_Box.php:835, ../includes/Elements/Betterdocs_Category_Grid.php:757, ../includes/Elements/Betterdocs_Search_Form.php:444, ../includes/Elements/Betterdocs_Search_Form.php:542
1091
  msgid "Count"
1092
  msgstr ""
1093
 
1094
- #: ../includes/Elements/Betterdocs_Category_Box.php:87, ../includes/Elements/Betterdocs_Category_Grid.php:90, ../includes/Elements/Betterdocs_Search_Form.php:84, ../includes/Elements/Caldera_Forms.php:67, ../includes/Elements/Career_Page.php:49, ../includes/Elements/Contact_Form_7.php:109, ../includes/Elements/EmbedPress.php:54, ../includes/Elements/FluentForm.php:79, ../includes/Elements/Formstack.php:75, ../includes/Elements/Formstack.php:96, ../includes/Elements/Formstack.php:117, ../includes/Elements/GravityForms.php:107, ../includes/Elements/NinjaForms.php:72, ../includes/Elements/TypeForm.php:99, ../includes/Elements/WeForms.php:70, ../includes/Elements/Woocommerce_Review.php:52, ../includes/Elements/Woo_Checkout.php:84, ../includes/Elements/WpForms.php:69, ../includes/Traits/Woo_Product_Comparable.php:119
1095
  msgid "Warning!"
1096
  msgstr ""
1097
 
1098
- #: ../includes/Elements/Betterdocs_Category_Box.php:95, ../includes/Elements/Betterdocs_Category_Grid.php:98, ../includes/Elements/Betterdocs_Search_Form.php:92
1099
  msgid "<strong>BetterDocs</strong> is not installed/activated on your site. Please install and activate <a href=\"plugin-install.php?s=BetterDocs&tab=search&type=term\" target=\"_blank\">BetterDocs</a> first."
1100
  msgstr ""
1101
 
@@ -1111,7 +1111,7 @@ msgstr ""
1111
  msgid "Layout Mode"
1112
  msgstr ""
1113
 
1114
- #: ../includes/Elements/Betterdocs_Category_Grid.php:141, ../includes/Elements/Betterdocs_Category_Grid.php:304, ../includes/Elements/Filterable_Gallery.php:143, ../includes/Elements/Product_Grid.php:230, ../includes/Traits/Controls.php:535
1115
  msgid "Grid"
1116
  msgstr ""
1117
 
@@ -1119,7 +1119,7 @@ msgstr ""
1119
  msgid "Fit to Screen"
1120
  msgstr ""
1121
 
1122
- #: ../includes/Elements/Betterdocs_Category_Grid.php:143, ../includes/Elements/Filterable_Gallery.php:144, ../includes/Elements/Product_Grid.php:232, ../includes/Elements/Twitter_Feed.php:148, ../includes/Traits/Controls.php:536
1123
  msgid "Masonry"
1124
  msgstr ""
1125
 
@@ -1139,7 +1139,7 @@ msgstr ""
1139
  msgid "Show Button"
1140
  msgstr ""
1141
 
1142
- #: ../includes/Elements/Betterdocs_Category_Grid.php:282, ../includes/Elements/Creative_Button.php:78, ../includes/Elements/Cta_Box.php:256, ../includes/Elements/Filterable_Gallery.php:686, ../includes/Elements/Flip_Box.php:680, ../includes/Elements/Info_Box.php:402, ../includes/Elements/Login_Register.php:635, ../includes/Elements/Login_Register.php:1110, ../includes/Elements/Pricing_Table.php:578, ../includes/Elements/Woo_Checkout.php:370, ../includes/Traits/Controls.php:926
1143
  msgid "Button Text"
1144
  msgstr ""
1145
 
@@ -1159,11 +1159,11 @@ msgstr ""
1159
  msgid "Ticker Background"
1160
  msgstr ""
1161
 
1162
- #: ../includes/Elements/Betterdocs_Category_Grid.php:978, ../includes/Elements/Betterdocs_Category_Grid.php:989, ../includes/Elements/Event_Calendar.php:527, ../includes/Elements/Feature_List.php:376, ../includes/Elements/Product_Grid.php:231, ../includes/Elements/Twitter_Feed.php:147, ../includes/Extensions/Table_of_Content.php:801
1163
  msgid "List"
1164
  msgstr ""
1165
 
1166
- #: ../includes/Elements/Betterdocs_Category_Grid.php:1016, ../includes/Elements/Filterable_Gallery.php:1225, ../includes/Elements/Filterable_Gallery.php:1605, ../includes/Elements/Filterable_Gallery.php:2363, ../includes/Elements/Pricing_Table.php:1774, ../includes/Elements/Product_Grid.php:2707, ../includes/Elements/Twitter_Feed.php:742
1167
  msgid "Hover Color"
1168
  msgstr ""
1169
 
@@ -1191,11 +1191,11 @@ msgstr ""
1191
  msgid "Area Spacing"
1192
  msgstr ""
1193
 
1194
- #: ../includes/Elements/Betterdocs_Category_Grid.php:1331, ../includes/Elements/Creative_Button.php:145, ../includes/Elements/Filterable_Gallery.php:749, ../includes/Elements/Flip_Box.php:712, ../includes/Elements/Info_Box.php:456, ../includes/Elements/Pricing_Table.php:544
1195
  msgid "Before"
1196
  msgstr ""
1197
 
1198
- #: ../includes/Elements/Betterdocs_Category_Grid.php:1332, ../includes/Elements/Creative_Button.php:146, ../includes/Elements/Filterable_Gallery.php:748, ../includes/Elements/Flip_Box.php:711, ../includes/Elements/Info_Box.php:457, ../includes/Elements/Pricing_Table.php:545
1199
  msgid "After"
1200
  msgstr ""
1201
 
@@ -1235,7 +1235,7 @@ msgstr ""
1235
  msgid "Close Icon"
1236
  msgstr ""
1237
 
1238
- #: ../includes/Elements/Betterdocs_Search_Form.php:286, ../includes/Elements/Caldera_Forms.php:1020, ../includes/Elements/Caldera_Forms.php:1334, ../includes/Elements/Contact_Form_7.php:1047, ../includes/Elements/Contact_Form_7.php:1363, ../includes/Elements/Content_Ticker.php:720, ../includes/Elements/Countdown.php:784, ../includes/Elements/Countdown.php:856, ../includes/Elements/Countdown.php:928, ../includes/Elements/Countdown.php:1000, ../includes/Elements/Creative_Button.php:417, ../includes/Elements/Cta_Box.php:809, ../includes/Elements/Cta_Box.php:978, ../includes/Elements/Event_Calendar.php:639, ../includes/Elements/Facebook_Feed.php:717, ../includes/Elements/Filterable_Gallery.php:2706, ../includes/Elements/FluentForm.php:986, ../includes/Elements/FluentForm.php:1654, ../includes/Elements/Formstack.php:1570, ../includes/Elements/GravityForms.php:1057, ../includes/Elements/GravityForms.php:1290, ../includes/Elements/GravityForms.php:1486, ../includes/Elements/GravityForms.php:1915, ../includes/Elements/GravityForms.php:2137, ../includes/Elements/NinjaForms.php:1067, ../includes/Elements/NinjaForms.php:1483, ../includes/Elements/Pricing_Table.php:2000, ../includes/Elements/Product_Grid.php:739, ../includes/Elements/Product_Grid.php:879, ../includes/Elements/Product_Grid.php:1573, ../includes/Elements/Product_Grid.php:1817, ../includes/Elements/Product_Grid.php:1997, ../includes/Elements/Product_Grid.php:2206, ../includes/Elements/Product_Grid.php:2250, ../includes/Elements/Product_Grid.php:2444, ../includes/Elements/Product_Grid.php:2538, ../includes/Elements/Product_Grid.php:2650, ../includes/Elements/Sticky_Video.php:579, ../includes/Elements/Twitter_Feed.php:618, ../includes/Elements/WeForms.php:464, ../includes/Elements/WeForms.php:764, ../includes/Elements/Woo_Checkout.php:774, ../includes/Elements/Woo_Checkout.php:981, ../includes/Elements/Woo_Checkout.php:1376, ../includes/Elements/Woo_Checkout.php:1572, ../includes/Elements/Woo_Checkout.php:1674, ../includes/Elements/Woo_Checkout.php:1791, ../includes/Elements/Woo_Checkout.php:1835, ../includes/Elements/Woo_Checkout.php:1879, ../includes/Elements/Woo_Checkout.php:2068, ../includes/Elements/Woo_Checkout.php:2084, ../includes/Elements/Woo_Checkout.php:2346, ../includes/Elements/Woo_Checkout.php:2458, ../includes/Elements/WpForms.php:1021, ../includes/Elements/WpForms.php:1339, ../includes/Traits/Controls.php:1455, ../includes/Traits/Woo_Product_Comparable.php:1710
1239
  msgid "Border Color"
1240
  msgstr ""
1241
 
@@ -1267,7 +1267,7 @@ msgstr ""
1267
  msgid "Custom Title & Description"
1268
  msgstr ""
1269
 
1270
- #: ../includes/Elements/Caldera_Forms.php:134, ../includes/Elements/Caldera_Forms.php:319, ../includes/Elements/Contact_Form_7.php:187, ../includes/Elements/Contact_Form_7.php:496, ../includes/Elements/Event_Calendar.php:265, ../includes/Elements/Feature_List.php:786, ../includes/Elements/FluentForm.php:148, ../includes/Elements/FluentForm.php:326, ../includes/Elements/FluentForm.php:1152, ../includes/Elements/Formstack.php:217, ../includes/Elements/Formstack.php:521, ../includes/Elements/Formstack.php:704, ../includes/Elements/GravityForms.php:173, ../includes/Elements/GravityForms.php:204, ../includes/Elements/GravityForms.php:537, ../includes/Elements/NinjaForms.php:155, ../includes/Elements/NinjaForms.php:492, ../includes/Elements/Team_Member.php:131, ../includes/Elements/WpForms.php:131, ../includes/Elements/WpForms.php:162, ../includes/Elements/WpForms.php:459, ../includes/Traits/Controls.php:306, ../includes/Traits/Woo_Product_Comparable.php:42, ../includes/Traits/Woo_Product_Comparable.php:83
1271
  msgid "Description"
1272
  msgstr ""
1273
 
@@ -1303,7 +1303,7 @@ msgstr ""
1303
  msgid "Form Alignment"
1304
  msgstr ""
1305
 
1306
- #: ../includes/Elements/Caldera_Forms.php:411, ../includes/Elements/Contact_Form_7.php:327, ../includes/Elements/Contact_Form_7.php:828, ../includes/Elements/Creative_Button.php:225, ../includes/Elements/Cta_Box.php:641, ../includes/Elements/Cta_Box.php:858, ../includes/Elements/Dual_Color_Header.php:79, ../includes/Elements/Flip_Box.php:871, ../includes/Elements/FluentForm.php:430, ../includes/Elements/Formstack.php:330, ../includes/Elements/GravityForms.php:343, ../includes/Elements/Login_Register.php:430, ../includes/Elements/Login_Register.php:527, ../includes/Elements/Login_Register.php:1039, ../includes/Elements/Login_Register.php:1395, ../includes/Elements/Login_Register.php:1521, ../includes/Elements/Login_Register.php:1778, ../includes/Elements/Login_Register.php:1922, ../includes/Elements/Login_Register.php:2072, ../includes/Elements/Login_Register.php:2215, ../includes/Elements/Login_Register.php:2306, ../includes/Elements/Login_Register.php:2404, ../includes/Elements/Login_Register.php:2606, ../includes/Elements/Login_Register.php:2651, ../includes/Elements/Login_Register.php:2683, ../includes/Elements/Login_Register.php:2917, ../includes/Elements/Login_Register.php:3079, ../includes/Elements/Login_Register.php:3378, ../includes/Elements/NinjaForms.php:278, ../includes/Elements/Post_Grid.php:233, ../includes/Elements/Pricing_Table.php:85, ../includes/Elements/Pricing_Table.php:467, ../includes/Elements/Product_Grid.php:244, ../includes/Elements/Team_Member.php:375, ../includes/Elements/Testimonial.php:252, ../includes/Elements/Testimonial.php:309, ../includes/Elements/TypeForm.php:196, ../includes/Elements/WeForms.php:161, ../includes/Elements/WeForms.php:631, ../includes/Elements/Woo_Checkout.php:120, ../includes/Elements/WpForms.php:267, ../includes/Traits/Controls.php:551, ../includes/Traits/Controls.php:1525, ../includes/Traits/Login_Registration.php:571, ../includes/Traits/Woo_Product_Comparable.php:406, ../includes/Traits/Woo_Product_Comparable.php:520, ../includes/Traits/Woo_Product_Comparable.php:611, ../includes/Traits/Woo_Product_Comparable.php:680, ../includes/Template/Betterdocs-Category-Box/Layout_Default.php:4, ../includes/Template/Betterdocs-Category-Grid/Layout_Default.php:4, ../includes/Template/Content-Ticker/default.php:3, ../includes/Template/Eicon-Woocommerce/default.php:4, ../includes/Template/Post-Grid/default.php:4, ../includes/Template/Post-Timeline/default.php:3
1307
  msgid "Default"
1308
  msgstr ""
1309
 
@@ -1359,7 +1359,7 @@ msgstr ""
1359
  msgid "Custom Styles"
1360
  msgstr ""
1361
 
1362
- #: ../includes/Elements/Caldera_Forms.php:998, ../includes/Elements/Contact_Form_7.php:1025, ../includes/Elements/Feature_List.php:614, ../includes/Elements/FluentForm.php:964, ../includes/Elements/GravityForms.php:1268, ../includes/Elements/GravityForms.php:1464, ../includes/Elements/NinjaForms.php:1045, ../includes/Elements/Sticky_Video.php:567, ../includes/Elements/WpForms.php:999
1363
  msgid "Border Width"
1364
  msgstr ""
1365
 
@@ -1443,7 +1443,7 @@ msgstr ""
1443
  msgid "<strong>Contact Form 7</strong> is not installed/activated on your site. Please install and activate <strong>Contact Form 7</strong> first."
1444
  msgstr ""
1445
 
1446
- #: ../includes/Elements/Contact_Form_7.php:313, ../includes/Elements/Contact_Form_7.php:1636, ../includes/Elements/Cta_Box.php:727, ../includes/Elements/Cta_Box.php:797, ../includes/Elements/Cta_Box.php:917, ../includes/Elements/Cta_Box.php:969, ../includes/Elements/Dual_Color_Header.php:741, ../includes/Elements/Dual_Color_Header.php:821, ../includes/Elements/Event_Calendar.php:627, ../includes/Elements/Event_Calendar.php:759, ../includes/Elements/Event_Calendar.php:826, ../includes/Elements/Event_Calendar.php:880, ../includes/Elements/Event_Calendar.php:992, ../includes/Elements/Event_Calendar.php:1084, ../includes/Elements/Event_Calendar.php:1182, ../includes/Elements/Event_Calendar.php:1548, ../includes/Elements/Event_Calendar.php:1657, ../includes/Elements/Facebook_Feed.php:477, ../includes/Elements/Facebook_Feed.php:490, ../includes/Elements/Facebook_Feed.php:565, ../includes/Elements/Facebook_Feed.php:578, ../includes/Elements/Facebook_Feed.php:663, ../includes/Elements/Facebook_Feed.php:676, ../includes/Elements/Facebook_Feed.php:747, ../includes/Elements/Facebook_Feed.php:785, ../includes/Elements/Facebook_Feed.php:825, ../includes/Elements/Fancy_Text.php:438, ../includes/Elements/Filterable_Gallery.php:2050, ../includes/Elements/Filterable_Gallery.php:2269, ../includes/Elements/Flip_Box.php:1371, ../includes/Elements/Flip_Box.php:1429, ../includes/Elements/FluentForm.php:1853, ../includes/Elements/FluentForm.php:1878, ../includes/Elements/FluentForm.php:1943, ../includes/Elements/FluentForm.php:2006, ../includes/Elements/Formstack.php:638, ../includes/Elements/Formstack.php:1713, ../includes/Elements/Formstack.php:1738, ../includes/Elements/Formstack.php:1802, ../includes/Elements/Formstack.php:1867, ../includes/Elements/Formstack.php:1922, ../includes/Elements/Formstack.php:2005, ../includes/Elements/Post_Grid.php:351, ../includes/Elements/Pricing_Table.php:1919, ../includes/Elements/Pricing_Table.php:1988, ../includes/Elements/Product_Grid.php:1475, ../includes/Elements/Product_Grid.php:1489, ../includes/Elements/Product_Grid.php:1543, ../includes/Elements/Product_Grid.php:1556, ../includes/Elements/Product_Grid.php:2790, ../includes/Elements/Product_Grid.php:2847, ../includes/Elements/Progress_Bar.php:343, ../includes/Elements/Team_Member.php:745, ../includes/Elements/Team_Member.php:822, ../includes/Elements/Twitter_Feed.php:378, ../includes/Elements/Twitter_Feed.php:630, ../includes/Elements/Woo_Checkout.php:1769, ../includes/Elements/Woo_Checkout.php:1813, ../includes/Elements/Woo_Checkout.php:1857, ../includes/Traits/Controls.php:1197, ../includes/Traits/Controls.php:1251, ../includes/Traits/Woo_Product_Comparable.php:1370, ../includes/Traits/Woo_Product_Comparable.php:1649, ../includes/Traits/Woo_Product_Comparable.php:1698
1447
  msgid "Background"
1448
  msgstr ""
1449
 
@@ -1491,7 +1491,7 @@ msgstr ""
1491
  msgid "After Submit Feedback"
1492
  msgstr ""
1493
 
1494
- #: ../includes/Elements/Contact_Form_7.php:1658, ../includes/Elements/Dual_Color_Header.php:729, ../includes/Elements/Dual_Color_Header.php:809, ../includes/Elements/Flip_Box.php:870, ../includes/Elements/Info_Box.php:583, ../includes/Elements/Info_Box.php:638, ../includes/Elements/Info_Box.php:806, ../includes/Elements/Info_Box.php:886, ../includes/Elements/Info_Box.php:1022, ../includes/Elements/Info_Box.php:1117, ../includes/Elements/Post_Grid.php:323, ../includes/Elements/Product_Grid.php:1432, ../includes/Traits/Woo_Product_Comparable.php:1615
1495
  msgid "Radius"
1496
  msgstr ""
1497
 
@@ -1503,7 +1503,7 @@ msgstr ""
1503
  msgid "Template Layout"
1504
  msgstr ""
1505
 
1506
- #: ../includes/Elements/Content_Ticker.php:91, ../includes/Elements/Product_Grid.php:334, ../includes/Elements/Progress_Bar.php:158, ../includes/Traits/Controls.php:30
1507
  msgid "Dynamic"
1508
  msgstr ""
1509
 
@@ -1591,7 +1591,7 @@ msgstr ""
1591
  msgid "Arrows"
1592
  msgstr ""
1593
 
1594
- #: ../includes/Elements/Content_Ticker.php:329, ../includes/Elements/Image_Accordion.php:81
1595
  msgid "Direction"
1596
  msgstr ""
1597
 
@@ -1731,11 +1731,11 @@ msgstr ""
1731
  msgid "Separator Style"
1732
  msgstr ""
1733
 
1734
- #: ../includes/Elements/Countdown.php:296, ../includes/Elements/Feature_List.php:430, ../includes/Elements/GravityForms.php:1017, ../includes/Elements/Sticky_Video.php:553, ../includes/Extensions/Table_of_Content.php:1032
1735
  msgid "Solid"
1736
  msgstr ""
1737
 
1738
- #: ../includes/Elements/Countdown.php:297, ../includes/Elements/Feature_List.php:432, ../includes/Elements/GravityForms.php:1019, ../includes/Elements/Sticky_Video.php:555, ../includes/Extensions/Table_of_Content.php:1034
1739
  msgid "Dotted"
1740
  msgstr ""
1741
 
@@ -1747,7 +1747,7 @@ msgstr ""
1747
  msgid "Position Left"
1748
  msgstr ""
1749
 
1750
- #: ../includes/Elements/Countdown.php:361, ../includes/Elements/Filterable_Gallery.php:2248
1751
  msgid "Separator Color"
1752
  msgstr ""
1753
 
@@ -1811,7 +1811,7 @@ msgstr ""
1811
  msgid "Space Below Container"
1812
  msgstr ""
1813
 
1814
- #: ../includes/Elements/Countdown.php:648, ../includes/Elements/Dual_Color_Header.php:436, ../includes/Elements/Facebook_Feed.php:853, ../includes/Elements/Flip_Box.php:1160, ../includes/Elements/Image_Accordion.php:478, ../includes/Elements/Info_Box.php:1329, ../includes/Elements/Product_Grid.php:1120, ../includes/Elements/Team_Member.php:536, ../includes/Elements/Twitter_Feed.php:655
1815
  msgid "Color &amp; Typography"
1816
  msgstr ""
1817
 
@@ -1839,11 +1839,11 @@ msgstr ""
1839
  msgid "Expire Message"
1840
  msgstr ""
1841
 
1842
- #: ../includes/Elements/Countdown.php:1052, ../includes/Elements/Cta_Box.php:510, ../includes/Elements/Dual_Color_Header.php:444, ../includes/Elements/Flip_Box.php:1176, ../includes/Elements/Flip_Box.php:1244, ../includes/Elements/Info_Box.php:1343, ../includes/Elements/Post_Grid.php:564, ../includes/Elements/Post_Timeline.php:300, ../includes/Elements/Pricing_Table.php:880, ../includes/Elements/Twitter_Feed.php:663
1843
  msgid "Title Style"
1844
  msgstr ""
1845
 
1846
- #: ../includes/Elements/Countdown.php:1061, ../includes/Elements/Event_Calendar.php:1367, ../includes/Elements/FluentForm.php:1807, ../includes/Elements/Formstack.php:1633, ../includes/Elements/Info_Box.php:1453, ../includes/Elements/Post_Grid.php:573, ../includes/Elements/Post_Timeline.php:309, ../includes/Elements/Product_Grid.php:2337, ../includes/Elements/Product_Grid.php:2687, ../includes/Elements/Progress_Bar.php:688, ../includes/Elements/Twitter_Feed.php:567, ../includes/Elements/Woo_Checkout.php:2165, ../includes/Traits/Woo_Product_Comparable.php:1005, ../includes/Traits/Woo_Product_Comparable.php:1236
1847
  msgid "Title Color"
1848
  msgstr ""
1849
 
@@ -1875,7 +1875,7 @@ msgstr ""
1875
  msgid "Link URL"
1876
  msgstr ""
1877
 
1878
- #: ../includes/Elements/Creative_Button.php:158, ../includes/Elements/Filterable_Gallery.php:2580, ../includes/Elements/Info_Box.php:469, ../includes/Elements/Pricing_Table.php:557
1879
  msgid "Icon Spacing"
1880
  msgstr ""
1881
 
@@ -1975,7 +1975,7 @@ msgstr ""
1975
  msgid "Color Style"
1976
  msgstr ""
1977
 
1978
- #: ../includes/Elements/Cta_Box.php:123, ../includes/Elements/Cta_Box.php:325, ../includes/Elements/Image_Accordion.php:184
1979
  msgid "Background Image"
1980
  msgstr ""
1981
 
@@ -2071,7 +2071,7 @@ msgstr ""
2071
  msgid "Secondary Button Style"
2072
  msgstr ""
2073
 
2074
- #: ../includes/Elements/Cta_Box.php:1011, ../includes/Elements/Dual_Color_Header.php:384, ../includes/Elements/Feature_List.php:104, ../includes/Elements/Flip_Box.php:914, ../includes/Elements/Flip_Box.php:933, ../includes/Elements/Flip_Box.php:1046, ../includes/Elements/Info_Box.php:924
2075
  msgid "Icon Style"
2076
  msgstr ""
2077
 
@@ -2079,7 +2079,7 @@ msgstr ""
2079
  msgid "Font Size"
2080
  msgstr ""
2081
 
2082
- #: ../includes/Elements/Data_Table.php:74, ../includes/Elements/Event_Calendar.php:1206, ../includes/Elements/Pricing_Table.php:872, ../includes/Traits/Woo_Product_Comparable.php:1075
2083
  msgid "Header"
2084
  msgstr ""
2085
 
@@ -2151,7 +2151,7 @@ msgstr ""
2151
  msgid "Cell Text"
2152
  msgstr ""
2153
 
2154
- #: ../includes/Elements/Data_Table.php:364, ../includes/Elements/Event_Calendar.php:158, ../includes/Elements/Feature_List.php:200, ../includes/Elements/Filterable_Gallery.php:299, ../includes/Elements/Flip_Box.php:633, ../includes/Elements/Flip_Box.php:658, ../includes/Elements/Sticky_Video.php:158, ../includes/Elements/Sticky_Video.php:173, ../includes/Elements/Sticky_Video.php:188, ../includes/Elements/Sticky_Video.php:233, ../includes/Elements/Team_Member.php:179
2155
  msgid "Link"
2156
  msgstr ""
2157
 
@@ -2163,7 +2163,7 @@ msgstr ""
2163
  msgid "Header Border Radius"
2164
  msgstr ""
2165
 
2166
- #: ../includes/Elements/Data_Table.php:723, ../includes/Elements/Filterable_Gallery.php:2104
2167
  msgid "Icon Space"
2168
  msgstr ""
2169
 
@@ -2195,7 +2195,7 @@ msgstr ""
2195
  msgid "Background Color (Even Row)"
2196
  msgstr ""
2197
 
2198
- #: ../includes/Elements/Data_Table.php:990, ../includes/Elements/Filterable_Gallery.php:1290, ../includes/Elements/Filterable_Gallery.php:1673, ../includes/Elements/Flip_Box.php:363, ../includes/Elements/Flip_Box.php:592, ../includes/Elements/Info_Box.php:298, ../includes/Elements/Pricing_Table.php:815, ../includes/Elements/Tooltip.php:365
2199
  msgid "Content Alignment"
2200
  msgstr ""
2201
 
@@ -2211,115 +2211,115 @@ msgstr ""
2211
  msgid "If enabled, table header will be automatically responsive for mobile."
2212
  msgstr ""
2213
 
2214
- #: ../includes/Elements/Dual_Color_Header.php:80
2215
  msgid "Icon on top"
2216
  msgstr ""
2217
 
2218
- #: ../includes/Elements/Dual_Color_Header.php:81
2219
  msgid "Icon &amp; sub-text on top"
2220
  msgstr ""
2221
 
2222
- #: ../includes/Elements/Dual_Color_Header.php:82
2223
  msgid "Sub-text on top"
2224
  msgstr ""
2225
 
2226
- #: ../includes/Elements/Dual_Color_Header.php:101
2227
  msgid "Show Separator"
2228
  msgstr ""
2229
 
2230
- #: ../includes/Elements/Dual_Color_Header.php:132, ../includes/Traits/Controls.php:772
2231
  msgid "Title Tag"
2232
  msgstr ""
2233
 
2234
- #: ../includes/Elements/Dual_Color_Header.php:152
2235
  msgid "Title ( First Part )"
2236
  msgstr ""
2237
 
2238
- #: ../includes/Elements/Dual_Color_Header.php:155
2239
  msgid "Dual Heading"
2240
  msgstr ""
2241
 
2242
- #: ../includes/Elements/Dual_Color_Header.php:163
2243
  msgid "Title ( Last Part )"
2244
  msgstr ""
2245
 
2246
- #: ../includes/Elements/Dual_Color_Header.php:166
2247
  msgid "Example"
2248
  msgstr ""
2249
 
2250
- #: ../includes/Elements/Dual_Color_Header.php:174
2251
  msgid "Sub Text"
2252
  msgstr ""
2253
 
2254
- #: ../includes/Elements/Dual_Color_Header.php:177
2255
  msgid "Insert a meaningful line to evaluate the headline."
2256
  msgstr ""
2257
 
2258
- #: ../includes/Elements/Dual_Color_Header.php:243, ../includes/Elements/Dual_Color_Header.php:568, ../includes/Elements/Filterable_Gallery.php:2220, ../includes/Extensions/Table_of_Content.php:1019
2259
  msgid "Separator"
2260
  msgstr ""
2261
 
2262
- #: ../includes/Elements/Dual_Color_Header.php:254
2263
  msgid "Separator Position"
2264
  msgstr ""
2265
 
2266
- #: ../includes/Elements/Dual_Color_Header.php:258
2267
  msgid "Before Title"
2268
  msgstr ""
2269
 
2270
- #: ../includes/Elements/Dual_Color_Header.php:259
2271
  msgid "After Title"
2272
  msgstr ""
2273
 
2274
- #: ../includes/Elements/Dual_Color_Header.php:266
2275
  msgid "Separator Type"
2276
  msgstr ""
2277
 
2278
- #: ../includes/Elements/Dual_Color_Header.php:270, ../includes/Elements/Progress_Bar.php:82
2279
  msgid "Line"
2280
  msgstr ""
2281
 
2282
- #: ../includes/Elements/Dual_Color_Header.php:300
2283
  msgid "Dual Heading Style"
2284
  msgstr ""
2285
 
2286
- #: ../includes/Elements/Dual_Color_Header.php:452
2287
  msgid "Main Color"
2288
  msgstr ""
2289
 
2290
- #: ../includes/Elements/Dual_Color_Header.php:464
2291
  msgid "Dual Color"
2292
  msgstr ""
2293
 
2294
- #: ../includes/Elements/Dual_Color_Header.php:472, ../includes/Elements/Fancy_Text.php:348
2295
  msgid "Gradient"
2296
  msgstr ""
2297
 
2298
- #: ../includes/Elements/Dual_Color_Header.php:484, ../includes/Elements/Fancy_Text.php:363
2299
  msgid "Solid Color"
2300
  msgstr ""
2301
 
2302
- #: ../includes/Elements/Dual_Color_Header.php:532
2303
  msgid "Sub-title Style "
2304
  msgstr ""
2305
 
2306
- #: ../includes/Elements/Dual_Color_Header.php:582
2307
  msgid "Flex Start"
2308
  msgstr ""
2309
 
2310
- #: ../includes/Elements/Dual_Color_Header.php:590
2311
  msgid "Flex End"
2312
  msgstr ""
2313
 
2314
- #: ../includes/Elements/Dual_Color_Header.php:604
2315
  msgid "Distance Between Lines"
2316
  msgstr ""
2317
 
2318
- #: ../includes/Elements/Dual_Color_Header.php:669
2319
  msgid "Left Line"
2320
  msgstr ""
2321
 
2322
- #: ../includes/Elements/Dual_Color_Header.php:751
2323
  msgid "Right Line"
2324
  msgstr ""
2325
 
@@ -2347,7 +2347,7 @@ msgstr ""
2347
  msgid "The Events Calendar"
2348
  msgstr ""
2349
 
2350
- #: ../includes/Elements/Event_Calendar.php:124, ../includes/Elements/Progress_Bar.php:109, ../includes/Elements/Woo_Checkout.php:129
2351
  msgid "Only Available in Pro Version!"
2352
  msgstr ""
2353
 
@@ -2415,7 +2415,7 @@ msgstr ""
2415
  msgid "Get Events"
2416
  msgstr ""
2417
 
2418
- #: ../includes/Elements/Event_Calendar.php:376, ../includes/Elements/Filterable_Gallery.php:2756
2419
  msgid "All"
2420
  msgstr ""
2421
 
@@ -2547,7 +2547,7 @@ msgstr ""
2547
  msgid "Content Color"
2548
  msgstr ""
2549
 
2550
- #: ../includes/Elements/Event_Calendar.php:1475, ../includes/Elements/Product_Grid.php:2718, ../includes/Traits/Woo_Product_Comparable.php:1323
2551
  msgid " Close Button"
2552
  msgstr ""
2553
 
@@ -2619,15 +2619,15 @@ msgstr ""
2619
  msgid "Layout Settings"
2620
  msgstr ""
2621
 
2622
- #: ../includes/Elements/Facebook_Feed.php:171, ../includes/Elements/Filterable_Gallery.php:172
2623
  msgid "Card"
2624
  msgstr ""
2625
 
2626
- #: ../includes/Elements/Facebook_Feed.php:172, ../includes/Elements/Filterable_Gallery.php:171, ../includes/Traits/Controls.php:552
2627
  msgid "Overlay"
2628
  msgstr ""
2629
 
2630
- #: ../includes/Elements/Facebook_Feed.php:181, ../includes/Elements/Filterable_Gallery.php:118, ../includes/Elements/Product_Grid.php:280, ../includes/Elements/Product_Grid.php:302, ../includes/Traits/Woo_Product_Comparable.php:840
2631
  msgid "Columns"
2632
  msgstr ""
2633
 
@@ -2647,7 +2647,7 @@ msgstr ""
2647
  msgid "4"
2648
  msgstr ""
2649
 
2650
- #: ../includes/Elements/Facebook_Feed.php:189, ../includes/Elements/Filterable_Gallery.php:515, ../includes/Elements/Product_Grid.php:288, ../includes/Elements/Testimonial.php:198, ../includes/Traits/Controls.php:520
2651
  msgid "5"
2652
  msgstr ""
2653
 
@@ -2707,11 +2707,11 @@ msgstr ""
2707
  msgid "Show Load More"
2708
  msgstr ""
2709
 
2710
- #: ../includes/Elements/Facebook_Feed.php:392, ../includes/Elements/FluentForm.php:1098, ../includes/Elements/FluentForm.php:1696, ../includes/Elements/Formstack.php:650, ../includes/Elements/Login_Register.php:993, ../includes/Elements/Woo_Checkout.php:1960, ../includes/Elements/Woo_Checkout.php:2216, ../includes/Traits/Woo_Product_Comparable.php:235
2711
  msgid "Label"
2712
  msgstr ""
2713
 
2714
- #: ../includes/Elements/Facebook_Feed.php:395, ../includes/Elements/Filterable_Gallery.php:689, ../includes/Elements/Product_Grid.php:599, ../includes/Elements/Product_Grid.php:632, ../includes/Traits/Controls.php:638
2715
  msgid "Load More"
2716
  msgstr ""
2717
 
@@ -2723,7 +2723,7 @@ msgstr ""
2723
  msgid "Space Between Items"
2724
  msgstr ""
2725
 
2726
- #: ../includes/Elements/Facebook_Feed.php:515, ../includes/Elements/Filterable_Gallery.php:1319, ../includes/Elements/Post_Grid.php:315
2727
  msgid "Thumbnail Style"
2728
  msgstr ""
2729
 
@@ -2771,7 +2771,7 @@ msgstr ""
2771
  msgid "Likes & Comments"
2772
  msgstr ""
2773
 
2774
- #: ../includes/Elements/Facebook_Feed.php:1135, ../includes/Elements/Image_Accordion.php:390, ../includes/Elements/Post_Timeline.php:101, ../includes/Elements/Team_Member.php:343
2775
  msgid "Overlay Color"
2776
  msgstr ""
2777
 
@@ -2919,459 +2919,459 @@ msgstr ""
2919
  msgid "Suffix Text Color"
2920
  msgstr ""
2921
 
2922
- #: ../includes/Elements/Feature_List.php:106
2923
  msgid "ON"
2924
  msgstr ""
2925
 
2926
- #: ../includes/Elements/Feature_List.php:107
2927
  msgid "OFF"
2928
  msgstr ""
2929
 
2930
- #: ../includes/Elements/Feature_List.php:134
2931
  msgid "Icon Background"
2932
  msgstr ""
2933
 
2934
- #: ../includes/Elements/Feature_List.php:149
2935
  msgid "Icon Box Background"
2936
  msgstr ""
2937
 
2938
- #: ../includes/Elements/Feature_List.php:203
2939
  msgid "https://your-link.com"
2940
  msgstr ""
2941
 
2942
- #: ../includes/Elements/Feature_List.php:211
2943
  msgid "Feature Item"
2944
  msgstr ""
2945
 
2946
- #: ../includes/Elements/Feature_List.php:220
2947
  msgid "Feature Item 1"
2948
  msgstr ""
2949
 
2950
- #: ../includes/Elements/Feature_List.php:221, ../includes/Elements/Feature_List.php:229, ../includes/Elements/Feature_List.php:237
2951
  msgid "Lorem ipsum dolor sit amet, consectetur adipisi cing elit, sed do eiusmod tempor incididunt ut abore et dolore magna"
2952
  msgstr ""
2953
 
2954
- #: ../includes/Elements/Feature_List.php:228
2955
  msgid "Feature Item 2"
2956
  msgstr ""
2957
 
2958
- #: ../includes/Elements/Feature_List.php:236
2959
  msgid "Feature Item 3"
2960
  msgstr ""
2961
 
2962
- #: ../includes/Elements/Feature_List.php:248, ../includes/Elements/Progress_Bar.php:133
2963
  msgid "Title HTML Tag"
2964
  msgstr ""
2965
 
2966
- #: ../includes/Elements/Feature_List.php:269
2967
  msgid "Icon Shape"
2968
  msgstr ""
2969
 
2970
- #: ../includes/Elements/Feature_List.php:274, ../includes/Elements/Flip_Box.php:869, ../includes/Elements/Info_Box.php:582, ../includes/Elements/Info_Box.php:637, ../includes/Elements/Info_Box.php:805, ../includes/Elements/Info_Box.php:885, ../includes/Elements/Info_Box.php:1021, ../includes/Elements/Info_Box.php:1116, ../includes/Elements/Progress_Bar.php:84
2971
  msgid "Circle"
2972
  msgstr ""
2973
 
2974
- #: ../includes/Elements/Feature_List.php:275, ../includes/Elements/Info_Box.php:581, ../includes/Elements/Info_Box.php:636, ../includes/Elements/Info_Box.php:807, ../includes/Elements/Info_Box.php:887, ../includes/Elements/Info_Box.php:1023, ../includes/Elements/Info_Box.php:1118
2975
  msgid "Square"
2976
  msgstr ""
2977
 
2978
- #: ../includes/Elements/Feature_List.php:276
2979
  msgid "Rhombus"
2980
  msgstr ""
2981
 
2982
- #: ../includes/Elements/Feature_List.php:284
2983
  msgid "Shape View"
2984
  msgstr ""
2985
 
2986
- #: ../includes/Elements/Feature_List.php:289
2987
  msgid "Framed"
2988
  msgstr ""
2989
 
2990
- #: ../includes/Elements/Feature_List.php:306, ../includes/Elements/Flip_Box.php:333, ../includes/Elements/Flip_Box.php:562, ../includes/Elements/Image_Accordion.php:131, ../includes/Elements/Info_Box.php:129, ../includes/Elements/Login_Register.php:710, ../includes/Elements/Pricing_Table.php:382, ../includes/Elements/Tooltip.php:283, ../includes/Elements/Twitter_Feed.php:341, ../includes/Extensions/Reading_Progress.php:115, ../includes/Traits/Controls.php:1649
2991
  msgid "Top"
2992
  msgstr ""
2993
 
2994
- #: ../includes/Elements/Feature_List.php:326
2995
  msgid "Arrow Indicator Position"
2996
  msgstr ""
2997
 
2998
- #: ../includes/Elements/Feature_List.php:356
2999
  msgid "Show Connector"
3000
  msgstr ""
3001
 
3002
- #: ../includes/Elements/Feature_List.php:384, ../includes/Elements/Login_Register.php:3141, ../includes/Elements/Login_Register.php:3440
3003
  msgid "Space Between"
3004
  msgstr ""
3005
 
3006
- #: ../includes/Elements/Feature_List.php:406
3007
  msgid "Connector Type"
3008
  msgstr ""
3009
 
3010
- #: ../includes/Elements/Feature_List.php:411, ../includes/Elements/Testimonial.php:253
3011
  msgid "Classic"
3012
  msgstr ""
3013
 
3014
- #: ../includes/Elements/Feature_List.php:412
3015
  msgid "Modern"
3016
  msgstr ""
3017
 
3018
- #: ../includes/Elements/Feature_List.php:425
3019
  msgid "Connector Styles"
3020
  msgstr ""
3021
 
3022
- #: ../includes/Elements/Feature_List.php:431, ../includes/Elements/GravityForms.php:1020, ../includes/Elements/Sticky_Video.php:556, ../includes/Extensions/Table_of_Content.php:1033
3023
  msgid "Dashed"
3024
  msgstr ""
3025
 
3026
- #: ../includes/Elements/Feature_List.php:447
3027
  msgid "Connector Color"
3028
  msgstr ""
3029
 
3030
- #: ../includes/Elements/Feature_List.php:467
3031
  msgid "Connector Width"
3032
  msgstr ""
3033
 
3034
- #: ../includes/Elements/Feature_List.php:524
3035
  msgid "Secondary Color"
3036
  msgstr ""
3037
 
3038
- #: ../includes/Elements/Feature_List.php:741
3039
  msgid "Title Bottom Space"
3040
  msgstr ""
3041
 
3042
- #: ../includes/Elements/Filterable_Gallery.php:90, ../includes/Elements/Flip_Box.php:76, ../includes/Elements/Pricing_Table.php:77, ../includes/Traits/Core.php:45, ../includes/templates/admin/elements.php:565, ../includes/templates/admin/elements.php:548, ../includes/templates/admin/elements.php:545, ../includes/templates/admin/extensions.php:85
3043
  msgid "Settings"
3044
  msgstr ""
3045
 
3046
- #: ../includes/Elements/Filterable_Gallery.php:97
3047
  msgid "Items to show"
3048
  msgstr ""
3049
 
3050
- #: ../includes/Elements/Filterable_Gallery.php:108
3051
  msgid "Animation Duration (ms)"
3052
  msgstr ""
3053
 
3054
- #: ../includes/Elements/Filterable_Gallery.php:139
3055
  msgid "Grid Style"
3056
  msgstr ""
3057
 
3058
- #: ../includes/Elements/Filterable_Gallery.php:152
3059
  msgid "Image Height"
3060
  msgstr ""
3061
 
3062
- #: ../includes/Elements/Filterable_Gallery.php:173
3063
  msgid "Search & Filter"
3064
  msgstr ""
3065
 
3066
- #: ../includes/Elements/Filterable_Gallery.php:181
3067
  msgid "Hover Style"
3068
  msgstr ""
3069
 
3070
- #: ../includes/Elements/Filterable_Gallery.php:186
3071
  msgid "Slide In Up"
3072
  msgstr ""
3073
 
3074
- #: ../includes/Elements/Filterable_Gallery.php:187, ../includes/Elements/Flip_Box.php:94
3075
  msgid "Fade In"
3076
  msgstr ""
3077
 
3078
- #: ../includes/Elements/Filterable_Gallery.php:188
3079
  msgid "Zoom In "
3080
  msgstr ""
3081
 
3082
- #: ../includes/Elements/Filterable_Gallery.php:199
3083
  msgid "Hover Transition"
3084
  msgstr ""
3085
 
3086
- #: ../includes/Elements/Filterable_Gallery.php:221
3087
  msgid "Link to"
3088
  msgstr ""
3089
 
3090
- #: ../includes/Elements/Filterable_Gallery.php:226
3091
  msgid "Media"
3092
  msgstr ""
3093
 
3094
- #: ../includes/Elements/Filterable_Gallery.php:227, ../includes/Elements/Product_Grid.php:1669, ../includes/Traits/Woo_Product_Comparable.php:866
3095
  msgid "Buttons"
3096
  msgstr ""
3097
 
3098
- #: ../includes/Elements/Filterable_Gallery.php:238
3099
  msgid "Lightbox Icon"
3100
  msgstr ""
3101
 
3102
- #: ../includes/Elements/Filterable_Gallery.php:254
3103
  msgid "Link Icon"
3104
  msgstr ""
3105
 
3106
- #: ../includes/Elements/Filterable_Gallery.php:270
3107
  msgid "Show Popup Caption"
3108
  msgstr ""
3109
 
3110
- #: ../includes/Elements/Filterable_Gallery.php:282
3111
  msgid "Full Image Clickable?"
3112
  msgstr ""
3113
 
3114
- #: ../includes/Elements/Filterable_Gallery.php:294
3115
  msgid "Full Image Action"
3116
  msgstr ""
3117
 
3118
- #: ../includes/Elements/Filterable_Gallery.php:298
3119
  msgid "Lightbox"
3120
  msgstr ""
3121
 
3122
- #: ../includes/Elements/Filterable_Gallery.php:315
3123
  msgid "Filterable Controls"
3124
  msgstr ""
3125
 
3126
- #: ../includes/Elements/Filterable_Gallery.php:322
3127
  msgid "Enable Filter"
3128
  msgstr ""
3129
 
3130
- #: ../includes/Elements/Filterable_Gallery.php:331
3131
  msgid "Gallery All Label"
3132
  msgstr ""
3133
 
3134
- #: ../includes/Elements/Filterable_Gallery.php:344
3135
  msgid "All label icon"
3136
  msgstr ""
3137
 
3138
- #: ../includes/Elements/Filterable_Gallery.php:360, ../includes/Elements/Info_Box.php:229
3139
  msgid "Select Title Tag"
3140
  msgstr ""
3141
 
3142
- #: ../includes/Elements/Filterable_Gallery.php:388, ../includes/Elements/Pricing_Table.php:308
3143
  msgid "List Item"
3144
  msgstr ""
3145
 
3146
- #: ../includes/Elements/Filterable_Gallery.php:392
3147
  msgid "Gallery Item"
3148
  msgstr ""
3149
 
3150
- #: ../includes/Elements/Filterable_Gallery.php:407
3151
  msgid "Gallery Items"
3152
  msgstr ""
3153
 
3154
- #: ../includes/Elements/Filterable_Gallery.php:414
3155
  msgid "Enable Photo Gallery"
3156
  msgstr ""
3157
 
3158
- #: ../includes/Elements/Filterable_Gallery.php:426
3159
  msgid "Video Gallery?"
3160
  msgstr ""
3161
 
3162
- #: ../includes/Elements/Filterable_Gallery.php:438
3163
  msgid "Video Link"
3164
  msgstr ""
3165
 
3166
- #: ../includes/Elements/Filterable_Gallery.php:451
3167
  msgid "Control Name"
3168
  msgstr ""
3169
 
3170
- #: ../includes/Elements/Filterable_Gallery.php:456
3171
  msgid "Use the gallery control name from Control Settings. Separate multiple items with comma (e.g. <strong>Gallery Item, Gallery Item 2</strong>)"
3172
  msgstr ""
3173
 
3174
- #: ../includes/Elements/Filterable_Gallery.php:463
3175
  msgid "Item Name"
3176
  msgstr ""
3177
 
3178
- #: ../includes/Elements/Filterable_Gallery.php:467
3179
  msgid "Gallery item name"
3180
  msgstr ""
3181
 
3182
- #: ../includes/Elements/Filterable_Gallery.php:475
3183
  msgid "Enable Price ?"
3184
  msgstr ""
3185
 
3186
- #: ../includes/Elements/Filterable_Gallery.php:487
3187
  msgid "Item Price"
3188
  msgstr ""
3189
 
3190
- #: ../includes/Elements/Filterable_Gallery.php:490
3191
  msgid "$20.00"
3192
  msgstr ""
3193
 
3194
- #: ../includes/Elements/Filterable_Gallery.php:500
3195
  msgid "Enable Ratings ?"
3196
  msgstr ""
3197
 
3198
- #: ../includes/Elements/Filterable_Gallery.php:512
3199
  msgid "Item Ratings"
3200
  msgstr ""
3201
 
3202
- #: ../includes/Elements/Filterable_Gallery.php:525
3203
  msgid "Enable Category ?"
3204
  msgstr ""
3205
 
3206
- #: ../includes/Elements/Filterable_Gallery.php:537
3207
  msgid "Item Category"
3208
  msgstr ""
3209
 
3210
- #: ../includes/Elements/Filterable_Gallery.php:540, ../includes/Traits/Admin.php:21, ../includes/Traits/Admin.php:22, ../includes/Traits/Elements.php:35
3211
  msgid "Essential Addons"
3212
  msgstr ""
3213
 
3214
- #: ../includes/Elements/Filterable_Gallery.php:550
3215
  msgid "Item Content"
3216
  msgstr ""
3217
 
3218
- #: ../includes/Elements/Filterable_Gallery.php:553
3219
  msgid "Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident."
3220
  msgstr ""
3221
 
3222
- #: ../includes/Elements/Filterable_Gallery.php:571
3223
  msgid "Video play icon"
3224
  msgstr ""
3225
 
3226
- #: ../includes/Elements/Filterable_Gallery.php:585
3227
  msgid "Gallery Lightbox Button?"
3228
  msgstr ""
3229
 
3230
- #: ../includes/Elements/Filterable_Gallery.php:600
3231
  msgid "Gallery Link Button?"
3232
  msgstr ""
3233
 
3234
- #: ../includes/Elements/Filterable_Gallery.php:656, ../includes/Elements/Filterable_Gallery.php:663, ../includes/Elements/Filterable_Gallery.php:2437, ../includes/Traits/Controls.php:1322
3235
  msgid "Load More Button"
3236
  msgstr ""
3237
 
3238
- #: ../includes/Elements/Filterable_Gallery.php:673
3239
  msgid "Images Per Page"
3240
  msgstr ""
3241
 
3242
- #: ../includes/Elements/Filterable_Gallery.php:699
3243
  msgid "No More Items Text"
3244
  msgstr ""
3245
 
3246
- #: ../includes/Elements/Filterable_Gallery.php:702
3247
  msgid "No more items!"
3248
  msgstr ""
3249
 
3250
- #: ../includes/Elements/Filterable_Gallery.php:716
3251
  msgid "Extra Small"
3252
  msgstr ""
3253
 
3254
- #: ../includes/Elements/Filterable_Gallery.php:717
3255
  msgid "Small"
3256
  msgstr ""
3257
 
3258
- #: ../includes/Elements/Filterable_Gallery.php:718
3259
  msgid "Medium"
3260
  msgstr ""
3261
 
3262
- #: ../includes/Elements/Filterable_Gallery.php:719
3263
  msgid "Large"
3264
  msgstr ""
3265
 
3266
- #: ../includes/Elements/Filterable_Gallery.php:720
3267
  msgid "Extra Large"
3268
  msgstr ""
3269
 
3270
- #: ../includes/Elements/Filterable_Gallery.php:732, ../includes/Elements/Filterable_Gallery.php:2626, ../includes/Elements/Flip_Box.php:695, ../includes/Elements/Pricing_Table.php:528
3271
  msgid "Button Icon"
3272
  msgstr ""
3273
 
3274
- #: ../includes/Elements/Filterable_Gallery.php:910
3275
  msgid "Control Style"
3276
  msgstr ""
3277
 
3278
- #: ../includes/Elements/Filterable_Gallery.php:1094
3279
  msgid "Item Style"
3280
  msgstr ""
3281
 
3282
- #: ../includes/Elements/Filterable_Gallery.php:1169, ../includes/Elements/Filterable_Gallery.php:1359
3283
  msgid "Item Hover Style"
3284
  msgstr ""
3285
 
3286
- #: ../includes/Elements/Filterable_Gallery.php:1204, ../includes/Elements/Filterable_Gallery.php:1566, ../includes/Elements/Login_Register.php:2298, ../includes/Elements/Post_Timeline.php:348
3287
  msgid "Title Typography"
3288
  msgstr ""
3289
 
3290
- #: ../includes/Elements/Filterable_Gallery.php:1244, ../includes/Elements/Filterable_Gallery.php:1626
3291
  msgid "Content Typography"
3292
  msgstr ""
3293
 
3294
- #: ../includes/Elements/Filterable_Gallery.php:1389
3295
  msgid "Video item hover"
3296
  msgstr ""
3297
 
3298
- #: ../includes/Elements/Filterable_Gallery.php:1412
3299
  msgid "Background transition"
3300
  msgstr ""
3301
 
3302
- #: ../includes/Elements/Filterable_Gallery.php:1432
3303
  msgid "Icon size"
3304
  msgstr ""
3305
 
3306
- #: ../includes/Elements/Filterable_Gallery.php:1455
3307
  msgid "Hover icon scale"
3308
  msgstr ""
3309
 
3310
- #: ../includes/Elements/Filterable_Gallery.php:1467
3311
  msgid "Icon transition"
3312
  msgstr ""
3313
 
3314
- #: ../includes/Elements/Filterable_Gallery.php:1494
3315
  msgid "Item Card Style"
3316
  msgstr ""
3317
 
3318
- #: ../includes/Elements/Filterable_Gallery.php:1706
3319
  msgid "Icons Style"
3320
  msgstr ""
3321
 
3322
- #: ../includes/Elements/Filterable_Gallery.php:1797
3323
  msgid "Icon Font Size"
3324
  msgstr ""
3325
 
3326
- #: ../includes/Elements/Filterable_Gallery.php:1938, ../includes/Traits/Woo_Product_Comparable.php:1487
3327
  msgid "Price Style"
3328
  msgstr ""
3329
 
3330
- #: ../includes/Elements/Filterable_Gallery.php:1972
3331
  msgid "Ratings Style"
3332
  msgstr ""
3333
 
3334
- #: ../includes/Elements/Filterable_Gallery.php:1994
3335
  msgid "Star Color"
3336
  msgstr ""
3337
 
3338
- #: ../includes/Elements/Filterable_Gallery.php:2017
3339
  msgid "Category Style"
3340
  msgstr ""
3341
 
3342
- #: ../includes/Elements/Filterable_Gallery.php:2074
3343
  msgid "Search Form Style"
3344
  msgstr ""
3345
 
3346
- #: ../includes/Elements/Filterable_Gallery.php:2085, ../includes/Elements/Login_Register.php:270
3347
  msgid "Controls"
3348
  msgstr ""
3349
 
3350
- #: ../includes/Elements/Filterable_Gallery.php:2177
3351
  msgid "Controls Background"
3352
  msgstr ""
3353
 
3354
- #: ../includes/Elements/Filterable_Gallery.php:2229
3355
  msgid "Separator Size"
3356
  msgstr ""
3357
 
3358
- #: ../includes/Elements/Filterable_Gallery.php:2260, ../includes/Elements/Login_Register.php:1519, ../includes/Elements/Woo_Checkout.php:1564
3359
  msgid "Form"
3360
  msgstr ""
3361
 
3362
- #: ../includes/Elements/Filterable_Gallery.php:2282
3363
  msgid "Search Gallery Item..."
3364
  msgstr ""
3365
 
3366
- #: ../includes/Elements/Filterable_Gallery.php:2289, ../includes/Elements/Login_Register.php:2526, ../includes/Elements/Login_Register.php:2564
3367
  msgid "Placeholder Color"
3368
  msgstr ""
3369
 
3370
- #: ../includes/Elements/Filterable_Gallery.php:2343
3371
  msgid "Dropdown"
3372
  msgstr ""
3373
 
3374
- #: ../includes/Elements/Filterable_Gallery.php:2449, ../includes/Elements/Product_Grid.php:1935, ../includes/Elements/Product_Grid.php:2112, ../includes/Elements/Woo_Checkout.php:701, ../includes/Elements/Woo_Checkout.php:1014, ../includes/Elements/Woo_Checkout.php:1123, ../includes/Elements/Woo_Checkout.php:2529
3375
  msgid "Top Spacing"
3376
  msgstr ""
3377
 
@@ -3443,7 +3443,7 @@ msgstr ""
3443
  msgid "Middle"
3444
  msgstr ""
3445
 
3446
- #: ../includes/Elements/Flip_Box.php:341, ../includes/Elements/Flip_Box.php:570, ../includes/Elements/Image_Accordion.php:139, ../includes/Elements/Info_Box.php:137, ../includes/Elements/Pricing_Table.php:390, ../includes/Elements/Tooltip.php:284, ../includes/Elements/Twitter_Feed.php:349, ../includes/Extensions/Reading_Progress.php:116, ../includes/Traits/Controls.php:1653
3447
  msgid "Bottom"
3448
  msgstr ""
3449
 
@@ -3627,7 +3627,7 @@ msgstr ""
3627
  msgid "Border Height"
3628
  msgstr ""
3629
 
3630
- #: ../includes/Elements/GravityForms.php:1091, ../includes/Elements/Pricing_Table.php:194, ../includes/Elements/Pricing_Table.php:201, ../includes/Elements/Product_Grid.php:138, ../includes/Elements/Product_Grid.php:2349, ../includes/Elements/Woo_Checkout.php:216, ../includes/Traits/Woo_Product_Comparable.php:40, ../includes/Traits/Woo_Product_Comparable.php:79
3631
  msgid "Price"
3632
  msgstr ""
3633
 
@@ -3683,71 +3683,71 @@ msgstr ""
3683
  msgid "Thank You Message"
3684
  msgstr ""
3685
 
3686
- #: ../includes/Elements/Image_Accordion.php:67
3687
  msgid "Accordion Style"
3688
  msgstr ""
3689
 
3690
- #: ../includes/Elements/Image_Accordion.php:72
3691
  msgid "On Hover"
3692
  msgstr ""
3693
 
3694
- #: ../includes/Elements/Image_Accordion.php:73
3695
  msgid "On Click"
3696
  msgstr ""
3697
 
3698
- #: ../includes/Elements/Image_Accordion.php:104, ../includes/Elements/Login_Register.php:2789, ../includes/Elements/Login_Register.php:2885
3699
  msgid "Horizontal Alignment"
3700
  msgstr ""
3701
 
3702
- #: ../includes/Elements/Image_Accordion.php:127, ../includes/Elements/Login_Register.php:2768, ../includes/Elements/Login_Register.php:2864
3703
  msgid "Vertical Alignment"
3704
  msgstr ""
3705
 
3706
- #: ../includes/Elements/Image_Accordion.php:173
3707
  msgid "Make it active?"
3708
  msgstr ""
3709
 
3710
- #: ../includes/Elements/Image_Accordion.php:199
3711
  msgid "Accordion item title"
3712
  msgstr ""
3713
 
3714
- #: ../includes/Elements/Image_Accordion.php:210
3715
  msgid "Accordion content goes here!"
3716
  msgstr ""
3717
 
3718
- #: ../includes/Elements/Image_Accordion.php:217
3719
  msgid "Enable Title Link"
3720
  msgstr ""
3721
 
3722
- #: ../includes/Elements/Image_Accordion.php:230
3723
  msgid "Title Link"
3724
  msgstr ""
3725
 
3726
- #: ../includes/Elements/Image_Accordion.php:252
3727
  msgid "Image Accordion #1"
3728
  msgstr ""
3729
 
3730
- #: ../includes/Elements/Image_Accordion.php:253, ../includes/Elements/Image_Accordion.php:260, ../includes/Elements/Image_Accordion.php:267, ../includes/Elements/Image_Accordion.php:274
3731
  msgid "Image Accordion Content Goes Here! Click edit button to change this text."
3732
  msgstr ""
3733
 
3734
- #: ../includes/Elements/Image_Accordion.php:259
3735
  msgid "Image Accordion #2"
3736
  msgstr ""
3737
 
3738
- #: ../includes/Elements/Image_Accordion.php:266
3739
  msgid "Image Accordion #3"
3740
  msgstr ""
3741
 
3742
- #: ../includes/Elements/Image_Accordion.php:273
3743
  msgid "Image Accordion #4"
3744
  msgstr ""
3745
 
3746
- #: ../includes/Elements/Image_Accordion.php:402
3747
  msgid "Hover Overlay Color"
3748
  msgstr ""
3749
 
3750
- #: ../includes/Elements/Image_Accordion.php:421
3751
  msgid "Thumbnail"
3752
  msgstr ""
3753
 
@@ -4375,7 +4375,7 @@ msgstr ""
4375
  msgid "Select the type of fields you want to show in the registration form"
4376
  msgstr ""
4377
 
4378
- #: ../includes/Elements/Login_Register.php:986, ../includes/Traits/Woo_Product_Comparable.php:229
4379
  msgid "Type"
4380
  msgstr ""
4381
 
@@ -4534,7 +4534,7 @@ msgstr ""
4534
  msgid "Container Box"
4535
  msgstr ""
4536
 
4537
- #: ../includes/Elements/Login_Register.php:1509, ../includes/Traits/Woo_Product_Comparable.php:375
4538
  msgid "Container Box Shadow"
4539
  msgstr ""
4540
 
@@ -4650,7 +4650,7 @@ msgstr ""
4650
  msgid "Form Labels"
4651
  msgstr ""
4652
 
4653
- #: ../includes/Elements/Login_Register.php:2649, ../includes/Traits/Woo_Product_Comparable.php:811, ../includes/Traits/Woo_Product_Comparable.php:996, ../includes/Traits/Woo_Product_Comparable.php:1204
4654
  msgid "Colors"
4655
  msgstr ""
4656
 
@@ -4918,7 +4918,7 @@ msgstr ""
4918
  msgid "Excerpt Alignment"
4919
  msgstr ""
4920
 
4921
- #: ../includes/Elements/Post_Grid.php:683, ../includes/Elements/Post_Timeline.php:396, ../includes/Elements/Tooltip.php:187, ../includes/Elements/Tooltip.php:382
4922
  msgid "Justified"
4923
  msgstr ""
4924
 
@@ -5158,7 +5158,7 @@ msgstr ""
5158
  msgid "Fall"
5159
  msgstr ""
5160
 
5161
- #: ../includes/Elements/Pricing_Table.php:439, ../includes/Elements/Progress_Bar.php:217
5162
  msgid "Animation Duration"
5163
  msgstr ""
5164
 
@@ -5190,7 +5190,7 @@ msgstr ""
5190
  msgid "Choose Plan"
5191
  msgstr ""
5192
 
5193
- #: ../includes/Elements/Pricing_Table.php:592, ../includes/Elements/Tooltip.php:238
5194
  msgid "Button Link"
5195
  msgstr ""
5196
 
@@ -5278,7 +5278,7 @@ msgstr ""
5278
  msgid "Refresh your browser after saving the padding value for see changes."
5279
  msgstr ""
5280
 
5281
- #: ../includes/Elements/Pricing_Table.php:1571, ../includes/Elements/Tooltip.php:649
5282
  msgid "Arrow Size"
5283
  msgstr ""
5284
 
@@ -5318,7 +5318,7 @@ msgstr ""
5318
  msgid "Product Title"
5319
  msgstr ""
5320
 
5321
- #: ../includes/Elements/Product_Grid.php:139, ../includes/Elements/Product_Grid.php:2670, ../includes/Traits/Woo_Product_Comparable.php:43, ../includes/Traits/Woo_Product_Comparable.php:91
5322
  msgid "SKU"
5323
  msgstr ""
5324
 
@@ -5414,7 +5414,7 @@ msgstr ""
5414
  msgid "Product Settings"
5415
  msgstr ""
5416
 
5417
- #: ../includes/Elements/Product_Grid.php:333, ../includes/Elements/Product_Grid.php:646, ../includes/Traits/Woo_Product_Comparable.php:152
5418
  msgid "Products"
5419
  msgstr ""
5420
 
@@ -5422,7 +5422,7 @@ msgstr ""
5422
  msgid "This option will only affect in <strong>Archive page of Elementor Theme Builder</strong> dynamically."
5423
  msgstr ""
5424
 
5425
- #: ../includes/Elements/Product_Grid.php:356, ../includes/Elements/Woo_Checkout.php:92, ../includes/Traits/Woo_Product_Comparable.php:123
5426
  msgid "<strong>WooCommerce</strong> is not installed/activated on your site. Please install and activate <a href=\"plugin-install.php?s=woocommerce&tab=search&type=term\" target=\"_blank\">WooCommerce</a> first."
5427
  msgstr ""
5428
 
@@ -5470,7 +5470,7 @@ msgstr ""
5470
  msgid "Expansion Indicator"
5471
  msgstr ""
5472
 
5473
- #: ../includes/Elements/Product_Grid.php:499, ../includes/Traits/Woo_Product_Comparable.php:146
5474
  msgid "Show Product Compare?"
5475
  msgstr ""
5476
 
@@ -5658,119 +5658,119 @@ msgstr ""
5658
  msgid "Cart Button"
5659
  msgstr ""
5660
 
5661
- #: ../includes/Elements/Progress_Bar.php:83
5662
  msgid "Line Rainbow (Pro)"
5663
  msgstr ""
5664
 
5665
- #: ../includes/Elements/Progress_Bar.php:85
5666
  msgid "Circle Fill (Pro)"
5667
  msgstr ""
5668
 
5669
- #: ../includes/Elements/Progress_Bar.php:86
5670
  msgid "Half Circle"
5671
  msgstr ""
5672
 
5673
- #: ../includes/Elements/Progress_Bar.php:87
5674
  msgid "Half Circle Fill (Pro)"
5675
  msgstr ""
5676
 
5677
- #: ../includes/Elements/Progress_Bar.php:88
5678
  msgid "Box (Pro)"
5679
  msgstr ""
5680
 
5681
- #: ../includes/Elements/Progress_Bar.php:142
5682
  msgid "div"
5683
  msgstr ""
5684
 
5685
- #: ../includes/Elements/Progress_Bar.php:143
5686
  msgid "span"
5687
  msgstr ""
5688
 
5689
- #: ../includes/Elements/Progress_Bar.php:144
5690
  msgid "p"
5691
  msgstr ""
5692
 
5693
- #: ../includes/Elements/Progress_Bar.php:154
5694
  msgid "Counter Value Type"
5695
  msgstr ""
5696
 
5697
- #: ../includes/Elements/Progress_Bar.php:157
5698
  msgid "Static"
5699
  msgstr ""
5700
 
5701
- #: ../includes/Elements/Progress_Bar.php:167, ../includes/Elements/Progress_Bar.php:190
5702
  msgid "Counter Value"
5703
  msgstr ""
5704
 
5705
- #: ../includes/Elements/Progress_Bar.php:207
5706
  msgid "Display Count"
5707
  msgstr ""
5708
 
5709
- #: ../includes/Elements/Progress_Bar.php:238
5710
  msgid "Prefix Label"
5711
  msgstr ""
5712
 
5713
- #: ../includes/Elements/Progress_Bar.php:252
5714
  msgid "Postfix Label"
5715
  msgstr ""
5716
 
5717
- #: ../includes/Elements/Progress_Bar.php:255
5718
  msgid "Postfix"
5719
  msgstr ""
5720
 
5721
- #: ../includes/Elements/Progress_Bar.php:423
5722
  msgid "Fill"
5723
  msgstr ""
5724
 
5725
- #: ../includes/Elements/Progress_Bar.php:479
5726
  msgid "Show Stripe"
5727
  msgstr ""
5728
 
5729
- #: ../includes/Elements/Progress_Bar.php:493
5730
  msgid "Stripe Animation"
5731
  msgstr ""
5732
 
5733
- #: ../includes/Elements/Progress_Bar.php:496
5734
  msgid "Left To Right"
5735
  msgstr ""
5736
 
5737
- #: ../includes/Elements/Progress_Bar.php:497
5738
  msgid "Right To Left"
5739
  msgstr ""
5740
 
5741
- #: ../includes/Elements/Progress_Bar.php:498
5742
  msgid "Disabled"
5743
  msgstr ""
5744
 
5745
- #: ../includes/Elements/Progress_Bar.php:589
5746
  msgid "Stroke Width"
5747
  msgstr ""
5748
 
5749
- #: ../includes/Elements/Progress_Bar.php:614
5750
  msgid "Stroke Color"
5751
  msgstr ""
5752
 
5753
- #: ../includes/Elements/Progress_Bar.php:638, ../includes/Extensions/Reading_Progress.php:172
5754
  msgid "Fill Color"
5755
  msgstr ""
5756
 
5757
- #: ../includes/Elements/Progress_Bar.php:702, ../includes/Traits/Elements.php:136, ../includes/templates/admin/elements.php:242
5758
  msgid "Counter"
5759
  msgstr ""
5760
 
5761
- #: ../includes/Elements/Progress_Bar.php:711
5762
  msgid "Counter Color"
5763
  msgstr ""
5764
 
5765
- #: ../includes/Elements/Progress_Bar.php:725
5766
  msgid "Prefix/Postfix"
5767
  msgstr ""
5768
 
5769
- #: ../includes/Elements/Progress_Bar.php:737
5770
  msgid "Prefix/Postfix Color"
5771
  msgstr ""
5772
 
5773
- #: ../includes/Elements/Progress_Bar.php:795, ../includes/Elements/Progress_Bar.php:826, ../includes/Elements/Progress_Bar.php:872
5774
  msgid "%"
5775
  msgstr ""
5776
 
@@ -5782,7 +5782,7 @@ msgstr ""
5782
  msgid "Sticky"
5783
  msgstr ""
5784
 
5785
- #: ../includes/Elements/Sticky_Video.php:116, ../includes/Extensions/Reading_Progress.php:110, ../includes/Extensions/Table_of_Content.php:410, ../includes/Traits/Controls.php:1521, ../includes/Traits/Woo_Product_Comparable.php:1460
5786
  msgid "Position"
5787
  msgstr ""
5788
 
@@ -6182,75 +6182,75 @@ msgstr ""
6182
  msgid "Quotation Postion From Right"
6183
  msgstr ""
6184
 
6185
- #: ../includes/Elements/Tooltip.php:76, ../includes/Elements/Woo_Checkout.php:155, ../includes/Traits/Woo_Product_Comparable.php:1193
6186
  msgid "Text"
6187
  msgstr ""
6188
 
6189
- #: ../includes/Elements/Tooltip.php:84, ../includes/Elements/Tooltip.php:130
6190
  msgid "Shortcode"
6191
  msgstr ""
6192
 
6193
- #: ../includes/Elements/Tooltip.php:97
6194
  msgid "Hover Me!"
6195
  msgstr ""
6196
 
6197
- #: ../includes/Elements/Tooltip.php:107
6198
  msgid "Content Tag"
6199
  msgstr ""
6200
 
6201
- #: ../includes/Elements/Tooltip.php:118
6202
  msgid "DIV"
6203
  msgstr ""
6204
 
6205
- #: ../includes/Elements/Tooltip.php:119
6206
  msgid "SPAN"
6207
  msgstr ""
6208
 
6209
- #: ../includes/Elements/Tooltip.php:133
6210
  msgid "[shortcode-here]"
6211
  msgstr ""
6212
 
6213
- #: ../includes/Elements/Tooltip.php:226
6214
  msgid "Enable Link"
6215
  msgstr ""
6216
 
6217
- #: ../includes/Elements/Tooltip.php:260
6218
  msgid "Tooltip Settings"
6219
  msgstr ""
6220
 
6221
- #: ../includes/Elements/Tooltip.php:269
6222
  msgid "Tooltip content"
6223
  msgstr ""
6224
 
6225
- #: ../includes/Elements/Tooltip.php:276
6226
  msgid "Hover Direction"
6227
  msgstr ""
6228
 
6229
- #: ../includes/Elements/Tooltip.php:291
6230
  msgid "Hover Speed"
6231
  msgstr ""
6232
 
6233
- #: ../includes/Elements/Tooltip.php:294
6234
  msgid "300"
6235
  msgstr ""
6236
 
6237
- #: ../includes/Elements/Tooltip.php:320
6238
  msgid "Content Max Width"
6239
  msgstr ""
6240
 
6241
- #: ../includes/Elements/Tooltip.php:534
6242
  msgid "Tooltip Style"
6243
  msgstr ""
6244
 
6245
- #: ../includes/Elements/Tooltip.php:541
6246
  msgid "Tooltip Width"
6247
  msgstr ""
6248
 
6249
- #: ../includes/Elements/Tooltip.php:566
6250
  msgid "Tooltip Max Width"
6251
  msgstr ""
6252
 
6253
- #: ../includes/Elements/Tooltip.php:675
6254
  msgid "Arrow Color"
6255
  msgstr ""
6256
 
@@ -7430,7 +7430,7 @@ msgstr ""
7430
  msgid "Added "
7431
  msgstr ""
7432
 
7433
- #: ../includes/Traits/Enqueue.php:130, ../includes/Traits/Woo_Product_Comparable.php:2099
7434
  msgid "Compare"
7435
  msgstr ""
7436
 
@@ -7442,7 +7442,7 @@ msgstr ""
7442
  msgid "Post ID is missing"
7443
  msgstr ""
7444
 
7445
- #: ../includes/Traits/Facebook_Feed.php:41, ../includes/Traits/Helper.php:57, ../includes/Traits/Login_Registration.php:62, ../includes/Traits/Login_Registration.php:227, ../includes/Traits/Woo_Product_Comparable.php:2120
7446
  msgid "Widget ID is missing"
7447
  msgstr ""
7448
 
@@ -7450,11 +7450,11 @@ msgstr ""
7450
  msgid "Insecure form submitted without security token"
7451
  msgstr ""
7452
 
7453
- #: ../includes/Traits/Helper.php:37, ../includes/Traits/Login_Registration.php:92, ../includes/Traits/Login_Registration.php:210, ../includes/Traits/Woo_Product_Comparable.php:2157
7454
  msgid "Security token did not match"
7455
  msgstr ""
7456
 
7457
- #: ../includes/Traits/Helper.php:47, ../includes/Traits/Login_Registration.php:55, ../includes/Traits/Login_Registration.php:222, ../includes/Traits/Woo_Product_Comparable.php:2115
7458
  msgid "Page ID is missing"
7459
  msgstr ""
7460
 
@@ -7550,411 +7550,411 @@ msgstr ""
7550
  msgid "Your registration completed successfully."
7551
  msgstr ""
7552
 
7553
- #: ../includes/Traits/Woo_Product_Comparable.php:41, ../includes/Traits/Woo_Product_Comparable.php:87
7554
  msgid "Add to cart"
7555
  msgstr ""
7556
 
7557
- #: ../includes/Traits/Woo_Product_Comparable.php:44, ../includes/Traits/Woo_Product_Comparable.php:95
7558
  msgid "Availability"
7559
  msgstr ""
7560
 
7561
- #: ../includes/Traits/Woo_Product_Comparable.php:45
7562
  msgid "weight"
7563
  msgstr ""
7564
 
7565
- #: ../includes/Traits/Woo_Product_Comparable.php:46, ../includes/Traits/Woo_Product_Comparable.php:103
7566
  msgid "Dimension"
7567
  msgstr ""
7568
 
7569
- #: ../includes/Traits/Woo_Product_Comparable.php:54
7570
  msgid "Theme Default"
7571
  msgstr ""
7572
 
7573
- #: ../includes/Traits/Woo_Product_Comparable.php:55
7574
  msgid "Theme 1"
7575
  msgstr ""
7576
 
7577
- #: ../includes/Traits/Woo_Product_Comparable.php:56
7578
  msgid "Theme 2"
7579
  msgstr ""
7580
 
7581
- #: ../includes/Traits/Woo_Product_Comparable.php:57
7582
  msgid "Theme 3"
7583
  msgstr ""
7584
 
7585
- #: ../includes/Traits/Woo_Product_Comparable.php:58
7586
  msgid "Theme 4"
7587
  msgstr ""
7588
 
7589
- #: ../includes/Traits/Woo_Product_Comparable.php:59
7590
  msgid "Theme 5"
7591
  msgstr ""
7592
 
7593
- #: ../includes/Traits/Woo_Product_Comparable.php:60
7594
  msgid "Theme 6"
7595
  msgstr ""
7596
 
7597
- #: ../includes/Traits/Woo_Product_Comparable.php:99
7598
  msgid "Weight"
7599
  msgstr ""
7600
 
7601
- #: ../includes/Traits/Woo_Product_Comparable.php:134
7602
  msgid "Product Compare"
7603
  msgstr ""
7604
 
7605
- #: ../includes/Traits/Woo_Product_Comparable.php:153
7606
  msgid "Enter Product IDs separated by a comma"
7607
  msgstr ""
7608
 
7609
- #: ../includes/Traits/Woo_Product_Comparable.php:159
7610
  msgid "Search by Product Name"
7611
  msgstr ""
7612
 
7613
- #: ../includes/Traits/Woo_Product_Comparable.php:163
7614
  msgid "Highlighted Product"
7615
  msgstr ""
7616
 
7617
- #: ../includes/Traits/Woo_Product_Comparable.php:168
7618
  msgid "Enter any ID from the Product IDs used above"
7619
  msgstr ""
7620
 
7621
- #: ../includes/Traits/Woo_Product_Comparable.php:178
7622
  msgid "Presets"
7623
  msgstr ""
7624
 
7625
- #: ../includes/Traits/Woo_Product_Comparable.php:184
7626
  msgid "Ribbon Text"
7627
  msgstr ""
7628
 
7629
- #: ../includes/Traits/Woo_Product_Comparable.php:186
7630
  msgid "eg. New"
7631
  msgstr ""
7632
 
7633
- #: ../includes/Traits/Woo_Product_Comparable.php:187
7634
  msgid "New"
7635
  msgstr ""
7636
 
7637
- #: ../includes/Traits/Woo_Product_Comparable.php:197
7638
  msgid "Compare Table Settings"
7639
  msgstr ""
7640
 
7641
- #: ../includes/Traits/Woo_Product_Comparable.php:203
7642
  msgid "Table Title"
7643
  msgstr ""
7644
 
7645
- #: ../includes/Traits/Woo_Product_Comparable.php:205, ../includes/Traits/Woo_Product_Comparable.php:206
7646
  msgid "Compare Products"
7647
  msgstr ""
7648
 
7649
- #: ../includes/Traits/Woo_Product_Comparable.php:211
7650
  msgid "Table Title HTML Tag"
7651
  msgstr ""
7652
 
7653
- #: ../includes/Traits/Woo_Product_Comparable.php:242
7654
  msgid "Fields to show"
7655
  msgstr ""
7656
 
7657
- #: ../includes/Traits/Woo_Product_Comparable.php:243
7658
  msgid "Select the fields to show in the comparison table"
7659
  msgstr ""
7660
 
7661
- #: ../includes/Traits/Woo_Product_Comparable.php:250
7662
  msgid "Repeat \"Price\" field"
7663
  msgstr ""
7664
 
7665
- #: ../includes/Traits/Woo_Product_Comparable.php:251
7666
  msgid "Repeat the \"Price\" field at the end of the table"
7667
  msgstr ""
7668
 
7669
- #: ../includes/Traits/Woo_Product_Comparable.php:256
7670
  msgid "Repeat \"Add to cart\" field"
7671
  msgstr ""
7672
 
7673
- #: ../includes/Traits/Woo_Product_Comparable.php:257
7674
  msgid "Repeat the \"Add to cart\" field at the end of the table"
7675
  msgstr ""
7676
 
7677
- #: ../includes/Traits/Woo_Product_Comparable.php:261
7678
  msgid "Make Product Image Linkable"
7679
  msgstr ""
7680
 
7681
- #: ../includes/Traits/Woo_Product_Comparable.php:262
7682
  msgid "You can link the product image to product details page"
7683
  msgstr ""
7684
 
7685
- #: ../includes/Traits/Woo_Product_Comparable.php:271
7686
  msgid "Text for \"No products are found to compare\""
7687
  msgstr ""
7688
 
7689
- #: ../includes/Traits/Woo_Product_Comparable.php:272
7690
  msgid "No products are added to Compare. Please add products to compare."
7691
  msgstr ""
7692
 
7693
- #: ../includes/Traits/Woo_Product_Comparable.php:275
7694
  msgid "Eg. No products are added to Compare."
7695
  msgstr ""
7696
 
7697
- #: ../includes/Traits/Woo_Product_Comparable.php:286
7698
  msgid "Compare Table General"
7699
  msgstr ""
7700
 
7701
- #: ../includes/Traits/Woo_Product_Comparable.php:392, ../includes/Traits/Woo_Product_Comparable.php:404
7702
  msgid "Table Style"
7703
  msgstr ""
7704
 
7705
- #: ../includes/Traits/Woo_Product_Comparable.php:399
7706
  msgid "Style Content Column Separately"
7707
  msgstr ""
7708
 
7709
- #: ../includes/Traits/Woo_Product_Comparable.php:412
7710
  msgid "Table Width"
7711
  msgstr ""
7712
 
7713
- #: ../includes/Traits/Woo_Product_Comparable.php:442
7714
  msgid "Table Margin"
7715
  msgstr ""
7716
 
7717
- #: ../includes/Traits/Woo_Product_Comparable.php:485
7718
  msgid "Table Border"
7719
  msgstr ""
7720
 
7721
- #: ../includes/Traits/Woo_Product_Comparable.php:518
7722
  msgid "Table Title Style"
7723
  msgstr ""
7724
 
7725
- #: ../includes/Traits/Woo_Product_Comparable.php:527
7726
  msgid "Table Title Text Color"
7727
  msgstr ""
7728
 
7729
- #: ../includes/Traits/Woo_Product_Comparable.php:534
7730
  msgid "Table Title Background"
7731
  msgstr ""
7732
 
7733
- #: ../includes/Traits/Woo_Product_Comparable.php:540
7734
  msgid "Table Title Padding"
7735
  msgstr ""
7736
 
7737
- #: ../includes/Traits/Woo_Product_Comparable.php:553
7738
  msgid "Table Title Border"
7739
  msgstr ""
7740
 
7741
- #: ../includes/Traits/Woo_Product_Comparable.php:567
7742
  msgid "Table Title Typography"
7743
  msgstr ""
7744
 
7745
- #: ../includes/Traits/Woo_Product_Comparable.php:601
7746
  msgid "Product Title Row Typography"
7747
  msgstr ""
7748
 
7749
- #: ../includes/Traits/Woo_Product_Comparable.php:609
7750
  msgid "Header Column Style"
7751
  msgstr ""
7752
 
7753
- #: ../includes/Traits/Woo_Product_Comparable.php:619
7754
  msgid "Header Column Width"
7755
  msgstr ""
7756
 
7757
- #: ../includes/Traits/Woo_Product_Comparable.php:648
7758
  msgid "Header Column Padding"
7759
  msgstr ""
7760
 
7761
- #: ../includes/Traits/Woo_Product_Comparable.php:662
7762
  msgid "Header border"
7763
  msgstr ""
7764
 
7765
- #: ../includes/Traits/Woo_Product_Comparable.php:670
7766
  msgid "Header Column Typography"
7767
  msgstr ""
7768
 
7769
- #: ../includes/Traits/Woo_Product_Comparable.php:678
7770
  msgid "Product Column Style"
7771
  msgstr ""
7772
 
7773
- #: ../includes/Traits/Woo_Product_Comparable.php:688
7774
  msgid "Product Column Width"
7775
  msgstr ""
7776
 
7777
- #: ../includes/Traits/Woo_Product_Comparable.php:717
7778
  msgid "Product Column Padding"
7779
  msgstr ""
7780
 
7781
- #: ../includes/Traits/Woo_Product_Comparable.php:730
7782
  msgid "Product Image Box Padding"
7783
  msgstr ""
7784
 
7785
- #: ../includes/Traits/Woo_Product_Comparable.php:743
7786
  msgid "Product Image Padding"
7787
  msgstr ""
7788
 
7789
- #: ../includes/Traits/Woo_Product_Comparable.php:757
7790
  msgid "Product column border"
7791
  msgstr ""
7792
 
7793
- #: ../includes/Traits/Woo_Product_Comparable.php:763, ../includes/Traits/Woo_Product_Comparable.php:1149
7794
  msgid "Product Image Box Border"
7795
  msgstr ""
7796
 
7797
- #: ../includes/Traits/Woo_Product_Comparable.php:770, ../includes/Traits/Woo_Product_Comparable.php:1155
7798
  msgid "Image Box border"
7799
  msgstr ""
7800
 
7801
- #: ../includes/Traits/Woo_Product_Comparable.php:775, ../includes/Traits/Woo_Product_Comparable.php:1159
7802
  msgid "Product Image Border"
7803
  msgstr ""
7804
 
7805
- #: ../includes/Traits/Woo_Product_Comparable.php:782, ../includes/Traits/Woo_Product_Comparable.php:1165
7806
  msgid "Product Image border"
7807
  msgstr ""
7808
 
7809
- #: ../includes/Traits/Woo_Product_Comparable.php:787, ../includes/Traits/Woo_Product_Comparable.php:1169
7810
  msgid "Image Border Radius"
7811
  msgstr ""
7812
 
7813
- #: ../includes/Traits/Woo_Product_Comparable.php:804
7814
  msgid "Product Column Typography"
7815
  msgstr ""
7816
 
7817
- #: ../includes/Traits/Woo_Product_Comparable.php:832, ../includes/Traits/Woo_Product_Comparable.php:1215
7818
  msgid "Image Background"
7819
  msgstr ""
7820
 
7821
- #: ../includes/Traits/Woo_Product_Comparable.php:845
7822
  msgid "Header Background"
7823
  msgstr ""
7824
 
7825
- #: ../includes/Traits/Woo_Product_Comparable.php:850
7826
  msgid "Header Text Color"
7827
  msgstr ""
7828
 
7829
- #: ../includes/Traits/Woo_Product_Comparable.php:855
7830
  msgid "Product Column Background"
7831
  msgstr ""
7832
 
7833
- #: ../includes/Traits/Woo_Product_Comparable.php:860
7834
  msgid "Product Column Text Color"
7835
  msgstr ""
7836
 
7837
- #: ../includes/Traits/Woo_Product_Comparable.php:871, ../includes/Traits/Woo_Product_Comparable.php:928, ../includes/Traits/Woo_Product_Comparable.php:1253, ../includes/Traits/Woo_Product_Comparable.php:1295, ../includes/Traits/Woo_Product_Comparable.php:1634, ../includes/Traits/Woo_Product_Comparable.php:1684
7838
  msgid "Button Text Color"
7839
  msgstr ""
7840
 
7841
- #: ../includes/Traits/Woo_Product_Comparable.php:876, ../includes/Traits/Woo_Product_Comparable.php:933
7842
  msgid "Button Background Color"
7843
  msgstr ""
7844
 
7845
- #: ../includes/Traits/Woo_Product_Comparable.php:881
7846
  msgid "Even & Odd Rows"
7847
  msgstr ""
7848
 
7849
- #: ../includes/Traits/Woo_Product_Comparable.php:886, ../includes/Traits/Woo_Product_Comparable.php:1025, ../includes/Traits/Woo_Product_Comparable.php:1269
7850
  msgid "Even Row Background"
7851
  msgstr ""
7852
 
7853
- #: ../includes/Traits/Woo_Product_Comparable.php:891, ../includes/Traits/Woo_Product_Comparable.php:1031, ../includes/Traits/Woo_Product_Comparable.php:1275
7854
  msgid "Even Row Text Color"
7855
  msgstr ""
7856
 
7857
- #: ../includes/Traits/Woo_Product_Comparable.php:896, ../includes/Traits/Woo_Product_Comparable.php:1036, ../includes/Traits/Woo_Product_Comparable.php:1280
7858
  msgid "Odd Row Background"
7859
  msgstr ""
7860
 
7861
- #: ../includes/Traits/Woo_Product_Comparable.php:901, ../includes/Traits/Woo_Product_Comparable.php:1041, ../includes/Traits/Woo_Product_Comparable.php:1285
7862
  msgid "Odd Row Text Color"
7863
  msgstr ""
7864
 
7865
- #: ../includes/Traits/Woo_Product_Comparable.php:906
7866
  msgid "Title Row"
7867
  msgstr ""
7868
 
7869
- #: ../includes/Traits/Woo_Product_Comparable.php:911
7870
  msgid "Title Row Background"
7871
  msgstr ""
7872
 
7873
- #: ../includes/Traits/Woo_Product_Comparable.php:916
7874
  msgid "Title Row Text Color"
7875
  msgstr ""
7876
 
7877
- #: ../includes/Traits/Woo_Product_Comparable.php:948
7878
  msgid "Header Column"
7879
  msgstr ""
7880
 
7881
- #: ../includes/Traits/Woo_Product_Comparable.php:1000, ../includes/Traits/Woo_Product_Comparable.php:1224
7882
  msgid "Title Background"
7883
  msgstr ""
7884
 
7885
- #: ../includes/Traits/Woo_Product_Comparable.php:1010
7886
  msgid "Column Background Color"
7887
  msgstr ""
7888
 
7889
- #: ../includes/Traits/Woo_Product_Comparable.php:1015
7890
  msgid "Column Text Color"
7891
  msgstr ""
7892
 
7893
- #: ../includes/Traits/Woo_Product_Comparable.php:1020, ../includes/Traits/Woo_Product_Comparable.php:1264
7894
  msgid "Rows"
7895
  msgstr ""
7896
 
7897
- #: ../includes/Traits/Woo_Product_Comparable.php:1046
7898
  msgid "Title Border"
7899
  msgstr ""
7900
 
7901
- #: ../includes/Traits/Woo_Product_Comparable.php:1055
7902
  msgid "Header Border"
7903
  msgstr ""
7904
 
7905
- #: ../includes/Traits/Woo_Product_Comparable.php:1097
7906
  msgid "Product Column %d"
7907
  msgstr ""
7908
 
7909
- #: ../includes/Traits/Woo_Product_Comparable.php:1259, ../includes/Traits/Woo_Product_Comparable.php:1300
7910
  msgid "Button Background"
7911
  msgstr ""
7912
 
7913
- #: ../includes/Traits/Woo_Product_Comparable.php:1313
7914
  msgid "Compare Modal Close Button"
7915
  msgstr ""
7916
 
7917
- #: ../includes/Traits/Woo_Product_Comparable.php:1416
7918
  msgid "Fields Icon"
7919
  msgstr ""
7920
 
7921
- #: ../includes/Traits/Woo_Product_Comparable.php:1502
7922
  msgid "Price Size"
7923
  msgstr ""
7924
 
7925
- #: ../includes/Traits/Woo_Product_Comparable.php:1527
7926
  msgid "Price Text Color"
7927
  msgstr ""
7928
 
7929
- #: ../includes/Traits/Woo_Product_Comparable.php:1534
7930
  msgid "Price Strike Text Color"
7931
  msgstr ""
7932
 
7933
- #: ../includes/Traits/Woo_Product_Comparable.php:1535
7934
  msgid "Only applicable when sales price is available"
7935
  msgstr ""
7936
 
7937
- #: ../includes/Traits/Woo_Product_Comparable.php:1551
7938
  msgid "Sales Price Size"
7939
  msgstr ""
7940
 
7941
- #: ../includes/Traits/Woo_Product_Comparable.php:1576
7942
  msgid "Sales Price Text Color"
7943
  msgstr ""
7944
 
7945
- #: ../includes/Traits/Woo_Product_Comparable.php:1589
7946
  msgid "Compare Button"
7947
  msgstr ""
7948
 
7949
- #: ../includes/Traits/Woo_Product_Comparable.php:1774
7950
  msgid "Remove"
7951
  msgstr ""
7952
 
7953
- #: ../includes/Traits/Woo_Product_Comparable.php:1981, ../includes/Traits/Woo_Product_Comparable.php:2224
7954
  msgid "In stock"
7955
  msgstr ""
7956
 
7957
- #: ../includes/Traits/Woo_Product_Comparable.php:2125
7958
  msgid "Product ID is missing"
7959
  msgstr ""
7960
 
13
  "X-Poedit-SourceCharset: UTF-8\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
 
16
+ #: ../includes/Classes/Helper.php:190, ../includes/Elements/Adv_Accordion.php:293, ../includes/Elements/Adv_Tabs.php:261, ../includes/Elements/Contact_Form_7.php:270, ../includes/Elements/Content_Ticker.php:349, ../includes/Elements/Countdown.php:467, ../includes/Elements/Creative_Button.php:186, ../includes/Elements/Cta_Box.php:346, ../includes/Elements/Data_Table.php:450, ../includes/Elements/Dual_Color_Header.php:213, ../includes/Elements/Fancy_Text.php:267, ../includes/Elements/Filterable_Gallery.php:795, ../includes/Elements/Flip_Box.php:726, ../includes/Elements/Info_Box.php:492, ../includes/Elements/Pricing_Table.php:702, ../includes/Elements/Progress_Bar.php:271, ../includes/Elements/Team_Member.php:236, ../includes/Elements/Testimonial.php:213, ../includes/Elements/Tooltip.php:505, ../includes/Elements/Twitter_Feed.php:284, ../includes/Elements/WeForms.php:110
17
  msgid "Go Premium for More Features"
18
  msgstr ""
19
 
20
+ #: ../includes/Classes/Helper.php:197, ../includes/Elements/Adv_Accordion.php:300, ../includes/Elements/Adv_Tabs.php:268, ../includes/Elements/Contact_Form_7.php:277, ../includes/Elements/Content_Ticker.php:356, ../includes/Elements/Countdown.php:474, ../includes/Elements/Creative_Button.php:193, ../includes/Elements/Cta_Box.php:353, ../includes/Elements/Data_Table.php:457, ../includes/Elements/Dual_Color_Header.php:220, ../includes/Elements/Fancy_Text.php:274, ../includes/Elements/Filterable_Gallery.php:802, ../includes/Elements/Flip_Box.php:733, ../includes/Elements/Info_Box.php:499, ../includes/Elements/Pricing_Table.php:709, ../includes/Elements/Progress_Bar.php:278, ../includes/Elements/Team_Member.php:243, ../includes/Elements/Testimonial.php:220, ../includes/Elements/Tooltip.php:512, ../includes/Elements/Twitter_Feed.php:291, ../includes/Elements/WeForms.php:117
21
  msgid "Unlock more possibilities"
22
  msgstr ""
23
 
24
+ #: ../includes/Classes/Helper.php:414
25
  msgid "Select a Contact Form"
26
  msgstr ""
27
 
28
+ #: ../includes/Classes/Helper.php:420, ../includes/Classes/Helper.php:446, ../includes/Classes/Helper.php:473, ../includes/Classes/Helper.php:500, ../includes/Classes/Helper.php:525, ../includes/Classes/Helper.php:555, ../includes/Classes/Helper.php:581
29
  msgid "Create a Form First"
30
  msgstr ""
31
 
32
+ #: ../includes/Classes/Helper.php:440
33
  msgid "Select Gravity Form"
34
  msgstr ""
35
 
36
+ #: ../includes/Classes/Helper.php:468, ../includes/Elements/WeForms.php:95
37
  msgid "Select weForm"
38
  msgstr ""
39
 
40
+ #: ../includes/Classes/Helper.php:493
41
  msgid "Select Ninja Form"
42
  msgstr ""
43
 
44
+ #: ../includes/Classes/Helper.php:519
45
  msgid "Select Caldera Form"
46
  msgstr ""
47
 
48
+ #: ../includes/Classes/Helper.php:549
49
  msgid "Select a WPForm"
50
  msgstr ""
51
 
52
+ #: ../includes/Classes/Helper.php:576
53
  msgid "Select a Fluent Form"
54
  msgstr ""
55
 
56
+ #: ../includes/Classes/Helper.php:902, ../includes/Template/Content/Product_Grid.php:63, ../includes/Template/Content/Product_Grid.php:29, ../includes/Template/Eicon-Woocommerce/default.php:265, ../includes/Template/Eicon-Woocommerce/default.php:204, ../includes/Template/Eicon-Woocommerce/default.php:98, ../includes/Template/Eicon-Woocommerce/default.php:82, ../includes/Template/Eicon-Woocommerce/default.php:45
57
  msgid "Sale!"
58
  msgstr ""
59
 
210
  " option."
211
  msgstr ""
212
 
213
+ #: ../includes/Classes/WPDeveloper_Setup_Wizard.php:215, ../includes/Elements/Caldera_Forms.php:1164, ../includes/Elements/Contact_Form_7.php:1193, ../includes/Elements/Content_Ticker.php:92, ../includes/Elements/FluentForm.php:1484, ../includes/Elements/Formstack.php:1400, ../includes/Elements/GravityForms.php:1752, ../includes/Elements/Login_Register.php:271, ../includes/Elements/Login_Register.php:431, ../includes/Elements/Login_Register.php:528, ../includes/Elements/Login_Register.php:815, ../includes/Elements/Login_Register.php:1222, ../includes/Elements/Login_Register.php:1328, ../includes/Elements/Login_Register.php:1396, ../includes/Elements/Login_Register.php:1522, ../includes/Elements/Login_Register.php:1779, ../includes/Elements/Login_Register.php:1923, ../includes/Elements/Login_Register.php:2073, ../includes/Elements/Login_Register.php:2216, ../includes/Elements/Login_Register.php:2307, ../includes/Elements/Login_Register.php:2405, ../includes/Elements/Login_Register.php:2607, ../includes/Elements/Login_Register.php:2652, ../includes/Elements/Login_Register.php:2684, ../includes/Elements/Login_Register.php:2918, ../includes/Elements/Login_Register.php:3080, ../includes/Elements/Login_Register.php:3379, ../includes/Elements/NinjaForms.php:1328, ../includes/Elements/WpForms.php:1168, ../includes/Traits/Woo_Product_Comparable.php:409, ../includes/Traits/Woo_Product_Comparable.php:523, ../includes/Traits/Woo_Product_Comparable.php:614, ../includes/Traits/Woo_Product_Comparable.php:683
214
  msgid "Custom"
215
  msgstr ""
216
 
335
  msgid "Info Box"
336
  msgstr ""
337
 
338
+ #: ../includes/Classes/WPDeveloper_Setup_Wizard.php:562, ../includes/Elements/Dual_Color_Header.php:27, ../includes/templates/admin/elements.php:39
339
  msgid "Dual Color Heading"
340
  msgstr ""
341
 
342
+ #: ../includes/Classes/WPDeveloper_Setup_Wizard.php:567, ../includes/Elements/Pricing_Table.php:1468, ../includes/Elements/Tooltip.php:25, ../includes/templates/admin/elements.php:45
343
  msgid "Tooltip"
344
  msgstr ""
345
 
351
  msgid "Advanced Tabs"
352
  msgstr ""
353
 
354
+ #: ../includes/Classes/WPDeveloper_Setup_Wizard.php:582, ../includes/Elements/Feature_List.php:27, ../includes/Elements/Pricing_Table.php:1209, ../includes/templates/admin/elements.php:63
355
  msgid "Feature List"
356
  msgstr ""
357
 
395
  msgid "Fancy Text"
396
  msgstr ""
397
 
398
+ #: ../includes/Classes/WPDeveloper_Setup_Wizard.php:641, ../includes/Elements/Filterable_Gallery.php:32, ../includes/templates/admin/elements.php:217
399
  msgid "Filterable Gallery"
400
  msgstr ""
401
 
402
+ #: ../includes/Classes/WPDeveloper_Setup_Wizard.php:646, ../includes/Elements/Image_Accordion.php:26, ../includes/templates/admin/elements.php:223
403
  msgid "Image Accordion"
404
  msgstr ""
405
 
406
+ #: ../includes/Classes/WPDeveloper_Setup_Wizard.php:651, ../includes/Elements/Progress_Bar.php:28, ../includes/Elements/Progress_Bar.php:127, ../includes/templates/admin/elements.php:229
407
  msgid "Progress Bar"
408
  msgstr ""
409
 
475
  msgid "BetterDocs Category Grid"
476
  msgstr ""
477
 
478
+ #: ../includes/Classes/WPDeveloper_Setup_Wizard.php:738, ../includes/Elements/Betterdocs_Category_Box.php:35, ../includes/templates/admin/elements.php:469
479
  msgid "BetterDocs Category Box"
480
  msgstr ""
481
 
563
  msgid "Sort"
564
  msgstr ""
565
 
566
+ #: ../includes/Elements/Advanced_Data_Table.php:151, ../includes/Elements/Caldera_Forms.php:162, ../includes/Elements/Caldera_Forms.php:895, ../includes/Elements/Contact_Form_7.php:900, ../includes/Elements/Filterable_Gallery.php:2283, ../includes/Elements/FluentForm.php:175, ../includes/Elements/FluentForm.php:861, ../includes/Elements/Formstack.php:244, ../includes/Elements/Formstack.php:1090, ../includes/Elements/GravityForms.php:231, ../includes/Elements/GravityForms.php:1165, ../includes/Elements/Login_Register.php:1002, ../includes/Elements/NinjaForms.php:183, ../includes/Elements/NinjaForms.php:939, ../includes/Elements/WpForms.php:190, ../includes/Elements/WpForms.php:896
567
  msgid "Placeholder"
568
  msgstr ""
569
 
575
  msgid "Pagination Type"
576
  msgstr ""
577
 
578
+ #: ../includes/Elements/Advanced_Data_Table.php:179, ../includes/Elements/Advanced_Data_Table.php:1305, ../includes/Elements/Betterdocs_Category_Grid.php:1289, ../includes/Elements/Event_Calendar.php:720, ../includes/Elements/Flip_Box.php:650, ../includes/Elements/FluentForm.php:1913, ../includes/Elements/Formstack.php:1773, ../includes/Elements/Info_Box.php:349, ../includes/Elements/Pricing_Table.php:506, ../includes/Elements/Pricing_Table.php:1815, ../includes/Elements/Product_Grid.php:1728, ../includes/Elements/Woo_Checkout.php:1287, ../includes/Elements/Woo_Checkout.php:1585, ../includes/Elements/Woo_Checkout.php:2358, ../includes/Traits/Woo_Product_Comparable.php:1200, ../includes/Traits/Woo_Product_Comparable.php:1250
579
  msgid "Button"
580
  msgstr ""
581
 
611
  msgid "Table"
612
  msgstr ""
613
 
614
+ #: ../includes/Elements/Advanced_Data_Table.php:284, ../includes/Elements/Advanced_Data_Table.php:845, ../includes/Elements/Advanced_Data_Table.php:1040, ../includes/Elements/Betterdocs_Search_Form.php:312, ../includes/Elements/Caldera_Forms.php:1159, ../includes/Elements/Caldera_Forms.php:1173, ../includes/Elements/Contact_Form_7.php:1188, ../includes/Elements/Contact_Form_7.php:1202, ../includes/Elements/Creative_Button.php:464, ../includes/Elements/Data_Table.php:489, ../includes/Elements/Data_Table.php:1044, ../includes/Elements/Dual_Color_Header.php:678, ../includes/Elements/Dual_Color_Header.php:758, ../includes/Elements/Filterable_Gallery.php:2148, ../includes/Elements/Filterable_Gallery.php:2306, ../includes/Elements/FluentForm.php:1479, ../includes/Elements/FluentForm.php:1493, ../includes/Elements/Formstack.php:1395, ../includes/Elements/Formstack.php:1409, ../includes/Elements/GravityForms.php:1631, ../includes/Elements/GravityForms.php:1747, ../includes/Elements/GravityForms.php:1761, ../includes/Elements/GravityForms.php:1994, ../includes/Elements/Login_Register.php:1401, ../includes/Elements/Login_Register.php:1929, ../includes/Elements/NinjaForms.php:1323, ../includes/Elements/NinjaForms.php:1337, ../includes/Elements/Progress_Bar.php:356, ../includes/Elements/Sticky_Video.php:441, ../includes/Elements/Sticky_Video.php:525, ../includes/Elements/Twitter_Feed.php:780, ../includes/Elements/WpForms.php:1163, ../includes/Elements/WpForms.php:1177, ../includes/Extensions/Table_of_Content.php:384, ../includes/Traits/Woo_Product_Comparable.php:296, ../includes/Traits/Woo_Product_Comparable.php:958, ../includes/Traits/Woo_Product_Comparable.php:1107
615
  msgid "Width"
616
  msgstr ""
617
 
618
+ #: ../includes/Elements/Advanced_Data_Table.php:321, ../includes/Elements/Advanced_Data_Table.php:989, ../includes/Elements/Advanced_Data_Table.php:1187, ../includes/Elements/Advanced_Data_Table.php:1259, ../includes/Elements/Advanced_Data_Table.php:1387, ../includes/Elements/Adv_Accordion.php:354, ../includes/Elements/Adv_Accordion.php:561, ../includes/Elements/Adv_Accordion.php:634, ../includes/Elements/Adv_Accordion.php:707, ../includes/Elements/Adv_Accordion.php:804, ../includes/Elements/Adv_Accordion.php:928, ../includes/Elements/Adv_Accordion.php:975, ../includes/Elements/Adv_Accordion.php:1022, ../includes/Elements/Adv_Tabs.php:323, ../includes/Elements/Adv_Tabs.php:513, ../includes/Elements/Adv_Tabs.php:579, ../includes/Elements/Adv_Tabs.php:648, ../includes/Elements/Adv_Tabs.php:743, ../includes/Elements/Betterdocs_Category_Box.php:301, ../includes/Elements/Betterdocs_Category_Box.php:369, ../includes/Elements/Betterdocs_Category_Box.php:490, ../includes/Elements/Betterdocs_Category_Box.php:566, ../includes/Elements/Betterdocs_Category_Box.php:886, ../includes/Elements/Betterdocs_Category_Box.php:991, ../includes/Elements/Betterdocs_Category_Grid.php:341, ../includes/Elements/Betterdocs_Category_Grid.php:389, ../includes/Elements/Betterdocs_Category_Grid.php:474, ../includes/Elements/Betterdocs_Category_Grid.php:515, ../includes/Elements/Betterdocs_Category_Grid.php:640, ../includes/Elements/Betterdocs_Category_Grid.php:694, ../includes/Elements/Betterdocs_Category_Grid.php:843, ../includes/Elements/Betterdocs_Category_Grid.php:940, ../includes/Elements/Betterdocs_Category_Grid.php:1185, ../includes/Elements/Betterdocs_Category_Grid.php:1385, ../includes/Elements/Betterdocs_Category_Grid.php:1484, ../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:617, ../includes/Elements/Caldera_Forms.php:813, ../includes/Elements/Caldera_Forms.php:1229, ../includes/Elements/Caldera_Forms.php:1387, ../includes/Elements/Contact_Form_7.php:711, ../includes/Elements/Contact_Form_7.php:776, ../includes/Elements/Contact_Form_7.php:1258, ../includes/Elements/Contact_Form_7.php:1495, ../includes/Elements/Contact_Form_7.php:1570, ../includes/Elements/Contact_Form_7.php:1647, ../includes/Elements/Content_Ticker.php:665, ../includes/Elements/Countdown.php:619, ../includes/Elements/Cta_Box.php:463, ../includes/Elements/Cta_Box.php:740, ../includes/Elements/Cta_Box.php:927, ../includes/Elements/Data_Table.php:620, ../includes/Elements/Data_Table.php:659, ../includes/Elements/Data_Table.php:851, ../includes/Elements/Data_Table.php:1111, ../includes/Elements/Dual_Color_Header.php:346, ../includes/Elements/Event_Calendar.php:771, ../includes/Elements/Event_Calendar.php:838, ../includes/Elements/Event_Calendar.php:892, ../includes/Elements/Event_Calendar.php:1564, ../includes/Elements/Event_Calendar.php:1635, ../includes/Elements/Facebook_Feed.php:440, ../includes/Elements/Filterable_Gallery.php:871, ../includes/Elements/Filterable_Gallery.php:984, ../includes/Elements/Filterable_Gallery.php:1050, ../includes/Elements/Filterable_Gallery.php:1130, ../includes/Elements/Filterable_Gallery.php:1277, ../includes/Elements/Filterable_Gallery.php:1334, ../includes/Elements/Filterable_Gallery.php:1553, ../includes/Elements/Filterable_Gallery.php:1828, ../includes/Elements/Filterable_Gallery.php:1889, ../includes/Elements/Filterable_Gallery.php:2400, ../includes/Elements/Filterable_Gallery.php:2517, ../includes/Elements/Flip_Box.php:987, ../includes/Elements/Flip_Box.php:1100, ../includes/Elements/FluentForm.php:636, ../includes/Elements/FluentForm.php:832, ../includes/Elements/FluentForm.php:1549, ../includes/Elements/FluentForm.php:1826, ../includes/Elements/FluentForm.php:1953, ../includes/Elements/FluentForm.php:2071, ../includes/Elements/Formstack.php:865, ../includes/Elements/Formstack.php:1061, ../includes/Elements/Formstack.php:1465, ../includes/Elements/Formstack.php:1686, ../includes/Elements/Formstack.php:1815, ../includes/Elements/GravityForms.php:835, ../includes/Elements/GravityForms.php:899, ../includes/Elements/GravityForms.php:1655, ../includes/Elements/GravityForms.php:1824, ../includes/Elements/GravityForms.php:2051, ../includes/Elements/Image_Accordion.php:354, ../includes/Elements/Image_Accordion.php:464, ../includes/Elements/Info_Box.php:568, ../includes/Elements/Info_Box.php:623, ../includes/Elements/Info_Box.php:817, ../includes/Elements/Info_Box.php:897, ../includes/Elements/Info_Box.php:1048, ../includes/Elements/Info_Box.php:1128, ../includes/Elements/Login_Register.php:2681, ../includes/Elements/NinjaForms.php:659, ../includes/Elements/NinjaForms.php:857, ../includes/Elements/NinjaForms.php:1397, ../includes/Elements/Post_Grid.php:282, ../includes/Elements/Pricing_Table.php:1766, ../includes/Elements/Pricing_Table.php:1932, ../includes/Elements/Product_Grid.php:2169, ../includes/Elements/Team_Member.php:412, ../includes/Elements/Team_Member.php:500, ../includes/Elements/Testimonial.php:434, ../includes/Elements/Tooltip.php:431, ../includes/Elements/Tooltip.php:474, ../includes/Elements/Twitter_Feed.php:437, ../includes/Elements/Twitter_Feed.php:527, ../includes/Elements/Twitter_Feed.php:844, ../includes/Elements/Woo_Checkout.php:1507, ../includes/Elements/Woo_Checkout.php:1753, ../includes/Elements/WpForms.php:628, ../includes/Elements/WpForms.php:814, ../includes/Elements/WpForms.php:1233, ../includes/Extensions/Table_of_Content.php:498, ../includes/Traits/Controls.php:1210, ../includes/Traits/Controls.php:1264, ../includes/Traits/Controls.php:1394
619
  msgid "Border"
620
  msgstr ""
621
 
622
+ #: ../includes/Elements/Advanced_Data_Table.php:347, ../includes/Elements/Advanced_Data_Table.php:1015, ../includes/Elements/Advanced_Data_Table.php:1213, ../includes/Elements/Advanced_Data_Table.php:1285, ../includes/Elements/Advanced_Data_Table.php:1409, ../includes/Elements/Adv_Accordion.php:361, ../includes/Elements/Adv_Accordion.php:568, ../includes/Elements/Adv_Accordion.php:641, ../includes/Elements/Adv_Accordion.php:714, ../includes/Elements/Adv_Tabs.php:331, ../includes/Elements/Adv_Tabs.php:520, ../includes/Elements/Adv_Tabs.php:586, ../includes/Elements/Adv_Tabs.php:655, ../includes/Elements/Adv_Tabs.php:750, ../includes/Elements/Betterdocs_Category_Box.php:309, ../includes/Elements/Betterdocs_Category_Box.php:377, ../includes/Elements/Betterdocs_Category_Box.php:498, ../includes/Elements/Betterdocs_Category_Box.php:575, ../includes/Elements/Betterdocs_Category_Box.php:897, ../includes/Elements/Betterdocs_Category_Box.php:1002, ../includes/Elements/Betterdocs_Category_Grid.php:349, ../includes/Elements/Betterdocs_Category_Grid.php:397, ../includes/Elements/Betterdocs_Category_Grid.php:482, ../includes/Elements/Betterdocs_Category_Grid.php:523, ../includes/Elements/Betterdocs_Category_Grid.php:648, ../includes/Elements/Betterdocs_Category_Grid.php:702, ../includes/Elements/Betterdocs_Category_Grid.php:854, ../includes/Elements/Betterdocs_Category_Grid.php:951, ../includes/Elements/Betterdocs_Category_Grid.php:1393, ../includes/Elements/Betterdocs_Category_Grid.php:1492, ../includes/Elements/Betterdocs_Search_Form.php:198, ../includes/Elements/Caldera_Forms.php:480, ../includes/Elements/Caldera_Forms.php:628, ../includes/Elements/Caldera_Forms.php:1046, ../includes/Elements/Caldera_Forms.php:1072, ../includes/Elements/Caldera_Forms.php:1239, ../includes/Elements/Contact_Form_7.php:396, ../includes/Elements/Contact_Form_7.php:722, ../includes/Elements/Contact_Form_7.php:1073, ../includes/Elements/Contact_Form_7.php:1099, ../includes/Elements/Contact_Form_7.php:1267, ../includes/Elements/Content_Ticker.php:444, ../includes/Elements/Content_Ticker.php:518, ../includes/Elements/Content_Ticker.php:675, ../includes/Elements/Countdown.php:627, ../includes/Elements/Creative_Button.php:333, ../includes/Elements/Cta_Box.php:471, ../includes/Elements/Cta_Box.php:748, ../includes/Elements/Cta_Box.php:935, ../includes/Elements/Dual_Color_Header.php:354, ../includes/Elements/Event_Calendar.php:779, ../includes/Elements/Event_Calendar.php:846, ../includes/Elements/Event_Calendar.php:900, ../includes/Elements/Event_Calendar.php:1136, ../includes/Elements/Event_Calendar.php:1304, ../includes/Elements/Event_Calendar.php:1572, ../includes/Elements/Event_Calendar.php:1643, ../includes/Elements/Facebook_Feed.php:465, ../includes/Elements/Facebook_Feed.php:525, ../includes/Elements/Fancy_Text.php:518, ../includes/Elements/Feature_List.php:640, ../includes/Elements/Filterable_Gallery.php:879, ../includes/Elements/Filterable_Gallery.php:992, ../includes/Elements/Filterable_Gallery.php:1058, ../includes/Elements/Filterable_Gallery.php:1138, ../includes/Elements/Filterable_Gallery.php:1342, ../includes/Elements/Filterable_Gallery.php:1836, ../includes/Elements/Filterable_Gallery.php:1897, ../includes/Elements/Filterable_Gallery.php:2062, ../includes/Elements/Filterable_Gallery.php:2191, ../includes/Elements/Filterable_Gallery.php:2326, ../includes/Elements/Filterable_Gallery.php:2422, ../includes/Elements/Filterable_Gallery.php:2531, ../includes/Elements/Flip_Box.php:825, ../includes/Elements/Flip_Box.php:886, ../includes/Elements/Flip_Box.php:1010, ../includes/Elements/Flip_Box.php:1123, ../includes/Elements/Flip_Box.php:1383, ../includes/Elements/FluentForm.php:499, ../includes/Elements/FluentForm.php:647, ../includes/Elements/FluentForm.php:1012, ../includes/Elements/FluentForm.php:1038, ../includes/Elements/FluentForm.php:1559, ../includes/Elements/FluentForm.php:1837, ../includes/Elements/FluentForm.php:1961, ../includes/Elements/FluentForm.php:2015, ../includes/Elements/Formstack.php:399, ../includes/Elements/Formstack.php:876, ../includes/Elements/Formstack.php:1202, ../includes/Elements/Formstack.php:1228, ../includes/Elements/Formstack.php:1475, ../includes/Elements/Formstack.php:1697, ../includes/Elements/Formstack.php:1823, ../includes/Elements/Formstack.php:1879, ../includes/Elements/GravityForms.php:436, ../includes/Elements/GravityForms.php:846, ../includes/Elements/GravityForms.php:1316, ../includes/Elements/GravityForms.php:1512, ../includes/Elements/GravityForms.php:1665, ../includes/Elements/GravityForms.php:1834, ../includes/Elements/GravityForms.php:2061, ../includes/Elements/Image_Accordion.php:362, ../includes/Elements/Image_Accordion.php:452, ../includes/Elements/Info_Box.php:1210, ../includes/Elements/Login_Register.php:1482, ../includes/Elements/Login_Register.php:1717, ../includes/Elements/Login_Register.php:1891, ../includes/Elements/Login_Register.php:2047, ../includes/Elements/Login_Register.php:2187, ../includes/Elements/Login_Register.php:2281, ../includes/Elements/Login_Register.php:2372, ../includes/Elements/Login_Register.php:2546, ../includes/Elements/Login_Register.php:2583, ../includes/Elements/Login_Register.php:2697, ../includes/Elements/Login_Register.php:3207, ../includes/Elements/Login_Register.php:3244, ../includes/Elements/Login_Register.php:3528, ../includes/Elements/Login_Register.php:3565, ../includes/Elements/NinjaForms.php:369, ../includes/Elements/NinjaForms.php:670, ../includes/Elements/NinjaForms.php:1094, ../includes/Elements/NinjaForms.php:1121, ../includes/Elements/NinjaForms.php:1407, ../includes/Elements/Post_Grid.php:290, ../includes/Elements/Pricing_Table.php:786, ../includes/Elements/Pricing_Table.php:1540, ../includes/Elements/Pricing_Table.php:1789, ../includes/Elements/Pricing_Table.php:1940, ../includes/Elements/Product_Grid.php:906, ../includes/Elements/Product_Grid.php:1913, ../includes/Elements/Product_Grid.php:2269, ../includes/Elements/Product_Grid.php:2606, ../includes/Elements/Product_Grid.php:2801, ../includes/Elements/Product_Grid.php:2833, ../includes/Elements/Sticky_Video.php:591, ../includes/Elements/Team_Member.php:420, ../includes/Elements/Team_Member.php:519, ../includes/Elements/Team_Member.php:766, ../includes/Elements/Testimonial.php:453, ../includes/Elements/Tooltip.php:491, ../includes/Elements/Twitter_Feed.php:445, ../includes/Elements/Twitter_Feed.php:538, ../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:647, ../includes/Elements/Woo_Checkout.php:796, ../includes/Elements/Woo_Checkout.php:992, ../includes/Elements/Woo_Checkout.php:1240, ../includes/Elements/Woo_Checkout.php:1393, ../includes/Elements/Woo_Checkout.php:1516, ../includes/Elements/Woo_Checkout.php:1691, ../includes/Elements/Woo_Checkout.php:1899, ../includes/Elements/Woo_Checkout.php:2101, ../includes/Elements/Woo_Checkout.php:2195, ../includes/Elements/Woo_Checkout.php:2475, ../includes/Elements/WpForms.php:338, ../includes/Elements/WpForms.php:639, ../includes/Elements/WpForms.php:1047, ../includes/Elements/WpForms.php:1073, ../includes/Elements/WpForms.php:1243, ../includes/Extensions/Table_of_Content.php:521, ../includes/Extensions/Table_of_Content.php:736, ../includes/Traits/Controls.php:1218, ../includes/Traits/Controls.php:1272, ../includes/Traits/Controls.php:1402, ../includes/Traits/Woo_Product_Comparable.php:357, ../includes/Traits/Woo_Product_Comparable.php:502, ../includes/Traits/Woo_Product_Comparable.php:1383
623
  msgid "Border Radius"
624
  msgstr ""
625
 
626
+ #: ../includes/Elements/Advanced_Data_Table.php:360, ../includes/Elements/Advanced_Data_Table.php:1423, ../includes/Elements/Betterdocs_Category_Grid.php:331, ../includes/Elements/Betterdocs_Category_Grid.php:379, ../includes/Elements/Event_Calendar.php:658, ../includes/Elements/Event_Calendar.php:1596, ../includes/Elements/Event_Calendar.php:1670, ../includes/Elements/Product_Grid.php:866, ../includes/Elements/Product_Grid.php:894, ../includes/Elements/Product_Grid.php:2825, ../includes/Elements/Product_Grid.php:2860, ../includes/Elements/Progress_Bar.php:652, ../includes/Elements/Twitter_Feed.php:640, ../includes/Elements/Twitter_Feed.php:852, ../includes/Extensions/Table_of_Content.php:510, ../includes/Extensions/Table_of_Content.php:755, ../includes/Traits/Woo_Product_Comparable.php:1407
627
  msgid "Box Shadow"
628
  msgstr ""
629
 
631
  msgid "Head"
632
  msgstr ""
633
 
634
+ #: ../includes/Elements/Advanced_Data_Table.php:379, ../includes/Elements/Advanced_Data_Table.php:498, ../includes/Elements/Advanced_Data_Table.php:956, ../includes/Elements/Advanced_Data_Table.php:1106, ../includes/Elements/Advanced_Data_Table.php:1314, ../includes/Elements/Caldera_Forms.php:286, ../includes/Elements/Caldera_Forms.php:347, ../includes/Elements/Caldera_Forms.php:535, ../includes/Elements/Caldera_Forms.php:773, ../includes/Elements/Caldera_Forms.php:862, ../includes/Elements/Caldera_Forms.php:1283, ../includes/Elements/Caldera_Forms.php:1398, ../includes/Elements/Contact_Form_7.php:487, ../includes/Elements/Contact_Form_7.php:518, ../includes/Elements/Contact_Form_7.php:735, ../includes/Elements/Contact_Form_7.php:883, ../includes/Elements/Contact_Form_7.php:935, ../includes/Elements/Contact_Form_7.php:1311, ../includes/Elements/Contact_Form_7.php:1556, ../includes/Elements/Contact_Form_7.php:1613, ../includes/Elements/Event_Calendar.php:700, ../includes/Elements/Event_Calendar.php:730, ../includes/Elements/Event_Calendar.php:944, ../includes/Elements/Event_Calendar.php:1019, ../includes/Elements/Event_Calendar.php:1053, ../includes/Elements/Event_Calendar.php:1296, ../includes/Elements/Event_Calendar.php:1359, ../includes/Elements/Event_Calendar.php:1388, ../includes/Elements/Event_Calendar.php:1456, ../includes/Elements/Event_Calendar.php:1614, ../includes/Elements/Filterable_Gallery.php:1964, ../includes/Elements/Filterable_Gallery.php:2009, ../includes/Elements/Filterable_Gallery.php:2043, ../includes/Elements/Filterable_Gallery.php:2098, ../includes/Elements/Filterable_Gallery.php:2390, ../includes/Elements/Filterable_Gallery.php:2548, ../includes/Elements/FluentForm.php:293, ../includes/Elements/FluentForm.php:354, ../includes/Elements/FluentForm.php:554, ../includes/Elements/FluentForm.php:792, ../includes/Elements/FluentForm.php:1119, ../includes/Elements/FluentForm.php:1174, ../includes/Elements/FluentForm.php:1278, ../includes/Elements/FluentForm.php:1364, ../includes/Elements/FluentForm.php:1430, ../includes/Elements/FluentForm.php:1603, ../includes/Elements/FluentForm.php:1736, ../includes/Elements/FluentForm.php:1933, ../includes/Elements/FluentForm.php:2082, ../includes/Elements/FluentForm.php:2131, ../includes/Elements/Formstack.php:494, ../includes/Elements/Formstack.php:543, ../includes/Elements/Formstack.php:597, ../includes/Elements/Formstack.php:671, ../includes/Elements/Formstack.php:726, ../includes/Elements/Formstack.php:809, ../includes/Elements/Formstack.php:1021, ../includes/Elements/Formstack.php:1519, ../includes/Elements/Formstack.php:1652, ../includes/Elements/Formstack.php:1793, ../includes/Elements/Formstack.php:1953, ../includes/Elements/GravityForms.php:528, ../includes/Elements/GravityForms.php:559, ../includes/Elements/GravityForms.php:600, ../includes/Elements/GravityForms.php:859, ../includes/Elements/GravityForms.php:948, ../includes/Elements/GravityForms.php:1002, ../includes/Elements/GravityForms.php:1138, ../includes/Elements/GravityForms.php:1598, ../includes/Elements/GravityForms.php:1933, ../includes/Elements/GravityForms.php:2154, ../includes/Elements/GravityForms.php:2347, ../includes/Elements/NinjaForms.php:465, ../includes/Elements/NinjaForms.php:514, ../includes/Elements/NinjaForms.php:574, ../includes/Elements/NinjaForms.php:817, ../includes/Elements/NinjaForms.php:906, ../includes/Elements/NinjaForms.php:1500, ../includes/Elements/NinjaForms.php:1545, ../includes/Elements/NinjaForms.php:1599, ../includes/Elements/Post_Grid.php:371, ../includes/Elements/Post_Grid.php:471, ../includes/Elements/Post_Grid.php:483, ../includes/Elements/Post_Grid.php:625, ../includes/Elements/Post_Grid.php:837, ../includes/Elements/Post_Timeline.php:292, ../includes/Elements/Product_Grid.php:2329, ../includes/Elements/Product_Grid.php:2359, ../includes/Elements/Product_Grid.php:2401, ../includes/Elements/Product_Grid.php:2467, ../includes/Elements/Product_Grid.php:2506, ../includes/Elements/Product_Grid.php:2563, ../includes/Elements/Product_Grid.php:2680, ../includes/Elements/Progress_Bar.php:672, ../includes/Elements/Woo_Checkout.php:1296, ../includes/Elements/Woo_Checkout.php:1594, ../includes/Elements/WpForms.php:432, ../includes/Elements/WpForms.php:481, ../includes/Elements/WpForms.php:545, ../includes/Elements/WpForms.php:785, ../includes/Elements/WpForms.php:863, ../includes/Elements/WpForms.php:1287, ../includes/Traits/Woo_Product_Comparable.php:1066, ../includes/Traits/Woo_Product_Comparable.php:1184
635
  msgid "Typography"
636
  msgstr ""
637
 
638
+ #: ../includes/Elements/Advanced_Data_Table.php:387, ../includes/Elements/Advanced_Data_Table.php:506, ../includes/Elements/Betterdocs_Category_Box.php:764, ../includes/Elements/Betterdocs_Category_Grid.php:1508, ../includes/Elements/Countdown.php:1025, ../includes/Elements/Login_Register.php:2486
639
  msgid "Text Alignment"
640
  msgstr ""
641
 
642
+ #: ../includes/Elements/Advanced_Data_Table.php:391, ../includes/Elements/Advanced_Data_Table.php:510, ../includes/Elements/Advanced_Data_Table.php:936, ../includes/Elements/Advanced_Data_Table.php:1083, ../includes/Elements/Adv_Accordion.php:138, ../includes/Elements/Betterdocs_Category_Box.php:768, ../includes/Elements/Betterdocs_Category_Grid.php:1512, ../includes/Elements/Betterdocs_Category_Grid.php:1537, ../includes/Elements/Caldera_Forms.php:233, ../includes/Elements/Caldera_Forms.php:415, ../includes/Elements/Caldera_Forms.php:561, ../includes/Elements/Caldera_Forms.php:1136, ../includes/Elements/Contact_Form_7.php:331, ../includes/Elements/Contact_Form_7.php:443, ../includes/Elements/Contact_Form_7.php:1163, ../includes/Elements/Content_Ticker.php:333, ../includes/Elements/Countdown.php:118, ../includes/Elements/Countdown.php:1030, ../includes/Elements/Creative_Button.php:442, ../includes/Elements/Cta_Box.php:102, ../includes/Elements/Data_Table.php:521, ../includes/Elements/Data_Table.php:746, ../includes/Elements/Data_Table.php:995, ../includes/Elements/Dual_Color_Header.php:190, ../includes/Elements/Event_Calendar.php:968, ../includes/Elements/Event_Calendar.php:1100, ../includes/Elements/Fancy_Text.php:172, ../includes/Elements/Feature_List.php:304, ../includes/Elements/Filterable_Gallery.php:767, ../includes/Elements/Filterable_Gallery.php:1299, ../includes/Elements/Filterable_Gallery.php:1682, ../includes/Elements/Flip_Box.php:368, ../includes/Elements/Flip_Box.php:597, ../includes/Elements/FluentForm.php:239, ../includes/Elements/FluentForm.php:434, ../includes/Elements/FluentForm.php:580, ../includes/Elements/FluentForm.php:1211, ../includes/Elements/FluentForm.php:1456, ../includes/Elements/Formstack.php:334, ../includes/Elements/Formstack.php:449, ../includes/Elements/Formstack.php:763, ../includes/Elements/Formstack.php:1372, ../includes/Elements/GravityForms.php:347, ../includes/Elements/GravityForms.php:484, ../includes/Elements/GravityForms.php:629, ../includes/Elements/GravityForms.php:1721, ../includes/Elements/GravityForms.php:1971, ../includes/Elements/Image_Accordion.php:109, ../includes/Elements/Info_Box.php:303, ../includes/Elements/Login_Register.php:673, ../includes/Elements/Login_Register.php:706, ../includes/Elements/Login_Register.php:2490, ../includes/Elements/Login_Register.php:3158, ../includes/Elements/Login_Register.php:3478, ../includes/Elements/NinjaForms.php:282, ../includes/Elements/NinjaForms.php:421, ../includes/Elements/NinjaForms.php:603, ../includes/Elements/NinjaForms.php:1298, ../includes/Elements/Post_Grid.php:448, ../includes/Elements/Post_Grid.php:603, ../includes/Elements/Post_Grid.php:671, ../includes/Elements/Post_Grid.php:766, ../includes/Elements/Post_Grid.php:849, ../includes/Elements/Post_Timeline.php:326, ../includes/Elements/Post_Timeline.php:384, ../includes/Elements/Pricing_Table.php:261, ../includes/Elements/Pricing_Table.php:378, ../includes/Elements/Pricing_Table.php:680, ../includes/Elements/Pricing_Table.php:820, ../includes/Elements/Pricing_Table.php:845, ../includes/Elements/Product_Grid.php:658, ../includes/Elements/Product_Grid.php:976, ../includes/Elements/Product_Grid.php:1647, ../includes/Elements/Product_Grid.php:2090, ../includes/Elements/Progress_Bar.php:321, ../includes/Elements/Progress_Bar.php:532, ../includes/Elements/Team_Member.php:379, ../includes/Elements/Testimonial.php:313, ../includes/Elements/Tooltip.php:177, ../includes/Elements/Tooltip.php:283, ../includes/Elements/Tooltip.php:372, ../includes/Elements/TypeForm.php:200, ../includes/Elements/WeForms.php:165, ../includes/Elements/WeForms.php:635, ../includes/Elements/WpForms.php:271, ../includes/Elements/WpForms.php:388, ../includes/Elements/WpForms.php:572, ../includes/Elements/WpForms.php:1137, ../includes/Extensions/Table_of_Content.php:415, ../includes/Traits/Controls.php:597, ../includes/Traits/Controls.php:1483, ../includes/Traits/Controls.php:1534, ../includes/Traits/Controls.php:1535
643
  msgid "Left"
644
  msgstr ""
645
 
646
+ #: ../includes/Elements/Advanced_Data_Table.php:395, ../includes/Elements/Advanced_Data_Table.php:514, ../includes/Elements/Advanced_Data_Table.php:940, ../includes/Elements/Advanced_Data_Table.php:1087, ../includes/Elements/Betterdocs_Category_Box.php:772, ../includes/Elements/Betterdocs_Category_Grid.php:1516, ../includes/Elements/Betterdocs_Category_Grid.php:1541, ../includes/Elements/Caldera_Forms.php:237, ../includes/Elements/Caldera_Forms.php:419, ../includes/Elements/Caldera_Forms.php:565, ../includes/Elements/Caldera_Forms.php:1140, ../includes/Elements/Contact_Form_7.php:335, ../includes/Elements/Contact_Form_7.php:447, ../includes/Elements/Contact_Form_7.php:1167, ../includes/Elements/Countdown.php:122, ../includes/Elements/Countdown.php:1034, ../includes/Elements/Creative_Button.php:446, ../includes/Elements/Cta_Box.php:103, ../includes/Elements/Data_Table.php:525, ../includes/Elements/Data_Table.php:750, ../includes/Elements/Data_Table.php:999, ../includes/Elements/Dual_Color_Header.php:194, ../includes/Elements/Dual_Color_Header.php:587, ../includes/Elements/Event_Calendar.php:972, ../includes/Elements/Event_Calendar.php:1104, ../includes/Elements/Fancy_Text.php:176, ../includes/Elements/Filterable_Gallery.php:771, ../includes/Elements/Filterable_Gallery.php:1303, ../includes/Elements/Filterable_Gallery.php:1686, ../includes/Elements/Flip_Box.php:372, ../includes/Elements/Flip_Box.php:601, ../includes/Elements/FluentForm.php:243, ../includes/Elements/FluentForm.php:438, ../includes/Elements/FluentForm.php:584, ../includes/Elements/FluentForm.php:1215, ../includes/Elements/FluentForm.php:1460, ../includes/Elements/Formstack.php:338, ../includes/Elements/Formstack.php:453, ../includes/Elements/Formstack.php:767, ../includes/Elements/Formstack.php:1376, ../includes/Elements/GravityForms.php:351, ../includes/Elements/GravityForms.php:488, ../includes/Elements/GravityForms.php:633, ../includes/Elements/GravityForms.php:1725, ../includes/Elements/GravityForms.php:1975, ../includes/Elements/Image_Accordion.php:113, ../includes/Elements/Image_Accordion.php:136, ../includes/Elements/Info_Box.php:307, ../includes/Elements/Login_Register.php:2494, ../includes/Elements/Login_Register.php:3140, ../includes/Elements/Login_Register.php:3162, ../includes/Elements/Login_Register.php:3439, ../includes/Elements/Login_Register.php:3459, ../includes/Elements/Login_Register.php:3482, ../includes/Elements/NinjaForms.php:286, ../includes/Elements/NinjaForms.php:425, ../includes/Elements/NinjaForms.php:607, ../includes/Elements/NinjaForms.php:1302, ../includes/Elements/Post_Grid.php:452, ../includes/Elements/Post_Grid.php:607, ../includes/Elements/Post_Grid.php:675, ../includes/Elements/Post_Grid.php:770, ../includes/Elements/Post_Grid.php:853, ../includes/Elements/Post_Timeline.php:330, ../includes/Elements/Post_Timeline.php:388, ../includes/Elements/Pricing_Table.php:824, ../includes/Elements/Pricing_Table.php:849, ../includes/Elements/Product_Grid.php:662, ../includes/Elements/Product_Grid.php:980, ../includes/Elements/Product_Grid.php:2094, ../includes/Elements/Progress_Bar.php:325, ../includes/Elements/Progress_Bar.php:536, ../includes/Elements/Team_Member.php:383, ../includes/Elements/Testimonial.php:317, ../includes/Elements/Tooltip.php:181, ../includes/Elements/Tooltip.php:376, ../includes/Elements/TypeForm.php:204, ../includes/Elements/WeForms.php:169, ../includes/Elements/WeForms.php:639, ../includes/Elements/WpForms.php:275, ../includes/Elements/WpForms.php:392, ../includes/Elements/WpForms.php:576, ../includes/Elements/WpForms.php:1141, ../includes/Traits/Controls.php:596, ../includes/Traits/Controls.php:1487
647
  msgid "Center"
648
  msgstr ""
649
 
650
+ #: ../includes/Elements/Advanced_Data_Table.php:399, ../includes/Elements/Advanced_Data_Table.php:518, ../includes/Elements/Advanced_Data_Table.php:944, ../includes/Elements/Advanced_Data_Table.php:1091, ../includes/Elements/Adv_Accordion.php:137, ../includes/Elements/Betterdocs_Category_Box.php:776, ../includes/Elements/Betterdocs_Category_Grid.php:1520, ../includes/Elements/Betterdocs_Category_Grid.php:1545, ../includes/Elements/Caldera_Forms.php:241, ../includes/Elements/Caldera_Forms.php:423, ../includes/Elements/Caldera_Forms.php:569, ../includes/Elements/Caldera_Forms.php:1144, ../includes/Elements/Contact_Form_7.php:339, ../includes/Elements/Contact_Form_7.php:451, ../includes/Elements/Contact_Form_7.php:1171, ../includes/Elements/Content_Ticker.php:334, ../includes/Elements/Countdown.php:126, ../includes/Elements/Countdown.php:1038, ../includes/Elements/Creative_Button.php:450, ../includes/Elements/Cta_Box.php:104, ../includes/Elements/Data_Table.php:529, ../includes/Elements/Data_Table.php:754, ../includes/Elements/Data_Table.php:1003, ../includes/Elements/Dual_Color_Header.php:198, ../includes/Elements/Event_Calendar.php:976, ../includes/Elements/Event_Calendar.php:1108, ../includes/Elements/Fancy_Text.php:180, ../includes/Elements/Feature_List.php:312, ../includes/Elements/Filterable_Gallery.php:775, ../includes/Elements/Filterable_Gallery.php:1307, ../includes/Elements/Filterable_Gallery.php:1690, ../includes/Elements/Flip_Box.php:376, ../includes/Elements/Flip_Box.php:605, ../includes/Elements/FluentForm.php:247, ../includes/Elements/FluentForm.php:442, ../includes/Elements/FluentForm.php:588, ../includes/Elements/FluentForm.php:1219, ../includes/Elements/FluentForm.php:1464, ../includes/Elements/Formstack.php:342, ../includes/Elements/Formstack.php:457, ../includes/Elements/Formstack.php:771, ../includes/Elements/Formstack.php:1380, ../includes/Elements/GravityForms.php:355, ../includes/Elements/GravityForms.php:492, ../includes/Elements/GravityForms.php:637, ../includes/Elements/GravityForms.php:1729, ../includes/Elements/GravityForms.php:1979, ../includes/Elements/Image_Accordion.php:117, ../includes/Elements/Info_Box.php:311, ../includes/Elements/Login_Register.php:677, ../includes/Elements/Login_Register.php:2498, ../includes/Elements/Login_Register.php:3166, ../includes/Elements/Login_Register.php:3486, ../includes/Elements/NinjaForms.php:290, ../includes/Elements/NinjaForms.php:429, ../includes/Elements/NinjaForms.php:611, ../includes/Elements/NinjaForms.php:1306, ../includes/Elements/Post_Grid.php:456, ../includes/Elements/Post_Grid.php:611, ../includes/Elements/Post_Grid.php:679, ../includes/Elements/Post_Grid.php:774, ../includes/Elements/Post_Grid.php:857, ../includes/Elements/Post_Timeline.php:334, ../includes/Elements/Post_Timeline.php:392, ../includes/Elements/Pricing_Table.php:262, ../includes/Elements/Pricing_Table.php:386, ../includes/Elements/Pricing_Table.php:684, ../includes/Elements/Pricing_Table.php:828, ../includes/Elements/Pricing_Table.php:853, ../includes/Elements/Product_Grid.php:666, ../includes/Elements/Product_Grid.php:984, ../includes/Elements/Product_Grid.php:1651, ../includes/Elements/Product_Grid.php:2098, ../includes/Elements/Progress_Bar.php:329, ../includes/Elements/Progress_Bar.php:540, ../includes/Elements/Team_Member.php:387, ../includes/Elements/Testimonial.php:321, ../includes/Elements/Tooltip.php:185, ../includes/Elements/Tooltip.php:284, ../includes/Elements/Tooltip.php:380, ../includes/Elements/TypeForm.php:208, ../includes/Elements/WeForms.php:173, ../includes/Elements/WeForms.php:643, ../includes/Elements/WpForms.php:279, ../includes/Elements/WpForms.php:396, ../includes/Elements/WpForms.php:580, ../includes/Elements/WpForms.php:1145, ../includes/Extensions/Table_of_Content.php:416, ../includes/Traits/Controls.php:595, ../includes/Traits/Controls.php:1491, ../includes/Traits/Controls.php:1534, ../includes/Traits/Controls.php:1535
651
  msgid "Right"
652
  msgstr ""
653
 
654
+ #: ../includes/Elements/Advanced_Data_Table.php:414, ../includes/Elements/Advanced_Data_Table.php:533, ../includes/Elements/Advanced_Data_Table.php:627, ../includes/Elements/Advanced_Data_Table.php:658, ../includes/Elements/Advanced_Data_Table.php:689, ../includes/Elements/Advanced_Data_Table.php:720, ../includes/Elements/Advanced_Data_Table.php:751, ../includes/Elements/Advanced_Data_Table.php:782, ../includes/Elements/Advanced_Data_Table.php:964, ../includes/Elements/Advanced_Data_Table.php:1160, ../includes/Elements/Advanced_Data_Table.php:1230, ../includes/Elements/Adv_Accordion.php:534, ../includes/Elements/Adv_Accordion.php:607, ../includes/Elements/Adv_Accordion.php:680, ../includes/Elements/Adv_Accordion.php:763, ../includes/Elements/Adv_Tabs.php:487, ../includes/Elements/Adv_Tabs.php:553, ../includes/Elements/Adv_Tabs.php:620, ../includes/Elements/Adv_Tabs.php:702, ../includes/Elements/Caldera_Forms.php:270, ../includes/Elements/Caldera_Forms.php:331, ../includes/Elements/Caldera_Forms.php:523, ../includes/Elements/Caldera_Forms.php:604, ../includes/Elements/Caldera_Forms.php:850, ../includes/Elements/Caldera_Forms.php:906, ../includes/Elements/Caldera_Forms.php:1216, ../includes/Elements/Caldera_Forms.php:1322, ../includes/Elements/Caldera_Forms.php:1375, ../includes/Elements/Contact_Form_7.php:474, ../includes/Elements/Contact_Form_7.php:505, ../includes/Elements/Contact_Form_7.php:562, ../includes/Elements/Contact_Form_7.php:845, ../includes/Elements/Contact_Form_7.php:920, ../includes/Elements/Contact_Form_7.php:1245, ../includes/Elements/Contact_Form_7.php:1351, ../includes/Elements/Contact_Form_7.php:1415, ../includes/Elements/Contact_Form_7.php:1479, ../includes/Elements/Contact_Form_7.php:1540, ../includes/Elements/Contact_Form_7.php:1622, ../includes/Elements/Content_Ticker.php:400, ../includes/Elements/Content_Ticker.php:476, ../includes/Elements/Countdown.php:1109, ../includes/Elements/Creative_Button.php:275, ../includes/Elements/Creative_Button.php:367, ../includes/Elements/Cta_Box.php:698, ../includes/Elements/Cta_Box.php:769, ../includes/Elements/Cta_Box.php:904, ../includes/Elements/Cta_Box.php:956, ../includes/Elements/Data_Table.php:957, ../includes/Elements/Data_Table.php:974, ../includes/Elements/Event_Calendar.php:1214, ../includes/Elements/Event_Calendar.php:1247, ../includes/Elements/Filterable_Gallery.php:959, ../includes/Elements/Filterable_Gallery.php:1025, ../includes/Elements/Filterable_Gallery.php:2500, ../includes/Elements/Filterable_Gallery.php:2693, ../includes/Elements/FluentForm.php:277, ../includes/Elements/FluentForm.php:338, ../includes/Elements/FluentForm.php:542, ../includes/Elements/FluentForm.php:623, ../includes/Elements/FluentForm.php:872, ../includes/Elements/FluentForm.php:1536, ../includes/Elements/FluentForm.php:1642, ../includes/Elements/FluentForm.php:2059, ../includes/Elements/Formstack.php:481, ../includes/Elements/Formstack.php:530, ../includes/Elements/Formstack.php:585, ../includes/Elements/Formstack.php:797, ../includes/Elements/Formstack.php:852, ../includes/Elements/Formstack.php:1101, ../includes/Elements/Formstack.php:1452, ../includes/Elements/Formstack.php:1558, ../includes/Elements/Formstack.php:1781, ../includes/Elements/Formstack.php:2020, ../includes/Elements/GravityForms.php:515, ../includes/Elements/GravityForms.php:546, ../includes/Elements/GravityForms.php:585, ../includes/Elements/GravityForms.php:672, ../includes/Elements/GravityForms.php:936, ../includes/Elements/GravityForms.php:989, ../includes/Elements/GravityForms.php:1176, ../includes/Elements/GravityForms.php:1810, ../includes/Elements/GravityForms.php:1902, ../includes/Elements/GravityForms.php:2038, ../includes/Elements/GravityForms.php:2125, ../includes/Elements/GravityForms.php:2199, ../includes/Elements/GravityForms.php:2334, ../includes/Elements/Info_Box.php:1232, ../includes/Elements/Info_Box.php:1278, ../includes/Elements/Login_Register.php:2519, ../includes/Elements/Login_Register.php:2658, ../includes/Elements/Login_Register.php:3002, ../includes/Elements/Login_Register.php:3187, ../includes/Elements/Login_Register.php:3224, ../includes/Elements/Login_Register.php:3508, ../includes/Elements/Login_Register.php:3545, ../includes/Elements/NinjaForms.php:452, ../includes/Elements/NinjaForms.php:501, ../includes/Elements/NinjaForms.php:559, ../includes/Elements/NinjaForms.php:646, ../includes/Elements/NinjaForms.php:894, ../includes/Elements/NinjaForms.php:950, ../includes/Elements/NinjaForms.php:1384, ../includes/Elements/NinjaForms.php:1471, ../includes/Elements/NinjaForms.php:1533, ../includes/Elements/NinjaForms.php:1633, ../includes/Elements/Pricing_Table.php:1892, ../includes/Elements/Pricing_Table.php:1961, ../includes/Elements/Product_Grid.php:2144, ../includes/Elements/Product_Grid.php:2182, ../includes/Elements/Product_Grid.php:2226, ../includes/Elements/Tooltip.php:410, ../includes/Elements/Tooltip.php:453, ../includes/Elements/Tooltip.php:626, ../includes/Elements/WeForms.php:692, ../includes/Elements/WeForms.php:742, ../includes/Elements/WpForms.php:419, ../includes/Elements/WpForms.php:468, ../includes/Elements/WpForms.php:533, ../includes/Elements/WpForms.php:615, ../includes/Elements/WpForms.php:851, ../includes/Elements/WpForms.php:907, ../includes/Elements/WpForms.php:1220, ../includes/Elements/WpForms.php:1327, ../includes/Elements/WpForms.php:1372, ../includes/Extensions/Table_of_Content.php:579, ../includes/Extensions/Table_of_Content.php:894, ../includes/Extensions/Table_of_Content.php:917, ../includes/Extensions/Table_of_Content.php:943, ../includes/Traits/Controls.php:1184, ../includes/Traits/Controls.php:1239, ../includes/Traits/Controls.php:1369, ../includes/Traits/Controls.php:1431
655
  msgid "Text Color"
656
  msgstr ""
657
 
658
+ #: ../includes/Elements/Advanced_Data_Table.php:428, ../includes/Elements/Advanced_Data_Table.php:569, ../includes/Elements/Advanced_Data_Table.php:642, ../includes/Elements/Advanced_Data_Table.php:673, ../includes/Elements/Advanced_Data_Table.php:704, ../includes/Elements/Advanced_Data_Table.php:735, ../includes/Elements/Advanced_Data_Table.php:766, ../includes/Elements/Advanced_Data_Table.php:797, ../includes/Elements/Advanced_Data_Table.php:976, ../includes/Elements/Advanced_Data_Table.php:1173, ../includes/Elements/Advanced_Data_Table.php:1244, ../includes/Elements/Advanced_Data_Table.php:1339, ../includes/Elements/Advanced_Data_Table.php:1369, ../includes/Elements/Adv_Accordion.php:515, ../includes/Elements/Adv_Accordion.php:588, ../includes/Elements/Adv_Accordion.php:661, ../includes/Elements/Adv_Accordion.php:742, ../includes/Elements/Adv_Accordion.php:914, ../includes/Elements/Adv_Accordion.php:960, ../includes/Elements/Adv_Accordion.php:1007, ../includes/Elements/Adv_Tabs.php:468, ../includes/Elements/Adv_Tabs.php:683, ../includes/Elements/Caldera_Forms.php:592, ../includes/Elements/Caldera_Forms.php:800, ../includes/Elements/Caldera_Forms.php:1204, ../includes/Elements/Caldera_Forms.php:1310, ../includes/Elements/Caldera_Forms.php:1364, ../includes/Elements/Contact_Form_7.php:550, ../includes/Elements/Contact_Form_7.php:763, ../includes/Elements/Contact_Form_7.php:1233, ../includes/Elements/Contact_Form_7.php:1339, ../includes/Elements/Contact_Form_7.php:1464, ../includes/Elements/Contact_Form_7.php:1525, ../includes/Elements/Content_Ticker.php:388, ../includes/Elements/Content_Ticker.php:465, ../includes/Elements/Content_Ticker.php:640, ../includes/Elements/Content_Ticker.php:696, ../includes/Elements/Countdown.php:733, ../includes/Elements/Countdown.php:745, ../includes/Elements/Countdown.php:805, ../includes/Elements/Countdown.php:817, ../includes/Elements/Countdown.php:877, ../includes/Elements/Countdown.php:889, ../includes/Elements/Countdown.php:949, ../includes/Elements/Countdown.php:961, ../includes/Elements/Creative_Button.php:288, ../includes/Elements/Creative_Button.php:380, ../includes/Elements/Cta_Box.php:122, ../includes/Elements/Cta_Box.php:426, ../includes/Elements/Cta_Box.php:712, ../includes/Elements/Cta_Box.php:781, ../includes/Elements/Data_Table.php:607, ../includes/Elements/Data_Table.php:647, ../includes/Elements/Data_Table.php:1084, ../includes/Elements/Dual_Color_Header.php:309, ../includes/Elements/Event_Calendar.php:1226, ../includes/Elements/Filterable_Gallery.php:834, ../includes/Elements/Filterable_Gallery.php:971, ../includes/Elements/Filterable_Gallery.php:1037, ../includes/Elements/Filterable_Gallery.php:1183, ../includes/Elements/Filterable_Gallery.php:1373, ../includes/Elements/Filterable_Gallery.php:1403, ../includes/Elements/Filterable_Gallery.php:1508, ../includes/Elements/Filterable_Gallery.php:1524, ../includes/Elements/Filterable_Gallery.php:1726, ../includes/Elements/Filterable_Gallery.php:1864, ../includes/Elements/Filterable_Gallery.php:2484, ../includes/Elements/Filterable_Gallery.php:2677, ../includes/Elements/FluentForm.php:611, ../includes/Elements/FluentForm.php:819, ../includes/Elements/FluentForm.php:1253, ../includes/Elements/FluentForm.php:1339, ../includes/Elements/FluentForm.php:1524, ../includes/Elements/FluentForm.php:1630, ../includes/Elements/FluentForm.php:2048, ../includes/Elements/Formstack.php:840, ../includes/Elements/Formstack.php:1048, ../includes/Elements/Formstack.php:1440, ../includes/Elements/Formstack.php:1546, ../includes/Elements/GravityForms.php:660, ../includes/Elements/GravityForms.php:886, ../includes/Elements/GravityForms.php:1619, ../includes/Elements/GravityForms.php:1797, ../includes/Elements/GravityForms.php:1889, ../includes/Elements/GravityForms.php:2026, ../includes/Elements/GravityForms.php:2113, ../includes/Elements/Image_Accordion.php:317, ../includes/Elements/Info_Box.php:543, ../includes/Elements/Info_Box.php:784, ../includes/Elements/Info_Box.php:863, ../includes/Elements/Info_Box.php:1032, ../includes/Elements/Info_Box.php:1094, ../includes/Elements/Info_Box.php:1244, ../includes/Elements/Info_Box.php:1290, ../includes/Elements/Login_Register.php:1497, ../includes/Elements/Login_Register.php:1630, ../includes/Elements/Login_Register.php:1732, ../includes/Elements/Login_Register.php:1906, ../includes/Elements/Login_Register.php:2262, ../includes/Elements/Login_Register.php:2353, ../includes/Elements/Login_Register.php:2533, ../includes/Elements/Login_Register.php:2571, ../includes/Elements/Login_Register.php:2668, ../includes/Elements/Login_Register.php:3195, ../includes/Elements/Login_Register.php:3232, ../includes/Elements/Login_Register.php:3516, ../includes/Elements/Login_Register.php:3553, ../includes/Elements/NinjaForms.php:634, ../includes/Elements/NinjaForms.php:844, ../includes/Elements/NinjaForms.php:1372, ../includes/Elements/NinjaForms.php:1459, ../includes/Elements/Post_Grid.php:923, ../includes/Elements/Pricing_Table.php:741, ../includes/Elements/Pricing_Table.php:901, ../includes/Elements/Pricing_Table.php:1407, ../includes/Elements/Pricing_Table.php:1476, ../includes/Elements/Pricing_Table.php:1642, ../includes/Elements/Pricing_Table.php:1904, ../includes/Elements/Pricing_Table.php:1973, ../includes/Elements/Product_Grid.php:1756, ../includes/Elements/Product_Grid.php:1864, ../includes/Elements/Product_Grid.php:1970, ../includes/Elements/Product_Grid.php:2156, ../includes/Elements/Product_Grid.php:2194, ../includes/Elements/Product_Grid.php:2238, ../includes/Elements/Product_Grid.php:2484, ../includes/Elements/Product_Grid.php:2526, ../includes/Elements/Product_Grid.php:2587, ../includes/Elements/Product_Grid.php:2638, ../includes/Elements/Progress_Bar.php:578, ../includes/Elements/Team_Member.php:730, ../includes/Elements/Tooltip.php:399, ../includes/Elements/Tooltip.php:442, ../includes/Elements/Tooltip.php:615, ../includes/Elements/Twitter_Feed.php:390, ../includes/Elements/WeForms.php:703, ../includes/Elements/WeForms.php:753, ../includes/Elements/Woo_Checkout.php:617, ../includes/Elements/Woo_Checkout.php:732, ../includes/Elements/Woo_Checkout.php:854, ../includes/Elements/Woo_Checkout.php:1312, ../includes/Elements/Woo_Checkout.php:1352, ../includes/Elements/Woo_Checkout.php:1610, ../includes/Elements/Woo_Checkout.php:1650, ../includes/Elements/Woo_Checkout.php:2154, ../includes/Elements/Woo_Checkout.php:2284, ../includes/Elements/Woo_Checkout.php:2394, ../includes/Elements/Woo_Checkout.php:2434, ../includes/Elements/WpForms.php:603, ../includes/Elements/WpForms.php:1208, ../includes/Elements/WpForms.php:1315, ../includes/Extensions/Reading_Progress.php:156, ../includes/Extensions/Table_of_Content.php:566, ../includes/Extensions/Table_of_Content.php:712, ../includes/Extensions/Table_of_Content.php:776, ../includes/Traits/Controls.php:1381, ../includes/Traits/Controls.php:1443, ../includes/Traits/Woo_Product_Comparable.php:369, ../includes/Traits/Woo_Product_Comparable.php:475
659
  msgid "Background Color"
660
  msgstr ""
661
 
663
  msgid "Cell Border"
664
  msgstr ""
665
 
666
+ #: ../includes/Elements/Advanced_Data_Table.php:467, ../includes/Elements/Advanced_Data_Table.php:812, ../includes/Elements/Advanced_Data_Table.php:896, ../includes/Elements/Advanced_Data_Table.php:1114, ../includes/Elements/Advanced_Data_Table.php:1431, ../includes/Elements/Adv_Accordion.php:331, ../includes/Elements/Adv_Accordion.php:489, ../includes/Elements/Adv_Accordion.php:781, ../includes/Elements/Adv_Tabs.php:300, ../includes/Elements/Adv_Tabs.php:442, ../includes/Elements/Adv_Tabs.php:720, ../includes/Elements/Betterdocs_Category_Box.php:513, ../includes/Elements/Betterdocs_Category_Grid.php:558, ../includes/Elements/Betterdocs_Category_Grid.php:722, ../includes/Elements/Betterdocs_Category_Grid.php:1405, ../includes/Elements/Betterdocs_Search_Form.php:124, ../includes/Elements/Betterdocs_Search_Form.php:432, ../includes/Elements/Caldera_Forms.php:741, ../includes/Elements/Caldera_Forms.php:1251, ../includes/Elements/Contact_Form_7.php:598, ../includes/Elements/Contact_Form_7.php:1279, ../includes/Elements/Contact_Form_7.php:1695, ../includes/Elements/Content_Ticker.php:432, ../includes/Elements/Content_Ticker.php:495, ../includes/Elements/Content_Ticker.php:736, ../includes/Elements/Countdown.php:606, ../includes/Elements/Countdown.php:1136, ../includes/Elements/Cta_Box.php:438, ../includes/Elements/Cta_Box.php:651, ../includes/Elements/Cta_Box.php:868, ../includes/Elements/Data_Table.php:575, ../includes/Elements/Data_Table.php:860, ../includes/Elements/Dual_Color_Header.php:321, ../includes/Elements/Facebook_Feed.php:594, ../includes/Elements/Facebook_Feed.php:620, ../includes/Elements/Facebook_Feed.php:692, ../includes/Elements/Fancy_Text.php:483, ../includes/Elements/Feature_List.php:597, ../includes/Elements/Filterable_Gallery.php:846, ../includes/Elements/Filterable_Gallery.php:923, ../includes/Elements/Filterable_Gallery.php:1105, ../includes/Elements/Filterable_Gallery.php:1195, ../includes/Elements/Filterable_Gallery.php:1539, ../includes/Elements/Filterable_Gallery.php:1750, ../includes/Elements/Filterable_Gallery.php:2601, ../includes/Elements/Flip_Box.php:998, ../includes/Elements/Flip_Box.php:1111, ../includes/Elements/Flip_Box.php:1347, ../includes/Elements/FluentForm.php:760, ../includes/Elements/FluentForm.php:1128, ../includes/Elements/FluentForm.php:1183, ../includes/Elements/FluentForm.php:1306, ../includes/Elements/FluentForm.php:1391, ../includes/Elements/FluentForm.php:1571, ../includes/Elements/FluentForm.php:1973, ../includes/Elements/FluentForm.php:2139, ../includes/Elements/Formstack.php:680, ../includes/Elements/Formstack.php:735, ../includes/Elements/Formstack.php:989, ../includes/Elements/Formstack.php:1322, ../includes/Elements/Formstack.php:1487, ../includes/Elements/Formstack.php:1835, ../includes/Elements/Formstack.php:1964, ../includes/Elements/GravityForms.php:722, ../includes/Elements/GravityForms.php:1343, ../includes/Elements/GravityForms.php:1539, ../includes/Elements/GravityForms.php:1677, ../includes/Elements/GravityForms.php:1847, ../includes/Elements/GravityForms.php:2073, ../includes/Elements/Image_Accordion.php:329, ../includes/Elements/Image_Accordion.php:441, ../includes/Elements/Info_Box.php:555, ../includes/Elements/Login_Register.php:1460, ../includes/Elements/Login_Register.php:2025, ../includes/Elements/Login_Register.php:2164, ../includes/Elements/Login_Register.php:2237, ../includes/Elements/Login_Register.php:2328, ../includes/Elements/Login_Register.php:2430, ../includes/Elements/Login_Register.php:2466, ../includes/Elements/Login_Register.php:2628, ../includes/Elements/Login_Register.php:3100, ../includes/Elements/Login_Register.php:3399, ../includes/Elements/NinjaForms.php:784, ../includes/Elements/NinjaForms.php:1419, ../includes/Elements/Pricing_Table.php:753, ../includes/Elements/Pricing_Table.php:1518, ../includes/Elements/Pricing_Table.php:1823, ../includes/Elements/Product_Grid.php:769, ../includes/Elements/Product_Grid.php:1020, ../includes/Elements/Product_Grid.php:1418, ../includes/Elements/Team_Member.php:486, ../includes/Elements/Testimonial.php:420, ../includes/Elements/Tooltip.php:344, ../includes/Elements/Tooltip.php:593, ../includes/Elements/Twitter_Feed.php:420, ../includes/Elements/Twitter_Feed.php:479, ../includes/Elements/Twitter_Feed.php:512, ../includes/Elements/WeForms.php:676, ../includes/Elements/Woo_Checkout.php:628, ../includes/Elements/Woo_Checkout.php:1220, ../includes/Elements/Woo_Checkout.php:1413, ../includes/Elements/Woo_Checkout.php:1543, ../includes/Elements/Woo_Checkout.php:1711, ../includes/Elements/Woo_Checkout.php:1926, ../includes/Elements/Woo_Checkout.php:2176, ../includes/Elements/Woo_Checkout.php:2507, ../includes/Elements/WpForms.php:752, ../includes/Elements/WpForms.php:1255, ../includes/Extensions/Table_of_Content.php:601, ../includes/Extensions/Table_of_Content.php:789, ../includes/Traits/Controls.php:1288, ../includes/Traits/Controls.php:1333, ../includes/Traits/Woo_Product_Comparable.php:341, ../includes/Traits/Woo_Product_Comparable.php:986, ../includes/Traits/Woo_Product_Comparable.php:1135, ../includes/Traits/Woo_Product_Comparable.php:1603
667
  msgid "Padding"
668
  msgstr ""
669
 
683
  msgid "Highlight"
684
  msgstr ""
685
 
686
+ #: ../includes/Elements/Advanced_Data_Table.php:611, ../includes/Elements/Adv_Tabs.php:146, ../includes/Elements/Countdown.php:402, ../includes/Elements/Data_Table.php:136, ../includes/Elements/Filterable_Gallery.php:188, ../includes/Elements/Filterable_Gallery.php:228, ../includes/Elements/Flip_Box.php:199, ../includes/Elements/Flip_Box.php:428, ../includes/Elements/Flip_Box.php:647, ../includes/Elements/GravityForms.php:1016, ../includes/Elements/Info_Box.php:98, ../includes/Elements/Info_Box.php:804, ../includes/Elements/Info_Box.php:884, ../includes/Elements/Info_Box.php:1020, ../includes/Elements/Info_Box.php:1115, ../includes/Elements/Post_Grid.php:897, ../includes/Elements/Sticky_Video.php:552, ../includes/Extensions/Table_of_Content.php:814, ../includes/Extensions/Table_of_Content.php:1035
687
  msgid "None"
688
  msgstr ""
689
 
711
  msgid "Odd Row"
712
  msgstr ""
713
 
714
+ #: ../includes/Elements/Advanced_Data_Table.php:873, ../includes/Elements/Dual_Color_Header.php:704, ../includes/Elements/Dual_Color_Header.php:784, ../includes/Elements/Flip_Box.php:122, ../includes/Elements/FluentForm.php:1287, ../includes/Elements/FluentForm.php:1372, ../includes/Elements/FluentForm.php:1785, ../includes/Elements/Formstack.php:1661, ../includes/Elements/Image_Accordion.php:304, ../includes/Elements/Login_Register.php:1972, ../includes/Elements/Progress_Bar.php:384, ../includes/Elements/Progress_Bar.php:436, ../includes/Elements/Sticky_Video.php:459, ../includes/Elements/Team_Member.php:317, ../includes/Elements/Twitter_Feed.php:807, ../includes/Extensions/Reading_Progress.php:128
715
  msgid "Height"
716
  msgstr ""
717
 
719
  msgid "Margin Bottom"
720
  msgstr ""
721
 
722
+ #: ../includes/Elements/Advanced_Data_Table.php:931, ../includes/Elements/Advanced_Data_Table.php:1079, ../includes/Elements/Caldera_Forms.php:229, ../includes/Elements/Caldera_Forms.php:557, ../includes/Elements/Caldera_Forms.php:1132, ../includes/Elements/Contact_Form_7.php:439, ../includes/Elements/Contact_Form_7.php:1158, ../includes/Elements/Countdown.php:114, ../includes/Elements/Cta_Box.php:97, ../includes/Elements/Data_Table.php:515, ../includes/Elements/Dual_Color_Header.php:185, ../includes/Elements/Dual_Color_Header.php:579, ../includes/Elements/Event_Calendar.php:964, ../includes/Elements/Event_Calendar.php:1096, ../includes/Elements/Fancy_Text.php:168, ../includes/Elements/Filterable_Gallery.php:763, ../includes/Elements/FluentForm.php:235, ../includes/Elements/FluentForm.php:576, ../includes/Elements/FluentForm.php:1207, ../includes/Elements/FluentForm.php:1452, ../includes/Elements/Formstack.php:445, ../includes/Elements/Formstack.php:759, ../includes/Elements/Formstack.php:1368, ../includes/Elements/GravityForms.php:480, ../includes/Elements/GravityForms.php:625, ../includes/Elements/GravityForms.php:1717, ../includes/Elements/GravityForms.php:1967, ../includes/Elements/Login_Register.php:3154, ../includes/Elements/Login_Register.php:3474, ../includes/Elements/NinjaForms.php:417, ../includes/Elements/NinjaForms.php:599, ../includes/Elements/NinjaForms.php:1294, ../includes/Elements/Post_Grid.php:444, ../includes/Elements/Post_Grid.php:762, ../includes/Elements/Post_Grid.php:845, ../includes/Elements/Product_Grid.php:654, ../includes/Elements/Product_Grid.php:972, ../includes/Elements/Product_Grid.php:1643, ../includes/Elements/Product_Grid.php:2086, ../includes/Elements/Progress_Bar.php:317, ../includes/Elements/Progress_Bar.php:528, ../includes/Elements/Tooltip.php:172, ../includes/Elements/WpForms.php:384, ../includes/Elements/WpForms.php:568, ../includes/Elements/WpForms.php:1133
723
  msgid "Alignment"
724
  msgstr ""
725
 
726
+ #: ../includes/Elements/Advanced_Data_Table.php:1135, ../includes/Elements/Adv_Accordion.php:342, ../includes/Elements/Adv_Accordion.php:500, ../includes/Elements/Adv_Accordion.php:792, ../includes/Elements/Adv_Tabs.php:311, ../includes/Elements/Adv_Tabs.php:453, ../includes/Elements/Adv_Tabs.php:731, ../includes/Elements/Betterdocs_Category_Grid.php:570, ../includes/Elements/Betterdocs_Category_Grid.php:736, ../includes/Elements/Caldera_Forms.php:297, ../includes/Elements/Caldera_Forms.php:359, ../includes/Elements/Contact_Form_7.php:372, ../includes/Elements/Contact_Form_7.php:1584, ../includes/Elements/Contact_Form_7.php:1681, ../includes/Elements/Content_Ticker.php:507, ../includes/Elements/Countdown.php:1088, ../includes/Elements/Cta_Box.php:450, ../includes/Elements/Cta_Box.php:663, ../includes/Elements/Cta_Box.php:880, ../includes/Elements/Dual_Color_Header.php:333, ../includes/Elements/Dual_Color_Header.php:631, ../includes/Elements/Fancy_Text.php:495, ../includes/Elements/Filterable_Gallery.php:858, ../includes/Elements/Filterable_Gallery.php:935, ../includes/Elements/Filterable_Gallery.php:1117, ../includes/Elements/Filterable_Gallery.php:1762, ../includes/Elements/Filterable_Gallery.php:2203, ../includes/Elements/Filterable_Gallery.php:2642, ../includes/Elements/Flip_Box.php:1335, ../includes/Elements/FluentForm.php:304, ../includes/Elements/FluentForm.php:366, ../includes/Elements/FluentForm.php:1140, ../includes/Elements/FluentForm.php:1195, ../includes/Elements/FluentForm.php:2151, ../includes/Elements/Formstack.php:502, ../includes/Elements/Formstack.php:552, ../includes/Elements/Formstack.php:692, ../includes/Elements/Formstack.php:747, ../includes/Elements/Formstack.php:1979, ../includes/Elements/GravityForms.php:1072, ../includes/Elements/GravityForms.php:1331, ../includes/Elements/GravityForms.php:1527, ../includes/Elements/GravityForms.php:1691, ../includes/Elements/Image_Accordion.php:341, ../includes/Elements/Image_Accordion.php:430, ../includes/Elements/Info_Box.php:688, ../includes/Elements/Info_Box.php:750, ../includes/Elements/Info_Box.php:981, ../includes/Elements/Info_Box.php:1371, ../includes/Elements/Login_Register.php:1445, ../includes/Elements/Login_Register.php:2010, ../includes/Elements/Login_Register.php:2149, ../includes/Elements/Login_Register.php:2222, ../includes/Elements/Login_Register.php:2313, ../includes/Elements/Login_Register.php:2415, ../includes/Elements/Login_Register.php:2451, ../includes/Elements/Login_Register.php:2613, ../includes/Elements/Login_Register.php:3085, ../includes/Elements/Login_Register.php:3320, ../includes/Elements/Login_Register.php:3384, ../includes/Elements/NinjaForms.php:473, ../includes/Elements/NinjaForms.php:523, ../includes/Elements/Post_Grid.php:380, ../includes/Elements/Post_Grid.php:495, ../includes/Elements/Post_Grid.php:510, ../includes/Elements/Post_Grid.php:634, ../includes/Elements/Post_Grid.php:722, ../includes/Elements/Post_Grid.php:798, ../includes/Elements/Pricing_Table.php:765, ../includes/Elements/Pricing_Table.php:1091, ../includes/Elements/Pricing_Table.php:1161, ../includes/Elements/Pricing_Table.php:1835, ../includes/Elements/Team_Member.php:474, ../includes/Elements/Testimonial.php:408, ../includes/Elements/Testimonial.php:506, ../includes/Elements/Testimonial.php:547, ../includes/Elements/Testimonial.php:588, ../includes/Elements/Testimonial.php:621, ../includes/Elements/Tooltip.php:355, ../includes/Elements/Tooltip.php:604, ../includes/Elements/WeForms.php:490, ../includes/Elements/WeForms.php:664, ../includes/Elements/WpForms.php:440, ../includes/Elements/WpForms.php:490, ../includes/Elements/WpForms.php:522, ../includes/Traits/Controls.php:1300, ../includes/Traits/Controls.php:1345, ../includes/Traits/Woo_Product_Comparable.php:329, ../includes/Traits/Woo_Product_Comparable.php:1451
727
  msgid "Margin"
728
  msgstr ""
729
 
730
+ #: ../includes/Elements/Advanced_Data_Table.php:1155, ../includes/Elements/Advanced_Data_Table.php:1321, ../includes/Elements/Adv_Accordion.php:511, ../includes/Elements/Adv_Accordion.php:894, ../includes/Elements/Adv_Tabs.php:464, ../includes/Elements/Betterdocs_Category_Box.php:285, ../includes/Elements/Betterdocs_Category_Box.php:453, ../includes/Elements/Betterdocs_Category_Box.php:678, ../includes/Elements/Betterdocs_Category_Box.php:847, ../includes/Elements/Betterdocs_Category_Grid.php:315, ../includes/Elements/Betterdocs_Category_Grid.php:455, ../includes/Elements/Betterdocs_Category_Grid.php:610, ../includes/Elements/Betterdocs_Category_Grid.php:799, ../includes/Elements/Betterdocs_Category_Grid.php:1347, ../includes/Elements/Betterdocs_Search_Form.php:390, ../includes/Elements/Caldera_Forms.php:585, ../includes/Elements/Caldera_Forms.php:973, ../includes/Elements/Caldera_Forms.php:1197, ../includes/Elements/Contact_Form_7.php:543, ../includes/Elements/Contact_Form_7.php:1000, ../includes/Elements/Contact_Form_7.php:1226, ../includes/Elements/Content_Ticker.php:633, ../includes/Elements/Creative_Button.php:258, ../includes/Elements/Cta_Box.php:693, ../includes/Elements/Cta_Box.php:899, ../includes/Elements/Data_Table.php:587, ../includes/Elements/Data_Table.php:780, ../includes/Elements/Data_Table.php:952, ../includes/Elements/Event_Calendar.php:741, ../includes/Elements/Filterable_Gallery.php:954, ../includes/Elements/Filterable_Gallery.php:1719, ../includes/Elements/Filterable_Gallery.php:2473, ../includes/Elements/Flip_Box.php:1329, ../includes/Elements/FluentForm.php:604, ../includes/Elements/FluentForm.php:939, ../includes/Elements/FluentForm.php:1517, ../includes/Elements/FluentForm.php:1689, ../includes/Elements/FluentForm.php:1906, ../includes/Elements/Formstack.php:833, ../includes/Elements/Formstack.php:1165, ../includes/Elements/Formstack.php:1433, ../includes/Elements/Formstack.php:1603, ../includes/Elements/Formstack.php:1766, ../includes/Elements/GravityForms.php:653, ../includes/Elements/GravityForms.php:1243, ../includes/Elements/GravityForms.php:1439, ../includes/Elements/GravityForms.php:1790, ../includes/Elements/GravityForms.php:2019, ../includes/Elements/Info_Box.php:536, ../includes/Elements/Info_Box.php:764, ../includes/Elements/Info_Box.php:995, ../includes/Elements/Info_Box.php:1226, ../includes/Elements/Info_Box.php:1337, ../includes/Elements/Login_Register.php:2516, ../includes/Elements/Login_Register.php:3184, ../includes/Elements/Login_Register.php:3347, ../includes/Elements/Login_Register.php:3505, ../includes/Elements/NinjaForms.php:627, ../includes/Elements/NinjaForms.php:1020, ../includes/Elements/NinjaForms.php:1365, ../includes/Elements/Pricing_Table.php:1887, ../includes/Elements/Product_Grid.php:824, ../includes/Elements/Product_Grid.php:1455, ../includes/Elements/Product_Grid.php:1846, ../includes/Elements/Product_Grid.php:2139, ../includes/Elements/Product_Grid.php:2570, ../includes/Elements/Team_Member.php:713, ../includes/Elements/Tooltip.php:395, ../includes/Elements/WeForms.php:687, ../includes/Elements/Woo_Checkout.php:900, ../includes/Elements/Woo_Checkout.php:943, ../includes/Elements/Woo_Checkout.php:1086, ../includes/Elements/Woo_Checkout.php:1305, ../includes/Elements/Woo_Checkout.php:1603, ../includes/Elements/Woo_Checkout.php:2063, ../includes/Elements/Woo_Checkout.php:2233, ../includes/Elements/Woo_Checkout.php:2387, ../includes/Elements/WpForms.php:596, ../includes/Elements/WpForms.php:974, ../includes/Elements/WpForms.php:1201, ../includes/Extensions/Table_of_Content.php:887, ../includes/Traits/Controls.php:1177, ../includes/Traits/Controls.php:1364, ../includes/Traits/Woo_Product_Comparable.php:827, ../includes/Traits/Woo_Product_Comparable.php:1213, ../includes/Traits/Woo_Product_Comparable.php:1631
731
  msgid "Normal"
732
  msgstr ""
733
 
734
+ #: ../includes/Elements/Advanced_Data_Table.php:1225, ../includes/Elements/Advanced_Data_Table.php:1351, ../includes/Elements/Adv_Accordion.php:582, ../includes/Elements/Adv_Accordion.php:940, ../includes/Elements/Adv_Tabs.php:530, ../includes/Elements/Betterdocs_Category_Box.php:331, ../includes/Elements/Betterdocs_Category_Box.php:549, ../includes/Elements/Betterdocs_Category_Box.php:711, ../includes/Elements/Betterdocs_Category_Box.php:960, ../includes/Elements/Betterdocs_Category_Grid.php:363, ../includes/Elements/Betterdocs_Category_Grid.php:496, ../includes/Elements/Betterdocs_Category_Grid.php:664, ../includes/Elements/Betterdocs_Category_Grid.php:871, ../includes/Elements/Betterdocs_Category_Grid.php:1431, ../includes/Elements/Betterdocs_Search_Form.php:474, ../includes/Elements/Caldera_Forms.php:1303, ../includes/Elements/Contact_Form_7.php:1332, ../includes/Elements/Content_Ticker.php:689, ../includes/Elements/Creative_Button.php:350, ../includes/Elements/Cta_Box.php:764, ../includes/Elements/Cta_Box.php:951, ../includes/Elements/Data_Table.php:627, ../includes/Elements/Data_Table.php:871, ../includes/Elements/Data_Table.php:969, ../includes/Elements/Event_Calendar.php:808, ../includes/Elements/Filterable_Gallery.php:1857, ../includes/Elements/Filterable_Gallery.php:2666, ../includes/Elements/Flip_Box.php:1411, ../includes/Elements/FluentForm.php:1623, ../includes/Elements/FluentForm.php:1987, ../includes/Elements/Formstack.php:1539, ../includes/Elements/Formstack.php:1849, ../includes/Elements/GravityForms.php:1882, ../includes/Elements/GravityForms.php:2106, ../includes/Elements/Info_Box.php:597, ../includes/Elements/Info_Box.php:835, ../includes/Elements/Info_Box.php:1066, ../includes/Elements/Info_Box.php:1272, ../includes/Elements/Info_Box.php:1447, ../includes/Elements/Login_Register.php:3221, ../includes/Elements/Login_Register.php:3542, ../includes/Elements/NinjaForms.php:1452, ../includes/Elements/Pricing_Table.php:407, ../includes/Elements/Pricing_Table.php:1956, ../includes/Elements/Product_Grid.php:874, ../includes/Elements/Product_Grid.php:1524, ../includes/Elements/Product_Grid.php:1953, ../includes/Elements/Product_Grid.php:2177, ../includes/Elements/Product_Grid.php:2621, ../includes/Elements/Team_Member.php:790, ../includes/Elements/Tooltip.php:438, ../includes/Elements/WeForms.php:737, ../includes/Elements/Woo_Checkout.php:916, ../includes/Elements/Woo_Checkout.php:960, ../includes/Elements/Woo_Checkout.php:1102, ../includes/Elements/Woo_Checkout.php:1345, ../includes/Elements/Woo_Checkout.php:1643, ../includes/Elements/Woo_Checkout.php:2079, ../includes/Elements/Woo_Checkout.php:2427, ../includes/Elements/WpForms.php:1308, ../includes/Extensions/Table_of_Content.php:910, ../includes/Traits/Controls.php:1232, ../includes/Traits/Controls.php:1426, ../includes/Traits/Woo_Product_Comparable.php:927, ../includes/Traits/Woo_Product_Comparable.php:1294, ../includes/Traits/Woo_Product_Comparable.php:1681
735
  msgid "Hover"
736
  msgstr ""
737
 
738
+ #: ../includes/Elements/Advanced_Data_Table.php:1326, ../includes/Elements/Advanced_Data_Table.php:1356, ../includes/Elements/Betterdocs_Category_Box.php:684, ../includes/Elements/Betterdocs_Category_Box.php:717, ../includes/Elements/Betterdocs_Category_Box.php:861, ../includes/Elements/Betterdocs_Category_Box.php:966, ../includes/Elements/Betterdocs_Category_Grid.php:616, ../includes/Elements/Betterdocs_Category_Grid.php:670, ../includes/Elements/Betterdocs_Category_Grid.php:805, ../includes/Elements/Betterdocs_Category_Grid.php:902, ../includes/Elements/Betterdocs_Category_Grid.php:1005, ../includes/Elements/Betterdocs_Category_Grid.php:1085, ../includes/Elements/Betterdocs_Category_Grid.php:1161, ../includes/Elements/Betterdocs_Category_Grid.php:1238, ../includes/Elements/Betterdocs_Category_Grid.php:1361, ../includes/Elements/Betterdocs_Category_Grid.php:1460, ../includes/Elements/Betterdocs_Search_Form.php:238, ../includes/Elements/Betterdocs_Search_Form.php:275, ../includes/Elements/Caldera_Forms.php:983, ../includes/Elements/Caldera_Forms.php:1099, ../includes/Elements/Caldera_Forms.php:1431, ../includes/Elements/Contact_Form_7.php:1010, ../includes/Elements/Contact_Form_7.php:1126, ../includes/Elements/Content_Ticker.php:652, ../includes/Elements/Content_Ticker.php:708, ../includes/Elements/Cta_Box.php:518, ../includes/Elements/Cta_Box.php:559, ../includes/Elements/Cta_Box.php:601, ../includes/Elements/Cta_Box.php:1042, ../includes/Elements/Data_Table.php:592, ../includes/Elements/Data_Table.php:632, ../includes/Elements/Data_Table.php:1069, ../includes/Elements/Dual_Color_Header.php:469, ../includes/Elements/Dual_Color_Header.php:542, ../includes/Elements/Dual_Color_Header.php:642, ../includes/Elements/Event_Calendar.php:708, ../includes/Elements/Event_Calendar.php:748, ../includes/Elements/Event_Calendar.php:815, ../includes/Elements/Event_Calendar.php:869, ../includes/Elements/Event_Calendar.php:952, ../includes/Elements/Event_Calendar.php:1027, ../includes/Elements/Event_Calendar.php:1061, ../includes/Elements/Event_Calendar.php:1170, ../includes/Elements/Event_Calendar.php:1536, ../includes/Elements/Facebook_Feed.php:758, ../includes/Elements/Facebook_Feed.php:796, ../includes/Elements/Facebook_Feed.php:836, ../includes/Elements/Facebook_Feed.php:884, ../includes/Elements/Facebook_Feed.php:922, ../includes/Elements/Facebook_Feed.php:960, ../includes/Elements/Facebook_Feed.php:1013, ../includes/Elements/Facebook_Feed.php:1051, ../includes/Elements/Facebook_Feed.php:1089, ../includes/Elements/Facebook_Feed.php:1121, ../includes/Elements/Fancy_Text.php:344, ../includes/Elements/Feature_List.php:542, ../includes/Elements/Feature_List.php:763, ../includes/Elements/Feature_List.php:797, ../includes/Elements/Filterable_Gallery.php:1216, ../includes/Elements/Filterable_Gallery.php:1256, ../includes/Elements/Filterable_Gallery.php:1578, ../includes/Elements/Filterable_Gallery.php:1593, ../includes/Elements/Filterable_Gallery.php:1638, ../includes/Elements/Filterable_Gallery.php:1653, ../includes/Elements/Filterable_Gallery.php:1738, ../includes/Elements/Filterable_Gallery.php:1876, ../includes/Elements/Filterable_Gallery.php:1952, ../includes/Elements/Filterable_Gallery.php:1986, ../includes/Elements/Filterable_Gallery.php:2031, ../includes/Elements/Filterable_Gallery.php:2168, ../includes/Elements/Filterable_Gallery.php:2355, ../includes/Elements/Flip_Box.php:944, ../includes/Elements/Flip_Box.php:1057, ../includes/Elements/Flip_Box.php:1184, ../includes/Elements/Flip_Box.php:1215, ../includes/Elements/Flip_Box.php:1253, ../includes/Elements/Flip_Box.php:1285, ../includes/Elements/Flip_Box.php:1359, ../includes/Elements/Flip_Box.php:1417, ../includes/Elements/FluentForm.php:413, ../includes/Elements/FluentForm.php:949, ../includes/Elements/FluentForm.php:1065, ../includes/Elements/FluentForm.php:1106, ../includes/Elements/FluentForm.php:1161, ../includes/Elements/FluentForm.php:1265, ../includes/Elements/FluentForm.php:1327, ../includes/Elements/FluentForm.php:1921, ../includes/Elements/FluentForm.php:1994, ../includes/Elements/FluentForm.php:2115, ../includes/Elements/Formstack.php:658, ../includes/Elements/Formstack.php:713, ../includes/Elements/Formstack.php:1175, ../includes/Elements/Formstack.php:1255, ../includes/Elements/Formstack.php:1309, ../includes/Elements/Formstack.php:1856, ../includes/Elements/Formstack.php:1937, ../includes/Elements/GravityForms.php:1147, ../includes/Elements/GravityForms.php:1253, ../includes/Elements/GravityForms.php:1367, ../includes/Elements/GravityForms.php:1449, ../includes/Elements/GravityForms.php:1563, ../includes/Elements/GravityForms.php:1607, ../includes/Elements/Image_Accordion.php:496, ../includes/Elements/Image_Accordion.php:525, ../includes/Elements/Info_Box.php:1351, ../includes/Elements/Info_Box.php:1427, ../includes/Elements/Login_Register.php:2252, ../includes/Elements/Login_Register.php:2343, ../includes/Elements/Login_Register.php:2757, ../includes/Elements/NinjaForms.php:1030, ../includes/Elements/NinjaForms.php:1148, ../includes/Elements/NinjaForms.php:1567, ../includes/Elements/Post_Grid.php:359, ../includes/Elements/Post_Grid.php:432, ../includes/Elements/Post_Grid.php:824, ../includes/Elements/Pricing_Table.php:888, ../includes/Elements/Pricing_Table.php:952, ../includes/Elements/Pricing_Table.php:1043, ../includes/Elements/Pricing_Table.php:1072, ../includes/Elements/Pricing_Table.php:1113, ../includes/Elements/Pricing_Table.php:1142, ../includes/Elements/Pricing_Table.php:1182, ../includes/Elements/Pricing_Table.php:1217, ../includes/Elements/Pricing_Table.php:1374, ../includes/Elements/Pricing_Table.php:1506, ../includes/Elements/Product_Grid.php:1283, ../includes/Elements/Product_Grid.php:1851, ../includes/Elements/Product_Grid.php:1958, ../includes/Elements/Product_Grid.php:2295, ../includes/Elements/Product_Grid.php:2474, ../includes/Elements/Product_Grid.php:2514, ../includes/Elements/Product_Grid.php:2575, ../includes/Elements/Product_Grid.php:2626, ../includes/Elements/Product_Grid.php:2779, ../includes/Elements/Progress_Bar.php:407, ../includes/Elements/Progress_Bar.php:467, ../includes/Elements/Twitter_Feed.php:671, ../includes/Elements/Twitter_Feed.php:700, ../includes/Elements/Twitter_Feed.php:730, ../includes/Elements/Twitter_Feed.php:900, ../includes/Elements/Woo_Checkout.php:572, ../includes/Elements/Woo_Checkout.php:746, ../includes/Elements/Woo_Checkout.php:760, ../includes/Elements/Woo_Checkout.php:868, ../includes/Elements/Woo_Checkout.php:882, ../includes/Elements/Woo_Checkout.php:1055, ../includes/Elements/Woo_Checkout.php:1091, ../includes/Elements/Woo_Checkout.php:1107, ../includes/Elements/Woo_Checkout.php:1175, ../includes/Elements/Woo_Checkout.php:1274, ../includes/Elements/Woo_Checkout.php:1324, ../includes/Elements/Woo_Checkout.php:1364, ../includes/Elements/Woo_Checkout.php:1461, ../includes/Elements/Woo_Checkout.php:1622, ../includes/Elements/Woo_Checkout.php:1662, ../includes/Elements/Woo_Checkout.php:1780, ../includes/Elements/Woo_Checkout.php:1824, ../includes/Elements/Woo_Checkout.php:1868, ../includes/Elements/Woo_Checkout.php:1974, ../includes/Elements/Woo_Checkout.php:2013, ../includes/Elements/Woo_Checkout.php:2053, ../includes/Elements/Woo_Checkout.php:2240, ../includes/Elements/Woo_Checkout.php:2261, ../includes/Elements/Woo_Checkout.php:2296, ../includes/Elements/Woo_Checkout.php:2317, ../includes/Elements/Woo_Checkout.php:2406, ../includes/Elements/Woo_Checkout.php:2446, ../includes/Elements/WpForms.php:984, ../includes/Elements/WpForms.php:1100, ../includes/Extensions/Table_of_Content.php:1046, ../includes/Traits/Woo_Product_Comparable.php:49, ../includes/Traits/Woo_Product_Comparable.php:109, ../includes/Traits/Woo_Product_Comparable.php:1361, ../includes/Traits/Woo_Product_Comparable.php:1473
739
  msgid "Color"
740
  msgstr ""
741
 
763
  msgid "Select Accordion Tab Title Tag"
764
  msgstr ""
765
 
766
+ #: ../includes/Elements/Adv_Accordion.php:111, ../includes/Elements/Betterdocs_Category_Box.php:185, ../includes/Elements/Betterdocs_Category_Grid.php:222, ../includes/Elements/Cta_Box.php:198, ../includes/Elements/Dual_Color_Header.php:137, ../includes/Elements/Filterable_Gallery.php:367, ../includes/Elements/Flip_Box.php:297, ../includes/Elements/Flip_Box.php:526, ../includes/Elements/Image_Accordion.php:156, ../includes/Elements/Info_Box.php:233, ../includes/Elements/Progress_Bar.php:138, ../includes/Elements/Tooltip.php:114, ../includes/Extensions/Table_of_Content.php:147, ../includes/Traits/Controls.php:776
767
  msgid "H1"
768
  msgstr ""
769
 
770
+ #: ../includes/Elements/Adv_Accordion.php:112, ../includes/Elements/Betterdocs_Category_Box.php:186, ../includes/Elements/Betterdocs_Category_Grid.php:223, ../includes/Elements/Cta_Box.php:199, ../includes/Elements/Dual_Color_Header.php:138, ../includes/Elements/Filterable_Gallery.php:368, ../includes/Elements/Flip_Box.php:298, ../includes/Elements/Flip_Box.php:527, ../includes/Elements/Image_Accordion.php:157, ../includes/Elements/Info_Box.php:234, ../includes/Elements/Progress_Bar.php:139, ../includes/Elements/Tooltip.php:115, ../includes/Extensions/Table_of_Content.php:148, ../includes/Traits/Controls.php:777
771
  msgid "H2"
772
  msgstr ""
773
 
774
+ #: ../includes/Elements/Adv_Accordion.php:113, ../includes/Elements/Betterdocs_Category_Box.php:187, ../includes/Elements/Betterdocs_Category_Grid.php:224, ../includes/Elements/Cta_Box.php:200, ../includes/Elements/Dual_Color_Header.php:139, ../includes/Elements/Filterable_Gallery.php:369, ../includes/Elements/Flip_Box.php:299, ../includes/Elements/Flip_Box.php:528, ../includes/Elements/Image_Accordion.php:158, ../includes/Elements/Info_Box.php:235, ../includes/Elements/Progress_Bar.php:140, ../includes/Elements/Tooltip.php:116, ../includes/Extensions/Table_of_Content.php:149, ../includes/Traits/Controls.php:778
775
  msgid "H3"
776
  msgstr ""
777
 
778
+ #: ../includes/Elements/Adv_Accordion.php:114, ../includes/Elements/Betterdocs_Category_Box.php:188, ../includes/Elements/Betterdocs_Category_Grid.php:225, ../includes/Elements/Cta_Box.php:201, ../includes/Elements/Dual_Color_Header.php:140, ../includes/Elements/Filterable_Gallery.php:370, ../includes/Elements/Flip_Box.php:300, ../includes/Elements/Flip_Box.php:529, ../includes/Elements/Image_Accordion.php:159, ../includes/Elements/Info_Box.php:236, ../includes/Elements/Progress_Bar.php:141, ../includes/Elements/Tooltip.php:117, ../includes/Extensions/Table_of_Content.php:150, ../includes/Traits/Controls.php:779
779
  msgid "H4"
780
  msgstr ""
781
 
782
+ #: ../includes/Elements/Adv_Accordion.php:115, ../includes/Elements/Betterdocs_Category_Box.php:189, ../includes/Elements/Betterdocs_Category_Grid.php:226, ../includes/Elements/Cta_Box.php:202, ../includes/Elements/Dual_Color_Header.php:141, ../includes/Elements/Filterable_Gallery.php:371, ../includes/Elements/Flip_Box.php:301, ../includes/Elements/Flip_Box.php:530, ../includes/Elements/Image_Accordion.php:160, ../includes/Elements/Info_Box.php:237, ../includes/Elements/Progress_Bar.php:142, ../includes/Elements/Tooltip.php:118, ../includes/Extensions/Table_of_Content.php:151, ../includes/Traits/Controls.php:780
783
  msgid "H5"
784
  msgstr ""
785
 
786
+ #: ../includes/Elements/Adv_Accordion.php:116, ../includes/Elements/Betterdocs_Category_Box.php:190, ../includes/Elements/Betterdocs_Category_Grid.php:227, ../includes/Elements/Cta_Box.php:203, ../includes/Elements/Dual_Color_Header.php:142, ../includes/Elements/Filterable_Gallery.php:372, ../includes/Elements/Flip_Box.php:302, ../includes/Elements/Flip_Box.php:531, ../includes/Elements/Image_Accordion.php:161, ../includes/Elements/Info_Box.php:238, ../includes/Elements/Progress_Bar.php:143, ../includes/Elements/Tooltip.php:119, ../includes/Extensions/Table_of_Content.php:152, ../includes/Traits/Controls.php:781
787
  msgid "H6"
788
  msgstr ""
789
 
790
+ #: ../includes/Elements/Adv_Accordion.php:117, ../includes/Elements/Betterdocs_Category_Box.php:191, ../includes/Elements/Betterdocs_Category_Grid.php:228, ../includes/Elements/Cta_Box.php:204, ../includes/Elements/Dual_Color_Header.php:143, ../includes/Elements/Filterable_Gallery.php:373, ../includes/Elements/Flip_Box.php:303, ../includes/Elements/Flip_Box.php:532, ../includes/Elements/Image_Accordion.php:162, ../includes/Elements/Info_Box.php:239, ../includes/Traits/Controls.php:782
791
  msgid "Span"
792
  msgstr ""
793
 
794
+ #: ../includes/Elements/Adv_Accordion.php:118, ../includes/Elements/Betterdocs_Category_Box.php:192, ../includes/Elements/Betterdocs_Category_Grid.php:229, ../includes/Elements/Cta_Box.php:205, ../includes/Elements/Dual_Color_Header.php:144, ../includes/Elements/Filterable_Gallery.php:374, ../includes/Elements/Flip_Box.php:304, ../includes/Elements/Flip_Box.php:533, ../includes/Elements/Image_Accordion.php:163, ../includes/Elements/Info_Box.php:240, ../includes/Elements/Tooltip.php:122, ../includes/Traits/Controls.php:783
795
  msgid "P"
796
  msgstr ""
797
 
798
+ #: ../includes/Elements/Adv_Accordion.php:119, ../includes/Elements/Betterdocs_Category_Box.php:193, ../includes/Elements/Betterdocs_Category_Grid.php:230, ../includes/Elements/Cta_Box.php:206, ../includes/Elements/Dual_Color_Header.php:145, ../includes/Elements/Filterable_Gallery.php:375, ../includes/Elements/Flip_Box.php:305, ../includes/Elements/Flip_Box.php:534, ../includes/Elements/Image_Accordion.php:164, ../includes/Elements/Info_Box.php:241, ../includes/Traits/Controls.php:784
799
  msgid "Div"
800
  msgstr ""
801
 
815
  msgid "Toggle Speed (ms)"
816
  msgstr ""
817
 
818
+ #: ../includes/Elements/Adv_Accordion.php:179, ../includes/Elements/Countdown.php:142, ../includes/Elements/Cta_Box.php:72, ../includes/Elements/Dual_Color_Header.php:68, ../includes/Elements/Facebook_Feed.php:198, ../includes/Elements/Feature_List.php:64, ../includes/Elements/Tooltip.php:63
819
  msgid "Content Settings"
820
  msgstr ""
821
 
827
  msgid "Enable Tab Icon"
828
  msgstr ""
829
 
830
+ #: ../includes/Elements/Adv_Accordion.php:208, ../includes/Elements/Adv_Tabs.php:150, ../includes/Elements/Adv_Tabs.php:165, ../includes/Elements/Betterdocs_Category_Box.php:408, ../includes/Elements/Betterdocs_Category_Box.php:442, ../includes/Elements/Betterdocs_Category_Grid.php:441, ../includes/Elements/Betterdocs_Category_Grid.php:1064, ../includes/Elements/Betterdocs_Category_Grid.php:1073, ../includes/Elements/Betterdocs_Category_Grid.php:1205, ../includes/Elements/Betterdocs_Category_Grid.php:1312, ../includes/Elements/Creative_Button.php:129, ../includes/Elements/Cta_Box.php:151, ../includes/Elements/Data_Table.php:140, ../includes/Elements/Data_Table.php:159, ../includes/Elements/Dual_Color_Header.php:117, ../includes/Elements/Dual_Color_Header.php:272, ../includes/Elements/Feature_List.php:77, ../includes/Elements/Feature_List.php:93, ../includes/Elements/Feature_List.php:503, ../includes/Elements/Flip_Box.php:201, ../includes/Elements/Flip_Box.php:227, ../includes/Elements/Flip_Box.php:430, ../includes/Elements/Flip_Box.php:456, ../includes/Elements/Info_Box.php:106, ../includes/Elements/Info_Box.php:175, ../includes/Elements/Info_Box.php:440, ../includes/Elements/Pricing_Table.php:171, ../includes/Elements/Team_Member.php:165, ../includes/Elements/Tooltip.php:74, ../includes/Elements/Tooltip.php:144, ../includes/Elements/Twitter_Feed.php:866, ../includes/Extensions/Table_of_Content.php:622, ../includes/Traits/Controls.php:688, ../includes/Traits/Controls.php:741
831
  msgid "Icon"
832
  msgstr ""
833
 
835
  msgid "Tab Title"
836
  msgstr ""
837
 
838
+ #: ../includes/Elements/Adv_Accordion.php:235, ../includes/Elements/Adv_Tabs.php:206, ../includes/Elements/Cta_Box.php:214, ../includes/Elements/Data_Table.php:282, ../includes/Elements/Info_Box.php:248, ../includes/Elements/Tooltip.php:69
839
  msgid "Content Type"
840
  msgstr ""
841
 
842
+ #: ../includes/Elements/Adv_Accordion.php:238, ../includes/Elements/Adv_Tabs.php:122, ../includes/Elements/Adv_Tabs.php:209, ../includes/Elements/Adv_Tabs.php:676, ../includes/Elements/Cta_Box.php:217, ../includes/Elements/Cta_Box.php:238, ../includes/Elements/Data_Table.php:244, ../includes/Elements/Data_Table.php:339, ../includes/Elements/Data_Table.php:353, ../includes/Elements/Event_Calendar.php:258, ../includes/Elements/Event_Calendar.php:1446, ../includes/Elements/Facebook_Feed.php:937, ../includes/Elements/Feature_List.php:192, ../includes/Elements/Feature_List.php:695, ../includes/Elements/Flip_Box.php:156, ../includes/Elements/Image_Accordion.php:97, ../includes/Elements/Image_Accordion.php:208, ../includes/Elements/Image_Accordion.php:516, ../includes/Elements/Info_Box.php:251, ../includes/Elements/Product_Grid.php:2391, ../includes/Elements/Tooltip.php:96, ../includes/Elements/Tooltip.php:268
843
  msgid "Content"
844
  msgstr ""
845
 
855
  msgid "Tab Content"
856
  msgstr ""
857
 
858
+ #: ../includes/Elements/Adv_Accordion.php:264, ../includes/Elements/Adv_Tabs.php:233, ../includes/Elements/Feature_List.php:194
859
  msgid "Lorem ipsum dolor sit amet, consectetur adipisicing elit. Optio, neque qui velit. Magni dolorum quidem ipsam eligendi, totam, facilis laudantium cum accusamus ullam voluptatibus commodi numquam, error, est. Ea, consequatur."
860
  msgstr ""
861
 
871
  msgid "Accordion Tab Title 3"
872
  msgstr ""
873
 
874
+ #: ../includes/Elements/Adv_Accordion.php:324, ../includes/Elements/Data_Table.php:481, ../includes/Elements/Filterable_Gallery.php:826
875
  msgid "General Style"
876
  msgstr ""
877
 
879
  msgid "Tab Style"
880
  msgstr ""
881
 
882
+ #: ../includes/Elements/Adv_Accordion.php:400, ../includes/Elements/Adv_Accordion.php:832, ../includes/Elements/Adv_Tabs.php:396, ../includes/Elements/Creative_Button.php:496, ../includes/Elements/Data_Table.php:679, ../includes/Elements/Dual_Color_Header.php:396, ../includes/Elements/Event_Calendar.php:1417, ../includes/Elements/Event_Calendar.php:1484, ../includes/Elements/Feature_List.php:575, ../includes/Elements/Filterable_Gallery.php:1774, ../includes/Elements/Filterable_Gallery.php:2128, ../includes/Elements/Filterable_Gallery.php:2561, ../includes/Elements/Flip_Box.php:959, ../includes/Elements/Flip_Box.php:1072, ../includes/Elements/Info_Box.php:935, ../includes/Elements/Info_Box.php:1174, ../includes/Elements/Login_Register.php:2821, ../includes/Elements/Pricing_Table.php:1241, ../includes/Elements/Pricing_Table.php:1676, ../includes/Elements/Pricing_Table.php:1847, ../includes/Elements/Product_Grid.php:1233, ../includes/Elements/Product_Grid.php:2727, ../includes/Elements/Team_Member.php:642, ../includes/Elements/Tooltip.php:201, ../includes/Extensions/Table_of_Content.php:658, ../includes/Traits/Woo_Product_Comparable.php:1334
883
  msgid "Icon Size"
884
  msgstr ""
885
 
891
  msgid "Distance"
892
  msgstr ""
893
 
894
+ #: ../includes/Elements/Adv_Accordion.php:546, ../includes/Elements/Adv_Accordion.php:619, ../includes/Elements/Adv_Accordion.php:692, ../includes/Elements/Adv_Tabs.php:498, ../includes/Elements/Adv_Tabs.php:564, ../includes/Elements/Adv_Tabs.php:632, ../includes/Elements/Dual_Color_Header.php:418, ../includes/Elements/Event_Calendar.php:1435, ../includes/Elements/Feature_List.php:121, ../includes/Elements/Info_Box.php:771, ../includes/Elements/Info_Box.php:850, ../includes/Elements/Info_Box.php:1002, ../includes/Elements/Info_Box.php:1081, ../includes/Elements/Post_Grid.php:947, ../includes/Elements/Pricing_Table.php:342, ../includes/Elements/Pricing_Table.php:1740, ../includes/Elements/Team_Member.php:718, ../includes/Elements/Twitter_Feed.php:607, ../includes/Elements/Woo_Checkout.php:1186, ../includes/Elements/Woo_Checkout.php:1472
895
  msgid "Icon Color"
896
  msgstr ""
897
 
898
+ #: ../includes/Elements/Adv_Accordion.php:655, ../includes/Elements/Adv_Accordion.php:986, ../includes/Elements/Adv_Tabs.php:596, ../includes/Elements/Event_Calendar.php:862, ../includes/Elements/Filterable_Gallery.php:1020, ../includes/Elements/Product_Grid.php:2221, ../includes/Extensions/Table_of_Content.php:936
899
  msgid "Active"
900
  msgstr ""
901
 
902
+ #: ../includes/Elements/Adv_Accordion.php:734, ../includes/Elements/Countdown.php:1100, ../includes/Elements/Cta_Box.php:79, ../includes/Elements/Cta_Box.php:592, ../includes/Elements/Data_Table.php:773, ../includes/Elements/Dual_Color_Header.php:75, ../includes/Elements/Facebook_Feed.php:609, ../includes/Elements/Facebook_Feed.php:773, ../includes/Elements/Flip_Box.php:1207, ../includes/Elements/Flip_Box.php:1276, ../includes/Elements/Info_Box.php:1382, ../includes/Elements/Tooltip.php:315, ../includes/Elements/Twitter_Feed.php:691
903
  msgid "Content Style"
904
  msgstr ""
905
 
919
  msgid "Caret Color"
920
  msgstr ""
921
 
922
+ #: ../includes/Elements/Adv_Tabs.php:79, ../includes/Elements/Countdown.php:148, ../includes/Elements/Facebook_Feed.php:168, ../includes/Elements/Filterable_Gallery.php:170, ../includes/Elements/Product_Grid.php:226, ../includes/Elements/Product_Grid.php:419, ../includes/Elements/Progress_Bar.php:75, ../includes/Elements/Progress_Bar.php:101, ../includes/Elements/Woo_Checkout.php:115, ../includes/Traits/Controls.php:402, ../includes/Traits/Controls.php:531, ../includes/Traits/Controls.php:591
923
  msgid "Layout"
924
  msgstr ""
925
 
926
+ #: ../includes/Elements/Adv_Tabs.php:84, ../includes/Elements/Image_Accordion.php:87
927
  msgid "Horizontal"
928
  msgstr ""
929
 
930
+ #: ../includes/Elements/Adv_Tabs.php:85, ../includes/Elements/Image_Accordion.php:88
931
  msgid "Vertical"
932
  msgstr ""
933
 
935
  msgid "Enable Icon"
936
  msgstr ""
937
 
938
+ #: ../includes/Elements/Adv_Tabs.php:101, ../includes/Elements/Betterdocs_Category_Grid.php:1327, ../includes/Elements/Creative_Button.php:141, ../includes/Elements/Data_Table.php:701, ../includes/Elements/Feature_List.php:300, ../includes/Elements/Filterable_Gallery.php:747, ../includes/Elements/Flip_Box.php:707, ../includes/Elements/Info_Box.php:121, ../includes/Elements/Info_Box.php:452, ../includes/Elements/Pricing_Table.php:540
939
  msgid "Icon Position"
940
  msgstr ""
941
 
942
+ #: ../includes/Elements/Adv_Tabs.php:106, ../includes/Elements/Feature_List.php:292
943
  msgid "Stacked"
944
  msgstr ""
945
 
951
  msgid "Set as Default"
952
  msgstr ""
953
 
954
+ #: ../includes/Elements/Adv_Tabs.php:141, ../includes/Elements/Feature_List.php:73, ../includes/Elements/Flip_Box.php:196, ../includes/Elements/Flip_Box.php:425
955
  msgid "Icon Type"
956
  msgstr ""
957
 
958
+ #: ../includes/Elements/Adv_Tabs.php:154, ../includes/Elements/Adv_Tabs.php:181, ../includes/Elements/Data_Table.php:144, ../includes/Elements/Data_Table.php:176, ../includes/Elements/Feature_List.php:81, ../includes/Elements/Feature_List.php:168, ../includes/Elements/Filterable_Gallery.php:563, ../includes/Elements/Flip_Box.php:200, ../includes/Elements/Flip_Box.php:429, ../includes/Elements/Info_Box.php:110, ../includes/Elements/Post_Grid.php:99, ../includes/Elements/Tooltip.php:82, ../includes/Elements/Tooltip.php:159, ../includes/Traits/Controls.php:571, ../includes/Traits/Controls.php:684, ../includes/Traits/Woo_Product_Comparable.php:40, ../includes/Traits/Woo_Product_Comparable.php:73
959
  msgid "Image"
960
  msgstr ""
961
 
971
  msgid "Tab Title 3"
972
  msgstr ""
973
 
974
+ #: ../includes/Elements/Adv_Tabs.php:292, ../includes/Elements/Event_Calendar.php:141, ../includes/Elements/Image_Accordion.php:61, ../includes/Elements/Image_Accordion.php:296, ../includes/Elements/Login_Register.php:235, ../includes/Elements/Login_Register.php:1388, ../includes/Elements/Progress_Bar.php:306, ../includes/Elements/Progress_Bar.php:517, ../includes/Traits/Admin.php:111
975
  msgid "General"
976
  msgstr ""
977
 
995
  msgid "Caret Size"
996
  msgstr ""
997
 
998
+ #: ../includes/Elements/Adv_Tabs.php:847, ../includes/Elements/Caldera_Forms.php:109, ../includes/Elements/Caldera_Forms.php:936, ../includes/Elements/Contact_Form_7.php:911, ../includes/Elements/Contact_Form_7.php:963, ../includes/Elements/Content_Ticker.php:237, ../includes/Elements/Content_Ticker.php:270, ../includes/Elements/Content_Ticker.php:285, ../includes/Elements/Content_Ticker.php:320, ../includes/Elements/Data_Table.php:1035, ../includes/Elements/Facebook_Feed.php:377, ../includes/Elements/Filterable_Gallery.php:287, ../includes/Elements/Filterable_Gallery.php:432, ../includes/Elements/Filterable_Gallery.php:481, ../includes/Elements/Filterable_Gallery.php:506, ../includes/Elements/Filterable_Gallery.php:531, ../includes/Elements/Filterable_Gallery.php:591, ../includes/Elements/Filterable_Gallery.php:606, ../includes/Elements/FluentForm.php:123, ../includes/Elements/FluentForm.php:902, ../includes/Elements/Formstack.php:192, ../includes/Elements/Formstack.php:1128, ../includes/Elements/GravityForms.php:149, ../includes/Elements/GravityForms.php:246, ../includes/Elements/GravityForms.php:1206, ../includes/Elements/GravityForms.php:1402, ../includes/Elements/Image_Accordion.php:176, ../includes/Elements/Info_Box.php:358, ../includes/Elements/Info_Box.php:372, ../includes/Elements/Login_Register.php:408, ../includes/Elements/Login_Register.php:486, ../includes/Elements/Login_Register.php:790, ../includes/Elements/NinjaForms.php:114, ../includes/Elements/NinjaForms.php:983, ../includes/Elements/Post_Grid.php:112, ../includes/Elements/Post_Grid.php:126, ../includes/Elements/Post_Grid.php:152, ../includes/Elements/Post_Grid.php:166, ../includes/Elements/Post_Grid.php:192, ../includes/Elements/Post_Grid.php:206, ../includes/Elements/Pricing_Table.php:219, ../includes/Elements/Pricing_Table.php:1878, ../includes/Elements/Team_Member.php:704, ../includes/Elements/WpForms.php:107, ../includes/Elements/WpForms.php:937, ../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:211, ../includes/Extensions/Table_of_Content.php:226, ../includes/Extensions/Table_of_Content.php:241, ../includes/Extensions/Table_of_Content.php:256, ../includes/Extensions/Table_of_Content.php:271, ../includes/Traits/Controls.php:374
999
  msgid "Yes"
1000
  msgstr ""
1001
 
1002
+ #: ../includes/Elements/Adv_Tabs.php:848, ../includes/Elements/Caldera_Forms.php:110, ../includes/Elements/Caldera_Forms.php:937, ../includes/Elements/Contact_Form_7.php:912, ../includes/Elements/Contact_Form_7.php:964, ../includes/Elements/Content_Ticker.php:238, ../includes/Elements/Content_Ticker.php:271, ../includes/Elements/Content_Ticker.php:286, ../includes/Elements/Content_Ticker.php:321, ../includes/Elements/Cta_Box.php:685, ../includes/Elements/Data_Table.php:1036, ../includes/Elements/Facebook_Feed.php:381, ../includes/Elements/Feature_List.php:362, ../includes/Elements/Filterable_Gallery.php:288, ../includes/Elements/Filterable_Gallery.php:433, ../includes/Elements/Filterable_Gallery.php:482, ../includes/Elements/Filterable_Gallery.php:507, ../includes/Elements/Filterable_Gallery.php:532, ../includes/Elements/Filterable_Gallery.php:592, ../includes/Elements/Filterable_Gallery.php:607, ../includes/Elements/FluentForm.php:124, ../includes/Elements/FluentForm.php:903, ../includes/Elements/Formstack.php:193, ../includes/Elements/Formstack.php:1129, ../includes/Elements/GravityForms.php:150, ../includes/Elements/GravityForms.php:247, ../includes/Elements/GravityForms.php:1207, ../includes/Elements/GravityForms.php:1403, ../includes/Elements/Image_Accordion.php:177, ../includes/Elements/Info_Box.php:359, ../includes/Elements/Info_Box.php:373, ../includes/Elements/Login_Register.php:409, ../includes/Elements/Login_Register.php:487, ../includes/Elements/Login_Register.php:791, ../includes/Elements/NinjaForms.php:115, ../includes/Elements/NinjaForms.php:984, ../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:220, ../includes/Elements/Pricing_Table.php:1879, ../includes/Elements/Team_Member.php:705, ../includes/Elements/WpForms.php:108, ../includes/Elements/WpForms.php:938, ../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:212, ../includes/Extensions/Table_of_Content.php:227, ../includes/Extensions/Table_of_Content.php:242, ../includes/Extensions/Table_of_Content.php:257, ../includes/Extensions/Table_of_Content.php:272, ../includes/Traits/Controls.php:375
1003
  msgid "No"
1004
  msgstr ""
1005
 
1006
+ #: ../includes/Elements/Betterdocs_Category_Box.php:119, ../includes/Elements/Betterdocs_Category_Grid.php:120
1007
  msgid "Layout Options"
1008
  msgstr ""
1009
 
1010
+ #: ../includes/Elements/Betterdocs_Category_Box.php:126, ../includes/Elements/Betterdocs_Category_Grid.php:127
1011
  msgid "Select Layout"
1012
  msgstr ""
1013
 
1014
+ #: ../includes/Elements/Betterdocs_Category_Box.php:137
1015
  msgid "Box Column"
1016
  msgstr ""
1017
 
1018
+ #: ../includes/Elements/Betterdocs_Category_Box.php:157, ../includes/Elements/Betterdocs_Category_Grid.php:188, ../includes/Elements/Betterdocs_Category_Grid.php:1300, ../includes/Elements/Dual_Color_Header.php:91, ../includes/Elements/Twitter_Feed.php:269
1019
  msgid "Show Icon"
1020
  msgstr ""
1021
 
1022
+ #: ../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: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:1302, ../includes/Elements/Caldera_Forms.php:152, ../includes/Elements/Caldera_Forms.php:165, ../includes/Elements/Caldera_Forms.php:191, ../includes/Elements/Contact_Form_7.php:205, ../includes/Elements/Contact_Form_7.php:231, ../includes/Elements/Contact_Form_7.php:251, ../includes/Elements/Content_Ticker.php:298, ../includes/Elements/Countdown.php:503, ../includes/Elements/Creative_Button.php:250, ../includes/Elements/Cta_Box.php:134, ../includes/Elements/Cta_Box.php:281, ../includes/Elements/Dual_Color_Header.php:94, ../includes/Elements/Dual_Color_Header.php:104, ../includes/Elements/Facebook_Feed.php:295, ../includes/Elements/Facebook_Feed.php:307, ../includes/Elements/Facebook_Feed.php:322, ../includes/Elements/Facebook_Feed.php:337, ../includes/Elements/Facebook_Feed.php:352, ../includes/Elements/Facebook_Feed.php:418, ../includes/Elements/Feature_List.php:361, ../includes/Elements/Filterable_Gallery.php:275, ../includes/Elements/FluentForm.php:166, ../includes/Elements/FluentForm.php:178, ../includes/Elements/FluentForm.php:204, ../includes/Elements/FluentForm.php:1706, ../includes/Elements/FluentForm.php:1774, ../includes/Elements/Formstack.php:235, ../includes/Elements/Formstack.php:247, ../includes/Elements/Formstack.php:273, ../includes/Elements/Formstack.php:286, ../includes/Elements/Formstack.php:1622, ../includes/Elements/GravityForms.php:161, ../includes/Elements/GravityForms.php:176, ../includes/Elements/GravityForms.php:222, ../includes/Elements/GravityForms.php:234, ../includes/Elements/GravityForms.php:272, ../includes/Elements/GravityForms.php:292, ../includes/Elements/Info_Box.php:290, ../includes/Elements/Login_Register.php:330, ../includes/Elements/Login_Register.php:621, ../includes/Elements/NinjaForms.php:126, ../includes/Elements/NinjaForms.php:173, ../includes/Elements/NinjaForms.php:186, ../includes/Elements/NinjaForms.php:212, ../includes/Elements/NinjaForms.php:232, ../includes/Elements/Post_Timeline.php:88, ../includes/Elements/Pricing_Table.php:515, ../includes/Elements/Pricing_Table.php:1630, ../includes/Elements/Product_Grid.php:520, ../includes/Elements/Product_Grid.php:622, ../includes/Elements/Product_Grid.php:1447, ../includes/Elements/Product_Grid.php:2037, ../includes/Elements/Sticky_Video.php:362, ../includes/Elements/Twitter_Feed.php:368, ../includes/Elements/WpForms.php:119, ../includes/Elements/WpForms.php:134, ../includes/Elements/WpForms.php:180, ../includes/Elements/WpForms.php:193, ../includes/Elements/WpForms.php:216, ../includes/Traits/Controls.php:562, ../includes/Traits/Controls.php:624, ../includes/Traits/Controls.php:654, ../includes/Traits/Controls.php:762, ../includes/Traits/Controls.php:810, ../includes/Traits/Controls.php:878, ../includes/Traits/Controls.php:913, ../includes/Traits/Controls.php:944, ../includes/Traits/Controls.php:995, ../includes/Traits/Controls.php:1023, ../includes/Traits/Controls.php:1039, ../includes/Traits/Controls.php:1054
1023
  msgid "Show"
1024
  msgstr ""
1025
 
1026
+ #: ../includes/Elements/Betterdocs_Category_Box.php:160, ../includes/Elements/Betterdocs_Category_Box.php:172, ../includes/Elements/Betterdocs_Category_Box.php:207, ../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:1303, ../includes/Elements/Caldera_Forms.php:153, ../includes/Elements/Caldera_Forms.php:166, ../includes/Elements/Caldera_Forms.php:192, ../includes/Elements/Contact_Form_7.php:206, ../includes/Elements/Contact_Form_7.php:232, ../includes/Elements/Contact_Form_7.php:252, ../includes/Elements/Content_Ticker.php:299, ../includes/Elements/Countdown.php:504, ../includes/Elements/Creative_Button.php:251, ../includes/Elements/Cta_Box.php:135, ../includes/Elements/Cta_Box.php:282, ../includes/Elements/Dual_Color_Header.php:95, ../includes/Elements/Dual_Color_Header.php:105, ../includes/Elements/Facebook_Feed.php:296, ../includes/Elements/Facebook_Feed.php:308, ../includes/Elements/Facebook_Feed.php:323, ../includes/Elements/Facebook_Feed.php:338, ../includes/Elements/Facebook_Feed.php:353, ../includes/Elements/Facebook_Feed.php:419, ../includes/Elements/Filterable_Gallery.php:276, ../includes/Elements/FluentForm.php:167, ../includes/Elements/FluentForm.php:179, ../includes/Elements/FluentForm.php:205, ../includes/Elements/FluentForm.php:1707, ../includes/Elements/FluentForm.php:1775, ../includes/Elements/Formstack.php:236, ../includes/Elements/Formstack.php:248, ../includes/Elements/Formstack.php:274, ../includes/Elements/Formstack.php:287, ../includes/Elements/Formstack.php:1623, ../includes/Elements/GravityForms.php:162, ../includes/Elements/GravityForms.php:177, ../includes/Elements/GravityForms.php:223, ../includes/Elements/GravityForms.php:235, ../includes/Elements/GravityForms.php:273, ../includes/Elements/GravityForms.php:293, ../includes/Elements/Info_Box.php:291, ../includes/Elements/Login_Register.php:329, ../includes/Elements/Login_Register.php:529, ../includes/Elements/Login_Register.php:620, ../includes/Elements/NinjaForms.php:127, ../includes/Elements/NinjaForms.php:174, ../includes/Elements/NinjaForms.php:187, ../includes/Elements/NinjaForms.php:213, ../includes/Elements/NinjaForms.php:233, ../includes/Elements/Post_Timeline.php:89, ../includes/Elements/Pricing_Table.php:516, ../includes/Elements/Pricing_Table.php:1631, ../includes/Elements/Product_Grid.php:521, ../includes/Elements/Product_Grid.php:623, ../includes/Elements/Product_Grid.php:1448, ../includes/Elements/Product_Grid.php:2038, ../includes/Elements/Sticky_Video.php:363, ../includes/Elements/Twitter_Feed.php:369, ../includes/Elements/WpForms.php:120, ../includes/Elements/WpForms.php:135, ../includes/Elements/WpForms.php:181, ../includes/Elements/WpForms.php:194, ../includes/Elements/WpForms.php:217, ../includes/Traits/Controls.php:563, ../includes/Traits/Controls.php:625, ../includes/Traits/Controls.php:655, ../includes/Traits/Controls.php:763, ../includes/Traits/Controls.php:811, ../includes/Traits/Controls.php:879, ../includes/Traits/Controls.php:914, ../includes/Traits/Controls.php:945, ../includes/Traits/Controls.php:996, ../includes/Traits/Controls.php:1024, ../includes/Traits/Controls.php:1040, ../includes/Traits/Controls.php:1055
1027
  msgid "Hide"
1028
  msgstr ""
1029
 
1030
+ #: ../includes/Elements/Betterdocs_Category_Box.php:169, ../includes/Elements/Betterdocs_Category_Grid.php:203, ../includes/Traits/Controls.php:760
1031
  msgid "Show Title"
1032
  msgstr ""
1033
 
1034
+ #: ../includes/Elements/Betterdocs_Category_Box.php:181, ../includes/Elements/Betterdocs_Category_Grid.php:218, ../includes/Elements/Cta_Box.php:194, ../includes/Elements/Image_Accordion.php:152
1035
  msgid "Select Tag"
1036
  msgstr ""
1037
 
1038
+ #: ../includes/Elements/Betterdocs_Category_Box.php:204, ../includes/Elements/Betterdocs_Category_Grid.php:242
1039
  msgid "Show Count"
1040
  msgstr ""
1041
 
1042
+ #: ../includes/Elements/Betterdocs_Category_Box.php:216, ../includes/Elements/Progress_Bar.php:243
1043
  msgid "Prefix"
1044
  msgstr ""
1045
 
1046
+ #: ../includes/Elements/Betterdocs_Category_Box.php:229
1047
  msgid "Suffix"
1048
  msgstr ""
1049
 
1050
+ #: ../includes/Elements/Betterdocs_Category_Box.php:232
1051
  msgid "articles"
1052
  msgstr ""
1053
 
1054
+ #: ../includes/Elements/Betterdocs_Category_Box.php:251, ../includes/Elements/Flip_Box.php:648
1055
  msgid "Box"
1056
  msgstr ""
1057
 
1058
+ #: ../includes/Elements/Betterdocs_Category_Box.php:259
1059
  msgid "Box Spacing"
1060
  msgstr ""
1061
 
1062
+ #: ../includes/Elements/Betterdocs_Category_Box.php:271
1063
  msgid "Box Padding"
1064
  msgstr ""
1065
 
1066
+ #: ../includes/Elements/Betterdocs_Category_Box.php:337, ../includes/Elements/Betterdocs_Category_Box.php:590, ../includes/Elements/Betterdocs_Category_Box.php:729, ../includes/Elements/Betterdocs_Category_Box.php:1028, ../includes/Elements/Betterdocs_Search_Form.php:480, ../includes/Elements/Filterable_Gallery.php:1916, ../includes/Elements/Info_Box.php:1477
1067
  msgid "Transition"
1068
  msgstr ""
1069
 
1070
+ #: ../includes/Elements/Betterdocs_Category_Box.php:416, ../includes/Elements/Betterdocs_Category_Box.php:636, ../includes/Elements/Betterdocs_Category_Box.php:808
1071
  msgid "Area"
1072
  msgstr ""
1073
 
1074
+ #: ../includes/Elements/Betterdocs_Category_Box.php:424, ../includes/Elements/Betterdocs_Category_Box.php:459, ../includes/Elements/Betterdocs_Category_Box.php:816, ../includes/Elements/Betterdocs_Category_Box.php:923, ../includes/Elements/Betterdocs_Category_Grid.php:539, ../includes/Elements/Betterdocs_Category_Grid.php:776, ../includes/Elements/Betterdocs_Category_Grid.php:1096, ../includes/Elements/Betterdocs_Category_Grid.php:1249, ../includes/Elements/Betterdocs_Search_Form.php:249, ../includes/Elements/Caldera_Forms.php:945, ../includes/Elements/Contact_Form_7.php:972, ../includes/Elements/Feature_List.php:555, ../includes/Elements/Filterable_Gallery.php:715, ../includes/Elements/FluentForm.php:911, ../includes/Elements/Formstack.php:1137, ../includes/Elements/Formstack.php:1290, ../includes/Elements/GravityForms.php:1215, ../includes/Elements/GravityForms.php:1411, ../includes/Elements/Login_Register.php:2735, ../includes/Elements/Login_Register.php:3344, ../includes/Elements/NinjaForms.php:992, ../includes/Elements/Progress_Bar.php:551, ../includes/Elements/WpForms.php:946, ../includes/Traits/Woo_Product_Comparable.php:50, ../includes/Traits/Woo_Product_Comparable.php:113, ../includes/Traits/Woo_Product_Comparable.php:1426
1075
  msgid "Size"
1076
  msgstr ""
1077
 
1078
+ #: ../includes/Elements/Betterdocs_Category_Box.php:528, ../includes/Elements/Betterdocs_Category_Box.php:696, ../includes/Elements/Betterdocs_Category_Box.php:943, ../includes/Elements/Betterdocs_Category_Grid.php:1115, ../includes/Elements/Betterdocs_Category_Grid.php:1193, ../includes/Elements/Caldera_Forms.php:753, ../includes/Elements/Caldera_Forms.php:870, ../includes/Elements/Contact_Form_7.php:575, ../includes/Elements/Contact_Form_7.php:860, ../includes/Elements/Contact_Form_7.php:1430, ../includes/Elements/Feature_List.php:656, ../includes/Elements/Filterable_Gallery.php:2409, ../includes/Elements/FluentForm.php:772, ../includes/Elements/FluentForm.php:1748, ../includes/Elements/Formstack.php:605, ../includes/Elements/Formstack.php:1001, ../includes/Elements/GravityForms.php:684, ../includes/Elements/GravityForms.php:956, ../includes/Elements/Login_Register.php:2402, ../includes/Elements/Login_Register.php:2604, ../includes/Elements/Login_Register.php:3077, ../includes/Elements/Login_Register.php:3376, ../includes/Elements/NinjaForms.php:797, ../includes/Elements/NinjaForms.php:914, ../includes/Elements/NinjaForms.php:1579, ../includes/Elements/Post_Grid.php:870, ../includes/Elements/Woo_Checkout.php:1985, ../includes/Elements/WpForms.php:765, ../includes/Elements/WpForms.php:871
1079
  msgid "Spacing"
1080
  msgstr ""
1081
 
1082
+ #: ../includes/Elements/Betterdocs_Category_Box.php:628, ../includes/Elements/Betterdocs_Category_Box.php:667, ../includes/Elements/Betterdocs_Category_Grid.php:589, ../includes/Elements/Betterdocs_Category_Grid.php:1145, ../includes/Elements/Caldera_Forms.php:118, ../includes/Elements/Caldera_Forms.php:258, ../includes/Elements/Contact_Form_7.php:160, ../includes/Elements/Contact_Form_7.php:465, ../includes/Elements/Cta_Box.php:183, ../includes/Elements/Event_Calendar.php:148, ../includes/Elements/Event_Calendar.php:691, ../includes/Elements/Event_Calendar.php:1350, ../includes/Elements/Feature_List.php:182, ../includes/Elements/Feature_List.php:184, ../includes/Elements/Feature_List.php:735, ../includes/Elements/Flip_Box.php:649, ../includes/Elements/FluentForm.php:132, ../includes/Elements/FluentForm.php:265, ../includes/Elements/Formstack.php:201, ../includes/Elements/Formstack.php:472, ../includes/Elements/GravityForms.php:158, ../includes/Elements/GravityForms.php:188, ../includes/Elements/GravityForms.php:506, ../includes/Elements/Image_Accordion.php:197, ../includes/Elements/Image_Accordion.php:487, ../includes/Elements/Login_Register.php:2213, ../includes/Elements/NinjaForms.php:123, ../includes/Elements/NinjaForms.php:139, ../includes/Elements/NinjaForms.php:443, ../includes/Elements/Post_Grid.php:138, ../includes/Elements/Pricing_Table.php:135, ../includes/Elements/Product_Grid.php:2320, ../includes/Elements/Progress_Bar.php:122, ../includes/Elements/Progress_Bar.php:681, ../includes/Elements/Woo_Checkout.php:323, ../includes/Elements/Woo_Checkout.php:433, ../includes/Elements/Woo_Checkout.php:527, ../includes/Elements/WpForms.php:116, ../includes/Elements/WpForms.php:146, ../includes/Elements/WpForms.php:410, ../includes/Extensions/Table_of_Content.php:110, ../includes/Traits/Woo_Product_Comparable.php:41, ../includes/Traits/Woo_Product_Comparable.php:77, ../includes/Traits/Woo_Product_Comparable.php:1072, ../includes/Traits/Woo_Product_Comparable.php:1190
1083
  msgid "Title"
1084
  msgstr ""
1085
 
1086
+ #: ../includes/Elements/Betterdocs_Category_Box.php:647
1087
  msgid "Area Size"
1088
  msgstr ""
1089
 
1090
+ #: ../includes/Elements/Betterdocs_Category_Box.php:800, ../includes/Elements/Betterdocs_Category_Box.php:836, ../includes/Elements/Betterdocs_Category_Grid.php:757, ../includes/Elements/Betterdocs_Search_Form.php:444, ../includes/Elements/Betterdocs_Search_Form.php:542
1091
  msgid "Count"
1092
  msgstr ""
1093
 
1094
+ #: ../includes/Elements/Betterdocs_Category_Box.php:88, ../includes/Elements/Betterdocs_Category_Grid.php:90, ../includes/Elements/Betterdocs_Search_Form.php:84, ../includes/Elements/Caldera_Forms.php:67, ../includes/Elements/Career_Page.php:49, ../includes/Elements/Contact_Form_7.php:109, ../includes/Elements/EmbedPress.php:54, ../includes/Elements/FluentForm.php:79, ../includes/Elements/Formstack.php:75, ../includes/Elements/Formstack.php:96, ../includes/Elements/Formstack.php:117, ../includes/Elements/GravityForms.php:107, ../includes/Elements/NinjaForms.php:72, ../includes/Elements/TypeForm.php:99, ../includes/Elements/WeForms.php:70, ../includes/Elements/Woocommerce_Review.php:52, ../includes/Elements/Woo_Checkout.php:84, ../includes/Elements/WpForms.php:69, ../includes/Traits/Woo_Product_Comparable.php:121
1095
  msgid "Warning!"
1096
  msgstr ""
1097
 
1098
+ #: ../includes/Elements/Betterdocs_Category_Box.php:96, ../includes/Elements/Betterdocs_Category_Grid.php:98, ../includes/Elements/Betterdocs_Search_Form.php:92
1099
  msgid "<strong>BetterDocs</strong> is not installed/activated on your site. Please install and activate <a href=\"plugin-install.php?s=BetterDocs&tab=search&type=term\" target=\"_blank\">BetterDocs</a> first."
1100
  msgstr ""
1101
 
1111
  msgid "Layout Mode"
1112
  msgstr ""
1113
 
1114
+ #: ../includes/Elements/Betterdocs_Category_Grid.php:141, ../includes/Elements/Betterdocs_Category_Grid.php:304, ../includes/Elements/Filterable_Gallery.php:146, ../includes/Elements/Product_Grid.php:230, ../includes/Traits/Controls.php:535
1115
  msgid "Grid"
1116
  msgstr ""
1117
 
1119
  msgid "Fit to Screen"
1120
  msgstr ""
1121
 
1122
+ #: ../includes/Elements/Betterdocs_Category_Grid.php:143, ../includes/Elements/Filterable_Gallery.php:147, ../includes/Elements/Product_Grid.php:232, ../includes/Elements/Twitter_Feed.php:148, ../includes/Traits/Controls.php:536
1123
  msgid "Masonry"
1124
  msgstr ""
1125
 
1139
  msgid "Show Button"
1140
  msgstr ""
1141
 
1142
+ #: ../includes/Elements/Betterdocs_Category_Grid.php:282, ../includes/Elements/Creative_Button.php:78, ../includes/Elements/Cta_Box.php:256, ../includes/Elements/Filterable_Gallery.php:689, ../includes/Elements/Flip_Box.php:680, ../includes/Elements/Info_Box.php:402, ../includes/Elements/Login_Register.php:635, ../includes/Elements/Login_Register.php:1110, ../includes/Elements/Pricing_Table.php:578, ../includes/Elements/Woo_Checkout.php:370, ../includes/Traits/Controls.php:926
1143
  msgid "Button Text"
1144
  msgstr ""
1145
 
1159
  msgid "Ticker Background"
1160
  msgstr ""
1161
 
1162
+ #: ../includes/Elements/Betterdocs_Category_Grid.php:978, ../includes/Elements/Betterdocs_Category_Grid.php:989, ../includes/Elements/Event_Calendar.php:527, ../includes/Elements/Feature_List.php:378, ../includes/Elements/Product_Grid.php:231, ../includes/Elements/Twitter_Feed.php:147, ../includes/Extensions/Table_of_Content.php:801
1163
  msgid "List"
1164
  msgstr ""
1165
 
1166
+ #: ../includes/Elements/Betterdocs_Category_Grid.php:1016, ../includes/Elements/Filterable_Gallery.php:1228, ../includes/Elements/Filterable_Gallery.php:1608, ../includes/Elements/Filterable_Gallery.php:2366, ../includes/Elements/Pricing_Table.php:1774, ../includes/Elements/Product_Grid.php:2707, ../includes/Elements/Twitter_Feed.php:742
1167
  msgid "Hover Color"
1168
  msgstr ""
1169
 
1191
  msgid "Area Spacing"
1192
  msgstr ""
1193
 
1194
+ #: ../includes/Elements/Betterdocs_Category_Grid.php:1331, ../includes/Elements/Creative_Button.php:145, ../includes/Elements/Filterable_Gallery.php:752, ../includes/Elements/Flip_Box.php:712, ../includes/Elements/Info_Box.php:456, ../includes/Elements/Pricing_Table.php:544
1195
  msgid "Before"
1196
  msgstr ""
1197
 
1198
+ #: ../includes/Elements/Betterdocs_Category_Grid.php:1332, ../includes/Elements/Creative_Button.php:146, ../includes/Elements/Filterable_Gallery.php:751, ../includes/Elements/Flip_Box.php:711, ../includes/Elements/Info_Box.php:457, ../includes/Elements/Pricing_Table.php:545
1199
  msgid "After"
1200
  msgstr ""
1201
 
1235
  msgid "Close Icon"
1236
  msgstr ""
1237
 
1238
+ #: ../includes/Elements/Betterdocs_Search_Form.php:286, ../includes/Elements/Caldera_Forms.php:1020, ../includes/Elements/Caldera_Forms.php:1334, ../includes/Elements/Contact_Form_7.php:1047, ../includes/Elements/Contact_Form_7.php:1363, ../includes/Elements/Content_Ticker.php:720, ../includes/Elements/Countdown.php:784, ../includes/Elements/Countdown.php:856, ../includes/Elements/Countdown.php:928, ../includes/Elements/Countdown.php:1000, ../includes/Elements/Creative_Button.php:417, ../includes/Elements/Cta_Box.php:809, ../includes/Elements/Cta_Box.php:978, ../includes/Elements/Event_Calendar.php:639, ../includes/Elements/Facebook_Feed.php:717, ../includes/Elements/Filterable_Gallery.php:2709, ../includes/Elements/FluentForm.php:986, ../includes/Elements/FluentForm.php:1654, ../includes/Elements/Formstack.php:1570, ../includes/Elements/GravityForms.php:1057, ../includes/Elements/GravityForms.php:1290, ../includes/Elements/GravityForms.php:1486, ../includes/Elements/GravityForms.php:1915, ../includes/Elements/GravityForms.php:2137, ../includes/Elements/NinjaForms.php:1067, ../includes/Elements/NinjaForms.php:1483, ../includes/Elements/Pricing_Table.php:2000, ../includes/Elements/Product_Grid.php:739, ../includes/Elements/Product_Grid.php:879, ../includes/Elements/Product_Grid.php:1573, ../includes/Elements/Product_Grid.php:1817, ../includes/Elements/Product_Grid.php:1997, ../includes/Elements/Product_Grid.php:2206, ../includes/Elements/Product_Grid.php:2250, ../includes/Elements/Product_Grid.php:2444, ../includes/Elements/Product_Grid.php:2538, ../includes/Elements/Product_Grid.php:2650, ../includes/Elements/Sticky_Video.php:579, ../includes/Elements/Twitter_Feed.php:618, ../includes/Elements/WeForms.php:464, ../includes/Elements/WeForms.php:764, ../includes/Elements/Woo_Checkout.php:774, ../includes/Elements/Woo_Checkout.php:981, ../includes/Elements/Woo_Checkout.php:1376, ../includes/Elements/Woo_Checkout.php:1572, ../includes/Elements/Woo_Checkout.php:1674, ../includes/Elements/Woo_Checkout.php:1791, ../includes/Elements/Woo_Checkout.php:1835, ../includes/Elements/Woo_Checkout.php:1879, ../includes/Elements/Woo_Checkout.php:2068, ../includes/Elements/Woo_Checkout.php:2084, ../includes/Elements/Woo_Checkout.php:2346, ../includes/Elements/Woo_Checkout.php:2458, ../includes/Elements/WpForms.php:1021, ../includes/Elements/WpForms.php:1339, ../includes/Traits/Controls.php:1455, ../includes/Traits/Woo_Product_Comparable.php:1712
1239
  msgid "Border Color"
1240
  msgstr ""
1241
 
1267
  msgid "Custom Title & Description"
1268
  msgstr ""
1269
 
1270
+ #: ../includes/Elements/Caldera_Forms.php:134, ../includes/Elements/Caldera_Forms.php:319, ../includes/Elements/Contact_Form_7.php:187, ../includes/Elements/Contact_Form_7.php:496, ../includes/Elements/Event_Calendar.php:265, ../includes/Elements/Feature_List.php:788, ../includes/Elements/FluentForm.php:148, ../includes/Elements/FluentForm.php:326, ../includes/Elements/FluentForm.php:1152, ../includes/Elements/Formstack.php:217, ../includes/Elements/Formstack.php:521, ../includes/Elements/Formstack.php:704, ../includes/Elements/GravityForms.php:173, ../includes/Elements/GravityForms.php:204, ../includes/Elements/GravityForms.php:537, ../includes/Elements/NinjaForms.php:155, ../includes/Elements/NinjaForms.php:492, ../includes/Elements/Team_Member.php:131, ../includes/Elements/WpForms.php:131, ../includes/Elements/WpForms.php:162, ../includes/Elements/WpForms.php:459, ../includes/Traits/Controls.php:306, ../includes/Traits/Woo_Product_Comparable.php:44, ../includes/Traits/Woo_Product_Comparable.php:85
1271
  msgid "Description"
1272
  msgstr ""
1273
 
1303
  msgid "Form Alignment"
1304
  msgstr ""
1305
 
1306
+ #: ../includes/Elements/Caldera_Forms.php:411, ../includes/Elements/Contact_Form_7.php:327, ../includes/Elements/Contact_Form_7.php:828, ../includes/Elements/Creative_Button.php:225, ../includes/Elements/Cta_Box.php:641, ../includes/Elements/Cta_Box.php:858, ../includes/Elements/Dual_Color_Header.php:80, ../includes/Elements/Flip_Box.php:871, ../includes/Elements/FluentForm.php:430, ../includes/Elements/Formstack.php:330, ../includes/Elements/GravityForms.php:343, ../includes/Elements/Login_Register.php:430, ../includes/Elements/Login_Register.php:527, ../includes/Elements/Login_Register.php:1039, ../includes/Elements/Login_Register.php:1395, ../includes/Elements/Login_Register.php:1521, ../includes/Elements/Login_Register.php:1778, ../includes/Elements/Login_Register.php:1922, ../includes/Elements/Login_Register.php:2072, ../includes/Elements/Login_Register.php:2215, ../includes/Elements/Login_Register.php:2306, ../includes/Elements/Login_Register.php:2404, ../includes/Elements/Login_Register.php:2606, ../includes/Elements/Login_Register.php:2651, ../includes/Elements/Login_Register.php:2683, ../includes/Elements/Login_Register.php:2917, ../includes/Elements/Login_Register.php:3079, ../includes/Elements/Login_Register.php:3378, ../includes/Elements/NinjaForms.php:278, ../includes/Elements/Post_Grid.php:233, ../includes/Elements/Pricing_Table.php:85, ../includes/Elements/Pricing_Table.php:467, ../includes/Elements/Product_Grid.php:244, ../includes/Elements/Team_Member.php:375, ../includes/Elements/Testimonial.php:252, ../includes/Elements/Testimonial.php:309, ../includes/Elements/TypeForm.php:196, ../includes/Elements/WeForms.php:161, ../includes/Elements/WeForms.php:631, ../includes/Elements/Woo_Checkout.php:120, ../includes/Elements/WpForms.php:267, ../includes/Traits/Controls.php:551, ../includes/Traits/Controls.php:1525, ../includes/Traits/Login_Registration.php:571, ../includes/Traits/Woo_Product_Comparable.php:408, ../includes/Traits/Woo_Product_Comparable.php:522, ../includes/Traits/Woo_Product_Comparable.php:613, ../includes/Traits/Woo_Product_Comparable.php:682, ../includes/Template/Betterdocs-Category-Box/Layout_Default.php:4, ../includes/Template/Betterdocs-Category-Grid/Layout_Default.php:4, ../includes/Template/Content-Ticker/default.php:3, ../includes/Template/Eicon-Woocommerce/default.php:4, ../includes/Template/Post-Grid/default.php:4, ../includes/Template/Post-Timeline/default.php:3
1307
  msgid "Default"
1308
  msgstr ""
1309
 
1359
  msgid "Custom Styles"
1360
  msgstr ""
1361
 
1362
+ #: ../includes/Elements/Caldera_Forms.php:998, ../includes/Elements/Contact_Form_7.php:1025, ../includes/Elements/Feature_List.php:616, ../includes/Elements/FluentForm.php:964, ../includes/Elements/GravityForms.php:1268, ../includes/Elements/GravityForms.php:1464, ../includes/Elements/NinjaForms.php:1045, ../includes/Elements/Sticky_Video.php:567, ../includes/Elements/WpForms.php:999
1363
  msgid "Border Width"
1364
  msgstr ""
1365
 
1443
  msgid "<strong>Contact Form 7</strong> is not installed/activated on your site. Please install and activate <strong>Contact Form 7</strong> first."
1444
  msgstr ""
1445
 
1446
+ #: ../includes/Elements/Contact_Form_7.php:313, ../includes/Elements/Contact_Form_7.php:1636, ../includes/Elements/Cta_Box.php:727, ../includes/Elements/Cta_Box.php:797, ../includes/Elements/Cta_Box.php:917, ../includes/Elements/Cta_Box.php:969, ../includes/Elements/Dual_Color_Header.php:742, ../includes/Elements/Dual_Color_Header.php:822, ../includes/Elements/Event_Calendar.php:627, ../includes/Elements/Event_Calendar.php:759, ../includes/Elements/Event_Calendar.php:826, ../includes/Elements/Event_Calendar.php:880, ../includes/Elements/Event_Calendar.php:992, ../includes/Elements/Event_Calendar.php:1084, ../includes/Elements/Event_Calendar.php:1182, ../includes/Elements/Event_Calendar.php:1548, ../includes/Elements/Event_Calendar.php:1657, ../includes/Elements/Facebook_Feed.php:477, ../includes/Elements/Facebook_Feed.php:490, ../includes/Elements/Facebook_Feed.php:565, ../includes/Elements/Facebook_Feed.php:578, ../includes/Elements/Facebook_Feed.php:663, ../includes/Elements/Facebook_Feed.php:676, ../includes/Elements/Facebook_Feed.php:747, ../includes/Elements/Facebook_Feed.php:785, ../includes/Elements/Facebook_Feed.php:825, ../includes/Elements/Fancy_Text.php:438, ../includes/Elements/Filterable_Gallery.php:2053, ../includes/Elements/Filterable_Gallery.php:2272, ../includes/Elements/Flip_Box.php:1371, ../includes/Elements/Flip_Box.php:1429, ../includes/Elements/FluentForm.php:1853, ../includes/Elements/FluentForm.php:1878, ../includes/Elements/FluentForm.php:1943, ../includes/Elements/FluentForm.php:2006, ../includes/Elements/Formstack.php:638, ../includes/Elements/Formstack.php:1713, ../includes/Elements/Formstack.php:1738, ../includes/Elements/Formstack.php:1802, ../includes/Elements/Formstack.php:1867, ../includes/Elements/Formstack.php:1922, ../includes/Elements/Formstack.php:2005, ../includes/Elements/Post_Grid.php:351, ../includes/Elements/Pricing_Table.php:1919, ../includes/Elements/Pricing_Table.php:1988, ../includes/Elements/Product_Grid.php:1475, ../includes/Elements/Product_Grid.php:1489, ../includes/Elements/Product_Grid.php:1543, ../includes/Elements/Product_Grid.php:1556, ../includes/Elements/Product_Grid.php:2790, ../includes/Elements/Product_Grid.php:2847, ../includes/Elements/Progress_Bar.php:345, ../includes/Elements/Team_Member.php:745, ../includes/Elements/Team_Member.php:822, ../includes/Elements/Twitter_Feed.php:378, ../includes/Elements/Twitter_Feed.php:630, ../includes/Elements/Woo_Checkout.php:1769, ../includes/Elements/Woo_Checkout.php:1813, ../includes/Elements/Woo_Checkout.php:1857, ../includes/Traits/Controls.php:1197, ../includes/Traits/Controls.php:1251, ../includes/Traits/Woo_Product_Comparable.php:1372, ../includes/Traits/Woo_Product_Comparable.php:1651, ../includes/Traits/Woo_Product_Comparable.php:1700
1447
  msgid "Background"
1448
  msgstr ""
1449
 
1491
  msgid "After Submit Feedback"
1492
  msgstr ""
1493
 
1494
+ #: ../includes/Elements/Contact_Form_7.php:1658, ../includes/Elements/Dual_Color_Header.php:730, ../includes/Elements/Dual_Color_Header.php:810, ../includes/Elements/Flip_Box.php:870, ../includes/Elements/Info_Box.php:583, ../includes/Elements/Info_Box.php:638, ../includes/Elements/Info_Box.php:806, ../includes/Elements/Info_Box.php:886, ../includes/Elements/Info_Box.php:1022, ../includes/Elements/Info_Box.php:1117, ../includes/Elements/Post_Grid.php:323, ../includes/Elements/Product_Grid.php:1432, ../includes/Traits/Woo_Product_Comparable.php:1617
1495
  msgid "Radius"
1496
  msgstr ""
1497
 
1503
  msgid "Template Layout"
1504
  msgstr ""
1505
 
1506
+ #: ../includes/Elements/Content_Ticker.php:91, ../includes/Elements/Product_Grid.php:334, ../includes/Elements/Progress_Bar.php:160, ../includes/Traits/Controls.php:30
1507
  msgid "Dynamic"
1508
  msgstr ""
1509
 
1591
  msgid "Arrows"
1592
  msgstr ""
1593
 
1594
+ #: ../includes/Elements/Content_Ticker.php:329, ../includes/Elements/Image_Accordion.php:82
1595
  msgid "Direction"
1596
  msgstr ""
1597
 
1731
  msgid "Separator Style"
1732
  msgstr ""
1733
 
1734
+ #: ../includes/Elements/Countdown.php:296, ../includes/Elements/Feature_List.php:432, ../includes/Elements/GravityForms.php:1017, ../includes/Elements/Sticky_Video.php:553, ../includes/Extensions/Table_of_Content.php:1032
1735
  msgid "Solid"
1736
  msgstr ""
1737
 
1738
+ #: ../includes/Elements/Countdown.php:297, ../includes/Elements/Feature_List.php:434, ../includes/Elements/GravityForms.php:1019, ../includes/Elements/Sticky_Video.php:555, ../includes/Extensions/Table_of_Content.php:1034
1739
  msgid "Dotted"
1740
  msgstr ""
1741
 
1747
  msgid "Position Left"
1748
  msgstr ""
1749
 
1750
+ #: ../includes/Elements/Countdown.php:361, ../includes/Elements/Filterable_Gallery.php:2251
1751
  msgid "Separator Color"
1752
  msgstr ""
1753
 
1811
  msgid "Space Below Container"
1812
  msgstr ""
1813
 
1814
+ #: ../includes/Elements/Countdown.php:648, ../includes/Elements/Dual_Color_Header.php:437, ../includes/Elements/Facebook_Feed.php:853, ../includes/Elements/Flip_Box.php:1160, ../includes/Elements/Image_Accordion.php:479, ../includes/Elements/Info_Box.php:1329, ../includes/Elements/Product_Grid.php:1120, ../includes/Elements/Team_Member.php:536, ../includes/Elements/Twitter_Feed.php:655
1815
  msgid "Color &amp; Typography"
1816
  msgstr ""
1817
 
1839
  msgid "Expire Message"
1840
  msgstr ""
1841
 
1842
+ #: ../includes/Elements/Countdown.php:1052, ../includes/Elements/Cta_Box.php:510, ../includes/Elements/Dual_Color_Header.php:445, ../includes/Elements/Flip_Box.php:1176, ../includes/Elements/Flip_Box.php:1244, ../includes/Elements/Info_Box.php:1343, ../includes/Elements/Post_Grid.php:564, ../includes/Elements/Post_Timeline.php:300, ../includes/Elements/Pricing_Table.php:880, ../includes/Elements/Twitter_Feed.php:663
1843
  msgid "Title Style"
1844
  msgstr ""
1845
 
1846
+ #: ../includes/Elements/Countdown.php:1061, ../includes/Elements/Event_Calendar.php:1367, ../includes/Elements/FluentForm.php:1807, ../includes/Elements/Formstack.php:1633, ../includes/Elements/Info_Box.php:1453, ../includes/Elements/Post_Grid.php:573, ../includes/Elements/Post_Timeline.php:309, ../includes/Elements/Product_Grid.php:2337, ../includes/Elements/Product_Grid.php:2687, ../includes/Elements/Progress_Bar.php:690, ../includes/Elements/Twitter_Feed.php:567, ../includes/Elements/Woo_Checkout.php:2165, ../includes/Traits/Woo_Product_Comparable.php:1007, ../includes/Traits/Woo_Product_Comparable.php:1238
1847
  msgid "Title Color"
1848
  msgstr ""
1849
 
1875
  msgid "Link URL"
1876
  msgstr ""
1877
 
1878
+ #: ../includes/Elements/Creative_Button.php:158, ../includes/Elements/Filterable_Gallery.php:2583, ../includes/Elements/Info_Box.php:469, ../includes/Elements/Pricing_Table.php:557
1879
  msgid "Icon Spacing"
1880
  msgstr ""
1881
 
1975
  msgid "Color Style"
1976
  msgstr ""
1977
 
1978
+ #: ../includes/Elements/Cta_Box.php:123, ../includes/Elements/Cta_Box.php:325, ../includes/Elements/Image_Accordion.php:185
1979
  msgid "Background Image"
1980
  msgstr ""
1981
 
2071
  msgid "Secondary Button Style"
2072
  msgstr ""
2073
 
2074
+ #: ../includes/Elements/Cta_Box.php:1011, ../includes/Elements/Dual_Color_Header.php:385, ../includes/Elements/Feature_List.php:106, ../includes/Elements/Flip_Box.php:914, ../includes/Elements/Flip_Box.php:933, ../includes/Elements/Flip_Box.php:1046, ../includes/Elements/Info_Box.php:924
2075
  msgid "Icon Style"
2076
  msgstr ""
2077
 
2079
  msgid "Font Size"
2080
  msgstr ""
2081
 
2082
+ #: ../includes/Elements/Data_Table.php:74, ../includes/Elements/Event_Calendar.php:1206, ../includes/Elements/Pricing_Table.php:872, ../includes/Traits/Woo_Product_Comparable.php:1077
2083
  msgid "Header"
2084
  msgstr ""
2085
 
2151
  msgid "Cell Text"
2152
  msgstr ""
2153
 
2154
+ #: ../includes/Elements/Data_Table.php:364, ../includes/Elements/Event_Calendar.php:158, ../includes/Elements/Feature_List.php:202, ../includes/Elements/Filterable_Gallery.php:302, ../includes/Elements/Flip_Box.php:633, ../includes/Elements/Flip_Box.php:658, ../includes/Elements/Sticky_Video.php:158, ../includes/Elements/Sticky_Video.php:173, ../includes/Elements/Sticky_Video.php:188, ../includes/Elements/Sticky_Video.php:233, ../includes/Elements/Team_Member.php:179
2155
  msgid "Link"
2156
  msgstr ""
2157
 
2163
  msgid "Header Border Radius"
2164
  msgstr ""
2165
 
2166
+ #: ../includes/Elements/Data_Table.php:723, ../includes/Elements/Filterable_Gallery.php:2107
2167
  msgid "Icon Space"
2168
  msgstr ""
2169
 
2195
  msgid "Background Color (Even Row)"
2196
  msgstr ""
2197
 
2198
+ #: ../includes/Elements/Data_Table.php:990, ../includes/Elements/Filterable_Gallery.php:1293, ../includes/Elements/Filterable_Gallery.php:1676, ../includes/Elements/Flip_Box.php:363, ../includes/Elements/Flip_Box.php:592, ../includes/Elements/Info_Box.php:298, ../includes/Elements/Pricing_Table.php:815, ../includes/Elements/Tooltip.php:367
2199
  msgid "Content Alignment"
2200
  msgstr ""
2201
 
2211
  msgid "If enabled, table header will be automatically responsive for mobile."
2212
  msgstr ""
2213
 
2214
+ #: ../includes/Elements/Dual_Color_Header.php:81
2215
  msgid "Icon on top"
2216
  msgstr ""
2217
 
2218
+ #: ../includes/Elements/Dual_Color_Header.php:82
2219
  msgid "Icon &amp; sub-text on top"
2220
  msgstr ""
2221
 
2222
+ #: ../includes/Elements/Dual_Color_Header.php:83
2223
  msgid "Sub-text on top"
2224
  msgstr ""
2225
 
2226
+ #: ../includes/Elements/Dual_Color_Header.php:102
2227
  msgid "Show Separator"
2228
  msgstr ""
2229
 
2230
+ #: ../includes/Elements/Dual_Color_Header.php:133, ../includes/Traits/Controls.php:772
2231
  msgid "Title Tag"
2232
  msgstr ""
2233
 
2234
+ #: ../includes/Elements/Dual_Color_Header.php:153
2235
  msgid "Title ( First Part )"
2236
  msgstr ""
2237
 
2238
+ #: ../includes/Elements/Dual_Color_Header.php:156
2239
  msgid "Dual Heading"
2240
  msgstr ""
2241
 
2242
+ #: ../includes/Elements/Dual_Color_Header.php:164
2243
  msgid "Title ( Last Part )"
2244
  msgstr ""
2245
 
2246
+ #: ../includes/Elements/Dual_Color_Header.php:167
2247
  msgid "Example"
2248
  msgstr ""
2249
 
2250
+ #: ../includes/Elements/Dual_Color_Header.php:175
2251
  msgid "Sub Text"
2252
  msgstr ""
2253
 
2254
+ #: ../includes/Elements/Dual_Color_Header.php:178
2255
  msgid "Insert a meaningful line to evaluate the headline."
2256
  msgstr ""
2257
 
2258
+ #: ../includes/Elements/Dual_Color_Header.php:244, ../includes/Elements/Dual_Color_Header.php:569, ../includes/Elements/Filterable_Gallery.php:2223, ../includes/Extensions/Table_of_Content.php:1019
2259
  msgid "Separator"
2260
  msgstr ""
2261
 
2262
+ #: ../includes/Elements/Dual_Color_Header.php:255
2263
  msgid "Separator Position"
2264
  msgstr ""
2265
 
2266
+ #: ../includes/Elements/Dual_Color_Header.php:259
2267
  msgid "Before Title"
2268
  msgstr ""
2269
 
2270
+ #: ../includes/Elements/Dual_Color_Header.php:260
2271
  msgid "After Title"
2272
  msgstr ""
2273
 
2274
+ #: ../includes/Elements/Dual_Color_Header.php:267
2275
  msgid "Separator Type"
2276
  msgstr ""
2277
 
2278
+ #: ../includes/Elements/Dual_Color_Header.php:271, ../includes/Elements/Progress_Bar.php:84
2279
  msgid "Line"
2280
  msgstr ""
2281
 
2282
+ #: ../includes/Elements/Dual_Color_Header.php:301
2283
  msgid "Dual Heading Style"
2284
  msgstr ""
2285
 
2286
+ #: ../includes/Elements/Dual_Color_Header.php:453
2287
  msgid "Main Color"
2288
  msgstr ""
2289
 
2290
+ #: ../includes/Elements/Dual_Color_Header.php:465
2291
  msgid "Dual Color"
2292
  msgstr ""
2293
 
2294
+ #: ../includes/Elements/Dual_Color_Header.php:473, ../includes/Elements/Fancy_Text.php:348
2295
  msgid "Gradient"
2296
  msgstr ""
2297
 
2298
+ #: ../includes/Elements/Dual_Color_Header.php:485, ../includes/Elements/Fancy_Text.php:363
2299
  msgid "Solid Color"
2300
  msgstr ""
2301
 
2302
+ #: ../includes/Elements/Dual_Color_Header.php:533
2303
  msgid "Sub-title Style "
2304
  msgstr ""
2305
 
2306
+ #: ../includes/Elements/Dual_Color_Header.php:583
2307
  msgid "Flex Start"
2308
  msgstr ""
2309
 
2310
+ #: ../includes/Elements/Dual_Color_Header.php:591
2311
  msgid "Flex End"
2312
  msgstr ""
2313
 
2314
+ #: ../includes/Elements/Dual_Color_Header.php:605
2315
  msgid "Distance Between Lines"
2316
  msgstr ""
2317
 
2318
+ #: ../includes/Elements/Dual_Color_Header.php:670
2319
  msgid "Left Line"
2320
  msgstr ""
2321
 
2322
+ #: ../includes/Elements/Dual_Color_Header.php:752
2323
  msgid "Right Line"
2324
  msgstr ""
2325
 
2347
  msgid "The Events Calendar"
2348
  msgstr ""
2349
 
2350
+ #: ../includes/Elements/Event_Calendar.php:124, ../includes/Elements/Progress_Bar.php:111, ../includes/Elements/Woo_Checkout.php:129
2351
  msgid "Only Available in Pro Version!"
2352
  msgstr ""
2353
 
2415
  msgid "Get Events"
2416
  msgstr ""
2417
 
2418
+ #: ../includes/Elements/Event_Calendar.php:376, ../includes/Elements/Filterable_Gallery.php:2759
2419
  msgid "All"
2420
  msgstr ""
2421
 
2547
  msgid "Content Color"
2548
  msgstr ""
2549
 
2550
+ #: ../includes/Elements/Event_Calendar.php:1475, ../includes/Elements/Product_Grid.php:2718, ../includes/Traits/Woo_Product_Comparable.php:1325
2551
  msgid " Close Button"
2552
  msgstr ""
2553
 
2619
  msgid "Layout Settings"
2620
  msgstr ""
2621
 
2622
+ #: ../includes/Elements/Facebook_Feed.php:171, ../includes/Elements/Filterable_Gallery.php:175
2623
  msgid "Card"
2624
  msgstr ""
2625
 
2626
+ #: ../includes/Elements/Facebook_Feed.php:172, ../includes/Elements/Filterable_Gallery.php:174, ../includes/Traits/Controls.php:552
2627
  msgid "Overlay"
2628
  msgstr ""
2629
 
2630
+ #: ../includes/Elements/Facebook_Feed.php:181, ../includes/Elements/Filterable_Gallery.php:121, ../includes/Elements/Product_Grid.php:280, ../includes/Elements/Product_Grid.php:302, ../includes/Traits/Woo_Product_Comparable.php:842
2631
  msgid "Columns"
2632
  msgstr ""
2633
 
2647
  msgid "4"
2648
  msgstr ""
2649
 
2650
+ #: ../includes/Elements/Facebook_Feed.php:189, ../includes/Elements/Filterable_Gallery.php:518, ../includes/Elements/Product_Grid.php:288, ../includes/Elements/Testimonial.php:198, ../includes/Traits/Controls.php:520
2651
  msgid "5"
2652
  msgstr ""
2653
 
2707
  msgid "Show Load More"
2708
  msgstr ""
2709
 
2710
+ #: ../includes/Elements/Facebook_Feed.php:392, ../includes/Elements/FluentForm.php:1098, ../includes/Elements/FluentForm.php:1696, ../includes/Elements/Formstack.php:650, ../includes/Elements/Login_Register.php:993, ../includes/Elements/Woo_Checkout.php:1960, ../includes/Elements/Woo_Checkout.php:2216, ../includes/Traits/Woo_Product_Comparable.php:237
2711
  msgid "Label"
2712
  msgstr ""
2713
 
2714
+ #: ../includes/Elements/Facebook_Feed.php:395, ../includes/Elements/Filterable_Gallery.php:692, ../includes/Elements/Product_Grid.php:599, ../includes/Elements/Product_Grid.php:632, ../includes/Traits/Controls.php:638
2715
  msgid "Load More"
2716
  msgstr ""
2717
 
2723
  msgid "Space Between Items"
2724
  msgstr ""
2725
 
2726
+ #: ../includes/Elements/Facebook_Feed.php:515, ../includes/Elements/Filterable_Gallery.php:1322, ../includes/Elements/Post_Grid.php:315
2727
  msgid "Thumbnail Style"
2728
  msgstr ""
2729
 
2771
  msgid "Likes & Comments"
2772
  msgstr ""
2773
 
2774
+ #: ../includes/Elements/Facebook_Feed.php:1135, ../includes/Elements/Image_Accordion.php:391, ../includes/Elements/Post_Timeline.php:101, ../includes/Elements/Team_Member.php:343
2775
  msgid "Overlay Color"
2776
  msgstr ""
2777
 
2919
  msgid "Suffix Text Color"
2920
  msgstr ""
2921
 
2922
+ #: ../includes/Elements/Feature_List.php:108
2923
  msgid "ON"
2924
  msgstr ""
2925
 
2926
+ #: ../includes/Elements/Feature_List.php:109
2927
  msgid "OFF"
2928
  msgstr ""
2929
 
2930
+ #: ../includes/Elements/Feature_List.php:136
2931
  msgid "Icon Background"
2932
  msgstr ""
2933
 
2934
+ #: ../includes/Elements/Feature_List.php:151
2935
  msgid "Icon Box Background"
2936
  msgstr ""
2937
 
2938
+ #: ../includes/Elements/Feature_List.php:205
2939
  msgid "https://your-link.com"
2940
  msgstr ""
2941
 
2942
+ #: ../includes/Elements/Feature_List.php:213
2943
  msgid "Feature Item"
2944
  msgstr ""
2945
 
2946
+ #: ../includes/Elements/Feature_List.php:222
2947
  msgid "Feature Item 1"
2948
  msgstr ""
2949
 
2950
+ #: ../includes/Elements/Feature_List.php:223, ../includes/Elements/Feature_List.php:231, ../includes/Elements/Feature_List.php:239
2951
  msgid "Lorem ipsum dolor sit amet, consectetur adipisi cing elit, sed do eiusmod tempor incididunt ut abore et dolore magna"
2952
  msgstr ""
2953
 
2954
+ #: ../includes/Elements/Feature_List.php:230
2955
  msgid "Feature Item 2"
2956
  msgstr ""
2957
 
2958
+ #: ../includes/Elements/Feature_List.php:238
2959
  msgid "Feature Item 3"
2960
  msgstr ""
2961
 
2962
+ #: ../includes/Elements/Feature_List.php:250, ../includes/Elements/Progress_Bar.php:135
2963
  msgid "Title HTML Tag"
2964
  msgstr ""
2965
 
2966
+ #: ../includes/Elements/Feature_List.php:271
2967
  msgid "Icon Shape"
2968
  msgstr ""
2969
 
2970
+ #: ../includes/Elements/Feature_List.php:276, ../includes/Elements/Flip_Box.php:869, ../includes/Elements/Info_Box.php:582, ../includes/Elements/Info_Box.php:637, ../includes/Elements/Info_Box.php:805, ../includes/Elements/Info_Box.php:885, ../includes/Elements/Info_Box.php:1021, ../includes/Elements/Info_Box.php:1116, ../includes/Elements/Progress_Bar.php:86
2971
  msgid "Circle"
2972
  msgstr ""
2973
 
2974
+ #: ../includes/Elements/Feature_List.php:277, ../includes/Elements/Info_Box.php:581, ../includes/Elements/Info_Box.php:636, ../includes/Elements/Info_Box.php:807, ../includes/Elements/Info_Box.php:887, ../includes/Elements/Info_Box.php:1023, ../includes/Elements/Info_Box.php:1118
2975
  msgid "Square"
2976
  msgstr ""
2977
 
2978
+ #: ../includes/Elements/Feature_List.php:278
2979
  msgid "Rhombus"
2980
  msgstr ""
2981
 
2982
+ #: ../includes/Elements/Feature_List.php:286
2983
  msgid "Shape View"
2984
  msgstr ""
2985
 
2986
+ #: ../includes/Elements/Feature_List.php:291
2987
  msgid "Framed"
2988
  msgstr ""
2989
 
2990
+ #: ../includes/Elements/Feature_List.php:308, ../includes/Elements/Flip_Box.php:333, ../includes/Elements/Flip_Box.php:562, ../includes/Elements/Image_Accordion.php:132, ../includes/Elements/Info_Box.php:129, ../includes/Elements/Login_Register.php:710, ../includes/Elements/Pricing_Table.php:382, ../includes/Elements/Tooltip.php:285, ../includes/Elements/Twitter_Feed.php:341, ../includes/Extensions/Reading_Progress.php:115, ../includes/Traits/Controls.php:1649
2991
  msgid "Top"
2992
  msgstr ""
2993
 
2994
+ #: ../includes/Elements/Feature_List.php:328
2995
  msgid "Arrow Indicator Position"
2996
  msgstr ""
2997
 
2998
+ #: ../includes/Elements/Feature_List.php:358
2999
  msgid "Show Connector"
3000
  msgstr ""
3001
 
3002
+ #: ../includes/Elements/Feature_List.php:386, ../includes/Elements/Login_Register.php:3141, ../includes/Elements/Login_Register.php:3440
3003
  msgid "Space Between"
3004
  msgstr ""
3005
 
3006
+ #: ../includes/Elements/Feature_List.php:408
3007
  msgid "Connector Type"
3008
  msgstr ""
3009
 
3010
+ #: ../includes/Elements/Feature_List.php:413, ../includes/Elements/Testimonial.php:253
3011
  msgid "Classic"
3012
  msgstr ""
3013
 
3014
+ #: ../includes/Elements/Feature_List.php:414
3015
  msgid "Modern"
3016
  msgstr ""
3017
 
3018
+ #: ../includes/Elements/Feature_List.php:427
3019
  msgid "Connector Styles"
3020
  msgstr ""
3021
 
3022
+ #: ../includes/Elements/Feature_List.php:433, ../includes/Elements/GravityForms.php:1020, ../includes/Elements/Sticky_Video.php:556, ../includes/Extensions/Table_of_Content.php:1033
3023
  msgid "Dashed"
3024
  msgstr ""
3025
 
3026
+ #: ../includes/Elements/Feature_List.php:449
3027
  msgid "Connector Color"
3028
  msgstr ""
3029
 
3030
+ #: ../includes/Elements/Feature_List.php:469
3031
  msgid "Connector Width"
3032
  msgstr ""
3033
 
3034
+ #: ../includes/Elements/Feature_List.php:526
3035
  msgid "Secondary Color"
3036
  msgstr ""
3037
 
3038
+ #: ../includes/Elements/Feature_List.php:743
3039
  msgid "Title Bottom Space"
3040
  msgstr ""
3041
 
3042
+ #: ../includes/Elements/Filterable_Gallery.php:93, ../includes/Elements/Flip_Box.php:76, ../includes/Elements/Pricing_Table.php:77, ../includes/Traits/Core.php:45, ../includes/templates/admin/elements.php:565, ../includes/templates/admin/elements.php:548, ../includes/templates/admin/elements.php:545, ../includes/templates/admin/extensions.php:85
3043
  msgid "Settings"
3044
  msgstr ""
3045
 
3046
+ #: ../includes/Elements/Filterable_Gallery.php:100
3047
  msgid "Items to show"
3048
  msgstr ""
3049
 
3050
+ #: ../includes/Elements/Filterable_Gallery.php:111
3051
  msgid "Animation Duration (ms)"
3052
  msgstr ""
3053
 
3054
+ #: ../includes/Elements/Filterable_Gallery.php:142
3055
  msgid "Grid Style"
3056
  msgstr ""
3057
 
3058
+ #: ../includes/Elements/Filterable_Gallery.php:155
3059
  msgid "Image Height"
3060
  msgstr ""
3061
 
3062
+ #: ../includes/Elements/Filterable_Gallery.php:176
3063
  msgid "Search & Filter"
3064
  msgstr ""
3065
 
3066
+ #: ../includes/Elements/Filterable_Gallery.php:184
3067
  msgid "Hover Style"
3068
  msgstr ""
3069
 
3070
+ #: ../includes/Elements/Filterable_Gallery.php:189
3071
  msgid "Slide In Up"
3072
  msgstr ""
3073
 
3074
+ #: ../includes/Elements/Filterable_Gallery.php:190, ../includes/Elements/Flip_Box.php:94
3075
  msgid "Fade In"
3076
  msgstr ""
3077
 
3078
+ #: ../includes/Elements/Filterable_Gallery.php:191
3079
  msgid "Zoom In "
3080
  msgstr ""
3081
 
3082
+ #: ../includes/Elements/Filterable_Gallery.php:202
3083
  msgid "Hover Transition"
3084
  msgstr ""
3085
 
3086
+ #: ../includes/Elements/Filterable_Gallery.php:224
3087
  msgid "Link to"
3088
  msgstr ""
3089
 
3090
+ #: ../includes/Elements/Filterable_Gallery.php:229
3091
  msgid "Media"
3092
  msgstr ""
3093
 
3094
+ #: ../includes/Elements/Filterable_Gallery.php:230, ../includes/Elements/Product_Grid.php:1669, ../includes/Traits/Woo_Product_Comparable.php:868
3095
  msgid "Buttons"
3096
  msgstr ""
3097
 
3098
+ #: ../includes/Elements/Filterable_Gallery.php:241
3099
  msgid "Lightbox Icon"
3100
  msgstr ""
3101
 
3102
+ #: ../includes/Elements/Filterable_Gallery.php:257
3103
  msgid "Link Icon"
3104
  msgstr ""
3105
 
3106
+ #: ../includes/Elements/Filterable_Gallery.php:273
3107
  msgid "Show Popup Caption"
3108
  msgstr ""
3109
 
3110
+ #: ../includes/Elements/Filterable_Gallery.php:285
3111
  msgid "Full Image Clickable?"
3112
  msgstr ""
3113
 
3114
+ #: ../includes/Elements/Filterable_Gallery.php:297
3115
  msgid "Full Image Action"
3116
  msgstr ""
3117
 
3118
+ #: ../includes/Elements/Filterable_Gallery.php:301
3119
  msgid "Lightbox"
3120
  msgstr ""
3121
 
3122
+ #: ../includes/Elements/Filterable_Gallery.php:318
3123
  msgid "Filterable Controls"
3124
  msgstr ""
3125
 
3126
+ #: ../includes/Elements/Filterable_Gallery.php:325
3127
  msgid "Enable Filter"
3128
  msgstr ""
3129
 
3130
+ #: ../includes/Elements/Filterable_Gallery.php:334
3131
  msgid "Gallery All Label"
3132
  msgstr ""
3133
 
3134
+ #: ../includes/Elements/Filterable_Gallery.php:347
3135
  msgid "All label icon"
3136
  msgstr ""
3137
 
3138
+ #: ../includes/Elements/Filterable_Gallery.php:363, ../includes/Elements/Info_Box.php:229
3139
  msgid "Select Title Tag"
3140
  msgstr ""
3141
 
3142
+ #: ../includes/Elements/Filterable_Gallery.php:391, ../includes/Elements/Pricing_Table.php:308
3143
  msgid "List Item"
3144
  msgstr ""
3145
 
3146
+ #: ../includes/Elements/Filterable_Gallery.php:395
3147
  msgid "Gallery Item"
3148
  msgstr ""
3149
 
3150
+ #: ../includes/Elements/Filterable_Gallery.php:410
3151
  msgid "Gallery Items"
3152
  msgstr ""
3153
 
3154
+ #: ../includes/Elements/Filterable_Gallery.php:417
3155
  msgid "Enable Photo Gallery"
3156
  msgstr ""
3157
 
3158
+ #: ../includes/Elements/Filterable_Gallery.php:429
3159
  msgid "Video Gallery?"
3160
  msgstr ""
3161
 
3162
+ #: ../includes/Elements/Filterable_Gallery.php:441
3163
  msgid "Video Link"
3164
  msgstr ""
3165
 
3166
+ #: ../includes/Elements/Filterable_Gallery.php:454
3167
  msgid "Control Name"
3168
  msgstr ""
3169
 
3170
+ #: ../includes/Elements/Filterable_Gallery.php:459
3171
  msgid "Use the gallery control name from Control Settings. Separate multiple items with comma (e.g. <strong>Gallery Item, Gallery Item 2</strong>)"
3172
  msgstr ""
3173
 
3174
+ #: ../includes/Elements/Filterable_Gallery.php:466
3175
  msgid "Item Name"
3176
  msgstr ""
3177
 
3178
+ #: ../includes/Elements/Filterable_Gallery.php:470
3179
  msgid "Gallery item name"
3180
  msgstr ""
3181
 
3182
+ #: ../includes/Elements/Filterable_Gallery.php:478
3183
  msgid "Enable Price ?"
3184
  msgstr ""
3185
 
3186
+ #: ../includes/Elements/Filterable_Gallery.php:490
3187
  msgid "Item Price"
3188
  msgstr ""
3189
 
3190
+ #: ../includes/Elements/Filterable_Gallery.php:493
3191
  msgid "$20.00"
3192
  msgstr ""
3193
 
3194
+ #: ../includes/Elements/Filterable_Gallery.php:503
3195
  msgid "Enable Ratings ?"
3196
  msgstr ""
3197
 
3198
+ #: ../includes/Elements/Filterable_Gallery.php:515
3199
  msgid "Item Ratings"
3200
  msgstr ""
3201
 
3202
+ #: ../includes/Elements/Filterable_Gallery.php:528
3203
  msgid "Enable Category ?"
3204
  msgstr ""
3205
 
3206
+ #: ../includes/Elements/Filterable_Gallery.php:540
3207
  msgid "Item Category"
3208
  msgstr ""
3209
 
3210
+ #: ../includes/Elements/Filterable_Gallery.php:543, ../includes/Traits/Admin.php:21, ../includes/Traits/Admin.php:22, ../includes/Traits/Elements.php:35
3211
  msgid "Essential Addons"
3212
  msgstr ""
3213
 
3214
+ #: ../includes/Elements/Filterable_Gallery.php:553
3215
  msgid "Item Content"
3216
  msgstr ""
3217
 
3218
+ #: ../includes/Elements/Filterable_Gallery.php:556
3219
  msgid "Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident."
3220
  msgstr ""
3221
 
3222
+ #: ../includes/Elements/Filterable_Gallery.php:574
3223
  msgid "Video play icon"
3224
  msgstr ""
3225
 
3226
+ #: ../includes/Elements/Filterable_Gallery.php:588
3227
  msgid "Gallery Lightbox Button?"
3228
  msgstr ""
3229
 
3230
+ #: ../includes/Elements/Filterable_Gallery.php:603
3231
  msgid "Gallery Link Button?"
3232
  msgstr ""
3233
 
3234
+ #: ../includes/Elements/Filterable_Gallery.php:659, ../includes/Elements/Filterable_Gallery.php:666, ../includes/Elements/Filterable_Gallery.php:2440, ../includes/Traits/Controls.php:1322
3235
  msgid "Load More Button"
3236
  msgstr ""
3237
 
3238
+ #: ../includes/Elements/Filterable_Gallery.php:676
3239
  msgid "Images Per Page"
3240
  msgstr ""
3241
 
3242
+ #: ../includes/Elements/Filterable_Gallery.php:702
3243
  msgid "No More Items Text"
3244
  msgstr ""
3245
 
3246
+ #: ../includes/Elements/Filterable_Gallery.php:705
3247
  msgid "No more items!"
3248
  msgstr ""
3249
 
3250
+ #: ../includes/Elements/Filterable_Gallery.php:719
3251
  msgid "Extra Small"
3252
  msgstr ""
3253
 
3254
+ #: ../includes/Elements/Filterable_Gallery.php:720
3255
  msgid "Small"
3256
  msgstr ""
3257
 
3258
+ #: ../includes/Elements/Filterable_Gallery.php:721
3259
  msgid "Medium"
3260
  msgstr ""
3261
 
3262
+ #: ../includes/Elements/Filterable_Gallery.php:722
3263
  msgid "Large"
3264
  msgstr ""
3265
 
3266
+ #: ../includes/Elements/Filterable_Gallery.php:723
3267
  msgid "Extra Large"
3268
  msgstr ""
3269
 
3270
+ #: ../includes/Elements/Filterable_Gallery.php:735, ../includes/Elements/Filterable_Gallery.php:2629, ../includes/Elements/Flip_Box.php:695, ../includes/Elements/Pricing_Table.php:528
3271
  msgid "Button Icon"
3272
  msgstr ""
3273
 
3274
+ #: ../includes/Elements/Filterable_Gallery.php:913
3275
  msgid "Control Style"
3276
  msgstr ""
3277
 
3278
+ #: ../includes/Elements/Filterable_Gallery.php:1097
3279
  msgid "Item Style"
3280
  msgstr ""
3281
 
3282
+ #: ../includes/Elements/Filterable_Gallery.php:1172, ../includes/Elements/Filterable_Gallery.php:1362
3283
  msgid "Item Hover Style"
3284
  msgstr ""
3285
 
3286
+ #: ../includes/Elements/Filterable_Gallery.php:1207, ../includes/Elements/Filterable_Gallery.php:1569, ../includes/Elements/Login_Register.php:2298, ../includes/Elements/Post_Timeline.php:348
3287
  msgid "Title Typography"
3288
  msgstr ""
3289
 
3290
+ #: ../includes/Elements/Filterable_Gallery.php:1247, ../includes/Elements/Filterable_Gallery.php:1629
3291
  msgid "Content Typography"
3292
  msgstr ""
3293
 
3294
+ #: ../includes/Elements/Filterable_Gallery.php:1392
3295
  msgid "Video item hover"
3296
  msgstr ""
3297
 
3298
+ #: ../includes/Elements/Filterable_Gallery.php:1415
3299
  msgid "Background transition"
3300
  msgstr ""
3301
 
3302
+ #: ../includes/Elements/Filterable_Gallery.php:1435
3303
  msgid "Icon size"
3304
  msgstr ""
3305
 
3306
+ #: ../includes/Elements/Filterable_Gallery.php:1458
3307
  msgid "Hover icon scale"
3308
  msgstr ""
3309
 
3310
+ #: ../includes/Elements/Filterable_Gallery.php:1470
3311
  msgid "Icon transition"
3312
  msgstr ""
3313
 
3314
+ #: ../includes/Elements/Filterable_Gallery.php:1497
3315
  msgid "Item Card Style"
3316
  msgstr ""
3317
 
3318
+ #: ../includes/Elements/Filterable_Gallery.php:1709
3319
  msgid "Icons Style"
3320
  msgstr ""
3321
 
3322
+ #: ../includes/Elements/Filterable_Gallery.php:1800
3323
  msgid "Icon Font Size"
3324
  msgstr ""
3325
 
3326
+ #: ../includes/Elements/Filterable_Gallery.php:1941, ../includes/Traits/Woo_Product_Comparable.php:1489
3327
  msgid "Price Style"
3328
  msgstr ""
3329
 
3330
+ #: ../includes/Elements/Filterable_Gallery.php:1975
3331
  msgid "Ratings Style"
3332
  msgstr ""
3333
 
3334
+ #: ../includes/Elements/Filterable_Gallery.php:1997
3335
  msgid "Star Color"
3336
  msgstr ""
3337
 
3338
+ #: ../includes/Elements/Filterable_Gallery.php:2020
3339
  msgid "Category Style"
3340
  msgstr ""
3341
 
3342
+ #: ../includes/Elements/Filterable_Gallery.php:2077
3343
  msgid "Search Form Style"
3344
  msgstr ""
3345
 
3346
+ #: ../includes/Elements/Filterable_Gallery.php:2088, ../includes/Elements/Login_Register.php:270
3347
  msgid "Controls"
3348
  msgstr ""
3349
 
3350
+ #: ../includes/Elements/Filterable_Gallery.php:2180
3351
  msgid "Controls Background"
3352
  msgstr ""
3353
 
3354
+ #: ../includes/Elements/Filterable_Gallery.php:2232
3355
  msgid "Separator Size"
3356
  msgstr ""
3357
 
3358
+ #: ../includes/Elements/Filterable_Gallery.php:2263, ../includes/Elements/Login_Register.php:1519, ../includes/Elements/Woo_Checkout.php:1564
3359
  msgid "Form"
3360
  msgstr ""
3361
 
3362
+ #: ../includes/Elements/Filterable_Gallery.php:2285
3363
  msgid "Search Gallery Item..."
3364
  msgstr ""
3365
 
3366
+ #: ../includes/Elements/Filterable_Gallery.php:2292, ../includes/Elements/Login_Register.php:2526, ../includes/Elements/Login_Register.php:2564
3367
  msgid "Placeholder Color"
3368
  msgstr ""
3369
 
3370
+ #: ../includes/Elements/Filterable_Gallery.php:2346
3371
  msgid "Dropdown"
3372
  msgstr ""
3373
 
3374
+ #: ../includes/Elements/Filterable_Gallery.php:2452, ../includes/Elements/Product_Grid.php:1935, ../includes/Elements/Product_Grid.php:2112, ../includes/Elements/Woo_Checkout.php:701, ../includes/Elements/Woo_Checkout.php:1014, ../includes/Elements/Woo_Checkout.php:1123, ../includes/Elements/Woo_Checkout.php:2529
3375
  msgid "Top Spacing"
3376
  msgstr ""
3377
 
3443
  msgid "Middle"
3444
  msgstr ""
3445
 
3446
+ #: ../includes/Elements/Flip_Box.php:341, ../includes/Elements/Flip_Box.php:570, ../includes/Elements/Image_Accordion.php:140, ../includes/Elements/Info_Box.php:137, ../includes/Elements/Pricing_Table.php:390, ../includes/Elements/Tooltip.php:286, ../includes/Elements/Twitter_Feed.php:349, ../includes/Extensions/Reading_Progress.php:116, ../includes/Traits/Controls.php:1653
3447
  msgid "Bottom"
3448
  msgstr ""
3449
 
3627
  msgid "Border Height"
3628
  msgstr ""
3629
 
3630
+ #: ../includes/Elements/GravityForms.php:1091, ../includes/Elements/Pricing_Table.php:194, ../includes/Elements/Pricing_Table.php:201, ../includes/Elements/Product_Grid.php:138, ../includes/Elements/Product_Grid.php:2349, ../includes/Elements/Woo_Checkout.php:216, ../includes/Traits/Woo_Product_Comparable.php:42, ../includes/Traits/Woo_Product_Comparable.php:81
3631
  msgid "Price"
3632
  msgstr ""
3633
 
3683
  msgid "Thank You Message"
3684
  msgstr ""
3685
 
3686
+ #: ../includes/Elements/Image_Accordion.php:68
3687
  msgid "Accordion Style"
3688
  msgstr ""
3689
 
3690
+ #: ../includes/Elements/Image_Accordion.php:73
3691
  msgid "On Hover"
3692
  msgstr ""
3693
 
3694
+ #: ../includes/Elements/Image_Accordion.php:74
3695
  msgid "On Click"
3696
  msgstr ""
3697
 
3698
+ #: ../includes/Elements/Image_Accordion.php:105, ../includes/Elements/Login_Register.php:2789, ../includes/Elements/Login_Register.php:2885
3699
  msgid "Horizontal Alignment"
3700
  msgstr ""
3701
 
3702
+ #: ../includes/Elements/Image_Accordion.php:128, ../includes/Elements/Login_Register.php:2768, ../includes/Elements/Login_Register.php:2864
3703
  msgid "Vertical Alignment"
3704
  msgstr ""
3705
 
3706
+ #: ../includes/Elements/Image_Accordion.php:174
3707
  msgid "Make it active?"
3708
  msgstr ""
3709
 
3710
+ #: ../includes/Elements/Image_Accordion.php:200
3711
  msgid "Accordion item title"
3712
  msgstr ""
3713
 
3714
+ #: ../includes/Elements/Image_Accordion.php:211
3715
  msgid "Accordion content goes here!"
3716
  msgstr ""
3717
 
3718
+ #: ../includes/Elements/Image_Accordion.php:218
3719
  msgid "Enable Title Link"
3720
  msgstr ""
3721
 
3722
+ #: ../includes/Elements/Image_Accordion.php:231
3723
  msgid "Title Link"
3724
  msgstr ""
3725
 
3726
+ #: ../includes/Elements/Image_Accordion.php:253
3727
  msgid "Image Accordion #1"
3728
  msgstr ""
3729
 
3730
+ #: ../includes/Elements/Image_Accordion.php:254, ../includes/Elements/Image_Accordion.php:261, ../includes/Elements/Image_Accordion.php:268, ../includes/Elements/Image_Accordion.php:275
3731
  msgid "Image Accordion Content Goes Here! Click edit button to change this text."
3732
  msgstr ""
3733
 
3734
+ #: ../includes/Elements/Image_Accordion.php:260
3735
  msgid "Image Accordion #2"
3736
  msgstr ""
3737
 
3738
+ #: ../includes/Elements/Image_Accordion.php:267
3739
  msgid "Image Accordion #3"
3740
  msgstr ""
3741
 
3742
+ #: ../includes/Elements/Image_Accordion.php:274
3743
  msgid "Image Accordion #4"
3744
  msgstr ""
3745
 
3746
+ #: ../includes/Elements/Image_Accordion.php:403
3747
  msgid "Hover Overlay Color"
3748
  msgstr ""
3749
 
3750
+ #: ../includes/Elements/Image_Accordion.php:422
3751
  msgid "Thumbnail"
3752
  msgstr ""
3753
 
4375
  msgid "Select the type of fields you want to show in the registration form"
4376
  msgstr ""
4377
 
4378
+ #: ../includes/Elements/Login_Register.php:986, ../includes/Traits/Woo_Product_Comparable.php:231
4379
  msgid "Type"
4380
  msgstr ""
4381
 
4534
  msgid "Container Box"
4535
  msgstr ""
4536
 
4537
+ #: ../includes/Elements/Login_Register.php:1509, ../includes/Traits/Woo_Product_Comparable.php:377
4538
  msgid "Container Box Shadow"
4539
  msgstr ""
4540
 
4650
  msgid "Form Labels"
4651
  msgstr ""
4652
 
4653
+ #: ../includes/Elements/Login_Register.php:2649, ../includes/Traits/Woo_Product_Comparable.php:813, ../includes/Traits/Woo_Product_Comparable.php:998, ../includes/Traits/Woo_Product_Comparable.php:1206
4654
  msgid "Colors"
4655
  msgstr ""
4656
 
4918
  msgid "Excerpt Alignment"
4919
  msgstr ""
4920
 
4921
+ #: ../includes/Elements/Post_Grid.php:683, ../includes/Elements/Post_Timeline.php:396, ../includes/Elements/Tooltip.php:189, ../includes/Elements/Tooltip.php:384
4922
  msgid "Justified"
4923
  msgstr ""
4924
 
5158
  msgid "Fall"
5159
  msgstr ""
5160
 
5161
+ #: ../includes/Elements/Pricing_Table.php:439, ../includes/Elements/Progress_Bar.php:219
5162
  msgid "Animation Duration"
5163
  msgstr ""
5164
 
5190
  msgid "Choose Plan"
5191
  msgstr ""
5192
 
5193
+ #: ../includes/Elements/Pricing_Table.php:592, ../includes/Elements/Tooltip.php:240
5194
  msgid "Button Link"
5195
  msgstr ""
5196
 
5278
  msgid "Refresh your browser after saving the padding value for see changes."
5279
  msgstr ""
5280
 
5281
+ #: ../includes/Elements/Pricing_Table.php:1571, ../includes/Elements/Tooltip.php:651
5282
  msgid "Arrow Size"
5283
  msgstr ""
5284
 
5318
  msgid "Product Title"
5319
  msgstr ""
5320
 
5321
+ #: ../includes/Elements/Product_Grid.php:139, ../includes/Elements/Product_Grid.php:2670, ../includes/Traits/Woo_Product_Comparable.php:45, ../includes/Traits/Woo_Product_Comparable.php:93
5322
  msgid "SKU"
5323
  msgstr ""
5324
 
5414
  msgid "Product Settings"
5415
  msgstr ""
5416
 
5417
+ #: ../includes/Elements/Product_Grid.php:333, ../includes/Elements/Product_Grid.php:646, ../includes/Traits/Woo_Product_Comparable.php:154
5418
  msgid "Products"
5419
  msgstr ""
5420
 
5422
  msgid "This option will only affect in <strong>Archive page of Elementor Theme Builder</strong> dynamically."
5423
  msgstr ""
5424
 
5425
+ #: ../includes/Elements/Product_Grid.php:356, ../includes/Elements/Woo_Checkout.php:92, ../includes/Traits/Woo_Product_Comparable.php:125
5426
  msgid "<strong>WooCommerce</strong> is not installed/activated on your site. Please install and activate <a href=\"plugin-install.php?s=woocommerce&tab=search&type=term\" target=\"_blank\">WooCommerce</a> first."
5427
  msgstr ""
5428
 
5470
  msgid "Expansion Indicator"
5471
  msgstr ""
5472
 
5473
+ #: ../includes/Elements/Product_Grid.php:499, ../includes/Traits/Woo_Product_Comparable.php:148
5474
  msgid "Show Product Compare?"
5475
  msgstr ""
5476
 
5658
  msgid "Cart Button"
5659
  msgstr ""
5660
 
5661
+ #: ../includes/Elements/Progress_Bar.php:85
5662
  msgid "Line Rainbow (Pro)"
5663
  msgstr ""
5664
 
5665
+ #: ../includes/Elements/Progress_Bar.php:87
5666
  msgid "Circle Fill (Pro)"
5667
  msgstr ""
5668
 
5669
+ #: ../includes/Elements/Progress_Bar.php:88
5670
  msgid "Half Circle"
5671
  msgstr ""
5672
 
5673
+ #: ../includes/Elements/Progress_Bar.php:89
5674
  msgid "Half Circle Fill (Pro)"
5675
  msgstr ""
5676
 
5677
+ #: ../includes/Elements/Progress_Bar.php:90
5678
  msgid "Box (Pro)"
5679
  msgstr ""
5680
 
5681
+ #: ../includes/Elements/Progress_Bar.php:144
5682
  msgid "div"
5683
  msgstr ""
5684
 
5685
+ #: ../includes/Elements/Progress_Bar.php:145
5686
  msgid "span"
5687
  msgstr ""
5688
 
5689
+ #: ../includes/Elements/Progress_Bar.php:146
5690
  msgid "p"
5691
  msgstr ""
5692
 
5693
+ #: ../includes/Elements/Progress_Bar.php:156
5694
  msgid "Counter Value Type"
5695
  msgstr ""
5696
 
5697
+ #: ../includes/Elements/Progress_Bar.php:159
5698
  msgid "Static"
5699
  msgstr ""
5700
 
5701
+ #: ../includes/Elements/Progress_Bar.php:169, ../includes/Elements/Progress_Bar.php:192
5702
  msgid "Counter Value"
5703
  msgstr ""
5704
 
5705
+ #: ../includes/Elements/Progress_Bar.php:209
5706
  msgid "Display Count"
5707
  msgstr ""
5708
 
5709
+ #: ../includes/Elements/Progress_Bar.php:240
5710
  msgid "Prefix Label"
5711
  msgstr ""
5712
 
5713
+ #: ../includes/Elements/Progress_Bar.php:254
5714
  msgid "Postfix Label"
5715
  msgstr ""
5716
 
5717
+ #: ../includes/Elements/Progress_Bar.php:257
5718
  msgid "Postfix"
5719
  msgstr ""
5720
 
5721
+ #: ../includes/Elements/Progress_Bar.php:425
5722
  msgid "Fill"
5723
  msgstr ""
5724
 
5725
+ #: ../includes/Elements/Progress_Bar.php:481
5726
  msgid "Show Stripe"
5727
  msgstr ""
5728
 
5729
+ #: ../includes/Elements/Progress_Bar.php:495
5730
  msgid "Stripe Animation"
5731
  msgstr ""
5732
 
5733
+ #: ../includes/Elements/Progress_Bar.php:498
5734
  msgid "Left To Right"
5735
  msgstr ""
5736
 
5737
+ #: ../includes/Elements/Progress_Bar.php:499
5738
  msgid "Right To Left"
5739
  msgstr ""
5740
 
5741
+ #: ../includes/Elements/Progress_Bar.php:500
5742
  msgid "Disabled"
5743
  msgstr ""
5744
 
5745
+ #: ../includes/Elements/Progress_Bar.php:591
5746
  msgid "Stroke Width"
5747
  msgstr ""
5748
 
5749
+ #: ../includes/Elements/Progress_Bar.php:616
5750
  msgid "Stroke Color"
5751
  msgstr ""
5752
 
5753
+ #: ../includes/Elements/Progress_Bar.php:640, ../includes/Extensions/Reading_Progress.php:172
5754
  msgid "Fill Color"
5755
  msgstr ""
5756
 
5757
+ #: ../includes/Elements/Progress_Bar.php:704, ../includes/Traits/Elements.php:136, ../includes/templates/admin/elements.php:242
5758
  msgid "Counter"
5759
  msgstr ""
5760
 
5761
+ #: ../includes/Elements/Progress_Bar.php:713
5762
  msgid "Counter Color"
5763
  msgstr ""
5764
 
5765
+ #: ../includes/Elements/Progress_Bar.php:727
5766
  msgid "Prefix/Postfix"
5767
  msgstr ""
5768
 
5769
+ #: ../includes/Elements/Progress_Bar.php:739
5770
  msgid "Prefix/Postfix Color"
5771
  msgstr ""
5772
 
5773
+ #: ../includes/Elements/Progress_Bar.php:797, ../includes/Elements/Progress_Bar.php:828, ../includes/Elements/Progress_Bar.php:874
5774
  msgid "%"
5775
  msgstr ""
5776
 
5782
  msgid "Sticky"
5783
  msgstr ""
5784
 
5785
+ #: ../includes/Elements/Sticky_Video.php:116, ../includes/Extensions/Reading_Progress.php:110, ../includes/Extensions/Table_of_Content.php:410, ../includes/Traits/Controls.php:1521, ../includes/Traits/Woo_Product_Comparable.php:1462
5786
  msgid "Position"
5787
  msgstr ""
5788
 
6182
  msgid "Quotation Postion From Right"
6183
  msgstr ""
6184
 
6185
+ #: ../includes/Elements/Tooltip.php:78, ../includes/Elements/Woo_Checkout.php:155, ../includes/Traits/Woo_Product_Comparable.php:1195
6186
  msgid "Text"
6187
  msgstr ""
6188
 
6189
+ #: ../includes/Elements/Tooltip.php:86, ../includes/Elements/Tooltip.php:132
6190
  msgid "Shortcode"
6191
  msgstr ""
6192
 
6193
+ #: ../includes/Elements/Tooltip.php:99
6194
  msgid "Hover Me!"
6195
  msgstr ""
6196
 
6197
+ #: ../includes/Elements/Tooltip.php:109
6198
  msgid "Content Tag"
6199
  msgstr ""
6200
 
6201
+ #: ../includes/Elements/Tooltip.php:120
6202
  msgid "DIV"
6203
  msgstr ""
6204
 
6205
+ #: ../includes/Elements/Tooltip.php:121
6206
  msgid "SPAN"
6207
  msgstr ""
6208
 
6209
+ #: ../includes/Elements/Tooltip.php:135
6210
  msgid "[shortcode-here]"
6211
  msgstr ""
6212
 
6213
+ #: ../includes/Elements/Tooltip.php:228
6214
  msgid "Enable Link"
6215
  msgstr ""
6216
 
6217
+ #: ../includes/Elements/Tooltip.php:262
6218
  msgid "Tooltip Settings"
6219
  msgstr ""
6220
 
6221
+ #: ../includes/Elements/Tooltip.php:271
6222
  msgid "Tooltip content"
6223
  msgstr ""
6224
 
6225
+ #: ../includes/Elements/Tooltip.php:278
6226
  msgid "Hover Direction"
6227
  msgstr ""
6228
 
6229
+ #: ../includes/Elements/Tooltip.php:293
6230
  msgid "Hover Speed"
6231
  msgstr ""
6232
 
6233
+ #: ../includes/Elements/Tooltip.php:296
6234
  msgid "300"
6235
  msgstr ""
6236
 
6237
+ #: ../includes/Elements/Tooltip.php:322
6238
  msgid "Content Max Width"
6239
  msgstr ""
6240
 
6241
+ #: ../includes/Elements/Tooltip.php:536
6242
  msgid "Tooltip Style"
6243
  msgstr ""
6244
 
6245
+ #: ../includes/Elements/Tooltip.php:543
6246
  msgid "Tooltip Width"
6247
  msgstr ""
6248
 
6249
+ #: ../includes/Elements/Tooltip.php:568
6250
  msgid "Tooltip Max Width"
6251
  msgstr ""
6252
 
6253
+ #: ../includes/Elements/Tooltip.php:677
6254
  msgid "Arrow Color"
6255
  msgstr ""
6256
 
7430
  msgid "Added "
7431
  msgstr ""
7432
 
7433
+ #: ../includes/Traits/Enqueue.php:130, ../includes/Traits/Woo_Product_Comparable.php:2101
7434
  msgid "Compare"
7435
  msgstr ""
7436
 
7442
  msgid "Post ID is missing"
7443
  msgstr ""
7444
 
7445
+ #: ../includes/Traits/Facebook_Feed.php:41, ../includes/Traits/Helper.php:57, ../includes/Traits/Login_Registration.php:62, ../includes/Traits/Login_Registration.php:227, ../includes/Traits/Woo_Product_Comparable.php:2122
7446
  msgid "Widget ID is missing"
7447
  msgstr ""
7448
 
7450
  msgid "Insecure form submitted without security token"
7451
  msgstr ""
7452
 
7453
+ #: ../includes/Traits/Helper.php:37, ../includes/Traits/Login_Registration.php:92, ../includes/Traits/Login_Registration.php:210, ../includes/Traits/Woo_Product_Comparable.php:2159
7454
  msgid "Security token did not match"
7455
  msgstr ""
7456
 
7457
+ #: ../includes/Traits/Helper.php:47, ../includes/Traits/Login_Registration.php:55, ../includes/Traits/Login_Registration.php:222, ../includes/Traits/Woo_Product_Comparable.php:2117
7458
  msgid "Page ID is missing"
7459
  msgstr ""
7460
 
7550
  msgid "Your registration completed successfully."
7551
  msgstr ""
7552
 
7553
+ #: ../includes/Traits/Woo_Product_Comparable.php:43, ../includes/Traits/Woo_Product_Comparable.php:89
7554
  msgid "Add to cart"
7555
  msgstr ""
7556
 
7557
+ #: ../includes/Traits/Woo_Product_Comparable.php:46, ../includes/Traits/Woo_Product_Comparable.php:97
7558
  msgid "Availability"
7559
  msgstr ""
7560
 
7561
+ #: ../includes/Traits/Woo_Product_Comparable.php:47
7562
  msgid "weight"
7563
  msgstr ""
7564
 
7565
+ #: ../includes/Traits/Woo_Product_Comparable.php:48, ../includes/Traits/Woo_Product_Comparable.php:105
7566
  msgid "Dimension"
7567
  msgstr ""
7568
 
7569
+ #: ../includes/Traits/Woo_Product_Comparable.php:56
7570
  msgid "Theme Default"
7571
  msgstr ""
7572
 
7573
+ #: ../includes/Traits/Woo_Product_Comparable.php:57
7574
  msgid "Theme 1"
7575
  msgstr ""
7576
 
7577
+ #: ../includes/Traits/Woo_Product_Comparable.php:58
7578
  msgid "Theme 2"
7579
  msgstr ""
7580
 
7581
+ #: ../includes/Traits/Woo_Product_Comparable.php:59
7582
  msgid "Theme 3"
7583
  msgstr ""
7584
 
7585
+ #: ../includes/Traits/Woo_Product_Comparable.php:60
7586
  msgid "Theme 4"
7587
  msgstr ""
7588
 
7589
+ #: ../includes/Traits/Woo_Product_Comparable.php:61
7590
  msgid "Theme 5"
7591
  msgstr ""
7592
 
7593
+ #: ../includes/Traits/Woo_Product_Comparable.php:62
7594
  msgid "Theme 6"
7595
  msgstr ""
7596
 
7597
+ #: ../includes/Traits/Woo_Product_Comparable.php:101
7598
  msgid "Weight"
7599
  msgstr ""
7600
 
7601
+ #: ../includes/Traits/Woo_Product_Comparable.php:136
7602
  msgid "Product Compare"
7603
  msgstr ""
7604
 
7605
+ #: ../includes/Traits/Woo_Product_Comparable.php:155
7606
  msgid "Enter Product IDs separated by a comma"
7607
  msgstr ""
7608
 
7609
+ #: ../includes/Traits/Woo_Product_Comparable.php:161
7610
  msgid "Search by Product Name"
7611
  msgstr ""
7612
 
7613
+ #: ../includes/Traits/Woo_Product_Comparable.php:165
7614
  msgid "Highlighted Product"
7615
  msgstr ""
7616
 
7617
+ #: ../includes/Traits/Woo_Product_Comparable.php:170
7618
  msgid "Enter any ID from the Product IDs used above"
7619
  msgstr ""
7620
 
7621
+ #: ../includes/Traits/Woo_Product_Comparable.php:180
7622
  msgid "Presets"
7623
  msgstr ""
7624
 
7625
+ #: ../includes/Traits/Woo_Product_Comparable.php:186
7626
  msgid "Ribbon Text"
7627
  msgstr ""
7628
 
7629
+ #: ../includes/Traits/Woo_Product_Comparable.php:188
7630
  msgid "eg. New"
7631
  msgstr ""
7632
 
7633
+ #: ../includes/Traits/Woo_Product_Comparable.php:189
7634
  msgid "New"
7635
  msgstr ""
7636
 
7637
+ #: ../includes/Traits/Woo_Product_Comparable.php:199
7638
  msgid "Compare Table Settings"
7639
  msgstr ""
7640
 
7641
+ #: ../includes/Traits/Woo_Product_Comparable.php:205
7642
  msgid "Table Title"
7643
  msgstr ""
7644
 
7645
+ #: ../includes/Traits/Woo_Product_Comparable.php:207, ../includes/Traits/Woo_Product_Comparable.php:208
7646
  msgid "Compare Products"
7647
  msgstr ""
7648
 
7649
+ #: ../includes/Traits/Woo_Product_Comparable.php:213
7650
  msgid "Table Title HTML Tag"
7651
  msgstr ""
7652
 
7653
+ #: ../includes/Traits/Woo_Product_Comparable.php:244
7654
  msgid "Fields to show"
7655
  msgstr ""
7656
 
7657
+ #: ../includes/Traits/Woo_Product_Comparable.php:245
7658
  msgid "Select the fields to show in the comparison table"
7659
  msgstr ""
7660
 
7661
+ #: ../includes/Traits/Woo_Product_Comparable.php:252
7662
  msgid "Repeat \"Price\" field"
7663
  msgstr ""
7664
 
7665
+ #: ../includes/Traits/Woo_Product_Comparable.php:253
7666
  msgid "Repeat the \"Price\" field at the end of the table"
7667
  msgstr ""
7668
 
7669
+ #: ../includes/Traits/Woo_Product_Comparable.php:258
7670
  msgid "Repeat \"Add to cart\" field"
7671
  msgstr ""
7672
 
7673
+ #: ../includes/Traits/Woo_Product_Comparable.php:259
7674
  msgid "Repeat the \"Add to cart\" field at the end of the table"
7675
  msgstr ""
7676
 
7677
+ #: ../includes/Traits/Woo_Product_Comparable.php:263
7678
  msgid "Make Product Image Linkable"
7679
  msgstr ""
7680
 
7681
+ #: ../includes/Traits/Woo_Product_Comparable.php:264
7682
  msgid "You can link the product image to product details page"
7683
  msgstr ""
7684
 
7685
+ #: ../includes/Traits/Woo_Product_Comparable.php:273
7686
  msgid "Text for \"No products are found to compare\""
7687
  msgstr ""
7688
 
7689
+ #: ../includes/Traits/Woo_Product_Comparable.php:274
7690
  msgid "No products are added to Compare. Please add products to compare."
7691
  msgstr ""
7692
 
7693
+ #: ../includes/Traits/Woo_Product_Comparable.php:277
7694
  msgid "Eg. No products are added to Compare."
7695
  msgstr ""
7696
 
7697
+ #: ../includes/Traits/Woo_Product_Comparable.php:288
7698
  msgid "Compare Table General"
7699
  msgstr ""
7700
 
7701
+ #: ../includes/Traits/Woo_Product_Comparable.php:394, ../includes/Traits/Woo_Product_Comparable.php:406
7702
  msgid "Table Style"
7703
  msgstr ""
7704
 
7705
+ #: ../includes/Traits/Woo_Product_Comparable.php:401
7706
  msgid "Style Content Column Separately"
7707
  msgstr ""
7708
 
7709
+ #: ../includes/Traits/Woo_Product_Comparable.php:414
7710
  msgid "Table Width"
7711
  msgstr ""
7712
 
7713
+ #: ../includes/Traits/Woo_Product_Comparable.php:444
7714
  msgid "Table Margin"
7715
  msgstr ""
7716
 
7717
+ #: ../includes/Traits/Woo_Product_Comparable.php:487
7718
  msgid "Table Border"
7719
  msgstr ""
7720
 
7721
+ #: ../includes/Traits/Woo_Product_Comparable.php:520
7722
  msgid "Table Title Style"
7723
  msgstr ""
7724
 
7725
+ #: ../includes/Traits/Woo_Product_Comparable.php:529
7726
  msgid "Table Title Text Color"
7727
  msgstr ""
7728
 
7729
+ #: ../includes/Traits/Woo_Product_Comparable.php:536
7730
  msgid "Table Title Background"
7731
  msgstr ""
7732
 
7733
+ #: ../includes/Traits/Woo_Product_Comparable.php:542
7734
  msgid "Table Title Padding"
7735
  msgstr ""
7736
 
7737
+ #: ../includes/Traits/Woo_Product_Comparable.php:555
7738
  msgid "Table Title Border"
7739
  msgstr ""
7740
 
7741
+ #: ../includes/Traits/Woo_Product_Comparable.php:569
7742
  msgid "Table Title Typography"
7743
  msgstr ""
7744
 
7745
+ #: ../includes/Traits/Woo_Product_Comparable.php:603
7746
  msgid "Product Title Row Typography"
7747
  msgstr ""
7748
 
7749
+ #: ../includes/Traits/Woo_Product_Comparable.php:611
7750
  msgid "Header Column Style"
7751
  msgstr ""
7752
 
7753
+ #: ../includes/Traits/Woo_Product_Comparable.php:621
7754
  msgid "Header Column Width"
7755
  msgstr ""
7756
 
7757
+ #: ../includes/Traits/Woo_Product_Comparable.php:650
7758
  msgid "Header Column Padding"
7759
  msgstr ""
7760
 
7761
+ #: ../includes/Traits/Woo_Product_Comparable.php:664
7762
  msgid "Header border"
7763
  msgstr ""
7764
 
7765
+ #: ../includes/Traits/Woo_Product_Comparable.php:672
7766
  msgid "Header Column Typography"
7767
  msgstr ""
7768
 
7769
+ #: ../includes/Traits/Woo_Product_Comparable.php:680
7770
  msgid "Product Column Style"
7771
  msgstr ""
7772
 
7773
+ #: ../includes/Traits/Woo_Product_Comparable.php:690
7774
  msgid "Product Column Width"
7775
  msgstr ""
7776
 
7777
+ #: ../includes/Traits/Woo_Product_Comparable.php:719
7778
  msgid "Product Column Padding"
7779
  msgstr ""
7780
 
7781
+ #: ../includes/Traits/Woo_Product_Comparable.php:732
7782
  msgid "Product Image Box Padding"
7783
  msgstr ""
7784
 
7785
+ #: ../includes/Traits/Woo_Product_Comparable.php:745
7786
  msgid "Product Image Padding"
7787
  msgstr ""
7788
 
7789
+ #: ../includes/Traits/Woo_Product_Comparable.php:759
7790
  msgid "Product column border"
7791
  msgstr ""
7792
 
7793
+ #: ../includes/Traits/Woo_Product_Comparable.php:765, ../includes/Traits/Woo_Product_Comparable.php:1151
7794
  msgid "Product Image Box Border"
7795
  msgstr ""
7796
 
7797
+ #: ../includes/Traits/Woo_Product_Comparable.php:772, ../includes/Traits/Woo_Product_Comparable.php:1157
7798
  msgid "Image Box border"
7799
  msgstr ""
7800
 
7801
+ #: ../includes/Traits/Woo_Product_Comparable.php:777, ../includes/Traits/Woo_Product_Comparable.php:1161
7802
  msgid "Product Image Border"
7803
  msgstr ""
7804
 
7805
+ #: ../includes/Traits/Woo_Product_Comparable.php:784, ../includes/Traits/Woo_Product_Comparable.php:1167
7806
  msgid "Product Image border"
7807
  msgstr ""
7808
 
7809
+ #: ../includes/Traits/Woo_Product_Comparable.php:789, ../includes/Traits/Woo_Product_Comparable.php:1171
7810
  msgid "Image Border Radius"
7811
  msgstr ""
7812
 
7813
+ #: ../includes/Traits/Woo_Product_Comparable.php:806
7814
  msgid "Product Column Typography"
7815
  msgstr ""
7816
 
7817
+ #: ../includes/Traits/Woo_Product_Comparable.php:834, ../includes/Traits/Woo_Product_Comparable.php:1217
7818
  msgid "Image Background"
7819
  msgstr ""
7820
 
7821
+ #: ../includes/Traits/Woo_Product_Comparable.php:847
7822
  msgid "Header Background"
7823
  msgstr ""
7824
 
7825
+ #: ../includes/Traits/Woo_Product_Comparable.php:852
7826
  msgid "Header Text Color"
7827
  msgstr ""
7828
 
7829
+ #: ../includes/Traits/Woo_Product_Comparable.php:857
7830
  msgid "Product Column Background"
7831
  msgstr ""
7832
 
7833
+ #: ../includes/Traits/Woo_Product_Comparable.php:862
7834
  msgid "Product Column Text Color"
7835
  msgstr ""
7836
 
7837
+ #: ../includes/Traits/Woo_Product_Comparable.php:873, ../includes/Traits/Woo_Product_Comparable.php:930, ../includes/Traits/Woo_Product_Comparable.php:1255, ../includes/Traits/Woo_Product_Comparable.php:1297, ../includes/Traits/Woo_Product_Comparable.php:1636, ../includes/Traits/Woo_Product_Comparable.php:1686
7838
  msgid "Button Text Color"
7839
  msgstr ""
7840
 
7841
+ #: ../includes/Traits/Woo_Product_Comparable.php:878, ../includes/Traits/Woo_Product_Comparable.php:935
7842
  msgid "Button Background Color"
7843
  msgstr ""
7844
 
7845
+ #: ../includes/Traits/Woo_Product_Comparable.php:883
7846
  msgid "Even & Odd Rows"
7847
  msgstr ""
7848
 
7849
+ #: ../includes/Traits/Woo_Product_Comparable.php:888, ../includes/Traits/Woo_Product_Comparable.php:1027, ../includes/Traits/Woo_Product_Comparable.php:1271
7850
  msgid "Even Row Background"
7851
  msgstr ""
7852
 
7853
+ #: ../includes/Traits/Woo_Product_Comparable.php:893, ../includes/Traits/Woo_Product_Comparable.php:1033, ../includes/Traits/Woo_Product_Comparable.php:1277
7854
  msgid "Even Row Text Color"
7855
  msgstr ""
7856
 
7857
+ #: ../includes/Traits/Woo_Product_Comparable.php:898, ../includes/Traits/Woo_Product_Comparable.php:1038, ../includes/Traits/Woo_Product_Comparable.php:1282
7858
  msgid "Odd Row Background"
7859
  msgstr ""
7860
 
7861
+ #: ../includes/Traits/Woo_Product_Comparable.php:903, ../includes/Traits/Woo_Product_Comparable.php:1043, ../includes/Traits/Woo_Product_Comparable.php:1287
7862
  msgid "Odd Row Text Color"
7863
  msgstr ""
7864
 
7865
+ #: ../includes/Traits/Woo_Product_Comparable.php:908
7866
  msgid "Title Row"
7867
  msgstr ""
7868
 
7869
+ #: ../includes/Traits/Woo_Product_Comparable.php:913
7870
  msgid "Title Row Background"
7871
  msgstr ""
7872
 
7873
+ #: ../includes/Traits/Woo_Product_Comparable.php:918
7874
  msgid "Title Row Text Color"
7875
  msgstr ""
7876
 
7877
+ #: ../includes/Traits/Woo_Product_Comparable.php:950
7878
  msgid "Header Column"
7879
  msgstr ""
7880
 
7881
+ #: ../includes/Traits/Woo_Product_Comparable.php:1002, ../includes/Traits/Woo_Product_Comparable.php:1226
7882
  msgid "Title Background"
7883
  msgstr ""
7884
 
7885
+ #: ../includes/Traits/Woo_Product_Comparable.php:1012
7886
  msgid "Column Background Color"
7887
  msgstr ""
7888
 
7889
+ #: ../includes/Traits/Woo_Product_Comparable.php:1017
7890
  msgid "Column Text Color"
7891
  msgstr ""
7892
 
7893
+ #: ../includes/Traits/Woo_Product_Comparable.php:1022, ../includes/Traits/Woo_Product_Comparable.php:1266
7894
  msgid "Rows"
7895
  msgstr ""
7896
 
7897
+ #: ../includes/Traits/Woo_Product_Comparable.php:1048
7898
  msgid "Title Border"
7899
  msgstr ""
7900
 
7901
+ #: ../includes/Traits/Woo_Product_Comparable.php:1057
7902
  msgid "Header Border"
7903
  msgstr ""
7904
 
7905
+ #: ../includes/Traits/Woo_Product_Comparable.php:1099
7906
  msgid "Product Column %d"
7907
  msgstr ""
7908
 
7909
+ #: ../includes/Traits/Woo_Product_Comparable.php:1261, ../includes/Traits/Woo_Product_Comparable.php:1302
7910
  msgid "Button Background"
7911
  msgstr ""
7912
 
7913
+ #: ../includes/Traits/Woo_Product_Comparable.php:1315
7914
  msgid "Compare Modal Close Button"
7915
  msgstr ""
7916
 
7917
+ #: ../includes/Traits/Woo_Product_Comparable.php:1418
7918
  msgid "Fields Icon"
7919
  msgstr ""
7920
 
7921
+ #: ../includes/Traits/Woo_Product_Comparable.php:1504
7922
  msgid "Price Size"
7923
  msgstr ""
7924
 
7925
+ #: ../includes/Traits/Woo_Product_Comparable.php:1529
7926
  msgid "Price Text Color"
7927
  msgstr ""
7928
 
7929
+ #: ../includes/Traits/Woo_Product_Comparable.php:1536
7930
  msgid "Price Strike Text Color"
7931
  msgstr ""
7932
 
7933
+ #: ../includes/Traits/Woo_Product_Comparable.php:1537
7934
  msgid "Only applicable when sales price is available"
7935
  msgstr ""
7936
 
7937
+ #: ../includes/Traits/Woo_Product_Comparable.php:1553
7938
  msgid "Sales Price Size"
7939
  msgstr ""
7940
 
7941
+ #: ../includes/Traits/Woo_Product_Comparable.php:1578
7942
  msgid "Sales Price Text Color"
7943
  msgstr ""
7944
 
7945
+ #: ../includes/Traits/Woo_Product_Comparable.php:1591
7946
  msgid "Compare Button"
7947
  msgstr ""
7948
 
7949
+ #: ../includes/Traits/Woo_Product_Comparable.php:1776
7950
  msgid "Remove"
7951
  msgstr ""
7952
 
7953
+ #: ../includes/Traits/Woo_Product_Comparable.php:1983, ../includes/Traits/Woo_Product_Comparable.php:2226
7954
  msgid "In stock"
7955
  msgstr ""
7956
 
7957
+ #: ../includes/Traits/Woo_Product_Comparable.php:2127
7958
  msgid "Product ID is missing"
7959
  msgstr ""
7960
 
readme.txt CHANGED
@@ -4,7 +4,7 @@ Tags: elementor, elements, addons, elementor addon, elementor widget, elementor
4
  Requires at least: 5.0
5
  Tested up to: 5.7
6
  Requires PHP: 5.6
7
- Stable tag: 4.5.4
8
  License: GPLv3
9
  License URI: https://opensource.org/licenses/GPL-3.0
10
 
@@ -227,6 +227,11 @@ Your existing elements/content will work with premium version. So you won't lose
227
 
228
  == Changelog ==
229
 
 
 
 
 
 
230
  = 4.5.4 - 22/03/2021 =
231
 
232
  - Added: Compatibility with Elementor latest versions
4
  Requires at least: 5.0
5
  Tested up to: 5.7
6
  Requires PHP: 5.6
7
+ Stable tag: 4.5.5
8
  License: GPLv3
9
  License URI: https://opensource.org/licenses/GPL-3.0
10
 
227
 
228
  == Changelog ==
229
 
230
+ = 4.5.5 - 23/03/2021 =
231
+
232
+ - Fixed: PHP error related to HTML tags validation
233
+ - Few minor bug fix and improvements
234
+
235
  = 4.5.4 - 22/03/2021 =
236
 
237
  - Added: Compatibility with Elementor latest versions