Elementor Essential Addons - Version 4.6.3

Version Description

  • 25/04/2021 =

  • Fixed: Elementor\Scheme_Typography is deprecated

  • Few minor bug fix & improvements

Download this release

Release Info

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

Code changes from version 4.6.2 to 4.6.3

Files changed (47) hide show
  1. essential_adons_elementor.php +4 -4
  2. includes/Classes/Helper.php +128 -0
  3. includes/Classes/Plugin_Usage_Tracker.php +6 -2
  4. includes/Elements/Adv_Accordion.php +2 -2
  5. includes/Elements/Adv_Tabs.php +1 -1
  6. includes/Elements/Advanced_Data_Table.php +2 -1
  7. includes/Elements/Betterdocs_Category_Box.php +0 -1
  8. includes/Elements/Betterdocs_Category_Grid.php +1 -0
  9. includes/Elements/Betterdocs_Search_Form.php +0 -1
  10. includes/Elements/Caldera_Forms.php +2 -2
  11. includes/Elements/Contact_Form_7.php +8 -8
  12. includes/Elements/Content_Ticker.php +1 -1
  13. includes/Elements/Countdown.php +6 -6
  14. includes/Elements/Creative_Button.php +4 -3
  15. includes/Elements/Cta_Box.php +2 -2
  16. includes/Elements/Data_Table.php +3 -3
  17. includes/Elements/Dual_Color_Header.php +2 -2
  18. includes/Elements/Facebook_Feed.php +8 -8
  19. includes/Elements/Fancy_Text.php +10 -9
  20. includes/Elements/Feature_List.php +20 -19
  21. includes/Elements/Filterable_Gallery.php +3 -3
  22. includes/Elements/FluentForm.php +9 -9
  23. includes/Elements/Formstack.php +6 -6
  24. includes/Elements/GravityForms.php +8 -8
  25. includes/Elements/Image_Accordion.php +1 -1
  26. includes/Elements/Info_Box.php +1 -1
  27. includes/Elements/Login_Register.php +5 -4
  28. includes/Elements/NinjaForms.php +5 -5
  29. includes/Elements/Post_Grid.php +8 -8
  30. includes/Elements/Pricing_Table.php +9 -5
  31. includes/Elements/Progress_Bar.php +8 -8
  32. includes/Elements/Team_Member.php +4 -3
  33. includes/Elements/Testimonial.php +3 -2
  34. includes/Elements/Twitter_Feed.php +2 -2
  35. includes/Elements/TypeForm.php +1 -1
  36. includes/Elements/WeForms.php +2 -2
  37. includes/Elements/Woo_Checkout.php +1 -1
  38. includes/Elements/Woo_Product_Carousel.php +3 -1
  39. includes/Elements/WpForms.php +5 -5
  40. includes/Extensions/Table_of_Content.php +3 -3
  41. includes/Template/Betterdocs-Category-Box/Layout_Default.php +1 -1
  42. includes/Template/Betterdocs-Category-Grid/Layout_2.php +1 -1
  43. includes/Template/Betterdocs-Category-Grid/Layout_Default.php +1 -1
  44. includes/Template/Woocommerce/Checkout/Woo_Checkout_Helper.php +14 -14
  45. includes/Traits/Woo_Product_Comparable.php +3 -3
  46. languages/essential-addons-for-elementor-lite.pot +677 -673
  47. readme.txt +6 -1
essential_adons_elementor.php CHANGED
@@ -4,13 +4,13 @@
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.6.2
8
  * Author URI: https://wpdeveloper.net/
9
  * Text Domain: essential-addons-for-elementor-lite
10
  * Domain Path: /languages
11
  *
12
- * WC tested up to: 5.1.0
13
- * Elementor tested up to: 3.1.4
14
  * Elementor Pro tested up to: 3.2.1
15
  */
16
 
@@ -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.6.2');
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.6.3
8
  * Author URI: https://wpdeveloper.net/
9
  * Text Domain: essential-addons-for-elementor-lite
10
  * Domain Path: /languages
11
  *
12
+ * WC tested up to: 5.2.2
13
+ * Elementor tested up to: 3.2.1
14
  * Elementor Pro tested up to: 3.2.1
15
  */
16
 
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.6.3');
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
@@ -974,4 +974,132 @@ class Helper
974
  public static function eael_validate_html_tag( $tag ){
975
  return in_array( strtolower( $tag ), self::EAEL_ALLOWED_HTML_TAGS ) ? $tag : 'div';
976
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
977
  }
974
  public static function eael_validate_html_tag( $tag ){
975
  return in_array( strtolower( $tag ), self::EAEL_ALLOWED_HTML_TAGS ) ? $tag : 'div';
976
  }
977
+
978
+ /**
979
+ *
980
+ * Strip tag based on allowed html tag
981
+ * eael_wp_kses
982
+ * @param $text
983
+ * @return string
984
+ */
985
+ public static function eael_wp_kses($text){
986
+ return wp_kses($text,self::eael_allowed_tags());
987
+ }
988
+
989
+ /**
990
+ * List of allowed html tag for wp_kses
991
+ *
992
+ * eael_allowed_tags
993
+ * @return array
994
+ */
995
+ public static function eael_allowed_tags(){
996
+ return [
997
+ 'a' => [
998
+ 'href' => [],
999
+ 'title' => [],
1000
+ 'class' => [],
1001
+ 'rel' => [],
1002
+ 'id' => [],
1003
+ ],
1004
+ 'q' => [
1005
+ 'cite' => [],
1006
+ 'class' => [],
1007
+ 'id' => [],
1008
+ ],
1009
+ 'img' => [
1010
+ 'src' => [],
1011
+ 'alt' => [],
1012
+ 'height' => [],
1013
+ 'width' => [],
1014
+ 'class' => [],
1015
+ 'id' => [],
1016
+ 'style' => []
1017
+ ],
1018
+ 'span' => [
1019
+ 'class' => [],
1020
+ 'id' => [],
1021
+ 'style' => []
1022
+ ],
1023
+ 'dfn' => [],
1024
+ 'time' => [
1025
+ 'datetime' => [],
1026
+ 'class' => [],
1027
+ 'id' => [],
1028
+ ],
1029
+ 'cite' => [
1030
+ 'title' => [],
1031
+ 'class' => [],
1032
+ 'id' => [],
1033
+ ],
1034
+ 'hr' => [
1035
+ 'class' => [],
1036
+ 'id' => [],
1037
+ ],
1038
+ 'b' => [
1039
+ 'class' => [],
1040
+ 'id' => [],
1041
+ ],
1042
+ 'i' => [
1043
+ 'class' => [],
1044
+ 'id' => [],
1045
+ 'style' => []
1046
+ ],
1047
+ 'u' => [
1048
+ 'class' => [],
1049
+ 'id' => [],
1050
+ 'style' => []
1051
+ ],
1052
+ 's' => [
1053
+ 'class' => [],
1054
+ 'id' => [],
1055
+ ],
1056
+ 'br' => [],
1057
+ 'em' => [
1058
+ 'class' => [],
1059
+ 'id' => [],
1060
+ 'style' => []
1061
+ ],
1062
+ 'code' => [
1063
+ 'class' => [],
1064
+ 'id' => [],
1065
+ ],
1066
+ 'small' => [
1067
+ 'class' => [],
1068
+ 'id' => [],
1069
+ 'style' => []
1070
+ ],
1071
+ 'abbr' => [
1072
+ 'title' => [],
1073
+ ],
1074
+ 'strong' => [
1075
+ 'class' => [],
1076
+ 'id' => [],
1077
+ 'style' => []
1078
+ ],
1079
+ 'del' => [
1080
+ 'class' => [],
1081
+ 'id' => [],
1082
+ 'style' => []
1083
+ ],
1084
+ 'ins' => [
1085
+ 'class' => [],
1086
+ 'id' => [],
1087
+ 'style' => []
1088
+ ],
1089
+ 'sub' => [
1090
+ 'class' => [],
1091
+ ],
1092
+ 'sup' => [
1093
+ 'class' => []
1094
+ ],
1095
+ 'strike' => [],
1096
+ 'acronym' => [],
1097
+ 'h1' => [],
1098
+ 'h2' => [],
1099
+ 'h3' => [],
1100
+ 'h4' => [],
1101
+ 'h5' => [],
1102
+ 'h6' => [],
1103
+ ];
1104
+ }
1105
  }
includes/Classes/Plugin_Usage_Tracker.php CHANGED
@@ -19,11 +19,10 @@ if ( ! defined( 'ABSPATH' ) ) {
19
  /**
20
  * WP Insights Version
21
  */
22
- const WPINS_VERSION = '3.0.2';
23
  /**
24
  * API URL
25
  */
26
- // const API_URL = 'http://app.wpdeveloper.net?usage_tracker=hello';
27
  const API_URL = 'https://send.wpinsight.com/process-plugin-data';
28
  /**
29
  * Installed Plugin File
@@ -346,6 +345,11 @@ if ( ! defined( 'ABSPATH' ) ) {
346
  $email = $current_user->user_email;
347
  if( is_email( $email ) ) {
348
  $body['email'] = $email;
 
 
 
 
 
349
  }
350
  }
351
  $body['marketing_method'] = $this->marketing;
19
  /**
20
  * WP Insights Version
21
  */
22
+ const WPINS_VERSION = '3.0.3';
23
  /**
24
  * API URL
25
  */
 
26
  const API_URL = 'https://send.wpinsight.com/process-plugin-data';
27
  /**
28
  * Installed Plugin File
345
  $email = $current_user->user_email;
346
  if( is_email( $email ) ) {
347
  $body['email'] = $email;
348
+ } else {
349
+ $email = get_option( 'admin_email' );
350
+ if( is_email($email) ) {
351
+ $body['email'] = $email;
352
+ }
353
  }
354
  }
355
  $body['marketing_method'] = $this->marketing;
includes/Elements/Adv_Accordion.php CHANGED
@@ -1042,7 +1042,7 @@ class Adv_Accordion extends Widget_Base
1042
  }
1043
  // tab title
1044
  if ($settings['eael_adv_accordion_toggle_icon_postion'] === '') {
1045
- 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']) . '>';
1046
  }
1047
  // tab icon
1048
  if ($tab['eael_adv_accordion_tab_icon_show'] === 'yes') {
@@ -1062,7 +1062,7 @@ class Adv_Accordion extends Widget_Base
1062
  }
1063
  // tab title
1064
  if ($settings['eael_adv_accordion_toggle_icon_postion'] === 'right' || $settings['eael_adv_accordion_toggle_icon_postion'] === null) {
1065
- 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']) . '>';
1066
  }
1067
  // toggle icon
1068
  if ($settings['eael_adv_accordion_icon_show'] === 'yes' && $settings['eael_adv_accordion_toggle_icon_postion'] === 'right') {
1042
  }
1043
  // tab title
1044
  if ($settings['eael_adv_accordion_toggle_icon_postion'] === '') {
1045
+ echo '<' . Helper::eael_validate_html_tag($settings['eael_adv_accordion_title_tag']) . ' class="eael-accordion-tab-title">' . Helper::eael_wp_kses($tab['eael_adv_accordion_tab_title']) . '</' . Helper::eael_validate_html_tag($settings['eael_adv_accordion_title_tag']) . '>';
1046
  }
1047
  // tab icon
1048
  if ($tab['eael_adv_accordion_tab_icon_show'] === 'yes') {
1062
  }
1063
  // tab title
1064
  if ($settings['eael_adv_accordion_toggle_icon_postion'] === 'right' || $settings['eael_adv_accordion_toggle_icon_postion'] === null) {
1065
+ echo '<' . Helper::eael_validate_html_tag($settings['eael_adv_accordion_title_tag']) . ' class="eael-accordion-tab-title">' . Helper::eael_wp_kses($tab['eael_adv_accordion_tab_title']) . '</' . Helper::eael_validate_html_tag($settings['eael_adv_accordion_title_tag']) . '>';
1066
  }
1067
  // toggle icon
1068
  if ($settings['eael_adv_accordion_icon_show'] === 'yes' && $settings['eael_adv_accordion_toggle_icon_postion'] === 'right') {
includes/Elements/Adv_Tabs.php CHANGED
@@ -901,7 +901,7 @@ class Adv_Tabs extends Widget_Base
901
  <?php elseif ($tab['eael_adv_tabs_icon_type'] === 'image') : ?>
902
  <img src="<?php echo esc_attr($tab['eael_adv_tabs_tab_title_image']['url']); ?>" alt="<?php echo esc_attr(get_post_meta($tab['eael_adv_tabs_tab_title_image']['id'], '_wp_attachment_image_alt', true)); ?>">
903
  <?php endif; ?>
904
- <?php endif; ?> <span class="eael-tab-title"><?php echo $tab['eael_adv_tabs_tab_title']; ?></span>
905
  </li>
906
  <?php endforeach; ?>
907
  </ul>
901
  <?php elseif ($tab['eael_adv_tabs_icon_type'] === 'image') : ?>
902
  <img src="<?php echo esc_attr($tab['eael_adv_tabs_tab_title_image']['url']); ?>" alt="<?php echo esc_attr(get_post_meta($tab['eael_adv_tabs_tab_title_image']['id'], '_wp_attachment_image_alt', true)); ?>">
903
  <?php endif; ?>
904
+ <?php endif; ?> <span class="eael-tab-title"><?php echo Helper::eael_wp_kses($tab['eael_adv_tabs_tab_title']); ?></span>
905
  </li>
906
  <?php endforeach; ?>
907
  </ul>
includes/Elements/Advanced_Data_Table.php CHANGED
@@ -12,6 +12,7 @@ use \Elementor\Group_Control_Box_Shadow;
12
  use \Elementor\Group_Control_Typography;
13
  use \Elementor\Plugin;
14
  use \Elementor\Widget_Base;
 
15
 
16
  class Advanced_Data_Table extends Widget_Base
17
  {
@@ -1532,7 +1533,7 @@ class Advanced_Data_Table extends Widget_Base
1532
 
1533
  if ($content = $this->get_table_content()) {
1534
  if ($settings['ea_adv_data_table_search'] == 'yes') {
1535
- echo '<div ' . $this->get_render_attribute_string('ea-adv-data-table-search-wrap') . '><input type="search" placeholder="' . $settings['ea_adv_data_table_search_placeholder'] . '" class="ea-advanced-data-table-search"></div>';
1536
  }
1537
 
1538
  echo '<div class="ea-advanced-data-table-wrap-inner">
12
  use \Elementor\Group_Control_Typography;
13
  use \Elementor\Plugin;
14
  use \Elementor\Widget_Base;
15
+ use Essential_Addons_Elementor\Classes\Helper;
16
 
17
  class Advanced_Data_Table extends Widget_Base
18
  {
1533
 
1534
  if ($content = $this->get_table_content()) {
1535
  if ($settings['ea_adv_data_table_search'] == 'yes') {
1536
+ echo '<div ' . $this->get_render_attribute_string('ea-adv-data-table-search-wrap') . '><input type="search" placeholder="' . Helper::eael_wp_kses($settings['ea_adv_data_table_search_placeholder'] ). '" class="ea-advanced-data-table-search"></div>';
1537
  }
1538
 
1539
  echo '<div class="ea-advanced-data-table-wrap-inner">
includes/Elements/Betterdocs_Category_Box.php CHANGED
@@ -13,7 +13,6 @@ use \Elementor\Group_Control_Border;
13
  use \Elementor\Group_Control_Box_Shadow;
14
  use \Elementor\Group_Control_Typography;
15
  use \Elementor\Group_Control_Background;
16
- use \Elementor\Scheme_Typography;
17
  use \Elementor\Widget_Base;
18
 
19
 
13
  use \Elementor\Group_Control_Box_Shadow;
14
  use \Elementor\Group_Control_Typography;
15
  use \Elementor\Group_Control_Background;
 
16
  use \Elementor\Widget_Base;
17
 
18
 
includes/Elements/Betterdocs_Category_Grid.php CHANGED
@@ -767,6 +767,7 @@ class Betterdocs_Category_Grid extends Widget_Base
767
  [
768
  'name' => 'count_font_size',
769
  'selector' => '{{WRAPPER}} .eael-docs-item-count',
 
770
  ]
771
  );
772
 
767
  [
768
  'name' => 'count_font_size',
769
  'selector' => '{{WRAPPER}} .eael-docs-item-count',
770
+ 'exclude' => [ 'line_height' ],
771
  ]
772
  );
773
 
includes/Elements/Betterdocs_Search_Form.php CHANGED
@@ -12,7 +12,6 @@ use \Elementor\Group_Control_Border;
12
  use \Elementor\Group_Control_Box_Shadow;
13
  use \Elementor\Group_Control_Typography;
14
  use \Elementor\Group_Control_Background;
15
- use \Elementor\Scheme_Typography;
16
  use \Elementor\Widget_Base;
17
 
18
  class Betterdocs_Search_Form extends Widget_Base
12
  use \Elementor\Group_Control_Box_Shadow;
13
  use \Elementor\Group_Control_Typography;
14
  use \Elementor\Group_Control_Background;
 
15
  use \Elementor\Widget_Base;
16
 
17
  class Betterdocs_Search_Form extends Widget_Base
includes/Elements/Caldera_Forms.php CHANGED
@@ -10,7 +10,7 @@ use \Elementor\Controls_Manager;
10
  use \Elementor\Group_Control_Border;
11
  use \Elementor\Group_Control_Box_Shadow;
12
  use \Elementor\Group_Control_Typography;
13
- use \Elementor\Scheme_Typography;
14
  use \Elementor\Widget_Base;
15
  use \Essential_Addons_Elementor\Classes\Helper;
16
 
@@ -345,7 +345,7 @@ class Caldera_Forms extends Widget_Base
345
  [
346
  'name' => 'form_description_typography',
347
  'label' => __('Typography', 'essential-addons-for-elementor-lite'),
348
- 'scheme' => Scheme_Typography::TYPOGRAPHY_4,
349
  'selector' => '{{WRAPPER}} .eael-contact-form-description',
350
  'condition' => [
351
  'custom_title_description' => 'yes',
10
  use \Elementor\Group_Control_Border;
11
  use \Elementor\Group_Control_Box_Shadow;
12
  use \Elementor\Group_Control_Typography;
13
+ use \Elementor\Core\Schemes\Typography;
14
  use \Elementor\Widget_Base;
15
  use \Essential_Addons_Elementor\Classes\Helper;
16
 
345
  [
346
  'name' => 'form_description_typography',
347
  'label' => __('Typography', 'essential-addons-for-elementor-lite'),
348
+ 'scheme' => Typography::TYPOGRAPHY_4,
349
  'selector' => '{{WRAPPER}} .eael-contact-form-description',
350
  'condition' => [
351
  'custom_title_description' => 'yes',
includes/Elements/Contact_Form_7.php CHANGED
@@ -12,7 +12,7 @@ use \Elementor\Group_Control_Background;
12
  use \Elementor\Group_Control_Border;
13
  use \Elementor\Group_Control_Box_Shadow;
14
  use \Elementor\Group_Control_Typography;
15
- use \Elementor\Scheme_Typography;
16
  use \Elementor\Widget_Base;
17
 
18
  use \Essential_Addons_Elementor\Classes\Helper;
@@ -485,7 +485,7 @@ class Contact_Form_7 extends Widget_Base
485
  [
486
  'name' => 'title_typography',
487
  'label' => __('Typography', 'essential-addons-for-elementor-lite'),
488
- 'scheme' => Scheme_Typography::TYPOGRAPHY_4,
489
  'selector' => '{{WRAPPER}} .eael-contact-form-7 .eael-contact-form-7-title',
490
  ]
491
  );
@@ -516,7 +516,7 @@ class Contact_Form_7 extends Widget_Base
516
  [
517
  'name' => 'description_typography',
518
  'label' => __('Typography', 'essential-addons-for-elementor-lite'),
519
- 'scheme' => Scheme_Typography::TYPOGRAPHY_4,
520
  'selector' => '{{WRAPPER}} .eael-contact-form-7 .eael-contact-form-7-description',
521
  ]
522
  );
@@ -733,7 +733,7 @@ class Contact_Form_7 extends Widget_Base
733
  [
734
  'name' => 'field_typography',
735
  'label' => __('Typography', 'essential-addons-for-elementor-lite'),
736
- 'scheme' => Scheme_Typography::TYPOGRAPHY_4,
737
  'selector' => '{{WRAPPER}} .eael-contact-form-7 .wpcf7-form-control.wpcf7-text, {{WRAPPER}} .eael-contact-form-7 .wpcf7-form-control.wpcf7-quiz, {{WRAPPER}} .eael-contact-form-7 .wpcf7-form-control.wpcf7-quiz, {{WRAPPER}} .eael-contact-form-7 .wpcf7-form-control.wpcf7-textarea, {{WRAPPER}} .eael-contact-form-7 .wpcf7-form-control.wpcf7-select',
738
  'separator' => 'before',
739
  ]
@@ -881,7 +881,7 @@ class Contact_Form_7 extends Widget_Base
881
  [
882
  'name' => 'typography_label',
883
  'label' => __('Typography', 'essential-addons-for-elementor-lite'),
884
- 'scheme' => Scheme_Typography::TYPOGRAPHY_4,
885
  'selector' => '{{WRAPPER}} .eael-contact-form-7 .wpcf7-form label, {{WRAPPER}} .eael-contact-form-7 .wpcf7-form .wpcf7-quiz-label',
886
  'condition' => [
887
  'labels_switch' => 'yes',
@@ -933,7 +933,7 @@ class Contact_Form_7 extends Widget_Base
933
  [
934
  'name' => 'typography_placeholder',
935
  'label' => __('Typography', 'essential-addons-for-elementor-lite'),
936
- 'scheme' => Scheme_Typography::TYPOGRAPHY_4,
937
  'selector' => '{{WRAPPER}} .eael-contact-form-7 .wpcf7-form-control::-webkit-input-placeholder',
938
  'condition' => [
939
  'placeholder_switch' => 'yes',
@@ -1306,7 +1306,7 @@ class Contact_Form_7 extends Widget_Base
1306
  [
1307
  'name' => 'button_typography',
1308
  'label' => __('Typography', 'essential-addons-for-elementor-lite'),
1309
- 'scheme' => Scheme_Typography::TYPOGRAPHY_4,
1310
  'selector' => '{{WRAPPER}} .eael-contact-form-7 .wpcf7-form input[type="submit"]',
1311
  'separator' => 'before',
1312
  ]
@@ -1441,7 +1441,7 @@ class Contact_Form_7 extends Widget_Base
1441
  [
1442
  'name' => 'error_alert_typography',
1443
  'label' => __('Typography', 'essential-addons-for-elementor-lite'),
1444
- 'scheme' => Scheme_Typography::TYPOGRAPHY_4,
1445
  'selector' => '{{WRAPPER}} .eael-contact-form-7 .wpcf7-not-valid-tip',
1446
  'separator' => 'before',
1447
  'condition' => [
12
  use \Elementor\Group_Control_Border;
13
  use \Elementor\Group_Control_Box_Shadow;
14
  use \Elementor\Group_Control_Typography;
15
+ use \Elementor\Core\Schemes\Typography;
16
  use \Elementor\Widget_Base;
17
 
18
  use \Essential_Addons_Elementor\Classes\Helper;
485
  [
486
  'name' => 'title_typography',
487
  'label' => __('Typography', 'essential-addons-for-elementor-lite'),
488
+ 'scheme' => Typography::TYPOGRAPHY_4,
489
  'selector' => '{{WRAPPER}} .eael-contact-form-7 .eael-contact-form-7-title',
490
  ]
491
  );
516
  [
517
  'name' => 'description_typography',
518
  'label' => __('Typography', 'essential-addons-for-elementor-lite'),
519
+ 'scheme' => Typography::TYPOGRAPHY_4,
520
  'selector' => '{{WRAPPER}} .eael-contact-form-7 .eael-contact-form-7-description',
521
  ]
522
  );
733
  [
734
  'name' => 'field_typography',
735
  'label' => __('Typography', 'essential-addons-for-elementor-lite'),
736
+ 'scheme' => Typography::TYPOGRAPHY_4,
737
  'selector' => '{{WRAPPER}} .eael-contact-form-7 .wpcf7-form-control.wpcf7-text, {{WRAPPER}} .eael-contact-form-7 .wpcf7-form-control.wpcf7-quiz, {{WRAPPER}} .eael-contact-form-7 .wpcf7-form-control.wpcf7-quiz, {{WRAPPER}} .eael-contact-form-7 .wpcf7-form-control.wpcf7-textarea, {{WRAPPER}} .eael-contact-form-7 .wpcf7-form-control.wpcf7-select',
738
  'separator' => 'before',
739
  ]
881
  [
882
  'name' => 'typography_label',
883
  'label' => __('Typography', 'essential-addons-for-elementor-lite'),
884
+ 'scheme' => Typography::TYPOGRAPHY_4,
885
  'selector' => '{{WRAPPER}} .eael-contact-form-7 .wpcf7-form label, {{WRAPPER}} .eael-contact-form-7 .wpcf7-form .wpcf7-quiz-label',
886
  'condition' => [
887
  'labels_switch' => 'yes',
933
  [
934
  'name' => 'typography_placeholder',
935
  'label' => __('Typography', 'essential-addons-for-elementor-lite'),
936
+ 'scheme' => Typography::TYPOGRAPHY_4,
937
  'selector' => '{{WRAPPER}} .eael-contact-form-7 .wpcf7-form-control::-webkit-input-placeholder',
938
  'condition' => [
939
  'placeholder_switch' => 'yes',
1306
  [
1307
  'name' => 'button_typography',
1308
  'label' => __('Typography', 'essential-addons-for-elementor-lite'),
1309
+ 'scheme' => Typography::TYPOGRAPHY_4,
1310
  'selector' => '{{WRAPPER}} .eael-contact-form-7 .wpcf7-form input[type="submit"]',
1311
  'separator' => 'before',
1312
  ]
1441
  [
1442
  'name' => 'error_alert_typography',
1443
  'label' => __('Typography', 'essential-addons-for-elementor-lite'),
1444
+ 'scheme' => Typography::TYPOGRAPHY_4,
1445
  'selector' => '{{WRAPPER}} .eael-contact-form-7 .wpcf7-not-valid-tip',
1446
  'separator' => 'before',
1447
  'condition' => [
includes/Elements/Content_Ticker.php CHANGED
@@ -754,7 +754,7 @@ class Content_Ticker extends Widget_Base
754
  echo '<div class="eael-ticker-wrap" id="eael-ticker-wrap-' . $this->get_id() . '">';
755
  if (!empty($settings['eael_ticker_tag_text'])) {
756
  echo '<div class="ticker-badge">
757
- <span>' . $settings['eael_ticker_tag_text'] . '</span>
758
  </div>';
759
  }
760
 
754
  echo '<div class="eael-ticker-wrap" id="eael-ticker-wrap-' . $this->get_id() . '">';
755
  if (!empty($settings['eael_ticker_tag_text'])) {
756
  echo '<div class="ticker-badge">
757
+ <span>' . Helper::eael_wp_kses($settings['eael_ticker_tag_text']) . '</span>
758
  </div>';
759
  }
760
 
includes/Elements/Countdown.php CHANGED
@@ -11,7 +11,7 @@ use \Elementor\Group_Control_Border;
11
  use \Elementor\Group_Control_Box_Shadow;
12
  use \Elementor\Group_Control_Typography;
13
  use \Elementor\Plugin;
14
- use \Elementor\Scheme_Typography;
15
  use \Elementor\Widget_Base;
16
 
17
  use \Essential_Addons_Elementor\Classes\Helper;
@@ -374,7 +374,7 @@ class Countdown extends Widget_Base {
374
  Group_Control_Typography::get_type(),
375
  [
376
  'name' => 'eael_countdown_separator_typography',
377
- 'scheme' => Scheme_Typography::TYPOGRAPHY_2,
378
  'selector' => '{{WRAPPER}} .eael-countdown-digits::after',
379
  'condition' => [
380
  'eael_countdown_separator' => 'eael-countdown-show-separator',
@@ -674,7 +674,7 @@ class Countdown extends Widget_Base {
674
  Group_Control_Typography::get_type(),
675
  [
676
  'name' => 'eael_countdown_digit_typography',
677
- 'scheme' => Scheme_Typography::TYPOGRAPHY_2,
678
  'selector' => '{{WRAPPER}} .eael-countdown-digits',
679
  ]
680
  );
@@ -703,7 +703,7 @@ class Countdown extends Widget_Base {
703
  Group_Control_Typography::get_type(),
704
  [
705
  'name' => 'eael_countdown_label_typography',
706
- 'scheme' => Scheme_Typography::TYPOGRAPHY_2,
707
  'selector' => '{{WRAPPER}} .eael-countdown-label',
708
  ]
709
  );
@@ -1074,7 +1074,7 @@ class Countdown extends Widget_Base {
1074
  Group_Control_Typography::get_type(),
1075
  [
1076
  'name' => 'eael_countdown_expire_title_typography',
1077
- 'scheme' => Scheme_Typography::TYPOGRAPHY_2,
1078
  'selector' => '{{WRAPPER}} .eael-countdown-finish-message .expiry-title',
1079
  'condition' => [
1080
  'countdown_expire_type' => 'text',
@@ -1122,7 +1122,7 @@ class Countdown extends Widget_Base {
1122
  Group_Control_Typography::get_type(),
1123
  [
1124
  'name' => 'eael_countdown_expire_message_typography',
1125
- 'scheme' => Scheme_Typography::TYPOGRAPHY_2,
1126
  'selector' => '.eael-countdown-finish-text',
1127
  'condition' => [
1128
  'countdown_expire_type' => 'text',
11
  use \Elementor\Group_Control_Box_Shadow;
12
  use \Elementor\Group_Control_Typography;
13
  use \Elementor\Plugin;
14
+ use \Elementor\Core\Schemes\Typography;
15
  use \Elementor\Widget_Base;
16
 
17
  use \Essential_Addons_Elementor\Classes\Helper;
374
  Group_Control_Typography::get_type(),
375
  [
376
  'name' => 'eael_countdown_separator_typography',
377
+ 'scheme' => Typography::TYPOGRAPHY_2,
378
  'selector' => '{{WRAPPER}} .eael-countdown-digits::after',
379
  'condition' => [
380
  'eael_countdown_separator' => 'eael-countdown-show-separator',
674
  Group_Control_Typography::get_type(),
675
  [
676
  'name' => 'eael_countdown_digit_typography',
677
+ 'scheme' => Typography::TYPOGRAPHY_2,
678
  'selector' => '{{WRAPPER}} .eael-countdown-digits',
679
  ]
680
  );
703
  Group_Control_Typography::get_type(),
704
  [
705
  'name' => 'eael_countdown_label_typography',
706
+ 'scheme' => Typography::TYPOGRAPHY_2,
707
  'selector' => '{{WRAPPER}} .eael-countdown-label',
708
  ]
709
  );
1074
  Group_Control_Typography::get_type(),
1075
  [
1076
  'name' => 'eael_countdown_expire_title_typography',
1077
+ 'scheme' => Typography::TYPOGRAPHY_2,
1078
  'selector' => '{{WRAPPER}} .eael-countdown-finish-message .expiry-title',
1079
  'condition' => [
1080
  'countdown_expire_type' => 'text',
1122
  Group_Control_Typography::get_type(),
1123
  [
1124
  'name' => 'eael_countdown_expire_message_typography',
1125
+ 'scheme' => Typography::TYPOGRAPHY_2,
1126
  'selector' => '.eael-countdown-finish-text',
1127
  'condition' => [
1128
  'countdown_expire_type' => 'text',
includes/Elements/Creative_Button.php CHANGED
@@ -14,8 +14,9 @@ use \Elementor\Group_Control_Box_Shadow;
14
  use \Elementor\Group_Control_Typography;
15
  use Elementor\Icons_Manager;
16
  use Elementor\Modules\DynamicTags\Module as TagsModule;
17
- use \Elementor\Scheme_Typography;
18
  use \Elementor\Widget_Base;
 
19
 
20
 
21
  class Creative_Button extends Widget_Base
@@ -487,7 +488,7 @@ class Creative_Button extends Widget_Base
487
  Group_Control_Typography::get_type(),
488
  [
489
  'name' => 'eael_creative_button_typography',
490
- 'scheme' => Scheme_Typography::TYPOGRAPHY_1,
491
  'selector' => '{{WRAPPER}} .eael-creative-button .cretive-button-text, {{WRAPPER}} .eael-creative-button--winona::after',
492
  ]
493
  );
@@ -592,7 +593,7 @@ class Creative_Button extends Widget_Base
592
  <?php } ?>
593
  <?php endif; ?>
594
 
595
- <span class="cretive-button-text"><?php echo $settings['creative_button_text']; ?></span>
596
 
597
  <?php if ($settings['creative_button_effect'] !== 'eael-creative-button--tamaya' && $settings['eael_creative_button_icon_alignment'] == 'right') : ?>
598
  <?php if ($icon_migrated || $icon_is_new) {
14
  use \Elementor\Group_Control_Typography;
15
  use Elementor\Icons_Manager;
16
  use Elementor\Modules\DynamicTags\Module as TagsModule;
17
+ use \Elementor\Core\Schemes\Typography;
18
  use \Elementor\Widget_Base;
19
+ use Essential_Addons_Elementor\Classes\Helper;
20
 
21
 
22
  class Creative_Button extends Widget_Base
488
  Group_Control_Typography::get_type(),
489
  [
490
  'name' => 'eael_creative_button_typography',
491
+ 'scheme' => Typography::TYPOGRAPHY_1,
492
  'selector' => '{{WRAPPER}} .eael-creative-button .cretive-button-text, {{WRAPPER}} .eael-creative-button--winona::after',
493
  ]
494
  );
593
  <?php } ?>
594
  <?php endif; ?>
595
 
596
+ <span class="cretive-button-text"><?php echo Helper::eael_wp_kses($settings['creative_button_text']); ?></span>
597
 
598
  <?php if ($settings['creative_button_effect'] !== 'eael-creative-button--tamaya' && $settings['eael_creative_button_icon_alignment'] == 'right') : ?>
599
  <?php if ($icon_migrated || $icon_is_new) {
includes/Elements/Cta_Box.php CHANGED
@@ -1056,7 +1056,7 @@ class Cta_Box extends Widget_Base
1056
  {
1057
 
1058
  $settings = $this->get_settings_for_display();
1059
- $sub_title = $settings['eael_cta_sub_title'];
1060
  $icon_migrated = isset($settings['__fa4_migrated']['eael_cta_flex_grid_icon_new']);
1061
  $icon_is_new = empty($settings['eael_cta_flex_grid_icon']);
1062
  // Button
@@ -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 .='<'.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 = '';
1056
  {
1057
 
1058
  $settings = $this->get_settings_for_display();
1059
+ $sub_title = Helper::eael_wp_kses($settings['eael_cta_sub_title']);
1060
  $icon_migrated = isset($settings['__fa4_migrated']['eael_cta_flex_grid_icon_new']);
1061
  $icon_is_new = empty($settings['eael_cta_flex_grid_icon']);
1062
  // Button
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">'.Helper::eael_wp_kses($settings['eael_cta_title']).'</'.Helper::eael_validate_html_tag($settings['title_tag']).'>';
1098
 
1099
  // content markup
1100
  $contentMarkup = '';
includes/Elements/Data_Table.php CHANGED
@@ -96,7 +96,7 @@ class Data_Table extends Widget_Base {
96
  'eael_data_table_header_col',
97
  [
98
  'label' => esc_html__('Column Name', 'essential-addons-for-elementor-lite'),
99
- 'default' => 'Table Header',
100
  'type' => Controls_Manager::TEXT,
101
  'dynamic' => ['active' => true],
102
  'label_block' => false,
@@ -1147,7 +1147,7 @@ class Data_Table extends Widget_Base {
1147
  $table_tr_keys = array_keys( $table_tr );
1148
  $last_key = end( $table_tr_keys );
1149
 
1150
- $tbody_content = ($content_row['eael_data_table_content_type'] == 'editor') ? $content_row['eael_data_table_content_row_content'] : $content_row['eael_data_table_content_row_title'];
1151
 
1152
  $table_td[] = [
1153
  'row_id' => $table_tr[$last_key]['id'],
@@ -1223,7 +1223,7 @@ class Data_Table extends Widget_Base {
1223
  'style' => "width:{$header_title['eael_data_table_header_col_img_size']}px;",
1224
  'alt' => esc_attr(get_post_meta($header_title['eael_data_table_header_col_img']['id'], '_wp_attachment_image_alt', true))
1225
  ]);
1226
- ?><img <?php echo $this->get_render_attribute_string('data_table_th_img'.$i); ?>><?php endif; ?><span class="data-table-header-text"><?php echo __( $header_title['eael_data_table_header_col'], 'essential-addons-for-elementor-lite'); ?></span></th>
1227
  <?php $i++; endforeach; ?>
1228
  </tr>
1229
  </thead>
96
  'eael_data_table_header_col',
97
  [
98
  'label' => esc_html__('Column Name', 'essential-addons-for-elementor-lite'),
99
+ 'default' => esc_html__('Table Header', 'essential-addons-for-elementor-lite'),
100
  'type' => Controls_Manager::TEXT,
101
  'dynamic' => ['active' => true],
102
  'label_block' => false,
1147
  $table_tr_keys = array_keys( $table_tr );
1148
  $last_key = end( $table_tr_keys );
1149
 
1150
+ $tbody_content = ($content_row['eael_data_table_content_type'] == 'editor') ? $content_row['eael_data_table_content_row_content'] : Helper::eael_wp_kses($content_row['eael_data_table_content_row_title']);
1151
 
1152
  $table_td[] = [
1153
  'row_id' => $table_tr[$last_key]['id'],
1223
  'style' => "width:{$header_title['eael_data_table_header_col_img_size']}px;",
1224
  'alt' => esc_attr(get_post_meta($header_title['eael_data_table_header_col_img']['id'], '_wp_attachment_image_alt', true))
1225
  ]);
1226
+ ?><img <?php echo $this->get_render_attribute_string('data_table_th_img'.$i); ?>><?php endif; ?><span class="data-table-header-text"><?php echo __( Helper::eael_wp_kses($header_title['eael_data_table_header_col']), 'essential-addons-for-elementor-lite'); ?></span></th>
1227
  <?php $i++; endforeach; ?>
1228
  </tr>
1229
  </thead>
includes/Elements/Dual_Color_Header.php CHANGED
@@ -689,8 +689,8 @@ class Dual_Color_Header extends Widget_Base
689
  'label' => __('Color', 'essential-addons-for-elementor-lite'),
690
  'type' => \Elementor\Controls_Manager::COLOR,
691
  'scheme' => [
692
- 'type' => \Elementor\Scheme_Color::get_type(),
693
- 'value' => \Elementor\Scheme_Color::COLOR_1,
694
  ],
695
  'selectors' => [
696
  '{{WRAPPER}} .eael-dch-separator-wrap i' => 'color: {{VALUE}}',
689
  'label' => __('Color', 'essential-addons-for-elementor-lite'),
690
  'type' => \Elementor\Controls_Manager::COLOR,
691
  'scheme' => [
692
+ 'type' => \Elementor\Core\Schemes\Color::get_type(),
693
+ 'value' => \Elementor\Core\Schemes\Color::COLOR_1,
694
  ],
695
  'selectors' => [
696
  '{{WRAPPER}} .eael-dch-separator-wrap i' => 'color: {{VALUE}}',
includes/Elements/Facebook_Feed.php CHANGED
@@ -6,7 +6,7 @@ use \Elementor\Controls_Manager;
6
  use \Elementor\Group_Control_Border;
7
  use \Elementor\Group_Control_Typography;
8
  use Elementor\Plugin;
9
- use \Elementor\Scheme_Typography;
10
  use \Elementor\Widget_Base;
11
  use \Essential_Addons_Elementor\Classes\Controls;
12
 
@@ -881,7 +881,7 @@ class Facebook_Feed extends Widget_Base
881
  Group_Control_Typography::get_type(),
882
  [
883
  'name' => 'eael_facebook_feed_page_name_typography',
884
- 'scheme' => Scheme_Typography::TYPOGRAPHY_2,
885
  'selector' => '{{WRAPPER}} .eael-facebook-feed-card .eael-facebook-feed-item .eael-facebook-feed-item-inner .eael-facebook-feed-item-header .eael-facebook-feed-item-user .eael-facebook-feed-username',
886
  'condition' => [
887
  'eael_facebook_feed_layout' => 'card',
@@ -919,7 +919,7 @@ class Facebook_Feed extends Widget_Base
919
  Group_Control_Typography::get_type(),
920
  [
921
  'name' => 'eael_facebook_feed_date_typography',
922
- 'scheme' => Scheme_Typography::TYPOGRAPHY_2,
923
  'selector' => '{{WRAPPER}} .eael-facebook-feed-card .eael-facebook-feed-item .eael-facebook-feed-item-inner .eael-facebook-feed-item-header .eael-facebook-feed-post-time',
924
  'condition' => [
925
  'eael_facebook_feed_layout' => 'card',
@@ -957,7 +957,7 @@ class Facebook_Feed extends Widget_Base
957
  Group_Control_Typography::get_type(),
958
  [
959
  'name' => 'eael_facebook_feed_message_typography',
960
- 'scheme' => Scheme_Typography::TYPOGRAPHY_2,
961
  'selector' => '{{WRAPPER}} .eael-facebook-feed-card .eael-facebook-feed-item .eael-facebook-feed-item-inner .eael-facebook-feed-item-content .eael-facebook-feed-message',
962
  'condition' => [
963
  'eael_facebook_feed_layout' => 'card',
@@ -1010,7 +1010,7 @@ class Facebook_Feed extends Widget_Base
1010
  Group_Control_Typography::get_type(),
1011
  [
1012
  'name' => 'eael_facebook_feed_preview_host_typography',
1013
- 'scheme' => Scheme_Typography::TYPOGRAPHY_2,
1014
  'selector' => '{{WRAPPER}} .eael-facebook-feed-card .eael-facebook-feed-item .eael-facebook-feed-item-inner .eael-facebook-feed-preview-wrap .eael-facebook-feed-url-preview .eael-facebook-feed-url-host',
1015
  'condition' => [
1016
  'eael_facebook_feed_layout' => 'card',
@@ -1048,7 +1048,7 @@ class Facebook_Feed extends Widget_Base
1048
  Group_Control_Typography::get_type(),
1049
  [
1050
  'name' => 'eael_facebook_feed_preview_title_typography',
1051
- 'scheme' => Scheme_Typography::TYPOGRAPHY_1,
1052
  'selector' => '{{WRAPPER}} .eael-facebook-feed-card .eael-facebook-feed-item .eael-facebook-feed-item-inner .eael-facebook-feed-preview-wrap .eael-facebook-feed-url-preview .eael-facebook-feed-url-title',
1053
  'condition' => [
1054
  'eael_facebook_feed_layout' => 'card',
@@ -1086,7 +1086,7 @@ class Facebook_Feed extends Widget_Base
1086
  Group_Control_Typography::get_type(),
1087
  [
1088
  'name' => 'eael_facebook_feed_preview_desc_typography',
1089
- 'scheme' => Scheme_Typography::TYPOGRAPHY_2,
1090
  'selector' => '{{WRAPPER}} .eael-facebook-feed-card .eael-facebook-feed-item .eael-facebook-feed-item-inner .eael-facebook-feed-preview-wrap .eael-facebook-feed-url-preview .eael-facebook-feed-url-description',
1091
  'condition' => [
1092
  'eael_facebook_feed_layout' => 'card',
@@ -1121,7 +1121,7 @@ class Facebook_Feed extends Widget_Base
1121
  Group_Control_Typography::get_type(),
1122
  [
1123
  'name' => 'eael_facebook_feed_likes_conmments_typography',
1124
- 'scheme' => Scheme_Typography::TYPOGRAPHY_2,
1125
  'selector' => '{{WRAPPER}} .eael-facebook-feed-overlay .eael-facebook-feed-item .eael-facebook-feed-item-overlay, {{WRAPPER}} .eael-facebook-feed-card .eael-facebook-feed-item .eael-facebook-feed-item-inner .eael-facebook-feed-item-footer',
1126
  ]
1127
  );
6
  use \Elementor\Group_Control_Border;
7
  use \Elementor\Group_Control_Typography;
8
  use Elementor\Plugin;
9
+ use \Elementor\Core\Schemes\Typography;
10
  use \Elementor\Widget_Base;
11
  use \Essential_Addons_Elementor\Classes\Controls;
12
 
881
  Group_Control_Typography::get_type(),
882
  [
883
  'name' => 'eael_facebook_feed_page_name_typography',
884
+ 'scheme' => Typography::TYPOGRAPHY_2,
885
  'selector' => '{{WRAPPER}} .eael-facebook-feed-card .eael-facebook-feed-item .eael-facebook-feed-item-inner .eael-facebook-feed-item-header .eael-facebook-feed-item-user .eael-facebook-feed-username',
886
  'condition' => [
887
  'eael_facebook_feed_layout' => 'card',
919
  Group_Control_Typography::get_type(),
920
  [
921
  'name' => 'eael_facebook_feed_date_typography',
922
+ 'scheme' => Typography::TYPOGRAPHY_2,
923
  'selector' => '{{WRAPPER}} .eael-facebook-feed-card .eael-facebook-feed-item .eael-facebook-feed-item-inner .eael-facebook-feed-item-header .eael-facebook-feed-post-time',
924
  'condition' => [
925
  'eael_facebook_feed_layout' => 'card',
957
  Group_Control_Typography::get_type(),
958
  [
959
  'name' => 'eael_facebook_feed_message_typography',
960
+ 'scheme' => Typography::TYPOGRAPHY_2,
961
  'selector' => '{{WRAPPER}} .eael-facebook-feed-card .eael-facebook-feed-item .eael-facebook-feed-item-inner .eael-facebook-feed-item-content .eael-facebook-feed-message',
962
  'condition' => [
963
  'eael_facebook_feed_layout' => 'card',
1010
  Group_Control_Typography::get_type(),
1011
  [
1012
  'name' => 'eael_facebook_feed_preview_host_typography',
1013
+ 'scheme' => Typography::TYPOGRAPHY_2,
1014
  'selector' => '{{WRAPPER}} .eael-facebook-feed-card .eael-facebook-feed-item .eael-facebook-feed-item-inner .eael-facebook-feed-preview-wrap .eael-facebook-feed-url-preview .eael-facebook-feed-url-host',
1015
  'condition' => [
1016
  'eael_facebook_feed_layout' => 'card',
1048
  Group_Control_Typography::get_type(),
1049
  [
1050
  'name' => 'eael_facebook_feed_preview_title_typography',
1051
+ 'scheme' => Typography::TYPOGRAPHY_1,
1052
  'selector' => '{{WRAPPER}} .eael-facebook-feed-card .eael-facebook-feed-item .eael-facebook-feed-item-inner .eael-facebook-feed-preview-wrap .eael-facebook-feed-url-preview .eael-facebook-feed-url-title',
1053
  'condition' => [
1054
  'eael_facebook_feed_layout' => 'card',
1086
  Group_Control_Typography::get_type(),
1087
  [
1088
  'name' => 'eael_facebook_feed_preview_desc_typography',
1089
+ 'scheme' => Typography::TYPOGRAPHY_2,
1090
  'selector' => '{{WRAPPER}} .eael-facebook-feed-card .eael-facebook-feed-item .eael-facebook-feed-item-inner .eael-facebook-feed-preview-wrap .eael-facebook-feed-url-preview .eael-facebook-feed-url-description',
1091
  'condition' => [
1092
  'eael_facebook_feed_layout' => 'card',
1121
  Group_Control_Typography::get_type(),
1122
  [
1123
  'name' => 'eael_facebook_feed_likes_conmments_typography',
1124
+ 'scheme' => Typography::TYPOGRAPHY_2,
1125
  'selector' => '{{WRAPPER}} .eael-facebook-feed-overlay .eael-facebook-feed-item .eael-facebook-feed-item-overlay, {{WRAPPER}} .eael-facebook-feed-card .eael-facebook-feed-item .eael-facebook-feed-item-inner .eael-facebook-feed-item-footer',
1126
  ]
1127
  );
includes/Elements/Fancy_Text.php CHANGED
@@ -10,9 +10,11 @@ use \Elementor\Controls_Manager;
10
  use \Elementor\Group_Control_Background;
11
  use \Elementor\Group_Control_Border;
12
  use \Elementor\Group_Control_Typography;
13
- use \Elementor\Scheme_Typography;
14
  use \Elementor\Widget_Base;
15
  use \Elementor\Repeater;
 
 
16
 
17
  class Fancy_Text extends Widget_Base {
18
 
@@ -311,7 +313,7 @@ class Fancy_Text extends Widget_Base {
311
  Group_Control_Typography::get_type(),
312
  [
313
  'name' => 'typography',
314
- 'scheme' => Scheme_Typography::TYPOGRAPHY_1,
315
  'fields_options' => [
316
  'typography' => ['default' => 'yes'],
317
  'font_size' => ['default' => ['size' => 22]],
@@ -418,7 +420,7 @@ class Fancy_Text extends Widget_Base {
418
  Group_Control_Typography::get_type(),
419
  [
420
  'name' => 'eael_fancy_text_strings_typography',
421
- 'scheme' => Scheme_Typography::TYPOGRAPHY_1,
422
  'fields_options' => [
423
  'typography' => ['default' => 'yes'],
424
  'font_size' => ['default' => ['size' => 22]],
@@ -552,7 +554,7 @@ class Fancy_Text extends Widget_Base {
552
  Group_Control_Typography::get_type(),
553
  [
554
  'name' => 'ending_typography',
555
- 'scheme' => Scheme_Typography::TYPOGRAPHY_1,
556
  'fields_options' => [
557
  'typography' => ['default' => 'yes'],
558
  'font_size' => ['default' => ['size' => 22]],
@@ -572,11 +574,10 @@ class Fancy_Text extends Widget_Base {
572
  $fancy_text = array("");
573
  foreach ( $settings as $item ) {
574
  if ( ! empty( $item['eael_fancy_text_strings_text_field'] ) ) {
575
- $fancy_text[] = $item['eael_fancy_text_strings_text_field'] ;
576
  }
577
  }
578
- $fancy_text = implode("|",$fancy_text);
579
- return $fancy_text;
580
  }
581
 
582
  protected function render() {
@@ -598,7 +599,7 @@ class Fancy_Text extends Widget_Base {
598
 
599
  <div <?php echo $this->get_render_attribute_string( 'fancy-text' ); ?> >
600
  <?php if ( ! empty( $settings['eael_fancy_text_prefix'] ) ) : ?>
601
- <span class="eael-fancy-text-prefix"><?php echo wp_kses_post($settings['eael_fancy_text_prefix']); ?> </span>
602
  <?php endif; ?>
603
 
604
  <?php if ( $settings['eael_fancy_text_transition_type'] == 'fancy' ) : ?>
@@ -621,7 +622,7 @@ class Fancy_Text extends Widget_Base {
621
  <?php endif; ?>
622
 
623
  <?php if ( ! empty( $settings['eael_fancy_text_suffix'] ) ) : ?>
624
- <span class="eael-fancy-text-suffix"> <?php echo wp_kses_post($settings['eael_fancy_text_suffix']); ?></span>
625
  <?php endif; ?>
626
  </div><!-- close .eael-fancy-text-container -->
627
 
10
  use \Elementor\Group_Control_Background;
11
  use \Elementor\Group_Control_Border;
12
  use \Elementor\Group_Control_Typography;
13
+ use \Elementor\Core\Schemes\Typography;
14
  use \Elementor\Widget_Base;
15
  use \Elementor\Repeater;
16
+ use Essential_Addons_Elementor\Classes\Helper as HelperClass;
17
+
18
 
19
  class Fancy_Text extends Widget_Base {
20
 
313
  Group_Control_Typography::get_type(),
314
  [
315
  'name' => 'typography',
316
+ 'scheme' => Typography::TYPOGRAPHY_1,
317
  'fields_options' => [
318
  'typography' => ['default' => 'yes'],
319
  'font_size' => ['default' => ['size' => 22]],
420
  Group_Control_Typography::get_type(),
421
  [
422
  'name' => 'eael_fancy_text_strings_typography',
423
+ 'scheme' => Typography::TYPOGRAPHY_1,
424
  'fields_options' => [
425
  'typography' => ['default' => 'yes'],
426
  'font_size' => ['default' => ['size' => 22]],
554
  Group_Control_Typography::get_type(),
555
  [
556
  'name' => 'ending_typography',
557
+ 'scheme' => Typography::TYPOGRAPHY_1,
558
  'fields_options' => [
559
  'typography' => ['default' => 'yes'],
560
  'font_size' => ['default' => ['size' => 22]],
574
  $fancy_text = array("");
575
  foreach ( $settings as $item ) {
576
  if ( ! empty( $item['eael_fancy_text_strings_text_field'] ) ) {
577
+ $fancy_text[] = HelperClass::eael_wp_kses($item['eael_fancy_text_strings_text_field']) ;
578
  }
579
  }
580
+ return implode("|",$fancy_text);
 
581
  }
582
 
583
  protected function render() {
599
 
600
  <div <?php echo $this->get_render_attribute_string( 'fancy-text' ); ?> >
601
  <?php if ( ! empty( $settings['eael_fancy_text_prefix'] ) ) : ?>
602
+ <span class="eael-fancy-text-prefix"><?php echo HelperClass::eael_wp_kses($settings['eael_fancy_text_prefix']); ?> </span>
603
  <?php endif; ?>
604
 
605
  <?php if ( $settings['eael_fancy_text_transition_type'] == 'fancy' ) : ?>
622
  <?php endif; ?>
623
 
624
  <?php if ( ! empty( $settings['eael_fancy_text_suffix'] ) ) : ?>
625
+ <span class="eael-fancy-text-suffix"> <?php echo HelperClass::eael_wp_kses($settings['eael_fancy_text_suffix']); ?></span>
626
  <?php endif; ?>
627
  </div><!-- close .eael-fancy-text-container -->
628
 
includes/Elements/Feature_List.php CHANGED
@@ -10,9 +10,10 @@ if ( !defined( 'ABSPATH' ) ) {
10
  use \Elementor\Controls_Manager;
11
  use \Elementor\Group_Control_Background;
12
  use \Elementor\Group_Control_Typography;
13
- use Elementor\Icons_Manager;use \Elementor\Repeater;
14
- use \Elementor\Scheme_Color;
15
- use \Elementor\Scheme_Typography;
 
16
  use \Elementor\Utils;
17
  use \Elementor\Widget_Base;
18
 
@@ -121,8 +122,8 @@ class Feature_List extends Widget_Base {
121
  'label' => esc_html__( 'Icon Color', 'essential-addons-for-elementor-lite' ),
122
  'type' => Controls_Manager::COLOR,
123
  'scheme' => [
124
- 'type' => Scheme_Color::get_type(),
125
- 'value' => Scheme_Color::COLOR_1,
126
  ],
127
  'fa4compatibility' => 'eael_feature_list_icon',
128
  'condition' => [
@@ -136,8 +137,8 @@ class Feature_List extends Widget_Base {
136
  'label' => esc_html__( 'Icon Background', 'essential-addons-for-elementor-lite' ),
137
  'type' => Controls_Manager::COLOR,
138
  'scheme' => [
139
- 'type' => Scheme_Color::get_type(),
140
- 'value' => Scheme_Color::COLOR_1,
141
  ],
142
  'fa4compatibility' => 'eael_feature_list_icon',
143
  'condition' => [
@@ -151,8 +152,8 @@ class Feature_List extends Widget_Base {
151
  'label' => esc_html__( 'Icon Box Background', 'essential-addons-for-elementor-lite' ),
152
  'type' => Controls_Manager::COLOR,
153
  'scheme' => [
154
- 'type' => Scheme_Color::get_type(),
155
- 'value' => Scheme_Color::COLOR_1,
156
  ],
157
  'fa4compatibility' => 'eael_feature_list_icon',
158
  'condition' => [
@@ -449,8 +450,8 @@ class Feature_List extends Widget_Base {
449
  'label' => esc_html__( 'Connector Color', 'essential-addons-for-elementor-lite' ),
450
  'type' => Controls_Manager::COLOR,
451
  'scheme' => [
452
- 'type' => Scheme_Color::get_type(),
453
- 'value' => Scheme_Color::COLOR_1,
454
  ],
455
  'default' => '#37368e',
456
  'selectors' => [
@@ -768,8 +769,8 @@ class Feature_List extends Widget_Base {
768
  '{{WRAPPER}} .eael-feature-list-content-box .eael-feature-list-title, {{WRAPPER}} .eael-feature-list-content-box .eael-feature-list-title > a, {{WRAPPER}} .eael-feature-list-content-box .eael-feature-list-title:visited' => 'color: {{VALUE}};',
769
  ],
770
  'scheme' => [
771
- 'type' => Scheme_Color::get_type(),
772
- 'value' => Scheme_Color::COLOR_1,
773
  ],
774
  ]
775
  );
@@ -779,7 +780,7 @@ class Feature_List extends Widget_Base {
779
  [
780
  'name' => 'eael_feature_list_title_typography',
781
  'selector' => '{{WRAPPER}} .eael-feature-list-content-box .eael-feature-list-title, {{WRAPPER}} .eael-feature-list-content-box .eael-feature-list-title a',
782
- 'scheme' => Scheme_Typography::TYPOGRAPHY_1,
783
  ]
784
  );
785
 
@@ -802,8 +803,8 @@ class Feature_List extends Widget_Base {
802
  '{{WRAPPER}} .eael-feature-list-content-box .eael-feature-list-content' => 'color: {{VALUE}};',
803
  ],
804
  'scheme' => [
805
- 'type' => Scheme_Color::get_type(),
806
- 'value' => Scheme_Color::COLOR_3,
807
  ],
808
  ]
809
  );
@@ -813,7 +814,7 @@ class Feature_List extends Widget_Base {
813
  [
814
  'name' => 'eael_feature_list_description_typography',
815
  'selector' => '{{WRAPPER}} .eael-feature-list-content-box .eael-feature-list-content',
816
- 'scheme' => Scheme_Typography::TYPOGRAPHY_3,
817
  'fields_options' => [
818
  'font_size' => ['default' => ['unit' => 'px', 'size' => 14]],
819
  ],
@@ -985,9 +986,9 @@ class Feature_List extends Widget_Base {
985
  $feat_title_tag,
986
  $this->get_render_attribute_string( 'eael_feature_list_title' . $index),
987
  ] ); ?>
988
- ><?php echo !empty( $item['eael_feature_list_link']['url'] ) ? "<a {$this->get_render_attribute_string( 'eael_feature_list_title_anchor' . $index)}>" : ''; ?><?php echo $item['eael_feature_list_title']; ?><?php echo !empty( $item['eael_feature_list_link']['url'] ) ? "</a>" : ''; ?></<?php echo $feat_title_tag; ?>
989
  >
990
- <p <?php echo $this->get_render_attribute_string( 'eael_feature_list_content' . $index); ?>><?php echo $item['eael_feature_list_content']; ?></p>
991
  </div>
992
 
993
  </li>
10
  use \Elementor\Controls_Manager;
11
  use \Elementor\Group_Control_Background;
12
  use \Elementor\Group_Control_Typography;
13
+ use \Elementor\Icons_Manager;
14
+ use \Elementor\Repeater;
15
+ use \Elementor\Core\Schemes\Typography;
16
+ use \Elementor\Core\Schemes\Color;
17
  use \Elementor\Utils;
18
  use \Elementor\Widget_Base;
19
 
122
  'label' => esc_html__( 'Icon Color', 'essential-addons-for-elementor-lite' ),
123
  'type' => Controls_Manager::COLOR,
124
  'scheme' => [
125
+ 'type' => Color::get_type(),
126
+ 'value' => Color::COLOR_1,
127
  ],
128
  'fa4compatibility' => 'eael_feature_list_icon',
129
  'condition' => [
137
  'label' => esc_html__( 'Icon Background', 'essential-addons-for-elementor-lite' ),
138
  'type' => Controls_Manager::COLOR,
139
  'scheme' => [
140
+ 'type' => Color::get_type(),
141
+ 'value' => Color::COLOR_1,
142
  ],
143
  'fa4compatibility' => 'eael_feature_list_icon',
144
  'condition' => [
152
  'label' => esc_html__( 'Icon Box Background', 'essential-addons-for-elementor-lite' ),
153
  'type' => Controls_Manager::COLOR,
154
  'scheme' => [
155
+ 'type' => Color::get_type(),
156
+ 'value' => Color::COLOR_1,
157
  ],
158
  'fa4compatibility' => 'eael_feature_list_icon',
159
  'condition' => [
450
  'label' => esc_html__( 'Connector Color', 'essential-addons-for-elementor-lite' ),
451
  'type' => Controls_Manager::COLOR,
452
  'scheme' => [
453
+ 'type' => Color::get_type(),
454
+ 'value' => Color::COLOR_1,
455
  ],
456
  'default' => '#37368e',
457
  'selectors' => [
769
  '{{WRAPPER}} .eael-feature-list-content-box .eael-feature-list-title, {{WRAPPER}} .eael-feature-list-content-box .eael-feature-list-title > a, {{WRAPPER}} .eael-feature-list-content-box .eael-feature-list-title:visited' => 'color: {{VALUE}};',
770
  ],
771
  'scheme' => [
772
+ 'type' => Color::get_type(),
773
+ 'value' => Color::COLOR_1,
774
  ],
775
  ]
776
  );
780
  [
781
  'name' => 'eael_feature_list_title_typography',
782
  'selector' => '{{WRAPPER}} .eael-feature-list-content-box .eael-feature-list-title, {{WRAPPER}} .eael-feature-list-content-box .eael-feature-list-title a',
783
+ 'scheme' => Typography::TYPOGRAPHY_1,
784
  ]
785
  );
786
 
803
  '{{WRAPPER}} .eael-feature-list-content-box .eael-feature-list-content' => 'color: {{VALUE}};',
804
  ],
805
  'scheme' => [
806
+ 'type' => Color::get_type(),
807
+ 'value' => Color::COLOR_3,
808
  ],
809
  ]
810
  );
814
  [
815
  'name' => 'eael_feature_list_description_typography',
816
  'selector' => '{{WRAPPER}} .eael-feature-list-content-box .eael-feature-list-content',
817
+ 'scheme' => Typography::TYPOGRAPHY_3,
818
  'fields_options' => [
819
  'font_size' => ['default' => ['unit' => 'px', 'size' => 14]],
820
  ],
986
  $feat_title_tag,
987
  $this->get_render_attribute_string( 'eael_feature_list_title' . $index),
988
  ] ); ?>
989
+ ><?php echo !empty( $item['eael_feature_list_link']['url'] ) ? "<a {$this->get_render_attribute_string( 'eael_feature_list_title_anchor' . $index)}>" : ''; ?><?php echo Helper::eael_wp_kses($item['eael_feature_list_title']); ?><?php echo !empty( $item['eael_feature_list_link']['url'] ) ? "</a>" : ''; ?></<?php echo $feat_title_tag; ?>
990
  >
991
+ <p <?php echo $this->get_render_attribute_string( 'eael_feature_list_content' . $index); ?>><?php echo Helper::eael_wp_kses($item['eael_feature_list_content']); ?></p>
992
  </div>
993
 
994
  </li>
includes/Elements/Filterable_Gallery.php CHANGED
@@ -2871,7 +2871,7 @@ class Filterable_Gallery extends Widget_Base
2871
  <?php } ?>
2872
  <?php } ?>
2873
  <span class="eael-filterable-gallery-load-more-text">
2874
- <?php echo $settings['load_more_text']; ?>
2875
  </span>
2876
  <?php if ($settings['button_icon_position'] == 'after') { ?>
2877
  <?php if ($icon_is_new || $icon_migrated) { ?>
@@ -2897,7 +2897,7 @@ class Filterable_Gallery extends Widget_Base
2897
  $counter = 0;
2898
 
2899
  foreach ($gallery_items as $gallery) {
2900
- $gallery_store[$counter]['title'] = $gallery['eael_fg_gallery_item_name'];
2901
  $gallery_store[$counter]['content'] = $gallery['eael_fg_gallery_item_content'];
2902
  $gallery_store[$counter]['id'] = $gallery['_id'];
2903
  $gallery_store[$counter]['image'] = $gallery['eael_fg_gallery_img'];
@@ -3248,7 +3248,7 @@ class Filterable_Gallery extends Widget_Base
3248
 
3249
  $gallery_settings['widget_id'] = $this->get_id();
3250
 
3251
- $no_more_items_text = esc_html__($settings['nomore_items_text'], 'essential-addons-for-elementor-lite');
3252
  $grid_class = $settings['eael_fg_grid_style'] == 'grid' ? 'eael-filter-gallery-grid' : 'masonry';
3253
 
3254
  $this->add_render_attribute('gallery-items-wrap', [
2871
  <?php } ?>
2872
  <?php } ?>
2873
  <span class="eael-filterable-gallery-load-more-text">
2874
+ <?php echo Helper::eael_wp_kses($settings['load_more_text']); ?>
2875
  </span>
2876
  <?php if ($settings['button_icon_position'] == 'after') { ?>
2877
  <?php if ($icon_is_new || $icon_migrated) { ?>
2897
  $counter = 0;
2898
 
2899
  foreach ($gallery_items as $gallery) {
2900
+ $gallery_store[$counter]['title'] = Helper::eael_wp_kses($gallery['eael_fg_gallery_item_name']);
2901
  $gallery_store[$counter]['content'] = $gallery['eael_fg_gallery_item_content'];
2902
  $gallery_store[$counter]['id'] = $gallery['_id'];
2903
  $gallery_store[$counter]['image'] = $gallery['eael_fg_gallery_img'];
3248
 
3249
  $gallery_settings['widget_id'] = $this->get_id();
3250
 
3251
+ $no_more_items_text = Helper::eael_wp_kses($settings['nomore_items_text']);
3252
  $grid_class = $settings['eael_fg_grid_style'] == 'grid' ? 'eael-filter-gallery-grid' : 'masonry';
3253
 
3254
  $this->add_render_attribute('gallery-items-wrap', [
includes/Elements/FluentForm.php CHANGED
@@ -10,10 +10,10 @@ use \Elementor\Controls_Manager;
10
  use \Elementor\Group_Control_Border;
11
  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\Group_Control_Background;
16
- use \Elementor\Scheme_Color;
17
 
18
  use \Essential_Addons_Elementor\Classes\Helper;
19
 
@@ -352,7 +352,7 @@ class FluentForm extends Widget_Base
352
  [
353
  'name' => 'form_description_typography',
354
  'label' => __('Typography', 'essential-addons-for-elementor-lite'),
355
- 'scheme' => Scheme_Typography::TYPOGRAPHY_4,
356
  'selector' => '{{WRAPPER}} .eael-fluentform-description',
357
  'condition' => [
358
  'custom_title_description' => 'yes',
@@ -1717,8 +1717,8 @@ class FluentForm extends Widget_Base
1717
  'label' => __( 'Label Color', 'essential-addons-for-elementor-lite' ),
1718
  'type' => Controls_Manager::COLOR,
1719
  'scheme' => [
1720
- 'type' => Scheme_Color::get_type(),
1721
- 'value' => Scheme_Color::COLOR_1,
1722
  ],
1723
  'selectors' => [
1724
  '{{WRAPPER}} .ff-el-progress-status' => 'color: {{VALUE}}',
@@ -1734,7 +1734,7 @@ class FluentForm extends Widget_Base
1734
  [
1735
  'name' => 'label_typography',
1736
  'label' => __( 'Typography', 'essential-addons-for-elementor-lite' ),
1737
- 'scheme' => Scheme_Typography::TYPOGRAPHY_1,
1738
  'selector' => '{{WRAPPER}} .ff-el-progress-status',
1739
  'condition' => [
1740
  'show_label' => 'yes'
@@ -1807,8 +1807,8 @@ class FluentForm extends Widget_Base
1807
  'label' => __( 'Title Color', 'essential-addons-for-elementor-lite' ),
1808
  'type' => Controls_Manager::COLOR,
1809
  'scheme' => [
1810
- 'type' => Scheme_Color::get_type(),
1811
- 'value' => Scheme_Color::COLOR_1,
1812
  ],
1813
  'selectors' => [
1814
  '{{WRAPPER}} .ff-el-progress-bar span' => 'color: {{VALUE}};',
@@ -1931,7 +1931,7 @@ class FluentForm extends Widget_Base
1931
  [
1932
  'name' => 'pagination_button_typography',
1933
  'label' => __( 'Typography', 'essential-addons-for-elementor-lite' ),
1934
- 'scheme' => Scheme_Typography::TYPOGRAPHY_1,
1935
  'selector' => '{{WRAPPER}} .step-nav button',
1936
  ]
1937
  );
10
  use \Elementor\Group_Control_Border;
11
  use \Elementor\Group_Control_Box_Shadow;
12
  use \Elementor\Group_Control_Typography;
13
+ use \Elementor\Core\Schemes\Typography;
14
  use \Elementor\Widget_Base;
15
  use \Elementor\Group_Control_Background;
16
+ use \Elementor\Core\Schemes\Color;
17
 
18
  use \Essential_Addons_Elementor\Classes\Helper;
19
 
352
  [
353
  'name' => 'form_description_typography',
354
  'label' => __('Typography', 'essential-addons-for-elementor-lite'),
355
+ 'scheme' => Typography::TYPOGRAPHY_4,
356
  'selector' => '{{WRAPPER}} .eael-fluentform-description',
357
  'condition' => [
358
  'custom_title_description' => 'yes',
1717
  'label' => __( 'Label Color', 'essential-addons-for-elementor-lite' ),
1718
  'type' => Controls_Manager::COLOR,
1719
  'scheme' => [
1720
+ 'type' => Color::get_type(),
1721
+ 'value' => Color::COLOR_1,
1722
  ],
1723
  'selectors' => [
1724
  '{{WRAPPER}} .ff-el-progress-status' => 'color: {{VALUE}}',
1734
  [
1735
  'name' => 'label_typography',
1736
  'label' => __( 'Typography', 'essential-addons-for-elementor-lite' ),
1737
+ 'scheme' => Typography::TYPOGRAPHY_1,
1738
  'selector' => '{{WRAPPER}} .ff-el-progress-status',
1739
  'condition' => [
1740
  'show_label' => 'yes'
1807
  'label' => __( 'Title Color', 'essential-addons-for-elementor-lite' ),
1808
  'type' => Controls_Manager::COLOR,
1809
  'scheme' => [
1810
+ 'type' => Color::get_type(),
1811
+ 'value' => Color::COLOR_1,
1812
  ],
1813
  'selectors' => [
1814
  '{{WRAPPER}} .ff-el-progress-bar span' => 'color: {{VALUE}};',
1931
  [
1932
  'name' => 'pagination_button_typography',
1933
  'label' => __( 'Typography', 'essential-addons-for-elementor-lite' ),
1934
+ 'scheme' => Typography::TYPOGRAPHY_1,
1935
  'selector' => '{{WRAPPER}} .step-nav button',
1936
  ]
1937
  );
includes/Elements/Formstack.php CHANGED
@@ -11,10 +11,10 @@ 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\Scheme_Typography;
15
  use \Elementor\Widget_Base;
16
  use \Elementor\Group_Control_Background;
17
- use \Elementor\Scheme_Color;
18
 
19
  class Formstack extends Widget_Base {
20
 
@@ -541,7 +541,7 @@ class Formstack extends Widget_Base {
541
  [
542
  'name' => 'eael_formstack_form_description_typography',
543
  'label' => __('Typography', 'essential-addons-for-elementor-lite'),
544
- 'scheme' => Scheme_Typography::TYPOGRAPHY_4,
545
  'selector' => '{{WRAPPER}} .eael-formstack-description'
546
  ]
547
  );
@@ -1633,8 +1633,8 @@ class Formstack extends Widget_Base {
1633
  'label' => __('Title Color', 'essential-addons-for-elementor-lite'),
1634
  'type' => Controls_Manager::COLOR,
1635
  'scheme' => [
1636
- 'type' => Scheme_Color::get_type(),
1637
- 'value' => Scheme_Color::COLOR_1,
1638
  ],
1639
  'selectors' => [
1640
  '{{WRAPPER}} .eael-formstack .fsProgressBarContainer .fsProgressText' => 'color: {{VALUE}};',
@@ -1791,7 +1791,7 @@ class Formstack extends Widget_Base {
1791
  [
1792
  'name' => 'eael_formstack_pagination_button_typography',
1793
  'label' => __('Typography', 'essential-addons-for-elementor-lite'),
1794
- 'scheme' => Scheme_Typography::TYPOGRAPHY_1,
1795
  'selector' => '{{WRAPPER}} .eael-formstack .fsPagination button .fsFull',
1796
  ]
1797
  );
11
  use \Elementor\Group_Control_Border;
12
  use \Elementor\Group_Control_Box_Shadow;
13
  use \Elementor\Group_Control_Typography;
14
+ use \Elementor\Core\Schemes\Typography;
15
  use \Elementor\Widget_Base;
16
  use \Elementor\Group_Control_Background;
17
+ use \Elementor\Core\Schemes\Color;
18
 
19
  class Formstack extends Widget_Base {
20
 
541
  [
542
  'name' => 'eael_formstack_form_description_typography',
543
  'label' => __('Typography', 'essential-addons-for-elementor-lite'),
544
+ 'scheme' => Typography::TYPOGRAPHY_4,
545
  'selector' => '{{WRAPPER}} .eael-formstack-description'
546
  ]
547
  );
1633
  'label' => __('Title Color', 'essential-addons-for-elementor-lite'),
1634
  'type' => Controls_Manager::COLOR,
1635
  'scheme' => [
1636
+ 'type' => Color::get_type(),
1637
+ 'value' => Color::COLOR_1,
1638
  ],
1639
  'selectors' => [
1640
  '{{WRAPPER}} .eael-formstack .fsProgressBarContainer .fsProgressText' => 'color: {{VALUE}};',
1791
  [
1792
  'name' => 'eael_formstack_pagination_button_typography',
1793
  'label' => __('Typography', 'essential-addons-for-elementor-lite'),
1794
+ 'scheme' => Typography::TYPOGRAPHY_1,
1795
  'selector' => '{{WRAPPER}} .eael-formstack .fsPagination button .fsFull',
1796
  ]
1797
  );
includes/Elements/GravityForms.php CHANGED
@@ -10,7 +10,7 @@ use \Elementor\Controls_Manager;
10
  use \Elementor\Group_Control_Border;
11
  use \Elementor\Group_Control_Box_Shadow;
12
  use \Elementor\Group_Control_Typography;
13
- use \Elementor\Scheme_Typography;
14
  use \Elementor\Widget_Base;
15
 
16
  use \Essential_Addons_Elementor\Classes\Helper;
@@ -526,7 +526,7 @@ class GravityForms extends Widget_Base {
526
  [
527
  'name' => 'title_typography',
528
  'label' => __( 'Typography', 'essential-addons-for-elementor-lite'),
529
- 'scheme' => Scheme_Typography::TYPOGRAPHY_4,
530
  'selector' => '{{WRAPPER}} .eael-gravity-form .gform_wrapper .gform_title, {{WRAPPER}} .eael-gravity-form .eael-gravity-form-title',
531
  ]
532
  );
@@ -557,7 +557,7 @@ class GravityForms extends Widget_Base {
557
  [
558
  'name' => 'description_typography',
559
  'label' => __( 'Typography', 'essential-addons-for-elementor-lite'),
560
- 'scheme' => Scheme_Typography::TYPOGRAPHY_4,
561
  'selector' => '{{WRAPPER}} .eael-gravity-form .gform_wrapper .gform_description, {{WRAPPER}} .eael-gravity-form .eael-gravity-form-description',
562
  ]
563
  );
@@ -1000,7 +1000,7 @@ class GravityForms extends Widget_Base {
1000
  [
1001
  'name' => 'section_field_typography',
1002
  'label' => __( 'Typography', 'essential-addons-for-elementor-lite'),
1003
- 'scheme' => Scheme_Typography::TYPOGRAPHY_4,
1004
  'selector' => '{{WRAPPER}} .eael-gravity-form .gfield.gsection .gsection_title',
1005
  'separator' => 'before',
1006
  ]
@@ -1931,7 +1931,7 @@ class GravityForms extends Widget_Base {
1931
  [
1932
  'name' => 'button_typography',
1933
  'label' => __( 'Typography', 'essential-addons-for-elementor-lite'),
1934
- 'scheme' => Scheme_Typography::TYPOGRAPHY_4,
1935
  'selector' => '{{WRAPPER}} .eael-gravity-form .gform_footer input[type="submit"], {{WRAPPER}} .eael-gravity-form .gform_body .gform_page_footer input[type="submit"]',
1936
  'separator' => 'before',
1937
  ]
@@ -2152,7 +2152,7 @@ class GravityForms extends Widget_Base {
2152
  [
2153
  'name' => 'eael_gravity_forms_next_button_typography',
2154
  'label' => __( 'Typography', 'essential-addons-for-elementor-lite'),
2155
- 'scheme' => Scheme_Typography::TYPOGRAPHY_4,
2156
  'selector' => '{{WRAPPER}} .eael-gravity-form .gform_body .gform_page_footer input[type="button"]',
2157
  'separator' => 'before',
2158
  ]
@@ -2345,7 +2345,7 @@ class GravityForms extends Widget_Base {
2345
  [
2346
  'name' => 'eaelgf_thankyou_message_typography',
2347
  'label' => __( 'Typography', 'essential-addons-for-elementor-lite'),
2348
- 'scheme' => Scheme_Typography::TYPOGRAPHY_4,
2349
  'selector' => '{{WRAPPER}} .eael-gravity-form .gform_confirmation_wrapper .gform_confirmation_message',
2350
  'separator' => 'before',
2351
  ]
@@ -2434,4 +2434,4 @@ class GravityForms extends Widget_Base {
2434
 
2435
  protected function _content_template() {}
2436
 
2437
- }
10
  use \Elementor\Group_Control_Border;
11
  use \Elementor\Group_Control_Box_Shadow;
12
  use \Elementor\Group_Control_Typography;
13
+ use \Elementor\Core\Schemes\Typography;
14
  use \Elementor\Widget_Base;
15
 
16
  use \Essential_Addons_Elementor\Classes\Helper;
526
  [
527
  'name' => 'title_typography',
528
  'label' => __( 'Typography', 'essential-addons-for-elementor-lite'),
529
+ 'scheme' => Typography::TYPOGRAPHY_4,
530
  'selector' => '{{WRAPPER}} .eael-gravity-form .gform_wrapper .gform_title, {{WRAPPER}} .eael-gravity-form .eael-gravity-form-title',
531
  ]
532
  );
557
  [
558
  'name' => 'description_typography',
559
  'label' => __( 'Typography', 'essential-addons-for-elementor-lite'),
560
+ 'scheme' => Typography::TYPOGRAPHY_4,
561
  'selector' => '{{WRAPPER}} .eael-gravity-form .gform_wrapper .gform_description, {{WRAPPER}} .eael-gravity-form .eael-gravity-form-description',
562
  ]
563
  );
1000
  [
1001
  'name' => 'section_field_typography',
1002
  'label' => __( 'Typography', 'essential-addons-for-elementor-lite'),
1003
+ 'scheme' => Typography::TYPOGRAPHY_4,
1004
  'selector' => '{{WRAPPER}} .eael-gravity-form .gfield.gsection .gsection_title',
1005
  'separator' => 'before',
1006
  ]
1931
  [
1932
  'name' => 'button_typography',
1933
  'label' => __( 'Typography', 'essential-addons-for-elementor-lite'),
1934
+ 'scheme' => Typography::TYPOGRAPHY_4,
1935
  'selector' => '{{WRAPPER}} .eael-gravity-form .gform_footer input[type="submit"], {{WRAPPER}} .eael-gravity-form .gform_body .gform_page_footer input[type="submit"]',
1936
  'separator' => 'before',
1937
  ]
2152
  [
2153
  'name' => 'eael_gravity_forms_next_button_typography',
2154
  'label' => __( 'Typography', 'essential-addons-for-elementor-lite'),
2155
+ 'scheme' => Typography::TYPOGRAPHY_4,
2156
  'selector' => '{{WRAPPER}} .eael-gravity-form .gform_body .gform_page_footer input[type="button"]',
2157
  'separator' => 'before',
2158
  ]
2345
  [
2346
  'name' => 'eaelgf_thankyou_message_typography',
2347
  'label' => __( 'Typography', 'essential-addons-for-elementor-lite'),
2348
+ 'scheme' => Typography::TYPOGRAPHY_4,
2349
  'selector' => '{{WRAPPER}} .eael-gravity-form .gform_confirmation_wrapper .gform_confirmation_message',
2350
  'separator' => 'before',
2351
  ]
2434
 
2435
  protected function _content_template() {}
2436
 
2437
+ }
includes/Elements/Image_Accordion.php CHANGED
@@ -605,7 +605,7 @@ class Image_Accordion extends Widget_Base {
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>
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' ]), Helper::eael_wp_kses($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
@@ -1636,7 +1636,7 @@ class Info_Box extends Widget_Base
1636
  ob_start();
1637
  ?>
1638
  <div <?php echo $this->get_render_attribute_string('infobox_content'); ?>>
1639
- <<?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']); ?>>
1640
  <?php if ('yes' == $settings['eael_show_infobox_content']): ?>
1641
  <?php if ('content' === $settings['eael_infobox_text_type']): ?>
1642
  <?php if (!empty($settings['eael_infobox_text'])): ?>
1636
  ob_start();
1637
  ?>
1638
  <div <?php echo $this->get_render_attribute_string('infobox_content'); ?>>
1639
+ <<?php echo Helper::eael_validate_html_tag($settings['eael_infobox_title_tag']); ?> class="title"><?php echo Helper::eael_wp_kses($settings['eael_infobox_title']); ?></<?php echo Helper::eael_validate_html_tag($settings['eael_infobox_title_tag']); ?>>
1640
  <?php if ('yes' == $settings['eael_show_infobox_content']): ?>
1641
  <?php if ('content' === $settings['eael_infobox_text_type']): ?>
1642
  <?php if (!empty($settings['eael_infobox_text'])): ?>
includes/Elements/Login_Register.php CHANGED
@@ -13,6 +13,7 @@ use Elementor\Plugin;
13
  use Elementor\Repeater;
14
  use Elementor\Utils;
15
  use Elementor\Widget_Base;
 
16
  use Essential_Addons_Elementor\Traits\Login_Registration;
17
 
18
  if ( ! defined( 'ABSPATH' ) ) {
@@ -3727,7 +3728,7 @@ class Login_Register extends Widget_Base {
3727
  //Reg link related
3728
  $reg_link_action = ! empty( $this->ds['registration_link_action'] ) ? $this->ds['registration_link_action'] : 'form';
3729
  $show_reg_link = ( $this->user_can_register && 'yes' === $this->get_settings( 'show_register_link' ) );
3730
- $reg_link_text = ! empty( $this->get_settings( 'registration_link_text' ) ) ? $this->get_settings( 'registration_link_text' ) : __( 'Register', 'essential-addons-for-elementor-lite' );
3731
  $parts = explode( "\n", $reg_link_text );
3732
  $reg_link_text = array_pop( $parts );
3733
  $reg_message = array_shift( $parts );
@@ -3774,7 +3775,7 @@ class Login_Register extends Widget_Base {
3774
 
3775
  //Loss password
3776
  $show_lp = ( ! empty( $this->ds['show_lost_password'] ) && 'yes' === $this->ds['show_lost_password'] );
3777
- $lp_text = ! empty( $this->ds['lost_password_text'] ) ? $this->ds['lost_password_text'] : __( 'Forgot password?', 'essential-addons-for-elementor-lite' );
3778
  $lp_link = sprintf( '<a href="%s">%s</a>', esc_attr( wp_lostpassword_url() ), $lp_text );
3779
  if ( ! empty( $this->ds['lost_password_link_type'] ) && 'custom' === $this->ds['lost_password_link_type'] ) {
3780
  $lp_url = ! empty( $this->ds['lost_password_url']['url'] ) ? $this->ds['lost_password_url']['url'] : wp_lostpassword_url();
@@ -3958,7 +3959,7 @@ class Login_Register extends Widget_Base {
3958
  //Login link related
3959
  $lgn_link_action = ! empty( $this->ds['login_link_action'] ) ? $this->ds['login_link_action'] : 'form';
3960
  $show_lgn_link = 'yes' === $this->get_settings( 'show_login_link' );
3961
- $lgn_link_text = ! empty( $this->get_settings( 'login_link_text' ) ) ? $this->get_settings( 'login_link_text' ) : __( 'Login', 'essential-addons-for-elementor-lite' );
3962
  $btn_text = ! empty( $this->ds['reg_button_text'] ) ? $this->ds['reg_button_text'] : '';
3963
 
3964
  $parts = explode( "\n", $lgn_link_text );
@@ -4236,7 +4237,7 @@ class Login_Register extends Widget_Base {
4236
  if ( empty( $this->ds['show_terms_conditions'] ) || 'yes' !== $this->ds['show_terms_conditions'] ) {
4237
  return;
4238
  }
4239
- $l = isset( $this->ds['acceptance_label'] ) ? $this->ds['acceptance_label'] : '';
4240
  $parts = explode( "\n", $l );
4241
  $label = array_shift( $parts );
4242
  $link_text = array_pop( $parts );
13
  use Elementor\Repeater;
14
  use Elementor\Utils;
15
  use Elementor\Widget_Base;
16
+ use Essential_Addons_Elementor\Classes\Helper as HelperCLass;
17
  use Essential_Addons_Elementor\Traits\Login_Registration;
18
 
19
  if ( ! defined( 'ABSPATH' ) ) {
3728
  //Reg link related
3729
  $reg_link_action = ! empty( $this->ds['registration_link_action'] ) ? $this->ds['registration_link_action'] : 'form';
3730
  $show_reg_link = ( $this->user_can_register && 'yes' === $this->get_settings( 'show_register_link' ) );
3731
+ $reg_link_text = ! empty( $this->get_settings( 'registration_link_text' ) ) ? HelperCLass::eael_wp_kses($this->get_settings( 'registration_link_text' )) : __( 'Register', 'essential-addons-for-elementor-lite' );
3732
  $parts = explode( "\n", $reg_link_text );
3733
  $reg_link_text = array_pop( $parts );
3734
  $reg_message = array_shift( $parts );
3775
 
3776
  //Loss password
3777
  $show_lp = ( ! empty( $this->ds['show_lost_password'] ) && 'yes' === $this->ds['show_lost_password'] );
3778
+ $lp_text = ! empty( $this->ds['lost_password_text'] ) ? HelperCLass::eael_wp_kses($this->ds['lost_password_text']) : __( 'Forgot password?', 'essential-addons-for-elementor-lite' );
3779
  $lp_link = sprintf( '<a href="%s">%s</a>', esc_attr( wp_lostpassword_url() ), $lp_text );
3780
  if ( ! empty( $this->ds['lost_password_link_type'] ) && 'custom' === $this->ds['lost_password_link_type'] ) {
3781
  $lp_url = ! empty( $this->ds['lost_password_url']['url'] ) ? $this->ds['lost_password_url']['url'] : wp_lostpassword_url();
3959
  //Login link related
3960
  $lgn_link_action = ! empty( $this->ds['login_link_action'] ) ? $this->ds['login_link_action'] : 'form';
3961
  $show_lgn_link = 'yes' === $this->get_settings( 'show_login_link' );
3962
+ $lgn_link_text = ! empty( $this->get_settings( 'login_link_text' ) ) ? HelperCLass::eael_wp_kses($this->get_settings( 'login_link_text' )) : __( 'Login', 'essential-addons-for-elementor-lite' );
3963
  $btn_text = ! empty( $this->ds['reg_button_text'] ) ? $this->ds['reg_button_text'] : '';
3964
 
3965
  $parts = explode( "\n", $lgn_link_text );
4237
  if ( empty( $this->ds['show_terms_conditions'] ) || 'yes' !== $this->ds['show_terms_conditions'] ) {
4238
  return;
4239
  }
4240
+ $l = isset( $this->ds['acceptance_label'] ) ? HelperCLass::eael_wp_kses($this->ds['acceptance_label']) : '';
4241
  $parts = explode( "\n", $l );
4242
  $label = array_shift( $parts );
4243
  $link_text = array_pop( $parts );
includes/Elements/NinjaForms.php CHANGED
@@ -10,7 +10,7 @@ use \Elementor\Controls_Manager;
10
  use \Elementor\Group_Control_Border;
11
  use \Elementor\Group_Control_Box_Shadow;
12
  use \Elementor\Group_Control_Typography;
13
- use \Elementor\Scheme_Typography;
14
  use \Elementor\Widget_Base;
15
  use \Essential_Addons_Elementor\Classes\Helper;
16
  use \Ninja_Forms;
@@ -512,7 +512,7 @@ class NinjaForms extends Widget_Base
512
  [
513
  'name' => 'form_description_typography',
514
  'label' => __('Typography', 'essential-addons-for-elementor-lite'),
515
- 'scheme' => Scheme_Typography::TYPOGRAPHY_4,
516
  'selector' => '{{WRAPPER}} .eael-ninja-form .eael-contact-form-description',
517
  ]
518
  );
@@ -1498,7 +1498,7 @@ class NinjaForms extends Widget_Base
1498
  [
1499
  'name' => 'button_typography',
1500
  'label' => __('Typography', 'essential-addons-for-elementor-lite'),
1501
- 'scheme' => Scheme_Typography::TYPOGRAPHY_4,
1502
  'selector' => '{{WRAPPER}} .eael-ninja-form .submit-container input[type="button"]',
1503
  'separator' => 'before',
1504
  ]
@@ -1597,7 +1597,7 @@ class NinjaForms extends Widget_Base
1597
  [
1598
  'name' => 'required_notice_typography',
1599
  'label' => __('Typography', 'essential-addons-for-elementor-lite'),
1600
- 'scheme' => Scheme_Typography::TYPOGRAPHY_4,
1601
  'selector' => '{{WRAPPER}} .eael-ninja-form .nf-form-fields-required',
1602
  ]
1603
  );
@@ -1746,4 +1746,4 @@ class NinjaForms extends Widget_Base
1746
  <?php
1747
  }
1748
  }
1749
- }
10
  use \Elementor\Group_Control_Border;
11
  use \Elementor\Group_Control_Box_Shadow;
12
  use \Elementor\Group_Control_Typography;
13
+ use \Elementor\Core\Schemes\Typography;
14
  use \Elementor\Widget_Base;
15
  use \Essential_Addons_Elementor\Classes\Helper;
16
  use \Ninja_Forms;
512
  [
513
  'name' => 'form_description_typography',
514
  'label' => __('Typography', 'essential-addons-for-elementor-lite'),
515
+ 'scheme' => Typography::TYPOGRAPHY_4,
516
  'selector' => '{{WRAPPER}} .eael-ninja-form .eael-contact-form-description',
517
  ]
518
  );
1498
  [
1499
  'name' => 'button_typography',
1500
  'label' => __('Typography', 'essential-addons-for-elementor-lite'),
1501
+ 'scheme' => Typography::TYPOGRAPHY_4,
1502
  'selector' => '{{WRAPPER}} .eael-ninja-form .submit-container input[type="button"]',
1503
  'separator' => 'before',
1504
  ]
1597
  [
1598
  'name' => 'required_notice_typography',
1599
  'label' => __('Typography', 'essential-addons-for-elementor-lite'),
1600
+ 'scheme' => Typography::TYPOGRAPHY_4,
1601
  'selector' => '{{WRAPPER}} .eael-ninja-form .nf-form-fields-required',
1602
  ]
1603
  );
1746
  <?php
1747
  }
1748
  }
1749
+ }
includes/Elements/Post_Grid.php CHANGED
@@ -12,7 +12,7 @@ use \Elementor\Controls_Manager;
12
  use \Elementor\Group_Control_Border;
13
  use \Elementor\Group_Control_Box_Shadow;
14
  use \Elementor\Group_Control_Typography;
15
- use \Elementor\Scheme_Typography;
16
  use \Elementor\Widget_Base;
17
  use Essential_Addons_Elementor\Classes\Helper as HelperClass;
18
  use Essential_Addons_Elementor\Traits\Helper;
@@ -369,7 +369,7 @@ class Post_Grid extends Widget_Base
369
  [
370
  'name' => 'eael_post_grid_meta_date_typography',
371
  'label' => __('Typography', 'essential-addons-for-elementor-lite'),
372
- 'scheme' => Scheme_Typography::TYPOGRAPHY_3,
373
  'selector' => '{{WRAPPER}} .eael-meta-posted-on',
374
  ]
375
  );
@@ -469,7 +469,7 @@ class Post_Grid extends Widget_Base
469
  [
470
  'name' => 'eael_post_grid_meta_typography',
471
  'label' => __('Typography', 'essential-addons-for-elementor-lite'),
472
- 'scheme' => Scheme_Typography::TYPOGRAPHY_3,
473
  'selector' => '{{WRAPPER}} .eael-entry-meta > span',
474
  'condition' => [
475
  'meta_position' => 'meta-entry-footer',
@@ -481,7 +481,7 @@ class Post_Grid extends Widget_Base
481
  [
482
  'name' => 'eael_post_grid_meta_header_typography',
483
  'label' => __('Typography', 'essential-addons-for-elementor-lite'),
484
- 'scheme' => Scheme_Typography::TYPOGRAPHY_3,
485
  'selector' => '{{WRAPPER}} .eael-entry-meta > span',
486
  'condition' => [
487
  'meta_position' => 'meta-entry-header',
@@ -623,7 +623,7 @@ class Post_Grid extends Widget_Base
623
  [
624
  'name' => 'eael_post_grid_title_typography',
625
  'label' => __('Typography', 'essential-addons-for-elementor-lite'),
626
- 'scheme' => Scheme_Typography::TYPOGRAPHY_1,
627
  'selector' => '{{WRAPPER}} .eael-entry-title',
628
  ]
629
  );
@@ -695,7 +695,7 @@ class Post_Grid extends Widget_Base
695
  [
696
  'name' => 'eael_post_grid_excerpt_typography',
697
  'label' => __('Excerpt Typography', 'essential-addons-for-elementor-lite'),
698
- 'scheme' => Scheme_Typography::TYPOGRAPHY_3,
699
  'selector' => '{{WRAPPER}} .eael-grid-post-excerpt p',
700
  ]
701
  );
@@ -787,7 +787,7 @@ class Post_Grid extends Widget_Base
787
  [
788
  'name' => 'eael_post_grid_terms_typography',
789
  'label' => __('Meta Typography', 'essential-addons-for-elementor-lite'),
790
- 'scheme' => Scheme_Typography::TYPOGRAPHY_3,
791
  'selector' => '{{WRAPPER}} .post-meta-categories li, {{WRAPPER}} .post-meta-categories li a',
792
  ]
793
  );
@@ -1083,4 +1083,4 @@ class Post_Grid extends Widget_Base
1083
  <?php
1084
  }
1085
  }
1086
- }
12
  use \Elementor\Group_Control_Border;
13
  use \Elementor\Group_Control_Box_Shadow;
14
  use \Elementor\Group_Control_Typography;
15
+ use \Elementor\Core\Schemes\Typography;
16
  use \Elementor\Widget_Base;
17
  use Essential_Addons_Elementor\Classes\Helper as HelperClass;
18
  use Essential_Addons_Elementor\Traits\Helper;
369
  [
370
  'name' => 'eael_post_grid_meta_date_typography',
371
  'label' => __('Typography', 'essential-addons-for-elementor-lite'),
372
+ 'scheme' => Typography::TYPOGRAPHY_3,
373
  'selector' => '{{WRAPPER}} .eael-meta-posted-on',
374
  ]
375
  );
469
  [
470
  'name' => 'eael_post_grid_meta_typography',
471
  'label' => __('Typography', 'essential-addons-for-elementor-lite'),
472
+ 'scheme' => Typography::TYPOGRAPHY_3,
473
  'selector' => '{{WRAPPER}} .eael-entry-meta > span',
474
  'condition' => [
475
  'meta_position' => 'meta-entry-footer',
481
  [
482
  'name' => 'eael_post_grid_meta_header_typography',
483
  'label' => __('Typography', 'essential-addons-for-elementor-lite'),
484
+ 'scheme' => Typography::TYPOGRAPHY_3,
485
  'selector' => '{{WRAPPER}} .eael-entry-meta > span',
486
  'condition' => [
487
  'meta_position' => 'meta-entry-header',
623
  [
624
  'name' => 'eael_post_grid_title_typography',
625
  'label' => __('Typography', 'essential-addons-for-elementor-lite'),
626
+ 'scheme' => Typography::TYPOGRAPHY_1,
627
  'selector' => '{{WRAPPER}} .eael-entry-title',
628
  ]
629
  );
695
  [
696
  'name' => 'eael_post_grid_excerpt_typography',
697
  'label' => __('Excerpt Typography', 'essential-addons-for-elementor-lite'),
698
+ 'scheme' => Typography::TYPOGRAPHY_3,
699
  'selector' => '{{WRAPPER}} .eael-grid-post-excerpt p',
700
  ]
701
  );
787
  [
788
  'name' => 'eael_post_grid_terms_typography',
789
  'label' => __('Meta Typography', 'essential-addons-for-elementor-lite'),
790
+ 'scheme' => Typography::TYPOGRAPHY_3,
791
  'selector' => '{{WRAPPER}} .post-meta-categories li, {{WRAPPER}} .post-meta-categories li a',
792
  ]
793
  );
1083
  <?php
1084
  }
1085
  }
1086
+ }
includes/Elements/Pricing_Table.php CHANGED
@@ -15,6 +15,7 @@ use \Elementor\Group_Control_Typography;
15
  use Elementor\Modules\DynamicTags\Module as TagsModule;
16
  use Elementor\Repeater;
17
  use \Elementor\Widget_Base;
 
18
 
19
  class Pricing_Table extends Widget_Base
20
  {
@@ -2091,7 +2092,7 @@ class Pricing_Table extends Widget_Base
2091
  <?php } ?>
2092
  </span>
2093
  <?php endif; ?>
2094
- <?php echo $item['eael_pricing_table_item']; ?>
2095
  </li>
2096
  <?php
2097
  $counter++;
@@ -2111,7 +2112,10 @@ class Pricing_Table extends Widget_Base
2111
  $featured_class .= ($settings['eael_pricing_table_ribbon_alignment'] === 'left' ? ' ribbon-left' : '');
2112
  $inline_style = ($settings['eael_pricing_table_featured_styles'] === 'ribbon-4' && 'yes' === $settings['eael_pricing_table_featured'] ? ' style="overflow: hidden;"' : '');
2113
  $icon_position = $this->get_settings('eael_pricing_table_button_icon_alignment');
2114
-
 
 
 
2115
  if ('yes' === $settings['eael_pricing_table_onsale']) {
2116
  if ($settings['eael_pricing_table_price_cur_placement'] == 'left') {
2117
  $pricing = '<del class="original-price">
@@ -2156,11 +2160,11 @@ class Pricing_Table extends Widget_Base
2156
  <div class="eael-pricing style-1" <?php echo $inline_style; ?>>
2157
  <div class="eael-pricing-item <?php echo esc_attr($featured_class); ?>">
2158
  <div class="header">
2159
- <h2 class="title"><?php echo $settings['eael_pricing_table_title']; ?></h2>
2160
  </div>
2161
  <div class="eael-pricing-tag">
2162
  <span class="price-tag"><?php echo $pricing; ?></span>
2163
- <span class="price-period"><?php echo $settings['eael_pricing_table_period_separator']; ?> <?php echo $settings['eael_pricing_table_price_period']; ?></span>
2164
  </div>
2165
  <div class="body">
2166
  <?php $this->render_feature_list($settings, $this); ?>
@@ -2220,7 +2224,7 @@ class Pricing_Table extends Widget_Base
2220
  </div>
2221
  <div class="eael-pricing-tag">
2222
  <span class="price-tag"><?php echo $pricing; ?></span>
2223
- <span class="price-period"><?php echo $settings['eael_pricing_table_period_separator']; ?> <?php echo $settings['eael_pricing_table_price_period']; ?></span>
2224
  </div>
2225
  <div class="body">
2226
  <?php $this->render_feature_list($settings, $this); ?>
15
  use Elementor\Modules\DynamicTags\Module as TagsModule;
16
  use Elementor\Repeater;
17
  use \Elementor\Widget_Base;
18
+ use Essential_Addons_Elementor\Classes\Helper as HelperClass;
19
 
20
  class Pricing_Table extends Widget_Base
21
  {
2092
  <?php } ?>
2093
  </span>
2094
  <?php endif; ?>
2095
+ <?php echo HelperClass::eael_wp_kses($item['eael_pricing_table_item']); ?>
2096
  </li>
2097
  <?php
2098
  $counter++;
2112
  $featured_class .= ($settings['eael_pricing_table_ribbon_alignment'] === 'left' ? ' ribbon-left' : '');
2113
  $inline_style = ($settings['eael_pricing_table_featured_styles'] === 'ribbon-4' && 'yes' === $settings['eael_pricing_table_featured'] ? ' style="overflow: hidden;"' : '');
2114
  $icon_position = $this->get_settings('eael_pricing_table_button_icon_alignment');
2115
+ $settings['eael_pricing_table_price'] = HelperClass::eael_wp_kses($settings['eael_pricing_table_price']);
2116
+ $settings['eael_pricing_table_onsale_price'] = HelperClass::eael_wp_kses($settings['eael_pricing_table_onsale_price']);
2117
+ $settings['eael_pricing_table_price_cur'] = HelperClass::eael_wp_kses($settings['eael_pricing_table_price_cur']);
2118
+ $settings['eael_pricing_table_btn'] = HelperClass::eael_wp_kses($settings['eael_pricing_table_btn']);
2119
  if ('yes' === $settings['eael_pricing_table_onsale']) {
2120
  if ($settings['eael_pricing_table_price_cur_placement'] == 'left') {
2121
  $pricing = '<del class="original-price">
2160
  <div class="eael-pricing style-1" <?php echo $inline_style; ?>>
2161
  <div class="eael-pricing-item <?php echo esc_attr($featured_class); ?>">
2162
  <div class="header">
2163
+ <h2 class="title"><?php echo HelperClass::eael_wp_kses($settings['eael_pricing_table_title']); ?></h2>
2164
  </div>
2165
  <div class="eael-pricing-tag">
2166
  <span class="price-tag"><?php echo $pricing; ?></span>
2167
+ <span class="price-period"><?php echo HelperClass::eael_wp_kses($settings['eael_pricing_table_period_separator']); ?> <?php echo HelperClass::eael_wp_kses($settings['eael_pricing_table_price_period']); ?></span>
2168
  </div>
2169
  <div class="body">
2170
  <?php $this->render_feature_list($settings, $this); ?>
2224
  </div>
2225
  <div class="eael-pricing-tag">
2226
  <span class="price-tag"><?php echo $pricing; ?></span>
2227
+ <span class="price-period"><?php echo HelperClass::eael_wp_kses($settings['eael_pricing_table_period_separator']); ?> <?php echo HelperClass::eael_wp_kses($settings['eael_pricing_table_price_period']); ?></span>
2228
  </div>
2229
  <div class="body">
2230
  <?php $this->render_feature_list($settings, $this); ?>
includes/Elements/Progress_Bar.php CHANGED
@@ -10,7 +10,7 @@ use \Elementor\Controls_Manager;
10
  use \Elementor\Group_Control_Background;
11
  use \Elementor\Group_Control_Box_Shadow;
12
  use \Elementor\Group_Control_Typography;
13
- use \Elementor\Scheme_Typography;
14
  use \Elementor\Widget_Base;
15
 
16
  use \Essential_Addons_Elementor\Classes\Helper;
@@ -679,7 +679,7 @@ class Progress_Bar extends Widget_Base
679
  [
680
  'name' => 'progress_bar_title_typography',
681
  'label' => __('Title', 'essential-addons-for-elementor-lite'),
682
- 'scheme' => Scheme_Typography::TYPOGRAPHY_1,
683
  'selector' => '{{WRAPPER}} .eael-progressbar-title',
684
  ]
685
  );
@@ -702,7 +702,7 @@ class Progress_Bar extends Widget_Base
702
  [
703
  'name' => 'progress_bar_count_typography',
704
  'label' => __('Counter', 'essential-addons-for-elementor-lite'),
705
- 'scheme' => Scheme_Typography::TYPOGRAPHY_1,
706
  'selector' => '{{WRAPPER}} .eael-progressbar-count-wrap',
707
  ]
708
  );
@@ -725,7 +725,7 @@ class Progress_Bar extends Widget_Base
725
  [
726
  'name' => 'progress_bar_after_typography',
727
  'label' => __('Prefix/Postfix', 'essential-addons-for-elementor-lite'),
728
- 'scheme' => Scheme_Typography::TYPOGRAPHY_1,
729
  'selector' => '{{WRAPPER}} .eael-progressbar-half-circle-after span',
730
  'condition' => [
731
  'progress_bar_layout' => 'half_circle',
@@ -757,7 +757,7 @@ class Progress_Bar extends Widget_Base
757
  $settings = $this->get_settings_for_display();
758
  $wrap_classes = ['eael-progressbar'];
759
  $circle_wrapper = [];
760
-
761
  if (!apply_filters('eael/pro_enabled', false)) {
762
  if (in_array($settings['progress_bar_layout'], ['line', 'line_rainbow', 'circle_fill', 'half_circle_fill', 'box'])) {
763
  $settings['progress_bar_layout'] = 'line';
@@ -791,7 +791,7 @@ class Progress_Bar extends Widget_Base
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>' : '') . '
@@ -875,8 +875,8 @@ class Progress_Bar extends Widget_Base
875
  </div>
876
  </div>
877
  <div class="eael-progressbar-half-circle-after">
878
- ' . ($settings['progress_bar_prefix_label'] ? sprintf('<span class="eael-progressbar-prefix-label">%1$s</span>', $settings['progress_bar_prefix_label']) : '') . '
879
- ' . ($settings['progress_bar_postfix_label'] ? sprintf('<span class="eael-progressbar-postfix-label">%1$s</span>', $settings['progress_bar_postfix_label']) : '') . '
880
  </div>
881
  </div>';
882
  }
10
  use \Elementor\Group_Control_Background;
11
  use \Elementor\Group_Control_Box_Shadow;
12
  use \Elementor\Group_Control_Typography;
13
+ use \Elementor\Core\Schemes\Typography;
14
  use \Elementor\Widget_Base;
15
 
16
  use \Essential_Addons_Elementor\Classes\Helper;
679
  [
680
  'name' => 'progress_bar_title_typography',
681
  'label' => __('Title', 'essential-addons-for-elementor-lite'),
682
+ 'scheme' => Typography::TYPOGRAPHY_1,
683
  'selector' => '{{WRAPPER}} .eael-progressbar-title',
684
  ]
685
  );
702
  [
703
  'name' => 'progress_bar_count_typography',
704
  'label' => __('Counter', 'essential-addons-for-elementor-lite'),
705
+ 'scheme' => Typography::TYPOGRAPHY_1,
706
  'selector' => '{{WRAPPER}} .eael-progressbar-count-wrap',
707
  ]
708
  );
725
  [
726
  'name' => 'progress_bar_after_typography',
727
  'label' => __('Prefix/Postfix', 'essential-addons-for-elementor-lite'),
728
+ 'scheme' => Typography::TYPOGRAPHY_1,
729
  'selector' => '{{WRAPPER}} .eael-progressbar-half-circle-after span',
730
  'condition' => [
731
  'progress_bar_layout' => 'half_circle',
757
  $settings = $this->get_settings_for_display();
758
  $wrap_classes = ['eael-progressbar'];
759
  $circle_wrapper = [];
760
+ $settings['progress_bar_title'] = Helper::eael_wp_kses($settings['progress_bar_title']);
761
  if (!apply_filters('eael/pro_enabled', false)) {
762
  if (in_array($settings['progress_bar_layout'], ['line', 'line_rainbow', 'circle_fill', 'half_circle_fill', 'box'])) {
763
  $settings['progress_bar_layout'] = 'line';
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') . Helper::eael_wp_kses($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>' : '') . '
875
  </div>
876
  </div>
877
  <div class="eael-progressbar-half-circle-after">
878
+ ' . ($settings['progress_bar_prefix_label'] ? sprintf('<span class="eael-progressbar-prefix-label">%1$s</span>', Helper::eael_wp_kses($settings['progress_bar_prefix_label'])) : '') . '
879
+ ' . ($settings['progress_bar_postfix_label'] ? sprintf('<span class="eael-progressbar-postfix-label">%1$s</span>', Helper::eael_wp_kses($settings['progress_bar_postfix_label'])) : '') . '
880
  </div>
881
  </div>';
882
  }
includes/Elements/Team_Member.php CHANGED
@@ -15,6 +15,7 @@ use Elementor\Repeater;
15
  use \Elementor\Utils;
16
  use \Elementor\Widget_Base;
17
 
 
18
  class Team_Member extends Widget_Base {
19
 
20
  public function get_name() {
@@ -874,8 +875,8 @@ class Team_Member extends Widget_Base {
874
  </div>
875
 
876
  <div class="eael-team-content">
877
- <h3 class="eael-team-member-name"><?php echo $settings['eael_team_member_name']; ?></h3>
878
- <h4 class="eael-team-member-position"><?php echo $settings['eael_team_member_job_title']; ?></h4>
879
 
880
  <?php if( 'eael-team-members-social-bottom' === $settings['eael_team_members_preset'] ) : ?>
881
  <?php do_action('eael/team_member_social_botton_markup', $settings); ?>
@@ -904,7 +905,7 @@ class Team_Member extends Widget_Base {
904
  <?php endforeach; ?>
905
  </ul>
906
  <?php endif; ?>
907
- <p class="eael-team-text"><?php echo $settings['eael_team_member_description']; ?></p>
908
  <?php endif; ?>
909
  </div>
910
  </div>
15
  use \Elementor\Utils;
16
  use \Elementor\Widget_Base;
17
 
18
+ use \Essential_Addons_Elementor\Classes\Helper as HelperClass;
19
  class Team_Member extends Widget_Base {
20
 
21
  public function get_name() {
875
  </div>
876
 
877
  <div class="eael-team-content">
878
+ <h3 class="eael-team-member-name"><?php echo HelperClass::eael_wp_kses($settings['eael_team_member_name']); ?></h3>
879
+ <h4 class="eael-team-member-position"><?php echo HelperClass::eael_wp_kses($settings['eael_team_member_job_title']); ?></h4>
880
 
881
  <?php if( 'eael-team-members-social-bottom' === $settings['eael_team_members_preset'] ) : ?>
882
  <?php do_action('eael/team_member_social_botton_markup', $settings); ?>
905
  <?php endforeach; ?>
906
  </ul>
907
  <?php endif; ?>
908
+ <p class="eael-team-text"><?php echo HelperClass::eael_wp_kses($settings['eael_team_member_description']); ?></p>
909
  <?php endif; ?>
910
  </div>
911
  </div>
includes/Elements/Testimonial.php CHANGED
@@ -12,6 +12,7 @@ use \Elementor\Group_Control_Image_Size;
12
  use \Elementor\Group_Control_Typography;
13
  use \Elementor\Utils;
14
  use \Elementor\Widget_Base;
 
15
 
16
  class Testimonial extends Widget_Base {
17
 
@@ -740,8 +741,8 @@ class Testimonial extends Widget_Base {
740
 
741
  protected function render_user_name_and_company() {
742
  $settings = $this->get_settings_for_display();
743
- if( ! empty($settings['eael_testimonial_name']) ) : ?><p <?php echo $this->get_render_attribute_string('eael_testimonial_user'); ?>><?php echo $settings['eael_testimonial_name']; ?></p><?php endif;
744
- if( ! empty($settings['eael_testimonial_company_title']) ) : ?><p class="eael-testimonial-user-company"><?php echo $settings['eael_testimonial_company_title']; ?></p><?php endif;
745
  }
746
 
747
  protected function testimonial_quote() {
12
  use \Elementor\Group_Control_Typography;
13
  use \Elementor\Utils;
14
  use \Elementor\Widget_Base;
15
+ use Essential_Addons_Elementor\Classes\Helper as HelperClass;
16
 
17
  class Testimonial extends Widget_Base {
18
 
741
 
742
  protected function render_user_name_and_company() {
743
  $settings = $this->get_settings_for_display();
744
+ if( ! empty($settings['eael_testimonial_name']) ) : ?><p <?php echo $this->get_render_attribute_string('eael_testimonial_user'); ?>><?php echo HelperClass::eael_wp_kses($settings['eael_testimonial_name']); ?></p><?php endif;
745
+ if( ! empty($settings['eael_testimonial_company_title']) ) : ?><p class="eael-testimonial-user-company"><?php echo HelperClass::eael_wp_kses($settings['eael_testimonial_company_title']); ?></p><?php endif;
746
  }
747
 
748
  protected function testimonial_quote() {
includes/Elements/Twitter_Feed.php CHANGED
@@ -911,8 +911,8 @@ class Twitter_Feed extends Widget_Base
911
  'label' => __('Color', 'essential-addons-for-elementor-lite'),
912
  'type' => \Elementor\Controls_Manager::COLOR,
913
  'scheme' => [
914
- 'type' => \Elementor\Scheme_Color::get_type(),
915
- 'value' => \Elementor\Scheme_Color::COLOR_1,
916
  ],
917
  'selectors' => [
918
  '{{WRAPPER}} .eael-twitter-feed-item .eael-twitter-feed-item-icon' => 'color: {{VALUE}}',
911
  'label' => __('Color', 'essential-addons-for-elementor-lite'),
912
  'type' => \Elementor\Controls_Manager::COLOR,
913
  'scheme' => [
914
+ 'type' => \Elementor\Core\Schemes\Color::get_type(),
915
+ 'value' => \Elementor\Core\Schemes\Color::COLOR_1,
916
  ],
917
  'selectors' => [
918
  '{{WRAPPER}} .eael-twitter-feed-item .eael-twitter-feed-item-icon' => 'color: {{VALUE}}',
includes/Elements/TypeForm.php CHANGED
@@ -11,7 +11,7 @@ use \Elementor\Controls_Manager;
11
  use \Elementor\Group_Control_Border;
12
  use \Elementor\Group_Control_Box_Shadow;
13
  use \Elementor\Widget_Base;
14
- use \Elementor\Scheme_Color;
15
 
16
  class TypeForm extends Widget_Base {
17
 
11
  use \Elementor\Group_Control_Border;
12
  use \Elementor\Group_Control_Box_Shadow;
13
  use \Elementor\Widget_Base;
14
+ use \Elementor\Core\Schemes\Color;
15
 
16
  class TypeForm extends Widget_Base {
17
 
includes/Elements/WeForms.php CHANGED
@@ -11,7 +11,7 @@ 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\Scheme_Typography;
15
  use \Elementor\Widget_Base;
16
  use \Essential_Addons_Elementor\Classes\Helper;
17
 
@@ -653,7 +653,7 @@ class WeForms extends Widget_Base
653
  Group_Control_Typography::get_type(),
654
  [
655
  'name' => 'eael_weform_submit_btn_typography',
656
- 'scheme' => Scheme_Typography::TYPOGRAPHY_1,
657
  'selector' => '{{WRAPPER}} .eael-weform-container ul.wpuf-form .wpuf-submit input[type="submit"]',
658
  ]
659
  );
11
  use \Elementor\Group_Control_Border;
12
  use \Elementor\Group_Control_Box_Shadow;
13
  use \Elementor\Group_Control_Typography;
14
+ use \Elementor\Core\Schemes\Typography;
15
  use \Elementor\Widget_Base;
16
  use \Essential_Addons_Elementor\Classes\Helper;
17
 
653
  Group_Control_Typography::get_type(),
654
  [
655
  'name' => 'eael_weform_submit_btn_typography',
656
+ 'scheme' => Typography::TYPOGRAPHY_1,
657
  'selector' => '{{WRAPPER}} .eael-weform-container ul.wpuf-form .wpuf-submit input[type="submit"]',
658
  ]
659
  );
includes/Elements/Woo_Checkout.php CHANGED
@@ -2635,4 +2635,4 @@ class Woo_Checkout extends Widget_Base {
2635
  </div>
2636
  <?php
2637
  }
2638
- }
2635
  </div>
2636
  <?php
2637
  }
2638
+ }
includes/Elements/Woo_Product_Carousel.php CHANGED
@@ -2875,6 +2875,8 @@ class Woo_Product_Carousel extends Widget_Base {
2875
  $this->add_render_attribute( 'eael-woo-product-carousel-wrap', 'dir', 'rtl' );
2876
  }
2877
  $settings['eael_product_carousel_title_tag'] = HelperClass::eael_validate_html_tag($settings['eael_product_carousel_title_tag']);
 
 
2878
  ?>
2879
 
2880
  <div <?php $this->print_render_attribute_string( 'container' ); ?> >
@@ -2895,7 +2897,7 @@ class Woo_Product_Carousel extends Widget_Base {
2895
  echo '</ul>';
2896
  echo '</div>';
2897
  else:
2898
- echo '<p class="eael-no-posts-found">'.$settings['eael_product_carousel_not_found_msg'].'</p>';
2899
  endif;
2900
  else:
2901
  _e( '<p class="eael-no-posts-found">No layout found!</p>', 'essential-addons-for-elementor-lite' );
2875
  $this->add_render_attribute( 'eael-woo-product-carousel-wrap', 'dir', 'rtl' );
2876
  }
2877
  $settings['eael_product_carousel_title_tag'] = HelperClass::eael_validate_html_tag($settings['eael_product_carousel_title_tag']);
2878
+ $settings['eael_product_carousel_sale_text'] = HelperClass::eael_wp_kses($settings['eael_product_carousel_sale_text']);
2879
+ $settings['eael_product_carousel_stockout_text'] = HelperClass::eael_wp_kses($settings['eael_product_carousel_stockout_text']);
2880
  ?>
2881
 
2882
  <div <?php $this->print_render_attribute_string( 'container' ); ?> >
2897
  echo '</ul>';
2898
  echo '</div>';
2899
  else:
2900
+ echo '<p class="eael-no-posts-found">'.HelperClass::eael_wp_kses($settings['eael_product_carousel_not_found_msg']).'</p>';
2901
  endif;
2902
  else:
2903
  _e( '<p class="eael-no-posts-found">No layout found!</p>', 'essential-addons-for-elementor-lite' );
includes/Elements/WpForms.php CHANGED
@@ -11,7 +11,7 @@ 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\Scheme_Typography;
15
  use \Elementor\Widget_Base;
16
 
17
  use \Essential_Addons_Elementor\Classes\Helper;
@@ -479,7 +479,7 @@ class WpForms extends Widget_Base {
479
  [
480
  'name' => 'form_description_typography',
481
  'label' => __('Typography', 'essential-addons-for-elementor-lite'),
482
- 'scheme' => Scheme_Typography::TYPOGRAPHY_4,
483
  'selector' => '{{WRAPPER}} .eael-contact-form-description, {{WRAPPER}} .wpforms-description',
484
  ]
485
  );
@@ -543,7 +543,7 @@ class WpForms extends Widget_Base {
543
  [
544
  'name' => 'typography_label',
545
  'label' => __('Typography', 'essential-addons-for-elementor-lite'),
546
- 'scheme' => Scheme_Typography::TYPOGRAPHY_4,
547
  'selector' => '{{WRAPPER}} .eael-wpforms .wpforms-field label',
548
  ]
549
  );
@@ -783,7 +783,7 @@ class WpForms extends Widget_Base {
783
  [
784
  'name' => 'field_typography',
785
  'label' => __('Typography', 'essential-addons-for-elementor-lite'),
786
- 'scheme' => Scheme_Typography::TYPOGRAPHY_4,
787
  'selector' => '{{WRAPPER}} .eael-wpforms .wpforms-field input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]), {{WRAPPER}} .eael-wpforms .wpforms-field textarea, {{WRAPPER}} .eael-wpforms .wpforms-field select',
788
  'separator' => 'before',
789
  ]
@@ -1285,7 +1285,7 @@ class WpForms extends Widget_Base {
1285
  [
1286
  'name' => 'button_typography',
1287
  'label' => __('Typography', 'essential-addons-for-elementor-lite'),
1288
- 'scheme' => Scheme_Typography::TYPOGRAPHY_4,
1289
  'selector' => '{{WRAPPER}} .eael-wpforms .wpforms-submit-container .wpforms-submit',
1290
  'separator' => 'before',
1291
  ]
11
  use \Elementor\Group_Control_Border;
12
  use \Elementor\Group_Control_Box_Shadow;
13
  use \Elementor\Group_Control_Typography;
14
+ use \Elementor\Core\Schemes\Typography;
15
  use \Elementor\Widget_Base;
16
 
17
  use \Essential_Addons_Elementor\Classes\Helper;
479
  [
480
  'name' => 'form_description_typography',
481
  'label' => __('Typography', 'essential-addons-for-elementor-lite'),
482
+ 'scheme' => Typography::TYPOGRAPHY_4,
483
  'selector' => '{{WRAPPER}} .eael-contact-form-description, {{WRAPPER}} .wpforms-description',
484
  ]
485
  );
543
  [
544
  'name' => 'typography_label',
545
  'label' => __('Typography', 'essential-addons-for-elementor-lite'),
546
+ 'scheme' => Typography::TYPOGRAPHY_4,
547
  'selector' => '{{WRAPPER}} .eael-wpforms .wpforms-field label',
548
  ]
549
  );
783
  [
784
  'name' => 'field_typography',
785
  'label' => __('Typography', 'essential-addons-for-elementor-lite'),
786
+ 'scheme' => Typography::TYPOGRAPHY_4,
787
  'selector' => '{{WRAPPER}} .eael-wpforms .wpforms-field input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]), {{WRAPPER}} .eael-wpforms .wpforms-field textarea, {{WRAPPER}} .eael-wpforms .wpforms-field select',
788
  'separator' => 'before',
789
  ]
1285
  [
1286
  'name' => 'button_typography',
1287
  'label' => __('Typography', 'essential-addons-for-elementor-lite'),
1288
+ 'scheme' => Typography::TYPOGRAPHY_4,
1289
  'selector' => '{{WRAPPER}} .eael-wpforms .wpforms-submit-container .wpforms-submit',
1290
  'separator' => 'before',
1291
  ]
includes/Extensions/Table_of_Content.php CHANGED
@@ -9,7 +9,7 @@ use \Elementor\Controls_Manager;
9
  use \Elementor\Group_Control_Border;
10
  use \Elementor\Group_Control_Box_Shadow;
11
  use \Elementor\Group_Control_Typography;
12
- use \Elementor\Scheme_Typography;
13
  use \Essential_Addons_Elementor\Classes\Helper;
14
 
15
  class Table_of_Content
@@ -591,7 +591,7 @@ class Table_of_Content
591
  [
592
  'name' => 'eael_ext_table_of_content_header_typography',
593
  'selector' => '{{WRAPPER}} .eael-toc-header .eael-toc-title,{{WRAPPER}} .eael-toc.collapsed .eael-toc-button',
594
- 'scheme' => Scheme_Typography::TYPOGRAPHY_2,
595
  ]
596
  );
597
 
@@ -876,7 +876,7 @@ class Table_of_Content
876
  [
877
  'name' => 'eael_ext_table_of_content_list_typography_normal',
878
  'selector' => '{{WRAPPER}} .eael-toc .eael-toc-body .eael-toc-list',
879
- 'scheme' => Scheme_Typography::TYPOGRAPHY_2,
880
  ]
881
  );
882
 
9
  use \Elementor\Group_Control_Border;
10
  use \Elementor\Group_Control_Box_Shadow;
11
  use \Elementor\Group_Control_Typography;
12
+ use \Elementor\Core\Schemes\Typography;
13
  use \Essential_Addons_Elementor\Classes\Helper;
14
 
15
  class Table_of_Content
591
  [
592
  'name' => 'eael_ext_table_of_content_header_typography',
593
  'selector' => '{{WRAPPER}} .eael-toc-header .eael-toc-title,{{WRAPPER}} .eael-toc.collapsed .eael-toc-button',
594
+ 'scheme' => Typography::TYPOGRAPHY_2,
595
  ]
596
  );
597
 
876
  [
877
  'name' => 'eael_ext_table_of_content_list_typography_normal',
878
  'selector' => '{{WRAPPER}} .eael-toc .eael-toc-body .eael-toc-list',
879
+ 'scheme' => Typography::TYPOGRAPHY_2,
880
  ]
881
  );
882
 
includes/Template/Betterdocs-Category-Box/Layout_Default.php CHANGED
@@ -36,7 +36,7 @@ echo '<a href="' . $button_link . '" class="eael-better-docs-category-box-post">
36
  }
37
 
38
  if ($settings['show_count']) {
39
- printf('<div class="eael-bd-cb-cat-count"><span class="count-prefix">%s</span>%s<span class="count-suffix">%s</span></div>', $settings['count_prefix'], Helper::get_doc_post_count($term->count, $term->term_id), $settings['count_suffix']);
40
  }
41
 
42
  echo '</div>
36
  }
37
 
38
  if ($settings['show_count']) {
39
+ printf('<div class="eael-bd-cb-cat-count"><span class="count-prefix">%s</span>%s<span class="count-suffix">%s</span></div>', Helper::eael_wp_kses($settings['count_prefix']) , Helper::get_doc_post_count($term->count, $term->term_id), Helper::eael_wp_kses($settings['count_suffix']));
40
  }
41
 
42
  echo '</div>
includes/Template/Betterdocs-Category-Grid/Layout_2.php CHANGED
@@ -153,7 +153,7 @@ echo '<article class="eael-better-docs-category-grid-post layout-2" data-id="' .
153
  }
154
  }
155
 
156
- echo $settings['button_text'];
157
 
158
  if ($settings['icon_position'] === 'after') {
159
  if (isset($settings['button_icon']['value']['url']) && !empty($settings['button_icon']['value']['url'])) {
153
  }
154
  }
155
 
156
+ echo Helper::eael_wp_kses($settings['button_text']);
157
 
158
  if ($settings['icon_position'] === 'after') {
159
  if (isset($settings['button_icon']['value']['url']) && !empty($settings['button_icon']['value']['url'])) {
includes/Template/Betterdocs-Category-Grid/Layout_Default.php CHANGED
@@ -206,7 +206,7 @@ echo '<article class="eael-better-docs-category-grid-post" data-id="' . get_the_
206
  }
207
  }
208
 
209
- echo $settings['button_text'];
210
 
211
  if ($settings['icon_position'] === 'after') {
212
  if (isset($settings['button_icon']['value']['url']) && !empty($settings['button_icon']['value']['url'])) {
206
  }
207
  }
208
 
209
+ echo Helper::eael_wp_kses($settings['button_text']);
210
 
211
  if ($settings['icon_position'] === 'after') {
212
  if (isset($settings['button_icon']['value']['url']) && !empty($settings['button_icon']['value']['url'])) {
includes/Template/Woocommerce/Checkout/Woo_Checkout_Helper.php CHANGED
@@ -3,7 +3,7 @@ namespace Essential_Addons_Elementor\Template\Woocommerce\Checkout;
3
 
4
  use \Elementor\Icons_Manager;
5
  use \Exception;
6
-
7
  if (!defined('ABSPATH')) {
8
  exit;
9
  } // Exit if accessed directly
@@ -310,7 +310,7 @@ trait Woo_Checkout_Helper {
310
  </div>
311
 
312
  <?php
313
- $message = $settings['ea_woo_checkout_login_message'];
314
 
315
  $redirect = wc_get_checkout_url();
316
  $hidden = true;
@@ -367,7 +367,7 @@ trait Woo_Checkout_Helper {
367
  ?>
368
  <?php do_action('woocommerce_checkout_before_order_review_heading'); ?>
369
  <h3 id="order_review_heading" class="woo-checkout-section-title">
370
- <?php echo $settings['ea_woo_checkout_order_details_title']; ?>
371
  </h3>
372
 
373
  <?php do_action('woocommerce_checkout_before_order_review'); ?>
@@ -390,9 +390,9 @@ trait Woo_Checkout_Helper {
390
  <?php
391
  if( $settings['ea_woo_checkout_layout'] == 'default' ) { ?>
392
  <li class="table-header">
393
- <div class="table-col-1"><?php echo $settings['ea_woo_checkout_table_product_text']; ?></div>
394
- <div class="table-col-2"><?php echo $settings['ea_woo_checkout_table_quantity_text']; ?></div>
395
- <div class="table-col-3"><?php echo $settings['ea_woo_checkout_table_price_text']; ?></div>
396
  </li>
397
  <?php }
398
  ?>
@@ -443,14 +443,14 @@ trait Woo_Checkout_Helper {
443
  if($settings['ea_woo_checkout_shop_link'] == 'yes') { ?>
444
  <div class="back-to-shop">
445
  <a class="back-to-shopping" href="<?php echo esc_url( apply_filters( 'woocommerce_return_to_shop_redirect', wc_get_page_permalink( 'shop' ) ) ); ?>">
446
- <i class="fas fa-long-arrow-alt-left"></i><?php echo $settings['ea_woo_checkout_shop_link_text']; ?>
447
  </a>
448
  </div>
449
  <?php } ?>
450
 
451
  <div class="footer-content">
452
  <div class="cart-subtotal">
453
- <div><?php echo $settings['ea_woo_checkout_table_subtotal_text']; ?></div>
454
  <div><?php wc_cart_totals_subtotal_html(); ?></div>
455
  </div>
456
 
@@ -498,7 +498,7 @@ trait Woo_Checkout_Helper {
498
  <?php do_action( 'woocommerce_review_order_before_order_total' ); ?>
499
 
500
  <div class="order-total">
501
- <div><?php echo $settings['ea_woo_checkout_table_total_text']; ?></div>
502
  <div><?php wc_cart_totals_order_total_html(); ?></div>
503
  </div>
504
 
@@ -575,7 +575,7 @@ trait Woo_Checkout_Helper {
575
 
576
  <?php else : ?>
577
 
578
- <h3><?php echo $settings['ea_woo_checkout_billing_title']; ?></h3>
579
 
580
  <?php endif; ?>
581
 
@@ -637,7 +637,7 @@ trait Woo_Checkout_Helper {
637
 
638
  <h3 id="ship-to-different-address">
639
  <label class="woocommerce-form__label woocommerce-form__label-for-checkbox checkbox">
640
- <input id="ship-to-different-address-checkbox" class="woocommerce-form__input woocommerce-form__input-checkbox input-checkbox" <?php checked( apply_filters( 'woocommerce_ship_to_different_address_checked', 'shipping' === get_option( 'woocommerce_ship_to_destination' ) ? 1 : 0 ), 1 ); ?> type="checkbox" name="ship_to_different_address" value="1" /> <span><?php echo $settings['ea_woo_checkout_shipping_title']; ?></span>
641
  </label>
642
  </h3>
643
 
@@ -668,7 +668,7 @@ trait Woo_Checkout_Helper {
668
 
669
  <?php if ( ! WC()->cart->needs_shipping() || wc_ship_to_billing_address_only() ) : ?>
670
 
671
- <h3><?php echo $settings['ea_woo_checkout_additional_info_title']; ?></h3>
672
 
673
  <?php endif; ?>
674
 
@@ -700,7 +700,7 @@ trait Woo_Checkout_Helper {
700
 
701
  <div class="woo-checkout-payment">
702
  <h3 id="payment-title" class="woo-checkout-section-title">
703
- <?php echo $settings['ea_woo_checkout_payment_title']; ?>
704
  </h3>
705
 
706
  <?php wc_get_template(
@@ -708,7 +708,7 @@ trait Woo_Checkout_Helper {
708
  array(
709
  'checkout' => WC()->checkout(),
710
  'available_gateways' => $available_gateways,
711
- 'order_button_text' => apply_filters( 'woocommerce_order_button_text', $settings['ea_woo_checkout_place_order_text'] ),
712
  )
713
  ); ?>
714
  </div>
3
 
4
  use \Elementor\Icons_Manager;
5
  use \Exception;
6
+ use \Essential_Addons_Elementor\Classes\Helper as CheckoutHelperCLass;
7
  if (!defined('ABSPATH')) {
8
  exit;
9
  } // Exit if accessed directly
310
  </div>
311
 
312
  <?php
313
+ $message = CheckoutHelperCLass::eael_wp_kses($settings['ea_woo_checkout_login_message']);
314
 
315
  $redirect = wc_get_checkout_url();
316
  $hidden = true;
367
  ?>
368
  <?php do_action('woocommerce_checkout_before_order_review_heading'); ?>
369
  <h3 id="order_review_heading" class="woo-checkout-section-title">
370
+ <?php echo CheckoutHelperCLass::eael_wp_kses($settings['ea_woo_checkout_order_details_title']); ?>
371
  </h3>
372
 
373
  <?php do_action('woocommerce_checkout_before_order_review'); ?>
390
  <?php
391
  if( $settings['ea_woo_checkout_layout'] == 'default' ) { ?>
392
  <li class="table-header">
393
+ <div class="table-col-1"><?php echo CheckoutHelperCLass::eael_wp_kses($settings['ea_woo_checkout_table_product_text']); ?></div>
394
+ <div class="table-col-2"><?php echo CheckoutHelperCLass::eael_wp_kses($settings['ea_woo_checkout_table_quantity_text']); ?></div>
395
+ <div class="table-col-3"><?php echo CheckoutHelperCLass::eael_wp_kses($settings['ea_woo_checkout_table_price_text']); ?></div>
396
  </li>
397
  <?php }
398
  ?>
443
  if($settings['ea_woo_checkout_shop_link'] == 'yes') { ?>
444
  <div class="back-to-shop">
445
  <a class="back-to-shopping" href="<?php echo esc_url( apply_filters( 'woocommerce_return_to_shop_redirect', wc_get_page_permalink( 'shop' ) ) ); ?>">
446
+ <i class="fas fa-long-arrow-alt-left"></i><?php echo CheckoutHelperCLass::eael_wp_kses($settings['ea_woo_checkout_shop_link_text']); ?>
447
  </a>
448
  </div>
449
  <?php } ?>
450
 
451
  <div class="footer-content">
452
  <div class="cart-subtotal">
453
+ <div><?php echo CheckoutHelperCLass::eael_wp_kses($settings['ea_woo_checkout_table_subtotal_text']); ?></div>
454
  <div><?php wc_cart_totals_subtotal_html(); ?></div>
455
  </div>
456
 
498
  <?php do_action( 'woocommerce_review_order_before_order_total' ); ?>
499
 
500
  <div class="order-total">
501
+ <div><?php echo CheckoutHelperCLass::eael_wp_kses($settings['ea_woo_checkout_table_total_text']); ?></div>
502
  <div><?php wc_cart_totals_order_total_html(); ?></div>
503
  </div>
504
 
575
 
576
  <?php else : ?>
577
 
578
+ <h3><?php echo CheckoutHelperCLass::eael_wp_kses($settings['ea_woo_checkout_billing_title']); ?></h3>
579
 
580
  <?php endif; ?>
581
 
637
 
638
  <h3 id="ship-to-different-address">
639
  <label class="woocommerce-form__label woocommerce-form__label-for-checkbox checkbox">
640
+ <input id="ship-to-different-address-checkbox" class="woocommerce-form__input woocommerce-form__input-checkbox input-checkbox" <?php checked( apply_filters( 'woocommerce_ship_to_different_address_checked', 'shipping' === get_option( 'woocommerce_ship_to_destination' ) ? 1 : 0 ), 1 ); ?> type="checkbox" name="ship_to_different_address" value="1" /> <span><?php echo CheckoutHelperCLass::eael_wp_kses($settings['ea_woo_checkout_shipping_title']); ?></span>
641
  </label>
642
  </h3>
643
 
668
 
669
  <?php if ( ! WC()->cart->needs_shipping() || wc_ship_to_billing_address_only() ) : ?>
670
 
671
+ <h3><?php echo CheckoutHelperCLass::eael_wp_kses($settings['ea_woo_checkout_additional_info_title']); ?></h3>
672
 
673
  <?php endif; ?>
674
 
700
 
701
  <div class="woo-checkout-payment">
702
  <h3 id="payment-title" class="woo-checkout-section-title">
703
+ <?php echo CheckoutHelperCLass::eael_wp_kses($settings['ea_woo_checkout_payment_title']); ?>
704
  </h3>
705
 
706
  <?php wc_get_template(
708
  array(
709
  'checkout' => WC()->checkout(),
710
  'available_gateways' => $available_gateways,
711
+ 'order_button_text' => apply_filters( 'woocommerce_order_button_text', CheckoutHelperCLass::eael_wp_kses($settings['ea_woo_checkout_place_order_text']) ),
712
  )
713
  ); ?>
714
  </div>
includes/Traits/Woo_Product_Comparable.php CHANGED
@@ -1744,7 +1744,7 @@ trait Woo_Product_Comparable {
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'] ) ? HelperClass::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'] : '';
1750
  $linkable_img = isset( $ds['linkable_img'] ) ? $ds['linkable_img'] : '';
@@ -2051,7 +2051,7 @@ trait Woo_Product_Comparable {
2051
  $fields_to_show = [];
2052
  foreach ( $fields as $field ) {
2053
  if ( isset( $df[ $field['field_type'] ] ) ) {
2054
- $fields_to_show[ $field['field_type'] ] = $field['field_label'];
2055
  } else {
2056
  if ( taxonomy_exists( $field['field_type'] ) ) {
2057
  $fields_to_show[ $field['field_type'] ] = wc_attribute_label( $field['field_type'] );
@@ -2297,7 +2297,7 @@ trait Woo_Product_Comparable {
2297
  $fields_to_show = [];
2298
  foreach ( $fields as $field ) {
2299
  if ( isset( $df[ $field['field_type'] ] ) ) {
2300
- $fields_to_show[ $field['field_type'] ] = $field['field_label'];
2301
  } else {
2302
  if ( taxonomy_exists( $field['field_type'] ) ) {
2303
  $fields_to_show[ $field['field_type'] ] = wc_attribute_label( $field['field_type'] );
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'] ) ? HelperClass::eael_validate_html_tag($ds['table_title_tag']) : 'h1';
1747
+ $ribbon = isset( $ds['ribbon'] ) ? HelperClass::eael_wp_kses($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'] : '';
1750
  $linkable_img = isset( $ds['linkable_img'] ) ? $ds['linkable_img'] : '';
2051
  $fields_to_show = [];
2052
  foreach ( $fields as $field ) {
2053
  if ( isset( $df[ $field['field_type'] ] ) ) {
2054
+ $fields_to_show[ $field['field_type'] ] = HelperClass::eael_wp_kses($field['field_label']);
2055
  } else {
2056
  if ( taxonomy_exists( $field['field_type'] ) ) {
2057
  $fields_to_show[ $field['field_type'] ] = wc_attribute_label( $field['field_type'] );
2297
  $fields_to_show = [];
2298
  foreach ( $fields as $field ) {
2299
  if ( isset( $df[ $field['field_type'] ] ) ) {
2300
+ $fields_to_show[ $field['field_type'] ] = HelperClass::eael_wp_kses($field['field_label']);
2301
  } else {
2302
  if ( taxonomy_exists( $field['field_type'] ) ) {
2303
  $fields_to_show[ $field['field_type'] ] = wc_attribute_label( $field['field_type'] );
languages/essential-addons-for-elementor-lite.pot CHANGED
@@ -13,11 +13,11 @@ msgstr ""
13
  "X-Poedit-SourceCharset: UTF-8\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
 
16
- #: ../includes/Classes/Helper.php:190, ../includes/Elements/Adv_Accordion.php:313, ../includes/Elements/Adv_Tabs.php:262, ../includes/Elements/Contact_Form_7.php:270, ../includes/Elements/Content_Ticker.php:306, ../includes/Elements/Countdown.php:467, ../includes/Elements/Creative_Button.php:187, ../includes/Elements/Cta_Box.php:346, ../includes/Elements/Data_Table.php:450, ../includes/Elements/Dual_Color_Header.php:214, ../includes/Elements/Fancy_Text.php:267, ../includes/Elements/Filterable_Gallery.php:795, ../includes/Elements/Flip_Box.php:727, ../includes/Elements/Info_Box.php:493, ../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:295, ../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:320, ../includes/Elements/Adv_Tabs.php:269, ../includes/Elements/Contact_Form_7.php:277, ../includes/Elements/Content_Ticker.php:313, ../includes/Elements/Countdown.php:474, ../includes/Elements/Creative_Button.php:194, ../includes/Elements/Cta_Box.php:353, ../includes/Elements/Data_Table.php:457, ../includes/Elements/Dual_Color_Header.php:221, ../includes/Elements/Fancy_Text.php:274, ../includes/Elements/Filterable_Gallery.php:802, ../includes/Elements/Flip_Box.php:734, ../includes/Elements/Info_Box.php:500, ../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:302, ../includes/Elements/WeForms.php:117
21
  msgid "Unlock more possibilities"
22
  msgstr ""
23
 
@@ -126,7 +126,7 @@ msgid ""
126
  " option."
127
  msgstr ""
128
 
129
- #: ../includes/Classes/WPDeveloper_Setup_Wizard.php:215, ../includes/Elements/Caldera_Forms.php:1164, ../includes/Elements/Contact_Form_7.php:1190, ../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
130
  msgid "Custom"
131
  msgstr ""
132
 
@@ -239,15 +239,15 @@ msgstr ""
239
  msgid "Content Elements"
240
  msgstr ""
241
 
242
- #: ../includes/Classes/WPDeveloper_Setup_Wizard.php:545, ../includes/Elements/Creative_Button.php:31, ../includes/templates/admin/elements.php:9
243
  msgid "Creative Button"
244
  msgstr ""
245
 
246
- #: ../includes/Classes/WPDeveloper_Setup_Wizard.php:550, ../includes/Elements/Team_Member.php:25, ../includes/templates/admin/elements.php:15
247
  msgid "Team Member"
248
  msgstr ""
249
 
250
- #: ../includes/Classes/WPDeveloper_Setup_Wizard.php:555, ../includes/Elements/Testimonial.php:23, ../includes/templates/admin/elements.php:21
251
  msgid "Testimonial"
252
  msgstr ""
253
 
@@ -263,7 +263,7 @@ msgstr ""
263
  msgid "Dual Color Heading"
264
  msgstr ""
265
 
266
- #: ../includes/Classes/WPDeveloper_Setup_Wizard.php:575, ../includes/Elements/Pricing_Table.php:1468, ../includes/Elements/Tooltip.php:25, ../includes/templates/admin/elements.php:45
267
  msgid "Tooltip"
268
  msgstr ""
269
 
@@ -275,7 +275,7 @@ msgstr ""
275
  msgid "Advanced Tabs"
276
  msgstr ""
277
 
278
- #: ../includes/Classes/WPDeveloper_Setup_Wizard.php:590, ../includes/Elements/Feature_List.php:27, ../includes/Elements/Pricing_Table.php:1209, ../includes/templates/admin/elements.php:63
279
  msgid "Feature List"
280
  msgstr ""
281
 
@@ -299,7 +299,7 @@ msgstr ""
299
  msgid "Data Table"
300
  msgstr ""
301
 
302
- #: ../includes/Classes/WPDeveloper_Setup_Wizard.php:625, ../includes/Elements/Advanced_Data_Table.php:25, ../includes/templates/admin/elements.php:146
303
  msgid "Advanced Data Table"
304
  msgstr ""
305
 
@@ -315,7 +315,7 @@ msgstr ""
315
  msgid "Countdown"
316
  msgstr ""
317
 
318
- #: ../includes/Classes/WPDeveloper_Setup_Wizard.php:644, ../includes/Elements/Fancy_Text.php:25, ../includes/Elements/Fancy_Text.php:62, ../includes/templates/admin/elements.php:211
319
  msgid "Fancy Text"
320
  msgstr ""
321
 
@@ -339,7 +339,7 @@ msgstr ""
339
  msgid "Call To Action"
340
  msgstr ""
341
 
342
- #: ../includes/Classes/WPDeveloper_Setup_Wizard.php:674, ../includes/Elements/Pricing_Table.php:31, ../includes/templates/admin/elements.php:330
343
  msgid "Pricing Table"
344
  msgstr ""
345
 
@@ -399,11 +399,11 @@ msgstr ""
399
  msgid "BetterDocs Category Grid"
400
  msgstr ""
401
 
402
- #: ../includes/Classes/WPDeveloper_Setup_Wizard.php:746, ../includes/Elements/Betterdocs_Category_Box.php:35, ../includes/templates/admin/elements.php:469
403
  msgid "BetterDocs Category Box"
404
  msgstr ""
405
 
406
- #: ../includes/Classes/WPDeveloper_Setup_Wizard.php:751, ../includes/Elements/Betterdocs_Search_Form.php:30, ../includes/templates/admin/elements.php:475
407
  msgid "BetterDocs Search Form"
408
  msgstr ""
409
 
@@ -431,255 +431,255 @@ msgstr ""
431
  msgid "Quick Setup Wizard- Essential Addons"
432
  msgstr ""
433
 
434
- #: ../includes/Controls/Select2.php:28, ../includes/Elements/Advanced_Data_Table.php:141, ../includes/Elements/Advanced_Data_Table.php:156, ../includes/Elements/Advanced_Data_Table.php:860
435
  msgid "Search"
436
  msgstr ""
437
 
438
- #: ../includes/Elements/Advanced_Data_Table.php:72
439
  msgid "Data Source"
440
  msgstr ""
441
 
442
- #: ../includes/Elements/Advanced_Data_Table.php:79, ../includes/Elements/Event_Calendar.php:93, ../includes/Elements/Product_Grid.php:327, ../includes/Elements/Sticky_Video.php:144, ../includes/Traits/Controls.php:67
443
  msgid "Source"
444
  msgstr ""
445
 
446
- #: ../includes/Elements/Advanced_Data_Table.php:83
447
  msgid "Static Data"
448
  msgstr ""
449
 
450
- #: ../includes/Elements/Advanced_Data_Table.php:91
451
  msgid "Database(PRO)"
452
  msgstr ""
453
 
454
- #: ../includes/Elements/Advanced_Data_Table.php:92
455
  msgid "Remote Database(PRO)"
456
  msgstr ""
457
 
458
- #: ../includes/Elements/Advanced_Data_Table.php:93
459
  msgid "Google Sheets(PRO)"
460
  msgstr ""
461
 
462
- #: ../includes/Elements/Advanced_Data_Table.php:94
463
  msgid "TablePress(PRO)"
464
  msgstr ""
465
 
466
- #: ../includes/Elements/Advanced_Data_Table.php:86
467
  msgid "Database"
468
  msgstr ""
469
 
470
- #: ../includes/Elements/Advanced_Data_Table.php:87
471
  msgid "Remote Database"
472
  msgstr ""
473
 
474
- #: ../includes/Elements/Advanced_Data_Table.php:88
475
  msgid "Google Sheets"
476
  msgstr ""
477
 
478
- #: ../includes/Elements/Advanced_Data_Table.php:89
479
  msgid "TablePress"
480
  msgstr ""
481
 
482
- #: ../includes/Elements/Advanced_Data_Table.php:97
483
  msgid "Ninja Tables"
484
  msgstr ""
485
 
486
- #: ../includes/Elements/Advanced_Data_Table.php:124
487
  msgid "Advanced Features"
488
  msgstr ""
489
 
490
- #: ../includes/Elements/Advanced_Data_Table.php:131
491
  msgid "Sort"
492
  msgstr ""
493
 
494
- #: ../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:2291, ../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
495
  msgid "Placeholder"
496
  msgstr ""
497
 
498
- #: ../includes/Elements/Advanced_Data_Table.php:166, ../includes/Elements/Advanced_Data_Table.php:1055, ../includes/Elements/Facebook_Feed.php:376, ../includes/Elements/FluentForm.php:1679, ../includes/Elements/Formstack.php:1593, ../includes/Elements/Product_Grid.php:2031, ../includes/Elements/Product_Grid.php:2082
499
  msgid "Pagination"
500
  msgstr ""
501
 
502
- #: ../includes/Elements/Advanced_Data_Table.php:176
503
  msgid "Pagination Type"
504
  msgstr ""
505
 
506
- #: ../includes/Elements/Advanced_Data_Table.php:179, ../includes/Elements/Advanced_Data_Table.php:1331, ../includes/Elements/Betterdocs_Category_Grid.php:1289, ../includes/Elements/Event_Calendar.php:747, ../includes/Elements/Flip_Box.php:651, ../includes/Elements/FluentForm.php:1913, ../includes/Elements/Formstack.php:1773, ../includes/Elements/Info_Box.php:350, ../includes/Elements/Pricing_Table.php:506, ../includes/Elements/Pricing_Table.php:1815, ../includes/Elements/Product_Grid.php:1736, ../includes/Elements/Woo_Checkout.php:1287, ../includes/Elements/Woo_Checkout.php:1585, ../includes/Elements/Woo_Checkout.php:2358, ../includes/Elements/Woo_Product_Carousel.php:1284, ../includes/Traits/Woo_Product_Comparable.php:1200, ../includes/Traits/Woo_Product_Comparable.php:1250
507
  msgid "Button"
508
  msgstr ""
509
 
510
- #: ../includes/Elements/Advanced_Data_Table.php:180
511
  msgid "Select"
512
  msgstr ""
513
 
514
- #: ../includes/Elements/Advanced_Data_Table.php:192
515
  msgid "Rows Per Page"
516
  msgstr ""
517
 
518
- #: ../includes/Elements/Advanced_Data_Table.php:206
519
  msgid "Note: Pagination will be applied on Live Preview only."
520
  msgstr ""
521
 
522
- #: ../includes/Elements/Advanced_Data_Table.php:220
523
  msgid "Export/Import"
524
  msgstr ""
525
 
526
- #: ../includes/Elements/Advanced_Data_Table.php:227, ../includes/Elements/Data_Table.php:437
527
  msgid "Export table as CSV file"
528
  msgstr ""
529
 
530
- #: ../includes/Elements/Advanced_Data_Table.php:229, ../includes/Elements/Data_Table.php:430, ../includes/Elements/Data_Table.php:439
531
  msgid "Export"
532
  msgstr ""
533
 
534
- #: ../includes/Elements/Advanced_Data_Table.php:237, ../includes/Elements/Advanced_Data_Table.php:259, ../includes/Elements/Advanced_Data_Table.php:262
535
  msgid "Import"
536
  msgstr ""
537
 
538
- #: ../includes/Elements/Advanced_Data_Table.php:278, ../includes/Elements/Event_Calendar.php:620
539
  msgid "Data Cache Setting"
540
  msgstr ""
541
 
542
- #: ../includes/Elements/Advanced_Data_Table.php:288, ../includes/Elements/Event_Calendar.php:630, ../includes/Elements/Facebook_Feed.php:112, ../includes/Elements/Twitter_Feed.php:134
543
  msgid "Data Cache Time"
544
  msgstr ""
545
 
546
- #: ../includes/Elements/Advanced_Data_Table.php:292, ../includes/Elements/Event_Calendar.php:634, ../includes/Elements/Facebook_Feed.php:116, ../includes/Elements/Twitter_Feed.php:138
547
  msgid "Cache expiration time (Minutes)"
548
  msgstr ""
549
 
550
- #: ../includes/Elements/Advanced_Data_Table.php:302
551
  msgid "Table"
552
  msgstr ""
553
 
554
- #: ../includes/Elements/Advanced_Data_Table.php:310, ../includes/Elements/Advanced_Data_Table.php:871, ../includes/Elements/Advanced_Data_Table.php:1066, ../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:1185, ../includes/Elements/Contact_Form_7.php:1199, ../includes/Elements/Creative_Button.php:466, ../includes/Elements/Data_Table.php:489, ../includes/Elements/Data_Table.php:1044, ../includes/Elements/Dual_Color_Header.php:725, ../includes/Elements/Dual_Color_Header.php:805, ../includes/Elements/Filterable_Gallery.php:2156, ../includes/Elements/Filterable_Gallery.php:2314, ../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:791, ../includes/Elements/Woo_Product_Carousel.php:1292, ../includes/Elements/Woo_Product_Carousel.php:2122, ../includes/Elements/Woo_Product_Carousel.php:2325, ../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
555
  msgid "Width"
556
  msgstr ""
557
 
558
- #: ../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:1413, ../includes/Elements/Adv_Accordion.php:372, ../includes/Elements/Adv_Accordion.php:561, ../includes/Elements/Adv_Accordion.php:621, ../includes/Elements/Adv_Accordion.php:682, ../includes/Elements/Adv_Accordion.php:765, ../includes/Elements/Adv_Accordion.php:887, ../includes/Elements/Adv_Accordion.php:933, ../includes/Elements/Adv_Accordion.php:979, ../includes/Elements/Adv_Tabs.php:324, ../includes/Elements/Adv_Tabs.php:516, ../includes/Elements/Adv_Tabs.php:583, ../includes/Elements/Adv_Tabs.php:654, ../includes/Elements/Adv_Tabs.php:749, ../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:1255, ../includes/Elements/Contact_Form_7.php:1457, ../includes/Elements/Contact_Form_7.php:1551, ../includes/Elements/Contact_Form_7.php:1618, ../includes/Elements/Content_Ticker.php:622, ../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:347, ../includes/Elements/Event_Calendar.php:798, ../includes/Elements/Event_Calendar.php:865, ../includes/Elements/Event_Calendar.php:919, ../includes/Elements/Event_Calendar.php:1591, ../includes/Elements/Event_Calendar.php:1662, ../includes/Elements/Facebook_Feed.php:451, ../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:2410, ../includes/Elements/Filterable_Gallery.php:2527, ../includes/Elements/Flip_Box.php:988, ../includes/Elements/Flip_Box.php:1101, ../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:569, ../includes/Elements/Info_Box.php:624, ../includes/Elements/Info_Box.php:818, ../includes/Elements/Info_Box.php:898, ../includes/Elements/Info_Box.php:1052, ../includes/Elements/Info_Box.php:1133, ../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:2177, ../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:448, ../includes/Elements/Twitter_Feed.php:538, ../includes/Elements/Twitter_Feed.php:855, ../includes/Elements/Woo_Checkout.php:1507, ../includes/Elements/Woo_Checkout.php:1753, ../includes/Elements/Woo_Product_Carousel.php:2230, ../includes/Elements/Woo_Product_Carousel.php:2664, ../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:1229, ../includes/Traits/Controls.php:1283, ../includes/Traits/Controls.php:1413
559
  msgid "Border"
560
  msgstr ""
561
 
562
- #: ../includes/Elements/Advanced_Data_Table.php:373, ../includes/Elements/Advanced_Data_Table.php:1041, ../includes/Elements/Advanced_Data_Table.php:1239, ../includes/Elements/Advanced_Data_Table.php:1311, ../includes/Elements/Advanced_Data_Table.php:1435, ../includes/Elements/Adv_Accordion.php:379, ../includes/Elements/Adv_Accordion.php:568, ../includes/Elements/Adv_Accordion.php:628, ../includes/Elements/Adv_Accordion.php:689, ../includes/Elements/Adv_Tabs.php:332, ../includes/Elements/Adv_Tabs.php:523, ../includes/Elements/Adv_Tabs.php:590, ../includes/Elements/Adv_Tabs.php:661, ../includes/Elements/Adv_Tabs.php:756, ../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:1264, ../includes/Elements/Content_Ticker.php:401, ../includes/Elements/Content_Ticker.php:475, ../includes/Elements/Content_Ticker.php:632, ../includes/Elements/Countdown.php:627, ../includes/Elements/Creative_Button.php:335, ../includes/Elements/Cta_Box.php:471, ../includes/Elements/Cta_Box.php:748, ../includes/Elements/Cta_Box.php:935, ../includes/Elements/Dual_Color_Header.php:355, ../includes/Elements/Event_Calendar.php:806, ../includes/Elements/Event_Calendar.php:873, ../includes/Elements/Event_Calendar.php:927, ../includes/Elements/Event_Calendar.php:1163, ../includes/Elements/Event_Calendar.php:1331, ../includes/Elements/Event_Calendar.php:1599, ../includes/Elements/Event_Calendar.php:1670, ../includes/Elements/Facebook_Feed.php:476, ../includes/Elements/Facebook_Feed.php:536, ../includes/Elements/Fancy_Text.php:513, ../includes/Elements/Feature_List.php:641, ../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:2068, ../includes/Elements/Filterable_Gallery.php:2199, ../includes/Elements/Filterable_Gallery.php:2334, ../includes/Elements/Filterable_Gallery.php:2432, ../includes/Elements/Filterable_Gallery.php:2541, ../includes/Elements/Flip_Box.php:826, ../includes/Elements/Flip_Box.php:887, ../includes/Elements/Flip_Box.php:1011, ../includes/Elements/Flip_Box.php:1124, ../includes/Elements/Flip_Box.php:1385, ../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:1218, ../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:904, ../includes/Elements/Product_Grid.php:1921, ../includes/Elements/Product_Grid.php:2277, ../includes/Elements/Product_Grid.php:2614, ../includes/Elements/Product_Grid.php:2809, ../includes/Elements/Product_Grid.php:2841, ../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:456, ../includes/Elements/Twitter_Feed.php:549, ../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/Woo_Product_Carousel.php:997, ../includes/Elements/Woo_Product_Carousel.php:1399, ../includes/Elements/Woo_Product_Carousel.php:1802, ../includes/Elements/Woo_Product_Carousel.php:1998, ../includes/Elements/Woo_Product_Carousel.php:2030, ../includes/Elements/Woo_Product_Carousel.php:2240, ../includes/Elements/Woo_Product_Carousel.php:2363, ../includes/Elements/Woo_Product_Carousel.php:2674, ../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:1237, ../includes/Traits/Controls.php:1291, ../includes/Traits/Controls.php:1421, ../includes/Traits/Woo_Product_Comparable.php:357, ../includes/Traits/Woo_Product_Comparable.php:502, ../includes/Traits/Woo_Product_Comparable.php:1383
563
  msgid "Border Radius"
564
  msgstr ""
565
 
566
- #: ../includes/Elements/Advanced_Data_Table.php:386, ../includes/Elements/Advanced_Data_Table.php:1449, ../includes/Elements/Betterdocs_Category_Grid.php:331, ../includes/Elements/Betterdocs_Category_Grid.php:379, ../includes/Elements/Event_Calendar.php:685, ../includes/Elements/Event_Calendar.php:1623, ../includes/Elements/Event_Calendar.php:1697, ../includes/Elements/Product_Grid.php:864, ../includes/Elements/Product_Grid.php:892, ../includes/Elements/Product_Grid.php:2833, ../includes/Elements/Product_Grid.php:2868, ../includes/Elements/Progress_Bar.php:652, ../includes/Elements/Twitter_Feed.php:651, ../includes/Elements/Twitter_Feed.php:863, ../includes/Elements/Woo_Product_Carousel.php:956, ../includes/Elements/Woo_Product_Carousel.php:985, ../includes/Elements/Woo_Product_Carousel.php:2022, ../includes/Elements/Woo_Product_Carousel.php:2057, ../includes/Elements/Woo_Product_Carousel.php:2736, ../includes/Extensions/Table_of_Content.php:510, ../includes/Extensions/Table_of_Content.php:755, ../includes/Traits/Woo_Product_Comparable.php:1407
567
  msgid "Box Shadow"
568
  msgstr ""
569
 
570
- #: ../includes/Elements/Advanced_Data_Table.php:396
571
  msgid "Head"
572
  msgstr ""
573
 
574
- #: ../includes/Elements/Advanced_Data_Table.php:405, ../includes/Elements/Advanced_Data_Table.php:524, ../includes/Elements/Advanced_Data_Table.php:982, ../includes/Elements/Advanced_Data_Table.php:1132, ../includes/Elements/Advanced_Data_Table.php:1340, ../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:1308, ../includes/Elements/Contact_Form_7.php:1443, ../includes/Elements/Contact_Form_7.php:1583, ../includes/Elements/Event_Calendar.php:727, ../includes/Elements/Event_Calendar.php:757, ../includes/Elements/Event_Calendar.php:971, ../includes/Elements/Event_Calendar.php:1046, ../includes/Elements/Event_Calendar.php:1080, ../includes/Elements/Event_Calendar.php:1323, ../includes/Elements/Event_Calendar.php:1386, ../includes/Elements/Event_Calendar.php:1415, ../includes/Elements/Event_Calendar.php:1483, ../includes/Elements/Event_Calendar.php:1641, ../includes/Elements/Filterable_Gallery.php:1964, ../includes/Elements/Filterable_Gallery.php:2011, ../includes/Elements/Filterable_Gallery.php:2047, ../includes/Elements/Filterable_Gallery.php:2104, ../includes/Elements/Filterable_Gallery.php:2398, ../includes/Elements/Filterable_Gallery.php:2558, ../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:2337, ../includes/Elements/Product_Grid.php:2367, ../includes/Elements/Product_Grid.php:2409, ../includes/Elements/Product_Grid.php:2475, ../includes/Elements/Product_Grid.php:2514, ../includes/Elements/Product_Grid.php:2571, ../includes/Elements/Product_Grid.php:2688, ../includes/Elements/Progress_Bar.php:672, ../includes/Elements/Woo_Checkout.php:1296, ../includes/Elements/Woo_Checkout.php:1594, ../includes/Elements/Woo_Product_Carousel.php:1510, ../includes/Elements/Woo_Product_Carousel.php:1540, ../includes/Elements/Woo_Product_Carousel.php:1582, ../includes/Elements/Woo_Product_Carousel.php:1661, ../includes/Elements/Woo_Product_Carousel.php:1701, ../includes/Elements/Woo_Product_Carousel.php:1758, ../includes/Elements/Woo_Product_Carousel.php:1877, ../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
575
  msgid "Typography"
576
  msgstr ""
577
 
578
- #: ../includes/Elements/Advanced_Data_Table.php:413, ../includes/Elements/Advanced_Data_Table.php:532, ../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
579
  msgid "Text Alignment"
580
  msgstr ""
581
 
582
- #: ../includes/Elements/Advanced_Data_Table.php:417, ../includes/Elements/Advanced_Data_Table.php:536, ../includes/Elements/Advanced_Data_Table.php:962, ../includes/Elements/Advanced_Data_Table.php:1109, ../includes/Elements/Adv_Accordion.php:154, ../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:290, ../includes/Elements/Countdown.php:118, ../includes/Elements/Countdown.php:1030, ../includes/Elements/Creative_Button.php:444, ../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:191, ../includes/Elements/Event_Calendar.php:995, ../includes/Elements/Event_Calendar.php:1127, ../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:369, ../includes/Elements/Flip_Box.php:598, ../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:304, ../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:656, ../includes/Elements/Product_Grid.php:974, ../includes/Elements/Product_Grid.php:1655, ../includes/Elements/Product_Grid.php:2098, ../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/Woo_Product_Carousel.php:809, ../includes/Elements/Woo_Product_Carousel.php:858, ../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:1502, ../includes/Traits/Controls.php:1553, ../includes/Traits/Controls.php:1554, ../includes/Traits/Controls.php:1876
583
  msgid "Left"
584
  msgstr ""
585
 
586
- #: ../includes/Elements/Advanced_Data_Table.php:421, ../includes/Elements/Advanced_Data_Table.php:540, ../includes/Elements/Advanced_Data_Table.php:966, ../includes/Elements/Advanced_Data_Table.php:1113, ../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:448, ../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:195, ../includes/Elements/Dual_Color_Header.php:634, ../includes/Elements/Event_Calendar.php:999, ../includes/Elements/Event_Calendar.php:1131, ../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:373, ../includes/Elements/Flip_Box.php:602, ../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:308, ../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:660, ../includes/Elements/Product_Grid.php:978, ../includes/Elements/Product_Grid.php:2102, ../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/Woo_Product_Carousel.php:862, ../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:1506, ../includes/Traits/Controls.php:1880
587
  msgid "Center"
588
  msgstr ""
589
 
590
- #: ../includes/Elements/Advanced_Data_Table.php:425, ../includes/Elements/Advanced_Data_Table.php:544, ../includes/Elements/Advanced_Data_Table.php:970, ../includes/Elements/Advanced_Data_Table.php:1117, ../includes/Elements/Adv_Accordion.php:153, ../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:291, ../includes/Elements/Countdown.php:126, ../includes/Elements/Countdown.php:1038, ../includes/Elements/Creative_Button.php:452, ../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:199, ../includes/Elements/Event_Calendar.php:1003, ../includes/Elements/Event_Calendar.php:1135, ../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:377, ../includes/Elements/Flip_Box.php:606, ../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:312, ../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:664, ../includes/Elements/Product_Grid.php:982, ../includes/Elements/Product_Grid.php:1659, ../includes/Elements/Product_Grid.php:2106, ../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/Woo_Product_Carousel.php:813, ../includes/Elements/Woo_Product_Carousel.php:866, ../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:1510, ../includes/Traits/Controls.php:1553, ../includes/Traits/Controls.php:1554, ../includes/Traits/Controls.php:1884
591
  msgid "Right"
592
  msgstr ""
593
 
594
- #: ../includes/Elements/Advanced_Data_Table.php:440, ../includes/Elements/Advanced_Data_Table.php:559, ../includes/Elements/Advanced_Data_Table.php:653, ../includes/Elements/Advanced_Data_Table.php:684, ../includes/Elements/Advanced_Data_Table.php:715, ../includes/Elements/Advanced_Data_Table.php:746, ../includes/Elements/Advanced_Data_Table.php:777, ../includes/Elements/Advanced_Data_Table.php:808, ../includes/Elements/Advanced_Data_Table.php:990, ../includes/Elements/Advanced_Data_Table.php:1186, ../includes/Elements/Advanced_Data_Table.php:1256, ../includes/Elements/Adv_Accordion.php:537, ../includes/Elements/Adv_Accordion.php:597, ../includes/Elements/Adv_Accordion.php:657, ../includes/Elements/Adv_Accordion.php:724, ../includes/Elements/Adv_Tabs.php:489, ../includes/Elements/Adv_Tabs.php:556, ../includes/Elements/Adv_Tabs.php:624, ../includes/Elements/Adv_Tabs.php:708, ../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:1242, ../includes/Elements/Contact_Form_7.php:1348, ../includes/Elements/Contact_Form_7.php:1412, ../includes/Elements/Contact_Form_7.php:1535, ../includes/Elements/Contact_Form_7.php:1592, ../includes/Elements/Content_Ticker.php:357, ../includes/Elements/Content_Ticker.php:433, ../includes/Elements/Countdown.php:1109, ../includes/Elements/Creative_Button.php:276, ../includes/Elements/Creative_Button.php:369, ../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:1241, ../includes/Elements/Event_Calendar.php:1274, ../includes/Elements/Filterable_Gallery.php:959, ../includes/Elements/Filterable_Gallery.php:1025, ../includes/Elements/Filterable_Gallery.php:2510, ../includes/Elements/Filterable_Gallery.php:2705, ../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:1240, ../includes/Elements/Info_Box.php:1287, ../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:2152, ../includes/Elements/Product_Grid.php:2190, ../includes/Elements/Product_Grid.php:2234, ../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:1203, ../includes/Traits/Controls.php:1258, ../includes/Traits/Controls.php:1388, ../includes/Traits/Controls.php:1450, ../includes/Traits/Controls.php:1833
595
  msgid "Text Color"
596
  msgstr ""
597
 
598
- #: ../includes/Elements/Advanced_Data_Table.php:454, ../includes/Elements/Advanced_Data_Table.php:595, ../includes/Elements/Advanced_Data_Table.php:668, ../includes/Elements/Advanced_Data_Table.php:699, ../includes/Elements/Advanced_Data_Table.php:730, ../includes/Elements/Advanced_Data_Table.php:761, ../includes/Elements/Advanced_Data_Table.php:792, ../includes/Elements/Advanced_Data_Table.php:823, ../includes/Elements/Advanced_Data_Table.php:1002, ../includes/Elements/Advanced_Data_Table.php:1199, ../includes/Elements/Advanced_Data_Table.php:1270, ../includes/Elements/Advanced_Data_Table.php:1365, ../includes/Elements/Advanced_Data_Table.php:1395, ../includes/Elements/Adv_Accordion.php:873, ../includes/Elements/Adv_Accordion.php:919, ../includes/Elements/Adv_Accordion.php:965, ../includes/Elements/Adv_Tabs.php:470, ../includes/Elements/Adv_Tabs.php:689, ../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:1230, ../includes/Elements/Contact_Form_7.php:1336, ../includes/Elements/Contact_Form_7.php:1427, ../includes/Elements/Contact_Form_7.php:1520, ../includes/Elements/Content_Ticker.php:345, ../includes/Elements/Content_Ticker.php:422, ../includes/Elements/Content_Ticker.php:597, ../includes/Elements/Content_Ticker.php:653, ../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:290, ../includes/Elements/Creative_Button.php:382, ../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:310, ../includes/Elements/Event_Calendar.php:1253, ../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:2494, ../includes/Elements/Filterable_Gallery.php:2689, ../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:544, ../includes/Elements/Info_Box.php:785, ../includes/Elements/Info_Box.php:864, ../includes/Elements/Info_Box.php:1036, ../includes/Elements/Info_Box.php:1099, ../includes/Elements/Info_Box.php:1253, ../includes/Elements/Info_Box.php:1300, ../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:1764, ../includes/Elements/Product_Grid.php:1872, ../includes/Elements/Product_Grid.php:1978, ../includes/Elements/Product_Grid.php:2164, ../includes/Elements/Product_Grid.php:2202, ../includes/Elements/Product_Grid.php:2246, ../includes/Elements/Product_Grid.php:2492, ../includes/Elements/Product_Grid.php:2534, ../includes/Elements/Product_Grid.php:2595, ../includes/Elements/Product_Grid.php:2646, ../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:401, ../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/Woo_Product_Carousel.php:884, ../includes/Elements/Woo_Product_Carousel.php:1377, ../includes/Elements/Woo_Product_Carousel.php:1459, ../includes/Elements/Woo_Product_Carousel.php:1678, ../includes/Elements/Woo_Product_Carousel.php:1721, ../includes/Elements/Woo_Product_Carousel.php:1783, ../includes/Elements/Woo_Product_Carousel.php:1835, ../includes/Elements/Woo_Product_Carousel.php:2639, ../includes/Elements/Woo_Product_Carousel.php:2695, ../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:1400, ../includes/Traits/Controls.php:1462, ../includes/Traits/Controls.php:1843, ../includes/Traits/Woo_Product_Comparable.php:369, ../includes/Traits/Woo_Product_Comparable.php:475
599
  msgid "Background Color"
600
  msgstr ""
601
 
602
- #: ../includes/Elements/Advanced_Data_Table.php:467, ../includes/Elements/Advanced_Data_Table.php:608
603
  msgid "Cell Border"
604
  msgstr ""
605
 
606
- #: ../includes/Elements/Advanced_Data_Table.php:493, ../includes/Elements/Advanced_Data_Table.php:838, ../includes/Elements/Advanced_Data_Table.php:922, ../includes/Elements/Advanced_Data_Table.php:1140, ../includes/Elements/Advanced_Data_Table.php:1457, ../includes/Elements/Adv_Accordion.php:349, ../includes/Elements/Adv_Accordion.php:502, ../includes/Elements/Adv_Accordion.php:742, ../includes/Elements/Adv_Tabs.php:301, ../includes/Elements/Adv_Tabs.php:444, ../includes/Elements/Adv_Tabs.php:726, ../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:1276, ../includes/Elements/Contact_Form_7.php:1471, ../includes/Elements/Contact_Form_7.php:1668, ../includes/Elements/Content_Ticker.php:389, ../includes/Elements/Content_Ticker.php:452, ../includes/Elements/Content_Ticker.php:693, ../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:322, ../includes/Elements/Facebook_Feed.php:605, ../includes/Elements/Facebook_Feed.php:631, ../includes/Elements/Facebook_Feed.php:703, ../includes/Elements/Fancy_Text.php:478, ../includes/Elements/Feature_List.php:598, ../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:2613, ../includes/Elements/Flip_Box.php:999, ../includes/Elements/Flip_Box.php:1112, ../includes/Elements/Flip_Box.php:1348, ../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:556, ../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:767, ../includes/Elements/Product_Grid.php:1018, ../includes/Elements/Product_Grid.php:1426, ../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:431, ../includes/Elements/Twitter_Feed.php:490, ../includes/Elements/Twitter_Feed.php:523, ../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/Woo_Product_Carousel.php:1019, ../includes/Elements/Woo_Product_Carousel.php:2252, ../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:1307, ../includes/Traits/Controls.php:1352, ../includes/Traits/Controls.php:1853, ../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
607
  msgid "Padding"
608
  msgstr ""
609
 
610
- #: ../includes/Elements/Advanced_Data_Table.php:515, ../includes/Elements/Event_Calendar.php:1266
611
  msgid "Body"
612
  msgstr ""
613
 
614
- #: ../includes/Elements/Advanced_Data_Table.php:571, ../includes/Elements/Data_Table.php:942, ../includes/Elements/Facebook_Feed.php:986, ../includes/Elements/Twitter_Feed.php:598, ../includes/Elements/Woo_Checkout.php:905, ../includes/Elements/Woo_Checkout.php:921, ../includes/Elements/Woo_Checkout.php:948, ../includes/Elements/Woo_Checkout.php:965, ../includes/Elements/Woo_Checkout.php:2335
615
  msgid "Link Color"
616
  msgstr ""
617
 
618
- #: ../includes/Elements/Advanced_Data_Table.php:583
619
  msgid "Link Hover Color"
620
  msgstr ""
621
 
622
- #: ../includes/Elements/Advanced_Data_Table.php:634
623
  msgid "Highlight"
624
  msgstr ""
625
 
626
- #: ../includes/Elements/Advanced_Data_Table.php:637, ../includes/Elements/Adv_Tabs.php:147, ../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:200, ../includes/Elements/Flip_Box.php:429, ../includes/Elements/Flip_Box.php:648, ../includes/Elements/GravityForms.php:1016, ../includes/Elements/Info_Box.php:99, ../includes/Elements/Info_Box.php:805, ../includes/Elements/Info_Box.php:885, ../includes/Elements/Info_Box.php:1024, ../includes/Elements/Info_Box.php:1120, ../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
627
  msgid "None"
628
  msgstr ""
629
 
630
- #: ../includes/Elements/Advanced_Data_Table.php:638
631
  msgid "First Column"
632
  msgstr ""
633
 
634
- #: ../includes/Elements/Advanced_Data_Table.php:639
635
  msgid "Last Column"
636
  msgstr ""
637
 
638
- #: ../includes/Elements/Advanced_Data_Table.php:640
639
  msgid "Even Column"
640
  msgstr ""
641
 
642
- #: ../includes/Elements/Advanced_Data_Table.php:641
643
  msgid "Odd Column"
644
  msgstr ""
645
 
646
- #: ../includes/Elements/Advanced_Data_Table.php:642
647
  msgid "Even Row"
648
  msgstr ""
649
 
650
- #: ../includes/Elements/Advanced_Data_Table.php:643
651
  msgid "Odd Row"
652
  msgstr ""
653
 
654
- #: ../includes/Elements/Advanced_Data_Table.php:899, ../includes/Elements/Dual_Color_Header.php:751, ../includes/Elements/Dual_Color_Header.php:831, ../includes/Elements/Flip_Box.php:123, ../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:818, ../includes/Elements/Woo_Product_Carousel.php:1311, ../includes/Elements/Woo_Product_Carousel.php:2144, ../includes/Elements/Woo_Product_Carousel.php:2344, ../includes/Extensions/Reading_Progress.php:128
655
  msgid "Height"
656
  msgstr ""
657
 
658
- #: ../includes/Elements/Advanced_Data_Table.php:934
659
  msgid "Margin Bottom"
660
  msgstr ""
661
 
662
- #: ../includes/Elements/Advanced_Data_Table.php:957, ../includes/Elements/Advanced_Data_Table.php:1105, ../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:186, ../includes/Elements/Dual_Color_Header.php:626, ../includes/Elements/Event_Calendar.php:991, ../includes/Elements/Event_Calendar.php:1123, ../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:652, ../includes/Elements/Product_Grid.php:970, ../includes/Elements/Product_Grid.php:1651, ../includes/Elements/Product_Grid.php:2094, ../includes/Elements/Progress_Bar.php:317, ../includes/Elements/Progress_Bar.php:528, ../includes/Elements/Tooltip.php:172, ../includes/Elements/Woo_Product_Carousel.php:805, ../includes/Elements/Woo_Product_Carousel.php:854, ../includes/Elements/WpForms.php:384, ../includes/Elements/WpForms.php:568, ../includes/Elements/WpForms.php:1133, ../includes/Traits/Controls.php:1872
663
  msgid "Alignment"
664
  msgstr ""
665
 
666
- #: ../includes/Elements/Advanced_Data_Table.php:1161, ../includes/Elements/Adv_Accordion.php:360, ../includes/Elements/Adv_Accordion.php:513, ../includes/Elements/Adv_Accordion.php:753, ../includes/Elements/Adv_Tabs.php:312, ../includes/Elements/Adv_Tabs.php:455, ../includes/Elements/Adv_Tabs.php:737, ../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:1653, ../includes/Elements/Content_Ticker.php:464, ../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:334, ../includes/Elements/Dual_Color_Header.php:678, ../includes/Elements/Fancy_Text.php:490, ../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:2211, ../includes/Elements/Filterable_Gallery.php:2654, ../includes/Elements/Flip_Box.php:1336, ../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:689, ../includes/Elements/Info_Box.php:751, ../includes/Elements/Info_Box.php:984, ../includes/Elements/Info_Box.php:1381, ../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/Woo_Product_Carousel.php:913, ../includes/Elements/WpForms.php:440, ../includes/Elements/WpForms.php:490, ../includes/Elements/WpForms.php:522, ../includes/Traits/Controls.php:1319, ../includes/Traits/Controls.php:1364, ../includes/Traits/Woo_Product_Comparable.php:329, ../includes/Traits/Woo_Product_Comparable.php:1451
667
  msgid "Margin"
668
  msgstr ""
669
 
670
- #: ../includes/Elements/Advanced_Data_Table.php:1181, ../includes/Elements/Advanced_Data_Table.php:1347, ../includes/Elements/Adv_Accordion.php:524, ../includes/Elements/Adv_Accordion.php:852, ../includes/Elements/Adv_Tabs.php:466, ../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:1223, ../includes/Elements/Content_Ticker.php:590, ../includes/Elements/Creative_Button.php:259, ../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:768, ../includes/Elements/Filterable_Gallery.php:954, ../includes/Elements/Filterable_Gallery.php:1719, ../includes/Elements/Filterable_Gallery.php:2483, ../includes/Elements/Flip_Box.php:1330, ../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:537, ../includes/Elements/Info_Box.php:765, ../includes/Elements/Info_Box.php:998, ../includes/Elements/Info_Box.php:1234, ../includes/Elements/Info_Box.php:1347, ../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:822, ../includes/Elements/Product_Grid.php:1463, ../includes/Elements/Product_Grid.php:1854, ../includes/Elements/Product_Grid.php:2147, ../includes/Elements/Product_Grid.php:2578, ../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/Woo_Product_Carousel.php:925, ../includes/Elements/Woo_Product_Carousel.php:1361, ../includes/Elements/Woo_Product_Carousel.php:1766, ../includes/Elements/Woo_Product_Carousel.php:2210, ../includes/Elements/Woo_Product_Carousel.php:2632, ../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:1196, ../includes/Traits/Controls.php:1383, ../includes/Traits/Woo_Product_Comparable.php:827, ../includes/Traits/Woo_Product_Comparable.php:1213, ../includes/Traits/Woo_Product_Comparable.php:1631
671
  msgid "Normal"
672
  msgstr ""
673
 
674
- #: ../includes/Elements/Advanced_Data_Table.php:1251, ../includes/Elements/Advanced_Data_Table.php:1377, ../includes/Elements/Adv_Accordion.php:582, ../includes/Elements/Adv_Accordion.php:899, ../includes/Elements/Adv_Tabs.php:533, ../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:1329, ../includes/Elements/Content_Ticker.php:646, ../includes/Elements/Creative_Button.php:352, ../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:835, ../includes/Elements/Filterable_Gallery.php:1857, ../includes/Elements/Filterable_Gallery.php:2678, ../includes/Elements/Flip_Box.php:1413, ../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:598, ../includes/Elements/Info_Box.php:836, ../includes/Elements/Info_Box.php:1070, ../includes/Elements/Info_Box.php:1281, ../includes/Elements/Info_Box.php:1457, ../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:872, ../includes/Elements/Product_Grid.php:1532, ../includes/Elements/Product_Grid.php:1961, ../includes/Elements/Product_Grid.php:2185, ../includes/Elements/Product_Grid.php:2629, ../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/Woo_Product_Carousel.php:965, ../includes/Elements/Woo_Product_Carousel.php:1443, ../includes/Elements/Woo_Product_Carousel.php:1818, ../includes/Elements/Woo_Product_Carousel.php:2273, ../includes/Elements/Woo_Product_Carousel.php:2688, ../includes/Elements/WpForms.php:1308, ../includes/Extensions/Table_of_Content.php:910, ../includes/Traits/Controls.php:1251, ../includes/Traits/Controls.php:1445, ../includes/Traits/Woo_Product_Comparable.php:927, ../includes/Traits/Woo_Product_Comparable.php:1294, ../includes/Traits/Woo_Product_Comparable.php:1681
675
  msgid "Hover"
676
  msgstr ""
677
 
678
- #: ../includes/Elements/Advanced_Data_Table.php:1352, ../includes/Elements/Advanced_Data_Table.php:1382, ../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:609, ../includes/Elements/Content_Ticker.php:665, ../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:473, ../includes/Elements/Dual_Color_Header.php:546, ../includes/Elements/Dual_Color_Header.php:689, ../includes/Elements/Event_Calendar.php:735, ../includes/Elements/Event_Calendar.php:775, ../includes/Elements/Event_Calendar.php:842, ../includes/Elements/Event_Calendar.php:896, ../includes/Elements/Event_Calendar.php:979, ../includes/Elements/Event_Calendar.php:1054, ../includes/Elements/Event_Calendar.php:1088, ../includes/Elements/Event_Calendar.php:1197, ../includes/Elements/Event_Calendar.php:1563, ../includes/Elements/Facebook_Feed.php:769, ../includes/Elements/Facebook_Feed.php:807, ../includes/Elements/Facebook_Feed.php:847, ../includes/Elements/Facebook_Feed.php:895, ../includes/Elements/Facebook_Feed.php:933, ../includes/Elements/Facebook_Feed.php:971, ../includes/Elements/Facebook_Feed.php:1024, ../includes/Elements/Facebook_Feed.php:1062, ../includes/Elements/Facebook_Feed.php:1100, ../includes/Elements/Facebook_Feed.php:1132, ../includes/Elements/Fancy_Text.php:344, ../includes/Elements/Feature_List.php:542, ../includes/Elements/Feature_List.php:764, ../includes/Elements/Feature_List.php:798, ../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:1988, ../includes/Elements/Filterable_Gallery.php:2035, ../includes/Elements/Filterable_Gallery.php:2176, ../includes/Elements/Filterable_Gallery.php:2363, ../includes/Elements/Flip_Box.php:945, ../includes/Elements/Flip_Box.php:1058, ../includes/Elements/Flip_Box.php:1185, ../includes/Elements/Flip_Box.php:1216, ../includes/Elements/Flip_Box.php:1254, ../includes/Elements/Flip_Box.php:1286, ../includes/Elements/Flip_Box.php:1360, ../includes/Elements/Flip_Box.php:1419, ../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:1361, ../includes/Elements/Info_Box.php:1437, ../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:1292, ../includes/Elements/Product_Grid.php:1859, ../includes/Elements/Product_Grid.php:1966, ../includes/Elements/Product_Grid.php:2303, ../includes/Elements/Product_Grid.php:2482, ../includes/Elements/Product_Grid.php:2522, ../includes/Elements/Product_Grid.php:2583, ../includes/Elements/Product_Grid.php:2634, ../includes/Elements/Product_Grid.php:2787, ../includes/Elements/Progress_Bar.php:407, ../includes/Elements/Progress_Bar.php:467, ../includes/Elements/Twitter_Feed.php:682, ../includes/Elements/Twitter_Feed.php:711, ../includes/Elements/Twitter_Feed.php:741, ../includes/Elements/Twitter_Feed.php:911, ../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/Woo_Product_Carousel.php:1171, ../includes/Elements/Woo_Product_Carousel.php:1366, ../includes/Elements/Woo_Product_Carousel.php:1448, ../includes/Elements/Woo_Product_Carousel.php:1668, ../includes/Elements/Woo_Product_Carousel.php:1709, ../includes/Elements/Woo_Product_Carousel.php:1771, ../includes/Elements/Woo_Product_Carousel.php:1823, ../includes/Elements/Woo_Product_Carousel.php:1976, ../includes/Elements/Woo_Product_Carousel.php:2217, ../includes/Elements/Woo_Product_Carousel.php:2280, ../includes/Elements/Woo_Product_Carousel.php:2313, ../includes/Elements/Woo_Product_Carousel.php:2651, ../includes/Elements/Woo_Product_Carousel.php:2707, ../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
679
  msgid "Color"
680
  msgstr ""
681
 
682
- #: ../includes/Elements/Advanced_Data_Table.php:1564
683
  msgid "No content found"
684
  msgstr ""
685
 
@@ -695,7 +695,7 @@ msgstr ""
695
  msgid "Accordion"
696
  msgstr ""
697
 
698
- #: ../includes/Elements/Adv_Accordion.php:116, ../includes/Elements/Login_Register.php:2932, ../includes/Elements/Woo_Product_Carousel.php:2543, ../includes/Traits/Elements.php:286, ../includes/templates/admin/elements.php:83
699
  msgid "Toggle"
700
  msgstr ""
701
 
@@ -703,39 +703,39 @@ msgstr ""
703
  msgid "Select Accordion Tab Title Tag"
704
  msgstr ""
705
 
706
- #: ../includes/Elements/Adv_Accordion.php:127, ../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:138, ../includes/Elements/Filterable_Gallery.php:367, ../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:138, ../includes/Elements/Tooltip.php:114, ../includes/Elements/Woo_Product_Carousel.php:257, ../includes/Extensions/Table_of_Content.php:147, ../includes/Traits/Controls.php:800
707
  msgid "H1"
708
  msgstr ""
709
 
710
- #: ../includes/Elements/Adv_Accordion.php:128, ../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:139, ../includes/Elements/Filterable_Gallery.php:368, ../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:139, ../includes/Elements/Tooltip.php:115, ../includes/Elements/Woo_Product_Carousel.php:258, ../includes/Extensions/Table_of_Content.php:148, ../includes/Traits/Controls.php:801
711
  msgid "H2"
712
  msgstr ""
713
 
714
- #: ../includes/Elements/Adv_Accordion.php:129, ../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:140, ../includes/Elements/Filterable_Gallery.php:369, ../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:140, ../includes/Elements/Tooltip.php:116, ../includes/Elements/Woo_Product_Carousel.php:259, ../includes/Extensions/Table_of_Content.php:149, ../includes/Traits/Controls.php:802
715
  msgid "H3"
716
  msgstr ""
717
 
718
- #: ../includes/Elements/Adv_Accordion.php:130, ../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:141, ../includes/Elements/Filterable_Gallery.php:370, ../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:141, ../includes/Elements/Tooltip.php:117, ../includes/Elements/Woo_Product_Carousel.php:260, ../includes/Extensions/Table_of_Content.php:150, ../includes/Traits/Controls.php:803
719
  msgid "H4"
720
  msgstr ""
721
 
722
- #: ../includes/Elements/Adv_Accordion.php:131, ../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:142, ../includes/Elements/Filterable_Gallery.php:371, ../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:142, ../includes/Elements/Tooltip.php:118, ../includes/Elements/Woo_Product_Carousel.php:261, ../includes/Extensions/Table_of_Content.php:151, ../includes/Traits/Controls.php:804
723
  msgid "H5"
724
  msgstr ""
725
 
726
- #: ../includes/Elements/Adv_Accordion.php:132, ../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:143, ../includes/Elements/Filterable_Gallery.php:372, ../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/Elements/Progress_Bar.php:143, ../includes/Elements/Tooltip.php:119, ../includes/Elements/Woo_Product_Carousel.php:262, ../includes/Extensions/Table_of_Content.php:152, ../includes/Traits/Controls.php:805
727
  msgid "H6"
728
  msgstr ""
729
 
730
- #: ../includes/Elements/Adv_Accordion.php:133, ../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:144, ../includes/Elements/Filterable_Gallery.php:373, ../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/Woo_Product_Carousel.php:263, ../includes/Traits/Controls.php:806
731
  msgid "Span"
732
  msgstr ""
733
 
734
- #: ../includes/Elements/Adv_Accordion.php:134, ../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:145, ../includes/Elements/Filterable_Gallery.php:374, ../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/Elements/Tooltip.php:122, ../includes/Elements/Woo_Product_Carousel.php:264, ../includes/Traits/Controls.php:807
735
  msgid "P"
736
  msgstr ""
737
 
738
- #: ../includes/Elements/Adv_Accordion.php:135, ../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:146, ../includes/Elements/Filterable_Gallery.php:375, ../includes/Elements/Flip_Box.php:306, ../includes/Elements/Flip_Box.php:535, ../includes/Elements/Image_Accordion.php:164, ../includes/Elements/Info_Box.php:242, ../includes/Elements/Woo_Product_Carousel.php:265, ../includes/Traits/Controls.php:808
739
  msgid "Div"
740
  msgstr ""
741
 
@@ -755,7 +755,7 @@ msgstr ""
755
  msgid "Toggle Speed (ms)"
756
  msgstr ""
757
 
758
- #: ../includes/Elements/Adv_Accordion.php:195, ../includes/Elements/Countdown.php:142, ../includes/Elements/Cta_Box.php:72, ../includes/Elements/Dual_Color_Header.php:69, ../includes/Elements/Facebook_Feed.php:209, ../includes/Elements/Feature_List.php:64, ../includes/Elements/Tooltip.php:63
759
  msgid "Content Settings"
760
  msgstr ""
761
 
@@ -767,7 +767,7 @@ msgstr ""
767
  msgid "Enable Tab Icon"
768
  msgstr ""
769
 
770
- #: ../includes/Elements/Adv_Accordion.php:224, ../includes/Elements/Adv_Tabs.php:151, ../includes/Elements/Adv_Tabs.php:166, ../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:130, ../includes/Elements/Cta_Box.php:151, ../includes/Elements/Data_Table.php:140, ../includes/Elements/Data_Table.php:159, ../includes/Elements/Dual_Color_Header.php:118, ../includes/Elements/Dual_Color_Header.php:273, ../includes/Elements/Feature_List.php:77, ../includes/Elements/Feature_List.php:93, ../includes/Elements/Feature_List.php:503, ../includes/Elements/Flip_Box.php:202, ../includes/Elements/Flip_Box.php:228, ../includes/Elements/Flip_Box.php:431, ../includes/Elements/Flip_Box.php:457, ../includes/Elements/Info_Box.php:107, ../includes/Elements/Info_Box.php:176, ../includes/Elements/Info_Box.php:441, ../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:877, ../includes/Extensions/Table_of_Content.php:622, ../includes/Traits/Controls.php:712, ../includes/Traits/Controls.php:765
771
  msgid "Icon"
772
  msgstr ""
773
 
@@ -779,7 +779,7 @@ msgstr ""
779
  msgid "Content Type"
780
  msgstr ""
781
 
782
- #: ../includes/Elements/Adv_Accordion.php:255, ../includes/Elements/Adv_Tabs.php:123, ../includes/Elements/Adv_Tabs.php:210, ../includes/Elements/Adv_Tabs.php:682, ../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:1473, ../includes/Elements/Facebook_Feed.php:948, ../includes/Elements/Feature_List.php:192, ../includes/Elements/Feature_List.php:696, ../includes/Elements/Flip_Box.php:157, ../includes/Elements/Image_Accordion.php:97, ../includes/Elements/Image_Accordion.php:208, ../includes/Elements/Image_Accordion.php:516, ../includes/Elements/Info_Box.php:252, ../includes/Elements/Product_Grid.php:2399, ../includes/Elements/Tooltip.php:96, ../includes/Elements/Tooltip.php:268, ../includes/Elements/Woo_Product_Carousel.php:1572
783
  msgid "Content"
784
  msgstr ""
785
 
@@ -795,7 +795,7 @@ msgstr ""
795
  msgid "Tab Content"
796
  msgstr ""
797
 
798
- #: ../includes/Elements/Adv_Accordion.php:281, ../includes/Elements/Adv_Tabs.php:234, ../includes/Elements/Feature_List.php:194
799
  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."
800
  msgstr ""
801
 
@@ -819,7 +819,7 @@ msgstr ""
819
  msgid "Tab Style"
820
  msgstr ""
821
 
822
- #: ../includes/Elements/Adv_Accordion.php:416, ../includes/Elements/Adv_Accordion.php:793, ../includes/Elements/Adv_Tabs.php:397, ../includes/Elements/Creative_Button.php:498, ../includes/Elements/Data_Table.php:679, ../includes/Elements/Dual_Color_Header.php:397, ../includes/Elements/Dual_Color_Header.php:584, ../includes/Elements/Event_Calendar.php:1444, ../includes/Elements/Event_Calendar.php:1511, ../includes/Elements/Feature_List.php:576, ../includes/Elements/Filterable_Gallery.php:1774, ../includes/Elements/Filterable_Gallery.php:2136, ../includes/Elements/Filterable_Gallery.php:2573, ../includes/Elements/Flip_Box.php:961, ../includes/Elements/Flip_Box.php:1074, ../includes/Elements/Info_Box.php:936, ../includes/Elements/Info_Box.php:1179, ../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:1242, ../includes/Elements/Product_Grid.php:2735, ../includes/Elements/Team_Member.php:642, ../includes/Elements/Tooltip.php:201, ../includes/Elements/Woo_Product_Carousel.php:1140, ../includes/Elements/Woo_Product_Carousel.php:1924, ../includes/Elements/Woo_Product_Carousel.php:2572, ../includes/Extensions/Table_of_Content.php:658, ../includes/Traits/Woo_Product_Comparable.php:1334
823
  msgid "Icon Size"
824
  msgstr ""
825
 
@@ -831,7 +831,7 @@ msgstr ""
831
  msgid "Distance"
832
  msgstr ""
833
 
834
- #: ../includes/Elements/Adv_Accordion.php:548, ../includes/Elements/Adv_Accordion.php:608, ../includes/Elements/Adv_Accordion.php:669, ../includes/Elements/Adv_Tabs.php:500, ../includes/Elements/Adv_Tabs.php:567, ../includes/Elements/Adv_Tabs.php:636, ../includes/Elements/Dual_Color_Header.php:421, ../includes/Elements/Dual_Color_Header.php:610, ../includes/Elements/Event_Calendar.php:1462, ../includes/Elements/Feature_List.php:121, ../includes/Elements/Info_Box.php:772, ../includes/Elements/Info_Box.php:851, ../includes/Elements/Info_Box.php:1005, ../includes/Elements/Info_Box.php:1085, ../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:618, ../includes/Elements/Woo_Checkout.php:1186, ../includes/Elements/Woo_Checkout.php:1472
835
  msgid "Icon Color"
836
  msgstr ""
837
 
@@ -875,15 +875,15 @@ msgstr ""
875
  msgid "Enable Icon"
876
  msgstr ""
877
 
878
- #: ../includes/Elements/Adv_Tabs.php:102, ../includes/Elements/Betterdocs_Category_Grid.php:1327, ../includes/Elements/Creative_Button.php:142, ../includes/Elements/Data_Table.php:701, ../includes/Elements/Feature_List.php:300, ../includes/Elements/Filterable_Gallery.php:747, ../includes/Elements/Flip_Box.php:708, ../includes/Elements/Info_Box.php:122, ../includes/Elements/Info_Box.php:453, ../includes/Elements/Pricing_Table.php:540
879
  msgid "Icon Position"
880
  msgstr ""
881
 
882
- #: ../includes/Elements/Adv_Tabs.php:107, ../includes/Elements/Feature_List.php:292
883
  msgid "Stacked"
884
  msgstr ""
885
 
886
- #: ../includes/Elements/Adv_Tabs.php:108, ../includes/Elements/Contact_Form_7.php:831, ../includes/Elements/Countdown.php:85, ../includes/Elements/Login_Register.php:3123, ../includes/Elements/Login_Register.php:3423
887
  msgid "Inline"
888
  msgstr ""
889
 
@@ -891,11 +891,11 @@ msgstr ""
891
  msgid "Set as Default"
892
  msgstr ""
893
 
894
- #: ../includes/Elements/Adv_Tabs.php:142, ../includes/Elements/Feature_List.php:73, ../includes/Elements/Flip_Box.php:197, ../includes/Elements/Flip_Box.php:426
895
  msgid "Icon Type"
896
  msgstr ""
897
 
898
- #: ../includes/Elements/Adv_Tabs.php:155, ../includes/Elements/Adv_Tabs.php:182, ../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:201, ../includes/Elements/Flip_Box.php:430, ../includes/Elements/Info_Box.php:111, ../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:708, ../includes/Traits/Woo_Product_Comparable.php:40, ../includes/Traits/Woo_Product_Comparable.php:73
899
  msgid "Image"
900
  msgstr ""
901
 
@@ -911,7 +911,7 @@ msgstr ""
911
  msgid "Tab Title 3"
912
  msgstr ""
913
 
914
- #: ../includes/Elements/Adv_Tabs.php:293, ../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
915
  msgid "General"
916
  msgstr ""
917
 
@@ -935,115 +935,115 @@ msgstr ""
935
  msgid "Caret Size"
936
  msgstr ""
937
 
938
- #: ../includes/Elements/Adv_Tabs.php:853, ../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:194, ../includes/Elements/Content_Ticker.php:227, ../includes/Elements/Content_Ticker.php:242, ../includes/Elements/Content_Ticker.php:277, ../includes/Elements/Data_Table.php:1035, ../includes/Elements/Facebook_Feed.php:388, ../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:359, ../includes/Elements/Info_Box.php:373, ../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/Woo_Product_Carousel.php:349, ../includes/Elements/Woo_Product_Carousel.php:555, ../includes/Elements/Woo_Product_Carousel.php:587, ../includes/Elements/Woo_Product_Carousel.php:602, ../includes/Elements/Woo_Product_Carousel.php:637, ../includes/Elements/Woo_Product_Carousel.php:649, ../includes/Elements/Woo_Product_Carousel.php:2113, ../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
939
  msgid "Yes"
940
  msgstr ""
941
 
942
- #: ../includes/Elements/Adv_Tabs.php:854, ../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:195, ../includes/Elements/Content_Ticker.php:228, ../includes/Elements/Content_Ticker.php:243, ../includes/Elements/Content_Ticker.php:278, ../includes/Elements/Cta_Box.php:685, ../includes/Elements/Data_Table.php:1036, ../includes/Elements/Facebook_Feed.php:392, ../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:360, ../includes/Elements/Info_Box.php:374, ../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/Woo_Product_Carousel.php:350, ../includes/Elements/Woo_Product_Carousel.php:556, ../includes/Elements/Woo_Product_Carousel.php:588, ../includes/Elements/Woo_Product_Carousel.php:603, ../includes/Elements/Woo_Product_Carousel.php:638, ../includes/Elements/Woo_Product_Carousel.php:650, ../includes/Elements/Woo_Product_Carousel.php:2114, ../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
943
  msgid "No"
944
  msgstr ""
945
 
946
- #: ../includes/Elements/Betterdocs_Category_Box.php:119, ../includes/Elements/Betterdocs_Category_Grid.php:120
947
  msgid "Layout Options"
948
  msgstr ""
949
 
950
- #: ../includes/Elements/Betterdocs_Category_Box.php:126, ../includes/Elements/Betterdocs_Category_Grid.php:127
951
  msgid "Select Layout"
952
  msgstr ""
953
 
954
- #: ../includes/Elements/Betterdocs_Category_Box.php:137
955
  msgid "Box Column"
956
  msgstr ""
957
 
958
- #: ../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:92, ../includes/Elements/Twitter_Feed.php:280
959
  msgid "Show Icon"
960
  msgstr ""
961
 
962
- #: ../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:255, ../includes/Elements/Countdown.php:503, ../includes/Elements/Creative_Button.php:251, ../includes/Elements/Cta_Box.php:134, ../includes/Elements/Cta_Box.php:281, ../includes/Elements/Dual_Color_Header.php:95, ../includes/Elements/Dual_Color_Header.php:105, ../includes/Elements/Facebook_Feed.php:306, ../includes/Elements/Facebook_Feed.php:318, ../includes/Elements/Facebook_Feed.php:333, ../includes/Elements/Facebook_Feed.php:348, ../includes/Elements/Facebook_Feed.php:363, ../includes/Elements/Facebook_Feed.php:429, ../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:291, ../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:518, ../includes/Elements/Product_Grid.php:620, ../includes/Elements/Product_Grid.php:1455, ../includes/Elements/Product_Grid.php:2045, ../includes/Elements/Sticky_Video.php:362, ../includes/Elements/Twitter_Feed.php:379, ../includes/Elements/Woo_Product_Carousel.php:243, ../includes/Elements/Woo_Product_Carousel.php:616, ../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:786, ../includes/Traits/Controls.php:834, ../includes/Traits/Controls.php:902, ../includes/Traits/Controls.php:937, ../includes/Traits/Controls.php:964, ../includes/Traits/Controls.php:1015, ../includes/Traits/Controls.php:1043, ../includes/Traits/Controls.php:1059, ../includes/Traits/Controls.php:1074
963
  msgid "Show"
964
  msgstr ""
965
 
966
- #: ../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:256, ../includes/Elements/Countdown.php:504, ../includes/Elements/Creative_Button.php:252, ../includes/Elements/Cta_Box.php:135, ../includes/Elements/Cta_Box.php:282, ../includes/Elements/Dual_Color_Header.php:96, ../includes/Elements/Dual_Color_Header.php:106, ../includes/Elements/Facebook_Feed.php:307, ../includes/Elements/Facebook_Feed.php:319, ../includes/Elements/Facebook_Feed.php:334, ../includes/Elements/Facebook_Feed.php:349, ../includes/Elements/Facebook_Feed.php:364, ../includes/Elements/Facebook_Feed.php:430, ../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:292, ../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:519, ../includes/Elements/Product_Grid.php:621, ../includes/Elements/Product_Grid.php:1456, ../includes/Elements/Product_Grid.php:2046, ../includes/Elements/Sticky_Video.php:363, ../includes/Elements/Twitter_Feed.php:380, ../includes/Elements/Woo_Product_Carousel.php:244, ../includes/Elements/Woo_Product_Carousel.php:617, ../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:787, ../includes/Traits/Controls.php:835, ../includes/Traits/Controls.php:903, ../includes/Traits/Controls.php:938, ../includes/Traits/Controls.php:965, ../includes/Traits/Controls.php:1016, ../includes/Traits/Controls.php:1044, ../includes/Traits/Controls.php:1060, ../includes/Traits/Controls.php:1075
967
  msgid "Hide"
968
  msgstr ""
969
 
970
- #: ../includes/Elements/Betterdocs_Category_Box.php:169, ../includes/Elements/Betterdocs_Category_Grid.php:203, ../includes/Elements/Woo_Product_Carousel.php:241, ../includes/Traits/Controls.php:784
971
  msgid "Show Title"
972
  msgstr ""
973
 
974
- #: ../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
975
  msgid "Select Tag"
976
  msgstr ""
977
 
978
- #: ../includes/Elements/Betterdocs_Category_Box.php:204, ../includes/Elements/Betterdocs_Category_Grid.php:242
979
  msgid "Show Count"
980
  msgstr ""
981
 
982
- #: ../includes/Elements/Betterdocs_Category_Box.php:216, ../includes/Elements/Progress_Bar.php:243
983
  msgid "Prefix"
984
  msgstr ""
985
 
986
- #: ../includes/Elements/Betterdocs_Category_Box.php:229
987
  msgid "Suffix"
988
  msgstr ""
989
 
990
- #: ../includes/Elements/Betterdocs_Category_Box.php:232
991
  msgid "articles"
992
  msgstr ""
993
 
994
- #: ../includes/Elements/Betterdocs_Category_Box.php:251, ../includes/Elements/Flip_Box.php:649
995
  msgid "Box"
996
  msgstr ""
997
 
998
- #: ../includes/Elements/Betterdocs_Category_Box.php:259
999
  msgid "Box Spacing"
1000
  msgstr ""
1001
 
1002
- #: ../includes/Elements/Betterdocs_Category_Box.php:271
1003
  msgid "Box Padding"
1004
  msgstr ""
1005
 
1006
- #: ../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:1487
1007
  msgid "Transition"
1008
  msgstr ""
1009
 
1010
- #: ../includes/Elements/Betterdocs_Category_Box.php:416, ../includes/Elements/Betterdocs_Category_Box.php:636, ../includes/Elements/Betterdocs_Category_Box.php:808
1011
  msgid "Area"
1012
  msgstr ""
1013
 
1014
- #: ../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:556, ../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/Woo_Product_Carousel.php:2166, ../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
1015
  msgid "Size"
1016
  msgstr ""
1017
 
1018
- #: ../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:1486, ../includes/Elements/Feature_List.php:657, ../includes/Elements/Filterable_Gallery.php:2419, ../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/Woo_Product_Carousel.php:2189, ../includes/Elements/WpForms.php:765, ../includes/Elements/WpForms.php:871
1019
  msgid "Spacing"
1020
  msgstr ""
1021
 
1022
- #: ../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:718, ../includes/Elements/Event_Calendar.php:1377, ../includes/Elements/Feature_List.php:182, ../includes/Elements/Feature_List.php:184, ../includes/Elements/Feature_List.php:736, ../includes/Elements/Flip_Box.php:650, ../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:2328, ../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/Woo_Product_Carousel.php:1501, ../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
1023
  msgid "Title"
1024
  msgstr ""
1025
 
1026
- #: ../includes/Elements/Betterdocs_Category_Box.php:647
1027
  msgid "Area Size"
1028
  msgstr ""
1029
 
1030
- #: ../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
1031
  msgid "Count"
1032
  msgstr ""
1033
 
1034
- #: ../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/Crowdfundly_All_Campaign.php:38, ../includes/Elements/Crowdfundly_Organization.php:38, ../includes/Elements/Crowdfundly_Single_Campaign.php:38, ../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/Woo_Product_Carousel.php:202, ../includes/Elements/WpForms.php:69, ../includes/Traits/Woo_Product_Comparable.php:121
1035
  msgid "Warning!"
1036
  msgstr ""
1037
 
1038
- #: ../includes/Elements/Betterdocs_Category_Box.php:96, ../includes/Elements/Betterdocs_Category_Grid.php:98, ../includes/Elements/Betterdocs_Search_Form.php:92
1039
  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."
1040
  msgstr ""
1041
 
1042
- #: ../includes/Elements/Betterdocs_Category_Box.php:1188, ../includes/Elements/Betterdocs_Category_Box.php:1153, ../includes/Elements/Betterdocs_Category_Grid.php:1684, ../includes/Elements/Betterdocs_Category_Grid.php:1651
1043
  msgid "File Not Found"
1044
  msgstr ""
1045
 
1046
- #: ../includes/Elements/Betterdocs_Category_Box.php:1181, ../includes/Elements/Betterdocs_Category_Box.php:1146, ../includes/Elements/Betterdocs_Category_Grid.php:1678, ../includes/Elements/Betterdocs_Category_Grid.php:1645, ../includes/Elements/Post_Grid.php:1041, ../includes/Elements/Post_Timeline.php:460, ../includes/Elements/Product_Grid.php:2941
1047
  msgid "<p class=\"no-posts-found\">No posts found!</p>"
1048
  msgstr ""
1049
 
@@ -1079,7 +1079,7 @@ msgstr ""
1079
  msgid "Show Button"
1080
  msgstr ""
1081
 
1082
- #: ../includes/Elements/Betterdocs_Category_Grid.php:282, ../includes/Elements/Creative_Button.php:79, ../includes/Elements/Cta_Box.php:256, ../includes/Elements/Filterable_Gallery.php:689, ../includes/Elements/Flip_Box.php:681, ../includes/Elements/Info_Box.php:403, ../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:947
1083
  msgid "Button Text"
1084
  msgstr ""
1085
 
@@ -1095,107 +1095,107 @@ msgstr ""
1095
  msgid "Grid Spacing"
1096
  msgstr ""
1097
 
1098
- #: ../includes/Elements/Betterdocs_Category_Grid.php:828, ../includes/Elements/Betterdocs_Category_Grid.php:925
1099
  msgid "Ticker Background"
1100
  msgstr ""
1101
 
1102
- #: ../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:229, ../includes/Elements/Twitter_Feed.php:158, ../includes/Extensions/Table_of_Content.php:801
1103
  msgid "List"
1104
  msgstr ""
1105
 
1106
- #: ../includes/Elements/Betterdocs_Category_Grid.php:1016, ../includes/Elements/Filterable_Gallery.php:1228, ../includes/Elements/Filterable_Gallery.php:1608, ../includes/Elements/Filterable_Gallery.php:2374, ../includes/Elements/Pricing_Table.php:1774, ../includes/Elements/Product_Grid.php:2715, ../includes/Elements/Twitter_Feed.php:753, ../includes/Elements/Woo_Product_Carousel.php:1904
1107
  msgid "Hover Color"
1108
  msgstr ""
1109
 
1110
- #: ../includes/Elements/Betterdocs_Category_Grid.php:1027
1111
  msgid "List Item Spacing"
1112
  msgstr ""
1113
 
1114
- #: ../includes/Elements/Betterdocs_Category_Grid.php:1051
1115
  msgid "List Area Padding"
1116
  msgstr ""
1117
 
1118
- #: ../includes/Elements/Betterdocs_Category_Grid.php:1134
1119
  msgid "Nested List"
1120
  msgstr ""
1121
 
1122
- #: ../includes/Elements/Betterdocs_Category_Grid.php:1214
1123
  msgid "Collapse Icon"
1124
  msgstr ""
1125
 
1126
- #: ../includes/Elements/Betterdocs_Category_Grid.php:1226
1127
  msgid "Open Icon"
1128
  msgstr ""
1129
 
1130
- #: ../includes/Elements/Betterdocs_Category_Grid.php:1268, ../includes/Elements/Betterdocs_Category_Grid.php:1417
1131
  msgid "Area Spacing"
1132
  msgstr ""
1133
 
1134
- #: ../includes/Elements/Betterdocs_Category_Grid.php:1331, ../includes/Elements/Creative_Button.php:146, ../includes/Elements/Filterable_Gallery.php:752, ../includes/Elements/Flip_Box.php:713, ../includes/Elements/Info_Box.php:457, ../includes/Elements/Pricing_Table.php:544
1135
  msgid "Before"
1136
  msgstr ""
1137
 
1138
- #: ../includes/Elements/Betterdocs_Category_Grid.php:1332, ../includes/Elements/Creative_Button.php:147, ../includes/Elements/Filterable_Gallery.php:751, ../includes/Elements/Flip_Box.php:712, ../includes/Elements/Info_Box.php:458, ../includes/Elements/Pricing_Table.php:545
1139
  msgid "After"
1140
  msgstr ""
1141
 
1142
- #: ../includes/Elements/Betterdocs_Category_Grid.php:1533, ../includes/Elements/Creative_Button.php:439, ../includes/Elements/Pricing_Table.php:840, ../includes/Elements/WeForms.php:626, ../includes/Traits/Controls.php:1498
1143
  msgid "Button Alignment"
1144
  msgstr ""
1145
 
1146
- #: ../includes/Elements/Betterdocs_Search_Form.php:108
1147
  msgid "Search Box"
1148
  msgstr ""
1149
 
1150
- #: ../includes/Elements/Betterdocs_Search_Form.php:149
1151
  msgid "Search Field"
1152
  msgstr ""
1153
 
1154
- #: ../includes/Elements/Betterdocs_Search_Form.php:156
1155
  msgid "Field Background Color"
1156
  msgstr ""
1157
 
1158
- #: ../includes/Elements/Betterdocs_Search_Form.php:167
1159
  msgid "Field Color"
1160
  msgstr ""
1161
 
1162
- #: ../includes/Elements/Betterdocs_Search_Form.php:186
1163
  msgid "Field Padding"
1164
  msgstr ""
1165
 
1166
- #: ../includes/Elements/Betterdocs_Search_Form.php:220, ../includes/Elements/Facebook_Feed.php:518, ../includes/Elements/Post_Grid.php:392, ../includes/Elements/Pricing_Table.php:471, ../includes/Elements/Pricing_Table.php:1449, ../includes/Elements/Woo_Product_Carousel.php:2376
1167
  msgid "Shadow"
1168
  msgstr ""
1169
 
1170
- #: ../includes/Elements/Betterdocs_Search_Form.php:229
1171
  msgid "Search Icon"
1172
  msgstr ""
1173
 
1174
- #: ../includes/Elements/Betterdocs_Search_Form.php:266
1175
  msgid "Close Icon"
1176
  msgstr ""
1177
 
1178
- #: ../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:1360, ../includes/Elements/Content_Ticker.php:677, ../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:419, ../includes/Elements/Cta_Box.php:809, ../includes/Elements/Cta_Box.php:978, ../includes/Elements/Event_Calendar.php:666, ../includes/Elements/Facebook_Feed.php:728, ../includes/Elements/Filterable_Gallery.php:2721, ../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:737, ../includes/Elements/Product_Grid.php:877, ../includes/Elements/Product_Grid.php:1581, ../includes/Elements/Product_Grid.php:1825, ../includes/Elements/Product_Grid.php:2005, ../includes/Elements/Product_Grid.php:2214, ../includes/Elements/Product_Grid.php:2258, ../includes/Elements/Product_Grid.php:2452, ../includes/Elements/Product_Grid.php:2546, ../includes/Elements/Product_Grid.php:2658, ../includes/Elements/Sticky_Video.php:579, ../includes/Elements/Twitter_Feed.php:629, ../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/Woo_Product_Carousel.php:970, ../includes/Elements/Woo_Product_Carousel.php:1346, ../includes/Elements/Woo_Product_Carousel.php:1470, ../includes/Elements/Woo_Product_Carousel.php:1638, ../includes/Elements/Woo_Product_Carousel.php:1733, ../includes/Elements/Woo_Product_Carousel.php:1847, ../includes/Elements/Woo_Product_Carousel.php:2292, ../includes/Elements/Woo_Product_Carousel.php:2719, ../includes/Elements/WpForms.php:1021, ../includes/Elements/WpForms.php:1339, ../includes/Traits/Controls.php:1474, ../includes/Traits/Woo_Product_Comparable.php:1712
1179
  msgid "Border Color"
1180
  msgstr ""
1181
 
1182
- #: ../includes/Elements/Betterdocs_Search_Form.php:305
1183
  msgid "Search Result Box"
1184
  msgstr ""
1185
 
1186
- #: ../includes/Elements/Betterdocs_Search_Form.php:334
1187
  msgid "Max Width"
1188
  msgstr ""
1189
 
1190
- #: ../includes/Elements/Betterdocs_Search_Form.php:381
1191
  msgid "Search Result List"
1192
  msgstr ""
1193
 
1194
- #: ../includes/Elements/Betterdocs_Search_Form.php:396, ../includes/Elements/Betterdocs_Search_Form.php:502
1195
  msgid "Item"
1196
  msgstr ""
1197
 
1198
- #: ../includes/Elements/Betterdocs_Search_Form.php:412, ../includes/Elements/Betterdocs_Search_Form.php:461, ../includes/Elements/Betterdocs_Search_Form.php:522, ../includes/Elements/Betterdocs_Search_Form.php:551
1199
  msgid "Item Color"
1200
  msgstr ""
1201
 
@@ -1207,11 +1207,11 @@ msgstr ""
1207
  msgid "Custom Title & Description"
1208
  msgstr ""
1209
 
1210
- #: ../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:789, ../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
1211
  msgid "Description"
1212
  msgstr ""
1213
 
1214
- #: ../includes/Elements/Caldera_Forms.php:149, ../includes/Elements/Caldera_Forms.php:515, ../includes/Elements/Contact_Form_7.php:202, ../includes/Elements/Contact_Form_7.php:805, ../includes/Elements/FluentForm.php:163, ../includes/Elements/FluentForm.php:534, ../includes/Elements/Formstack.php:232, ../includes/Elements/Formstack.php:789, ../includes/Elements/GravityForms.php:219, ../includes/Elements/GravityForms.php:574, ../includes/Elements/Login_Register.php:535, ../includes/Elements/NinjaForms.php:170, ../includes/Elements/NinjaForms.php:548, ../includes/Elements/WpForms.php:177, ../includes/Elements/WpForms.php:515
1215
  msgid "Labels"
1216
  msgstr ""
1217
 
@@ -1219,7 +1219,7 @@ msgstr ""
1219
  msgid "Errors"
1220
  msgstr ""
1221
 
1222
- #: ../includes/Elements/Caldera_Forms.php:187, ../includes/Elements/Caldera_Forms.php:1420, ../includes/Elements/Contact_Form_7.php:227, ../includes/Elements/Contact_Form_7.php:1389, ../includes/Elements/FluentForm.php:200, ../includes/Elements/FluentForm.php:2104, ../includes/Elements/Formstack.php:269, ../includes/Elements/Formstack.php:1911, ../includes/Elements/GravityForms.php:268, ../includes/Elements/GravityForms.php:2188, ../includes/Elements/Login_Register.php:862, ../includes/Elements/NinjaForms.php:208, ../includes/Elements/NinjaForms.php:1622, ../includes/Elements/WpForms.php:212
1223
  msgid "Error Messages"
1224
  msgstr ""
1225
 
@@ -1243,7 +1243,7 @@ msgstr ""
1243
  msgid "Form Alignment"
1244
  msgstr ""
1245
 
1246
- #: ../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:226, ../includes/Elements/Cta_Box.php:641, ../includes/Elements/Cta_Box.php:858, ../includes/Elements/Dual_Color_Header.php:81, ../includes/Elements/Flip_Box.php:872, ../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:242, ../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:1544, ../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
1247
  msgid "Default"
1248
  msgstr ""
1249
 
@@ -1251,11 +1251,11 @@ msgstr ""
1251
  msgid "Form Max Width"
1252
  msgstr ""
1253
 
1254
- #: ../includes/Elements/Caldera_Forms.php:456, ../includes/Elements/FluentForm.php:475, ../includes/Elements/Formstack.php:375, ../includes/Elements/GravityForms.php:411, ../includes/Elements/Login_Register.php:1680, ../includes/Elements/NinjaForms.php:345, ../includes/Elements/TypeForm.php:286, ../includes/Elements/WeForms.php:229, ../includes/Elements/WpForms.php:313
1255
  msgid "Form Margin"
1256
  msgstr ""
1257
 
1258
- #: ../includes/Elements/Caldera_Forms.php:468, ../includes/Elements/Contact_Form_7.php:384, ../includes/Elements/FluentForm.php:487, ../includes/Elements/Formstack.php:387, ../includes/Elements/GravityForms.php:423, ../includes/Elements/Login_Register.php:1695, ../includes/Elements/NinjaForms.php:357, ../includes/Elements/TypeForm.php:298, ../includes/Elements/WeForms.php:241, ../includes/Elements/WpForms.php:325
1259
  msgid "Form Padding"
1260
  msgstr ""
1261
 
@@ -1283,7 +1283,7 @@ msgstr ""
1283
  msgid "Textarea Height"
1284
  msgstr ""
1285
 
1286
- #: ../includes/Elements/Caldera_Forms.php:793, ../includes/Elements/Contact_Form_7.php:756, ../includes/Elements/FluentForm.php:812, ../includes/Elements/Formstack.php:1041, ../includes/Elements/GravityForms.php:879, ../includes/Elements/Login_Register.php:2560, ../includes/Elements/NinjaForms.php:837, ../includes/Elements/WpForms.php:806
1287
  msgid "Focus"
1288
  msgstr ""
1289
 
@@ -1299,11 +1299,11 @@ msgstr ""
1299
  msgid "Custom Styles"
1300
  msgstr ""
1301
 
1302
- #: ../includes/Elements/Caldera_Forms.php:998, ../includes/Elements/Contact_Form_7.php:1025, ../includes/Elements/Feature_List.php:617, ../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
1303
  msgid "Border Width"
1304
  msgstr ""
1305
 
1306
- #: ../includes/Elements/Caldera_Forms.php:1035, ../includes/Elements/Contact_Form_7.php:1062, ../includes/Elements/FluentForm.php:1001, ../includes/Elements/Formstack.php:1191, ../includes/Elements/GravityForms.php:1196, ../includes/Elements/GravityForms.php:1305, ../includes/Elements/Login_Register.php:2931, ../includes/Elements/NinjaForms.php:1082, ../includes/Elements/WpForms.php:1036
1307
  msgid "Checkbox"
1308
  msgstr ""
1309
 
@@ -1383,7 +1383,7 @@ msgstr ""
1383
  msgid "<strong>Contact Form 7</strong> is not installed/activated on your site. Please install and activate <strong>Contact Form 7</strong> first."
1384
  msgstr ""
1385
 
1386
- #: ../includes/Elements/Contact_Form_7.php:313, ../includes/Elements/Contact_Form_7.php:1607, ../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:789, ../includes/Elements/Dual_Color_Header.php:869, ../includes/Elements/Event_Calendar.php:654, ../includes/Elements/Event_Calendar.php:786, ../includes/Elements/Event_Calendar.php:853, ../includes/Elements/Event_Calendar.php:907, ../includes/Elements/Event_Calendar.php:1019, ../includes/Elements/Event_Calendar.php:1111, ../includes/Elements/Event_Calendar.php:1209, ../includes/Elements/Event_Calendar.php:1575, ../includes/Elements/Event_Calendar.php:1684, ../includes/Elements/Facebook_Feed.php:488, ../includes/Elements/Facebook_Feed.php:501, ../includes/Elements/Facebook_Feed.php:576, ../includes/Elements/Facebook_Feed.php:589, ../includes/Elements/Facebook_Feed.php:674, ../includes/Elements/Facebook_Feed.php:687, ../includes/Elements/Facebook_Feed.php:758, ../includes/Elements/Facebook_Feed.php:796, ../includes/Elements/Facebook_Feed.php:836, ../includes/Elements/Fancy_Text.php:363, ../includes/Elements/Filterable_Gallery.php:2059, ../includes/Elements/Filterable_Gallery.php:2280, ../includes/Elements/Flip_Box.php:1373, ../includes/Elements/Flip_Box.php:1433, ../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:1483, ../includes/Elements/Product_Grid.php:1497, ../includes/Elements/Product_Grid.php:1551, ../includes/Elements/Product_Grid.php:1564, ../includes/Elements/Product_Grid.php:2798, ../includes/Elements/Product_Grid.php:2855, ../includes/Elements/Progress_Bar.php:345, ../includes/Elements/Team_Member.php:745, ../includes/Elements/Team_Member.php:822, ../includes/Elements/Twitter_Feed.php:389, ../includes/Elements/Twitter_Feed.php:641, ../includes/Elements/Woo_Checkout.php:1769, ../includes/Elements/Woo_Checkout.php:1813, ../includes/Elements/Woo_Checkout.php:1857, ../includes/Elements/Woo_Product_Carousel.php:1987, ../includes/Elements/Woo_Product_Carousel.php:2044, ../includes/Traits/Controls.php:1216, ../includes/Traits/Controls.php:1270, ../includes/Traits/Woo_Product_Comparable.php:1372, ../includes/Traits/Woo_Product_Comparable.php:1651, ../includes/Traits/Woo_Product_Comparable.php:1700
1387
  msgid "Background"
1388
  msgstr ""
1389
 
@@ -1423,7 +1423,7 @@ msgstr ""
1423
  msgid "Alert"
1424
  msgstr ""
1425
 
1426
- #: ../includes/Elements/Contact_Form_7.php:1510, ../includes/Elements/Login_Register.php:1055, ../includes/Elements/Woo_Checkout.php:2025
1427
  msgid "Fields"
1428
  msgstr ""
1429
 
@@ -1475,11 +1475,11 @@ msgstr ""
1475
  msgid "Sets transition effect"
1476
  msgstr ""
1477
 
1478
- #: ../includes/Elements/Content_Ticker.php:163, ../includes/Elements/Pricing_Table.php:426
1479
  msgid "Slide"
1480
  msgstr ""
1481
 
1482
- #: ../includes/Elements/Content_Ticker.php:164, ../includes/Elements/Fancy_Text.php:199, ../includes/Elements/Pricing_Table.php:423
1483
  msgid "Fade"
1484
  msgstr ""
1485
 
@@ -1579,7 +1579,7 @@ msgstr ""
1579
  msgid "Label Position"
1580
  msgstr ""
1581
 
1582
- #: ../includes/Elements/Countdown.php:84, ../includes/Elements/Login_Register.php:3124, ../includes/Elements/Login_Register.php:3424, ../includes/Traits/Controls.php:406
1583
  msgid "Block"
1584
  msgstr ""
1585
 
@@ -1663,11 +1663,11 @@ msgstr ""
1663
  msgid "Separator Style"
1664
  msgstr ""
1665
 
1666
- #: ../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
1667
  msgid "Solid"
1668
  msgstr ""
1669
 
1670
- #: ../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
1671
  msgid "Dotted"
1672
  msgstr ""
1673
 
@@ -1743,7 +1743,7 @@ msgstr ""
1743
  msgid "Space Below Container"
1744
  msgstr ""
1745
 
1746
- #: ../includes/Elements/Countdown.php:648, ../includes/Elements/Dual_Color_Header.php:441, ../includes/Elements/Facebook_Feed.php:864, ../includes/Elements/Flip_Box.php:1161, ../includes/Elements/Image_Accordion.php:479, ../includes/Elements/Info_Box.php:1339, ../includes/Elements/Product_Grid.php:1118, ../includes/Elements/Team_Member.php:536, ../includes/Elements/Twitter_Feed.php:666, ../includes/Elements/Woo_Product_Carousel.php:1055
1747
  msgid "Color &amp; Typography"
1748
  msgstr ""
1749
 
@@ -1771,7 +1771,7 @@ msgstr ""
1771
  msgid "Expire Message"
1772
  msgstr ""
1773
 
1774
- #: ../includes/Elements/Countdown.php:1052, ../includes/Elements/Cta_Box.php:510, ../includes/Elements/Dual_Color_Header.php:449, ../includes/Elements/Flip_Box.php:1177, ../includes/Elements/Flip_Box.php:1245, ../includes/Elements/Info_Box.php:1353, ../includes/Elements/Post_Grid.php:564, ../includes/Elements/Post_Timeline.php:300, ../includes/Elements/Pricing_Table.php:880, ../includes/Elements/Twitter_Feed.php:674
1775
  msgid "Title Style"
1776
  msgstr ""
1777
 
@@ -1779,111 +1779,111 @@ msgstr ""
1779
  msgid "Title Color"
1780
  msgstr ""
1781
 
1782
- #: ../includes/Elements/Creative_Button.php:72
1783
  msgid "Button Content"
1784
  msgstr ""
1785
 
1786
- #: ../includes/Elements/Creative_Button.php:86, ../includes/Elements/Info_Box.php:411
1787
  msgid "Enter button text"
1788
  msgstr ""
1789
 
1790
- #: ../includes/Elements/Creative_Button.php:87, ../includes/Elements/Info_Box.php:412
1791
  msgid "Enter button text here"
1792
  msgstr ""
1793
 
1794
- #: ../includes/Elements/Creative_Button.php:94
1795
  msgid "Button Secondary Text"
1796
  msgstr ""
1797
 
1798
- #: ../includes/Elements/Creative_Button.php:101
1799
  msgid "Enter button secondary text"
1800
  msgstr ""
1801
 
1802
- #: ../includes/Elements/Creative_Button.php:102
1803
  msgid "Enter button secondary text here"
1804
  msgstr ""
1805
 
1806
- #: ../includes/Elements/Creative_Button.php:109, ../includes/Elements/Info_Box.php:422
1807
  msgid "Link URL"
1808
  msgstr ""
1809
 
1810
- #: ../includes/Elements/Creative_Button.php:159, ../includes/Elements/Filterable_Gallery.php:2595, ../includes/Elements/Info_Box.php:470, ../includes/Elements/Pricing_Table.php:557
1811
  msgid "Icon Spacing"
1812
  msgstr ""
1813
 
1814
- #: ../includes/Elements/Creative_Button.php:214
1815
  msgid "Button Effects &amp; Styles"
1816
  msgstr ""
1817
 
1818
- #: ../includes/Elements/Creative_Button.php:222
1819
  msgid "Set Button Effect"
1820
  msgstr ""
1821
 
1822
- #: ../includes/Elements/Creative_Button.php:227
1823
  msgid "Winona"
1824
  msgstr ""
1825
 
1826
- #: ../includes/Elements/Creative_Button.php:228
1827
  msgid "Ujarak"
1828
  msgstr ""
1829
 
1830
- #: ../includes/Elements/Creative_Button.php:229
1831
  msgid "Wayra"
1832
  msgstr ""
1833
 
1834
- #: ../includes/Elements/Creative_Button.php:230
1835
  msgid "Tamaya"
1836
  msgstr ""
1837
 
1838
- #: ../includes/Elements/Creative_Button.php:231
1839
  msgid "Rayen"
1840
  msgstr ""
1841
 
1842
- #: ../includes/Elements/Creative_Button.php:232
1843
  msgid "Pipaluk (Pro)"
1844
  msgstr ""
1845
 
1846
- #: ../includes/Elements/Creative_Button.php:233
1847
  msgid "Moema (Pro)"
1848
  msgstr ""
1849
 
1850
- #: ../includes/Elements/Creative_Button.php:234
1851
  msgid "Wave (Pro)"
1852
  msgstr ""
1853
 
1854
- #: ../includes/Elements/Creative_Button.php:235
1855
  msgid "Aylen (Pro)"
1856
  msgstr ""
1857
 
1858
- #: ../includes/Elements/Creative_Button.php:236
1859
  msgid "Saqui (Pro)"
1860
  msgstr ""
1861
 
1862
- #: ../includes/Elements/Creative_Button.php:237
1863
  msgid "Wapasha (Pro)"
1864
  msgstr ""
1865
 
1866
- #: ../includes/Elements/Creative_Button.php:238
1867
  msgid "Nuka (Pro)"
1868
  msgstr ""
1869
 
1870
- #: ../includes/Elements/Creative_Button.php:239
1871
  msgid "Antiman (Pro)"
1872
  msgstr ""
1873
 
1874
- #: ../includes/Elements/Creative_Button.php:240
1875
  msgid "Quidel (Pro)"
1876
  msgstr ""
1877
 
1878
- #: ../includes/Elements/Creative_Button.php:241
1879
  msgid "Shikoba (Pro)"
1880
  msgstr ""
1881
 
1882
- #: ../includes/Elements/Creative_Button.php:249, ../includes/Elements/Cta_Box.php:682, ../includes/Elements/Product_Grid.php:1453, ../includes/Elements/Team_Member.php:702
1883
  msgid "Use Gradient Background"
1884
  msgstr ""
1885
 
1886
- #: ../includes/Elements/Creative_Button.php:526, ../includes/Elements/Info_Box.php:1206
1887
  msgid "Button Padding"
1888
  msgstr ""
1889
 
@@ -1923,7 +1923,7 @@ msgstr ""
1923
  msgid "Background Overlay"
1924
  msgstr ""
1925
 
1926
- #: ../includes/Elements/Cta_Box.php:167, ../includes/Elements/Pricing_Table.php:152
1927
  msgid "Sub Title"
1928
  msgstr ""
1929
 
@@ -2007,15 +2007,15 @@ msgstr ""
2007
  msgid "Secondary Button Style"
2008
  msgstr ""
2009
 
2010
- #: ../includes/Elements/Cta_Box.php:1011, ../includes/Elements/Dual_Color_Header.php:386, ../includes/Elements/Feature_List.php:106, ../includes/Elements/Flip_Box.php:915, ../includes/Elements/Flip_Box.php:934, ../includes/Elements/Flip_Box.php:1047, ../includes/Elements/Info_Box.php:925
2011
  msgid "Icon Style"
2012
  msgstr ""
2013
 
2014
- #: ../includes/Elements/Cta_Box.php:1022, ../includes/Elements/Pricing_Table.php:1334, ../includes/Elements/Twitter_Feed.php:888
2015
  msgid "Font Size"
2016
  msgstr ""
2017
 
2018
- #: ../includes/Elements/Data_Table.php:74, ../includes/Elements/Event_Calendar.php:1233, ../includes/Elements/Pricing_Table.php:872, ../includes/Traits/Woo_Product_Comparable.php:1077
2019
  msgid "Header"
2020
  msgstr ""
2021
 
@@ -2027,6 +2027,10 @@ msgstr ""
2027
  msgid "Column Name"
2028
  msgstr ""
2029
 
 
 
 
 
2030
  #: ../includes/Elements/Data_Table.php:109
2031
  msgid "Column Span"
2032
  msgstr ""
@@ -2071,7 +2075,7 @@ msgstr ""
2071
  msgid "Textarea"
2072
  msgstr ""
2073
 
2074
- #: ../includes/Elements/Data_Table.php:290, ../includes/Elements/Login_Register.php:814
2075
  msgid "Editor"
2076
  msgstr ""
2077
 
@@ -2087,7 +2091,7 @@ msgstr ""
2087
  msgid "Cell Text"
2088
  msgstr ""
2089
 
2090
- #: ../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:634, ../includes/Elements/Flip_Box.php:659, ../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
2091
  msgid "Link"
2092
  msgstr ""
2093
 
@@ -2131,7 +2135,7 @@ msgstr ""
2131
  msgid "Background Color (Even Row)"
2132
  msgstr ""
2133
 
2134
- #: ../includes/Elements/Data_Table.php:990, ../includes/Elements/Filterable_Gallery.php:1293, ../includes/Elements/Filterable_Gallery.php:1676, ../includes/Elements/Flip_Box.php:364, ../includes/Elements/Flip_Box.php:593, ../includes/Elements/Info_Box.php:299, ../includes/Elements/Pricing_Table.php:815, ../includes/Elements/Tooltip.php:367
2135
  msgid "Content Alignment"
2136
  msgstr ""
2137
 
@@ -2227,11 +2231,11 @@ msgstr ""
2227
  msgid "Dual Color"
2228
  msgstr ""
2229
 
2230
- #: ../includes/Elements/Dual_Color_Header.php:477, ../includes/Elements/Fancy_Text.php:348
2231
  msgid "Gradient"
2232
  msgstr ""
2233
 
2234
- #: ../includes/Elements/Dual_Color_Header.php:489, ../includes/Elements/Fancy_Text.php:434
2235
  msgid "Solid Color"
2236
  msgstr ""
2237
 
@@ -2567,23 +2571,23 @@ msgstr ""
2567
  msgid "Columns"
2568
  msgstr ""
2569
 
2570
- #: ../includes/Elements/Facebook_Feed.php:196, ../includes/Elements/Product_Grid.php:282, ../includes/Elements/Product_Grid.php:304, ../includes/Elements/Testimonial.php:194, ../includes/Elements/Woo_Product_Carousel.php:378, ../includes/Elements/Woo_Product_Carousel.php:442, ../includes/Traits/Controls.php:516, ../includes/Traits/Controls.php:995
2571
  msgid "1"
2572
  msgstr ""
2573
 
2574
- #: ../includes/Elements/Facebook_Feed.php:197, ../includes/Elements/Product_Grid.php:283, ../includes/Elements/Product_Grid.php:305, ../includes/Elements/Testimonial.php:195, ../includes/Elements/Woo_Product_Carousel.php:379, ../includes/Elements/Woo_Product_Carousel.php:443, ../includes/Traits/Controls.php:517, ../includes/Traits/Controls.php:996
2575
  msgid "2"
2576
  msgstr ""
2577
 
2578
- #: ../includes/Elements/Facebook_Feed.php:198, ../includes/Elements/Product_Grid.php:284, ../includes/Elements/Testimonial.php:196, ../includes/Elements/Woo_Product_Carousel.php:380, ../includes/Elements/Woo_Product_Carousel.php:444, ../includes/Traits/Controls.php:518, ../includes/Traits/Controls.php:997
2579
  msgid "3"
2580
  msgstr ""
2581
 
2582
- #: ../includes/Elements/Facebook_Feed.php:199, ../includes/Elements/Product_Grid.php:285, ../includes/Elements/Testimonial.php:197, ../includes/Elements/Woo_Product_Carousel.php:445, ../includes/Traits/Controls.php:519
2583
  msgid "4"
2584
  msgstr ""
2585
 
2586
- #: ../includes/Elements/Facebook_Feed.php:200, ../includes/Elements/Filterable_Gallery.php:518, ../includes/Elements/Product_Grid.php:286, ../includes/Elements/Testimonial.php:198, ../includes/Elements/Woo_Product_Carousel.php:446, ../includes/Traits/Controls.php:520
2587
  msgid "5"
2588
  msgstr ""
2589
 
@@ -2643,7 +2647,7 @@ msgstr ""
2643
  msgid "Show Load More"
2644
  msgstr ""
2645
 
2646
- #: ../includes/Elements/Facebook_Feed.php:403, ../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
2647
  msgid "Label"
2648
  msgstr ""
2649
 
@@ -2707,275 +2711,275 @@ msgstr ""
2707
  msgid "Likes & Comments"
2708
  msgstr ""
2709
 
2710
- #: ../includes/Elements/Facebook_Feed.php:1146, ../includes/Elements/Image_Accordion.php:391, ../includes/Elements/Post_Timeline.php:101, ../includes/Elements/Team_Member.php:343, ../includes/Elements/Woo_Product_Carousel.php:898
2711
  msgid "Overlay Color"
2712
  msgstr ""
2713
 
2714
- #: ../includes/Elements/Fancy_Text.php:70
2715
  msgid "Prefix Text"
2716
  msgstr ""
2717
 
2718
- #: ../includes/Elements/Fancy_Text.php:71
2719
  msgid "Place your prefix text"
2720
  msgstr ""
2721
 
2722
- #: ../includes/Elements/Fancy_Text.php:73
2723
  msgid "This is the "
2724
  msgstr ""
2725
 
2726
- #: ../includes/Elements/Fancy_Text.php:83
2727
  msgid "Fancy String"
2728
  msgstr ""
2729
 
2730
- #: ../includes/Elements/Fancy_Text.php:93
2731
  msgid "Fancy Text Strings"
2732
  msgstr ""
2733
 
2734
- #: ../includes/Elements/Fancy_Text.php:100
2735
  msgid "First string"
2736
  msgstr ""
2737
 
2738
- #: ../includes/Elements/Fancy_Text.php:103
2739
  msgid "Second string"
2740
  msgstr ""
2741
 
2742
- #: ../includes/Elements/Fancy_Text.php:106
2743
  msgid "Third string"
2744
  msgstr ""
2745
 
2746
- #: ../includes/Elements/Fancy_Text.php:115
2747
  msgid "Suffix Text"
2748
  msgstr ""
2749
 
2750
- #: ../includes/Elements/Fancy_Text.php:116
2751
  msgid "Place your suffix text"
2752
  msgstr ""
2753
 
2754
- #: ../includes/Elements/Fancy_Text.php:118
2755
  msgid " of the sentence."
2756
  msgstr ""
2757
 
2758
- #: ../includes/Elements/Fancy_Text.php:129
2759
  msgid "Fancy Text Settings"
2760
  msgstr ""
2761
 
2762
- #: ../includes/Elements/Fancy_Text.php:137, ../includes/Elements/Pricing_Table.php:636
2763
  msgid "Style 1"
2764
  msgstr ""
2765
 
2766
- #: ../includes/Elements/Fancy_Text.php:138
2767
  msgid "Style 2 (Pro)"
2768
  msgstr ""
2769
 
2770
- #: ../includes/Elements/Fancy_Text.php:147
2771
  msgid "Style Type"
2772
  msgstr ""
2773
 
2774
- #: ../includes/Elements/Fancy_Text.php:157, ../includes/Elements/Pricing_Table.php:109, ../includes/Elements/Team_Member.php:296
2775
  msgid "Only available in pro version!"
2776
  msgstr ""
2777
 
2778
- #: ../includes/Elements/Fancy_Text.php:194
2779
  msgid "Animation Type"
2780
  msgstr ""
2781
 
2782
- #: ../includes/Elements/Fancy_Text.php:198
2783
  msgid "Typing"
2784
  msgstr ""
2785
 
2786
- #: ../includes/Elements/Fancy_Text.php:200
2787
  msgid "Fade Up"
2788
  msgstr ""
2789
 
2790
- #: ../includes/Elements/Fancy_Text.php:201
2791
  msgid "Fade Down"
2792
  msgstr ""
2793
 
2794
- #: ../includes/Elements/Fancy_Text.php:202
2795
  msgid "Fade Left"
2796
  msgstr ""
2797
 
2798
- #: ../includes/Elements/Fancy_Text.php:203
2799
  msgid "Fade Right"
2800
  msgstr ""
2801
 
2802
- #: ../includes/Elements/Fancy_Text.php:204
2803
  msgid "Zoom"
2804
  msgstr ""
2805
 
2806
- #: ../includes/Elements/Fancy_Text.php:205
2807
  msgid "Bounce"
2808
  msgstr ""
2809
 
2810
- #: ../includes/Elements/Fancy_Text.php:206, ../includes/Elements/Pricing_Table.php:425
2811
  msgid "Swing"
2812
  msgstr ""
2813
 
2814
- #: ../includes/Elements/Fancy_Text.php:215
2815
  msgid "Typing Speed"
2816
  msgstr ""
2817
 
2818
- #: ../includes/Elements/Fancy_Text.php:227
2819
  msgid "Delay on Change"
2820
  msgstr ""
2821
 
2822
- #: ../includes/Elements/Fancy_Text.php:236
2823
  msgid "Loop the Typing"
2824
  msgstr ""
2825
 
2826
- #: ../includes/Elements/Fancy_Text.php:249
2827
  msgid "Display Type Cursor"
2828
  msgstr ""
2829
 
2830
- #: ../includes/Elements/Fancy_Text.php:294
2831
  msgid "Prefix Text Styles"
2832
  msgstr ""
2833
 
2834
- #: ../includes/Elements/Fancy_Text.php:302
2835
  msgid "Prefix Text Color"
2836
  msgstr ""
2837
 
2838
- #: ../includes/Elements/Fancy_Text.php:332
2839
  msgid "Fancy Text Styles"
2840
  msgstr ""
2841
 
2842
- #: ../includes/Elements/Fancy_Text.php:340
2843
  msgid "Choose Background Type"
2844
  msgstr ""
2845
 
2846
- #: ../includes/Elements/Fancy_Text.php:464
2847
  msgid "Typing Cursor Color"
2848
  msgstr ""
2849
 
2850
- #: ../includes/Elements/Fancy_Text.php:535
2851
  msgid "Suffix Text Styles"
2852
  msgstr ""
2853
 
2854
- #: ../includes/Elements/Fancy_Text.php:543
2855
  msgid "Suffix Text Color"
2856
  msgstr ""
2857
 
2858
- #: ../includes/Elements/Feature_List.php:108
2859
  msgid "ON"
2860
  msgstr ""
2861
 
2862
- #: ../includes/Elements/Feature_List.php:109
2863
  msgid "OFF"
2864
  msgstr ""
2865
 
2866
- #: ../includes/Elements/Feature_List.php:136
2867
  msgid "Icon Background"
2868
  msgstr ""
2869
 
2870
- #: ../includes/Elements/Feature_List.php:151
2871
  msgid "Icon Box Background"
2872
  msgstr ""
2873
 
2874
- #: ../includes/Elements/Feature_List.php:205
2875
  msgid "https://your-link.com"
2876
  msgstr ""
2877
 
2878
- #: ../includes/Elements/Feature_List.php:213
2879
  msgid "Feature Item"
2880
  msgstr ""
2881
 
2882
- #: ../includes/Elements/Feature_List.php:222
2883
  msgid "Feature Item 1"
2884
  msgstr ""
2885
 
2886
- #: ../includes/Elements/Feature_List.php:223, ../includes/Elements/Feature_List.php:231, ../includes/Elements/Feature_List.php:239
2887
  msgid "Lorem ipsum dolor sit amet, consectetur adipisi cing elit, sed do eiusmod tempor incididunt ut abore et dolore magna"
2888
  msgstr ""
2889
 
2890
- #: ../includes/Elements/Feature_List.php:230
2891
  msgid "Feature Item 2"
2892
  msgstr ""
2893
 
2894
- #: ../includes/Elements/Feature_List.php:238
2895
  msgid "Feature Item 3"
2896
  msgstr ""
2897
 
2898
- #: ../includes/Elements/Feature_List.php:250, ../includes/Elements/Progress_Bar.php:135
2899
  msgid "Title HTML Tag"
2900
  msgstr ""
2901
 
2902
- #: ../includes/Elements/Feature_List.php:271
2903
  msgid "Icon Shape"
2904
  msgstr ""
2905
 
2906
- #: ../includes/Elements/Feature_List.php:276, ../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:1025, ../includes/Elements/Info_Box.php:1121, ../includes/Elements/Progress_Bar.php:86
2907
  msgid "Circle"
2908
  msgstr ""
2909
 
2910
- #: ../includes/Elements/Feature_List.php:277, ../includes/Elements/Info_Box.php:582, ../includes/Elements/Info_Box.php:637, ../includes/Elements/Info_Box.php:808, ../includes/Elements/Info_Box.php:888, ../includes/Elements/Info_Box.php:1027, ../includes/Elements/Info_Box.php:1123
2911
  msgid "Square"
2912
  msgstr ""
2913
 
2914
- #: ../includes/Elements/Feature_List.php:278
2915
  msgid "Rhombus"
2916
  msgstr ""
2917
 
2918
- #: ../includes/Elements/Feature_List.php:286
2919
  msgid "Shape View"
2920
  msgstr ""
2921
 
2922
- #: ../includes/Elements/Feature_List.php:291
2923
  msgid "Framed"
2924
  msgstr ""
2925
 
2926
- #: ../includes/Elements/Feature_List.php:308, ../includes/Elements/Flip_Box.php:334, ../includes/Elements/Flip_Box.php:563, ../includes/Elements/Image_Accordion.php:132, ../includes/Elements/Info_Box.php:130, ../includes/Elements/Login_Register.php:710, ../includes/Elements/Pricing_Table.php:382, ../includes/Elements/Tooltip.php:285, ../includes/Elements/Twitter_Feed.php:352, ../includes/Extensions/Reading_Progress.php:115, ../includes/Traits/Controls.php:1668
2927
  msgid "Top"
2928
  msgstr ""
2929
 
2930
- #: ../includes/Elements/Feature_List.php:328
2931
  msgid "Arrow Indicator Position"
2932
  msgstr ""
2933
 
2934
- #: ../includes/Elements/Feature_List.php:358
2935
  msgid "Show Connector"
2936
  msgstr ""
2937
 
2938
- #: ../includes/Elements/Feature_List.php:386, ../includes/Elements/Login_Register.php:3141, ../includes/Elements/Login_Register.php:3440
2939
  msgid "Space Between"
2940
  msgstr ""
2941
 
2942
- #: ../includes/Elements/Feature_List.php:408
2943
  msgid "Connector Type"
2944
  msgstr ""
2945
 
2946
- #: ../includes/Elements/Feature_List.php:413, ../includes/Elements/Testimonial.php:253
2947
  msgid "Classic"
2948
  msgstr ""
2949
 
2950
- #: ../includes/Elements/Feature_List.php:414
2951
  msgid "Modern"
2952
  msgstr ""
2953
 
2954
- #: ../includes/Elements/Feature_List.php:427
2955
  msgid "Connector Styles"
2956
  msgstr ""
2957
 
2958
- #: ../includes/Elements/Feature_List.php:433, ../includes/Elements/GravityForms.php:1020, ../includes/Elements/Sticky_Video.php:556, ../includes/Extensions/Table_of_Content.php:1033
2959
  msgid "Dashed"
2960
  msgstr ""
2961
 
2962
- #: ../includes/Elements/Feature_List.php:449
2963
  msgid "Connector Color"
2964
  msgstr ""
2965
 
2966
- #: ../includes/Elements/Feature_List.php:469
2967
  msgid "Connector Width"
2968
  msgstr ""
2969
 
2970
- #: ../includes/Elements/Feature_List.php:526
2971
  msgid "Secondary Color"
2972
  msgstr ""
2973
 
2974
- #: ../includes/Elements/Feature_List.php:744
2975
  msgid "Title Bottom Space"
2976
  msgstr ""
2977
 
2978
- #: ../includes/Elements/Filterable_Gallery.php:93, ../includes/Elements/Flip_Box.php:77, ../includes/Elements/Pricing_Table.php:77, ../includes/Traits/Core.php:44, ../includes/templates/admin/elements.php:571, ../includes/templates/admin/elements.php:554, ../includes/templates/admin/elements.php:551, ../includes/templates/admin/extensions.php:85
2979
  msgid "Settings"
2980
  msgstr ""
2981
 
@@ -3075,7 +3079,7 @@ msgstr ""
3075
  msgid "Select Title Tag"
3076
  msgstr ""
3077
 
3078
- #: ../includes/Elements/Filterable_Gallery.php:391, ../includes/Elements/Pricing_Table.php:308
3079
  msgid "List Item"
3080
  msgstr ""
3081
 
@@ -3203,7 +3207,7 @@ msgstr ""
3203
  msgid "Extra Large"
3204
  msgstr ""
3205
 
3206
- #: ../includes/Elements/Filterable_Gallery.php:735, ../includes/Elements/Filterable_Gallery.php:2641, ../includes/Elements/Flip_Box.php:696, ../includes/Elements/Pricing_Table.php:528
3207
  msgid "Button Icon"
3208
  msgstr ""
3209
 
@@ -3219,7 +3223,7 @@ msgstr ""
3219
  msgid "Item Hover Style"
3220
  msgstr ""
3221
 
3222
- #: ../includes/Elements/Filterable_Gallery.php:1207, ../includes/Elements/Filterable_Gallery.php:1569, ../includes/Elements/Login_Register.php:2298, ../includes/Elements/Post_Timeline.php:348
3223
  msgid "Title Typography"
3224
  msgstr ""
3225
 
@@ -3279,7 +3283,7 @@ msgstr ""
3279
  msgid "Search Form Style"
3280
  msgstr ""
3281
 
3282
- #: ../includes/Elements/Filterable_Gallery.php:2094, ../includes/Elements/Login_Register.php:270
3283
  msgid "Controls"
3284
  msgstr ""
3285
 
@@ -3291,7 +3295,7 @@ msgstr ""
3291
  msgid "Separator Size"
3292
  msgstr ""
3293
 
3294
- #: ../includes/Elements/Filterable_Gallery.php:2271, ../includes/Elements/Login_Register.php:1519, ../includes/Elements/Woo_Checkout.php:1564
3295
  msgid "Form"
3296
  msgstr ""
3297
 
@@ -3299,7 +3303,7 @@ msgstr ""
3299
  msgid "Search Gallery Item..."
3300
  msgstr ""
3301
 
3302
- #: ../includes/Elements/Filterable_Gallery.php:2300, ../includes/Elements/Login_Register.php:2526, ../includes/Elements/Login_Register.php:2564
3303
  msgid "Placeholder Color"
3304
  msgstr ""
3305
 
@@ -3379,7 +3383,7 @@ msgstr ""
3379
  msgid "Middle"
3380
  msgstr ""
3381
 
3382
- #: ../includes/Elements/Flip_Box.php:342, ../includes/Elements/Flip_Box.php:571, ../includes/Elements/Image_Accordion.php:140, ../includes/Elements/Info_Box.php:138, ../includes/Elements/Pricing_Table.php:390, ../includes/Elements/Tooltip.php:286, ../includes/Elements/Twitter_Feed.php:360, ../includes/Extensions/Reading_Progress.php:116, ../includes/Traits/Controls.php:1672
3383
  msgid "Bottom"
3384
  msgstr ""
3385
 
@@ -3423,7 +3427,7 @@ msgstr ""
3423
  msgid "Back Background Color"
3424
  msgstr ""
3425
 
3426
- #: ../includes/Elements/Flip_Box.php:804, ../includes/Elements/Team_Member.php:399
3427
  msgid "Content Padding"
3428
  msgstr ""
3429
 
@@ -3475,7 +3479,7 @@ msgstr ""
3475
  msgid "Address Line Style"
3476
  msgstr ""
3477
 
3478
- #: ../includes/Elements/FluentForm.php:1704, ../includes/Elements/Login_Register.php:1088
3479
  msgid "Show Label"
3480
  msgstr ""
3481
 
@@ -3519,11 +3523,11 @@ msgstr ""
3519
  msgid "Section Heading Style"
3520
  msgstr ""
3521
 
3522
- #: ../includes/Elements/Formstack.php:1281, ../includes/Elements/Testimonial.php:600
3523
  msgid "Rating"
3524
  msgstr ""
3525
 
3526
- #: ../includes/Elements/Formstack.php:1994, ../includes/Elements/Login_Register.php:858
3527
  msgid "Validation Messages"
3528
  msgstr ""
3529
 
@@ -3551,7 +3555,7 @@ msgstr ""
3551
  msgid "Section Field"
3552
  msgstr ""
3553
 
3554
- #: ../includes/Elements/GravityForms.php:1012, ../includes/Elements/Pricing_Table.php:778, ../includes/Elements/Pricing_Table.php:1532, ../includes/Elements/Sticky_Video.php:548
3555
  msgid "Border Type"
3556
  msgstr ""
3557
 
@@ -3563,7 +3567,7 @@ msgstr ""
3563
  msgid "Border Height"
3564
  msgstr ""
3565
 
3566
- #: ../includes/Elements/GravityForms.php:1091, ../includes/Elements/Pricing_Table.php:194, ../includes/Elements/Pricing_Table.php:201, ../includes/Elements/Product_Grid.php:136, ../includes/Elements/Product_Grid.php:2357, ../includes/Elements/Woo_Checkout.php:216, ../includes/Elements/Woo_Product_Carousel.php:124, ../includes/Elements/Woo_Product_Carousel.php:1530, ../includes/Traits/Woo_Product_Comparable.php:42, ../includes/Traits/Woo_Product_Comparable.php:81
3567
  msgid "Price"
3568
  msgstr ""
3569
 
@@ -3631,11 +3635,11 @@ msgstr ""
3631
  msgid "On Click"
3632
  msgstr ""
3633
 
3634
- #: ../includes/Elements/Image_Accordion.php:105, ../includes/Elements/Login_Register.php:2789, ../includes/Elements/Login_Register.php:2885
3635
  msgid "Horizontal Alignment"
3636
  msgstr ""
3637
 
3638
- #: ../includes/Elements/Image_Accordion.php:128, ../includes/Elements/Login_Register.php:2768, ../includes/Elements/Login_Register.php:2864
3639
  msgid "Vertical Alignment"
3640
  msgstr ""
3641
 
@@ -3799,966 +3803,966 @@ msgstr ""
3799
  msgid "Transition will applied to ms (ex: 300ms)."
3800
  msgstr ""
3801
 
3802
- #: ../includes/Elements/Login_Register.php:117
3803
  msgid "Login | Register Form"
3804
  msgstr ""
3805
 
3806
- #: ../includes/Elements/Login_Register.php:180, ../includes/Elements/Login_Register.php:1061, ../includes/Elements/Login_Register.php:1062, ../includes/Elements/Login_Register.php:3950
3807
  msgid "Username"
3808
  msgstr ""
3809
 
3810
- #: ../includes/Elements/Login_Register.php:181, ../includes/Elements/Login_Register.php:1067, ../includes/Elements/Login_Register.php:1068, ../includes/Elements/Login_Register.php:3947
3811
  msgid "Email"
3812
  msgstr ""
3813
 
3814
- #: ../includes/Elements/Login_Register.php:182, ../includes/Elements/Login_Register.php:554, ../includes/Elements/Login_Register.php:555, ../includes/Elements/Login_Register.php:581, ../includes/Elements/Login_Register.php:582, ../includes/Elements/Login_Register.php:1074, ../includes/Elements/Login_Register.php:1075, ../includes/Elements/Login_Register.php:3758, ../includes/Elements/Login_Register.php:3948, ../includes/Template/Woocommerce/Checkout/Woo_Checkout_Helper.php:329
3815
  msgid "Password"
3816
  msgstr ""
3817
 
3818
- #: ../includes/Elements/Login_Register.php:183, ../includes/Elements/Login_Register.php:3949
3819
  msgid "Confirm Password"
3820
  msgstr ""
3821
 
3822
- #: ../includes/Elements/Login_Register.php:184, ../includes/Elements/Login_Register.php:3951
3823
  msgid "First Name"
3824
  msgstr ""
3825
 
3826
- #: ../includes/Elements/Login_Register.php:185, ../includes/Elements/Login_Register.php:3952
3827
  msgid "Last Name"
3828
  msgstr ""
3829
 
3830
- #: ../includes/Elements/Login_Register.php:186, ../includes/Elements/Login_Register.php:3953
3831
  msgid "Website"
3832
  msgstr ""
3833
 
3834
- #: ../includes/Elements/Login_Register.php:239
3835
  msgid "Choose the type of form you want to show by default. Note: you can show both forms in a single page even if you select only login or registration from below."
3836
  msgstr ""
3837
 
3838
- #: ../includes/Elements/Login_Register.php:243
3839
  msgid "Default Form Type"
3840
  msgstr ""
3841
 
3842
- #: ../includes/Elements/Login_Register.php:246, ../includes/Elements/Login_Register.php:3362, ../includes/Elements/Login_Register.php:3961, ../includes/Elements/Woo_Checkout.php:388, ../includes/Elements/Woo_Checkout.php:1153, ../includes/Template/Woocommerce/Checkout/Woo_Checkout_Helper.php:342, ../includes/Template/Woocommerce/Checkout/Woo_Checkout_Helper.php:342
3843
  msgid "Login"
3844
  msgstr ""
3845
 
3846
- #: ../includes/Elements/Login_Register.php:247
3847
  msgid "Registration"
3848
  msgstr ""
3849
 
3850
  #. translators: %1$s is settings page link open tag, %2$s is link closing tag
3851
- #: ../includes/Elements/Login_Register.php:255
3852
  msgid "Registration is disabled on your site. Please enable it to use registration form. You can enable it from Dashboard » Settings » General » %1$sMembership%2$s."
3853
  msgstr ""
3854
 
3855
- #: ../includes/Elements/Login_Register.php:263
3856
  msgid "Hide all Forms from Logged-in Users"
3857
  msgstr ""
3858
 
3859
- #: ../includes/Elements/Login_Register.php:268
3860
  msgid "Login Form General"
3861
  msgstr ""
3862
 
3863
- #: ../includes/Elements/Login_Register.php:277
3864
  msgid "Show Logout Link"
3865
  msgstr ""
3866
 
3867
- #: ../includes/Elements/Login_Register.php:282
3868
  msgid "Show Lost your password?"
3869
  msgstr ""
3870
 
3871
- #: ../includes/Elements/Login_Register.php:288
3872
  msgid "Lost Password Text"
3873
  msgstr ""
3874
 
3875
- #: ../includes/Elements/Login_Register.php:294, ../includes/Elements/Login_Register.php:3777
3876
  msgid "Forgot password?"
3877
  msgstr ""
3878
 
3879
- #: ../includes/Elements/Login_Register.php:300
3880
  msgid "Lost Password Link to"
3881
  msgstr ""
3882
 
3883
- #: ../includes/Elements/Login_Register.php:304, ../includes/Elements/Login_Register.php:460
3884
  msgid "Default WordPress Page"
3885
  msgstr ""
3886
 
3887
- #: ../includes/Elements/Login_Register.php:305, ../includes/Elements/Login_Register.php:375, ../includes/Elements/Login_Register.php:461
3888
  msgid "Custom URL"
3889
  msgstr ""
3890
 
3891
- #: ../includes/Elements/Login_Register.php:313
3892
  msgid "Custom Lost Password URL"
3893
  msgstr ""
3894
 
3895
- #: ../includes/Elements/Login_Register.php:326, ../includes/Elements/Login_Register.php:2911
3896
  msgid "Remember Me Field"
3897
  msgstr ""
3898
 
3899
- #: ../includes/Elements/Login_Register.php:333
3900
  msgid "Remember Me Field Text"
3901
  msgstr ""
3902
 
3903
- #: ../includes/Elements/Login_Register.php:339, ../includes/Elements/Login_Register.php:3771
3904
  msgid "Remember Me"
3905
  msgstr ""
3906
 
3907
- #: ../includes/Elements/Login_Register.php:398, ../includes/Elements/Login_Register.php:349
3908
  msgid "Show Register Link"
3909
  msgstr ""
3910
 
3911
- #: ../includes/Elements/Login_Register.php:356
3912
  msgid "Register Link Text"
3913
  msgstr ""
3914
 
3915
- #: ../includes/Elements/Login_Register.php:358, ../includes/Elements/Login_Register.php:444
3916
  msgid "You can put text in two lines to make the last line linkable. Pro Tip: You can keep the first line empty and put the text only in the second line to get a link only."
3917
  msgstr ""
3918
 
3919
- #: ../includes/Elements/Login_Register.php:364
3920
  msgid ""
3921
  " \n"
3922
  "Register Now"
3923
  msgstr ""
3924
 
3925
- #: ../includes/Elements/Login_Register.php:370
3926
  msgid "Registration Link Action"
3927
  msgstr ""
3928
 
3929
- #: ../includes/Elements/Login_Register.php:374
3930
  msgid "WordPress Registration Page"
3931
  msgstr ""
3932
 
3933
- #: ../includes/Elements/Login_Register.php:376
3934
  msgid "Show Register Form"
3935
  msgstr ""
3936
 
3937
- #: ../includes/Elements/Login_Register.php:384
3938
  msgid "Custom Register URL"
3939
  msgstr ""
3940
 
3941
- #: ../includes/Elements/Login_Register.php:405, ../includes/Elements/Login_Register.php:483
3942
  msgid "Enable Google reCAPTCHA"
3943
  msgstr ""
3944
 
3945
- #: ../includes/Elements/Login_Register.php:406
3946
  msgid "reCAPTCHA will prevent spam login from bots."
3947
  msgstr ""
3948
 
3949
- #: ../includes/Elements/Login_Register.php:415, ../includes/Elements/Login_Register.php:493
3950
  msgid "reCAPTCHA API keys are missing. Please add them from %sDashboard >> Essential Addons >> Elements >> Login | Register Form %sSettings"
3951
  msgstr ""
3952
 
3953
- #: ../includes/Elements/Login_Register.php:504, ../includes/Elements/Login_Register.php:437
3954
  msgid "Show Login Link"
3955
  msgstr ""
3956
 
3957
- #: ../includes/Elements/Login_Register.php:428
3958
  msgid "Register Form General"
3959
  msgstr ""
3960
 
3961
- #: ../includes/Elements/Login_Register.php:442
3962
  msgid "Login Link Text"
3963
  msgstr ""
3964
 
3965
- #: ../includes/Elements/Login_Register.php:450
3966
  msgid ""
3967
  " \n"
3968
  "Sign In"
3969
  msgstr ""
3970
 
3971
- #: ../includes/Elements/Login_Register.php:456
3972
  msgid "Login Link Action"
3973
  msgstr ""
3974
 
3975
- #: ../includes/Elements/Login_Register.php:462
3976
  msgid "Show Login Form"
3977
  msgstr ""
3978
 
3979
- #: ../includes/Elements/Login_Register.php:470
3980
  msgid "Custom Login URL"
3981
  msgstr ""
3982
 
3983
- #: ../includes/Elements/Login_Register.php:484
3984
  msgid "reCAPTCHA will prevent spam registration from bots."
3985
  msgstr ""
3986
 
3987
- #: ../includes/Elements/Login_Register.php:519
3988
  msgid "Login Form Fields"
3989
  msgstr ""
3990
 
3991
- #: ../includes/Elements/Login_Register.php:524
3992
  msgid "Labels & Placeholders"
3993
  msgstr ""
3994
 
3995
- #: ../includes/Elements/Login_Register.php:543
3996
  msgid "Username Label"
3997
  msgstr ""
3998
 
3999
- #: ../includes/Elements/Login_Register.php:544, ../includes/Elements/Login_Register.php:545, ../includes/Elements/Login_Register.php:571, ../includes/Elements/Login_Register.php:572, ../includes/Elements/Login_Register.php:3757
4000
  msgid "Username or Email Address"
4001
  msgstr ""
4002
 
4003
- #: ../includes/Elements/Login_Register.php:553
4004
  msgid "Password Label"
4005
  msgstr ""
4006
 
4007
- #: ../includes/Elements/Login_Register.php:563
4008
  msgid "Placeholders"
4009
  msgstr ""
4010
 
4011
- #: ../includes/Elements/Login_Register.php:570
4012
  msgid "Username Placeholder"
4013
  msgstr ""
4014
 
4015
- #: ../includes/Elements/Login_Register.php:580
4016
  msgid "Password Placeholder"
4017
  msgstr ""
4018
 
4019
- #: ../includes/Elements/Login_Register.php:590
4020
  msgid "Input Fields width"
4021
  msgstr ""
4022
 
4023
- #: ../includes/Elements/Login_Register.php:618
4024
  msgid "Password Visibility Icon"
4025
  msgstr ""
4026
 
4027
- #: ../includes/Elements/Login_Register.php:629
4028
  msgid "Login Button"
4029
  msgstr ""
4030
 
4031
- #: ../includes/Elements/Login_Register.php:638, ../includes/Elements/Login_Register.php:639
4032
  msgid "Log In"
4033
  msgstr ""
4034
 
4035
- #: ../includes/Elements/Login_Register.php:647
4036
  msgid "Form Header Content"
4037
  msgstr ""
4038
 
4039
- #: ../includes/Elements/Login_Register.php:651
4040
  msgid "Form Header Image"
4041
  msgstr ""
4042
 
4043
- #: ../includes/Elements/Login_Register.php:669
4044
  msgid "Header Image Position"
4045
  msgstr ""
4046
 
4047
- #: ../includes/Elements/Login_Register.php:686
4048
  msgid "Form Header Logo"
4049
  msgstr ""
4050
 
4051
- #: ../includes/Elements/Login_Register.php:702
4052
  msgid "Form Logo Position"
4053
  msgstr ""
4054
 
4055
- #: ../includes/Elements/Login_Register.php:719
4056
  msgid "Login Form Title"
4057
  msgstr ""
4058
 
4059
- #: ../includes/Elements/Login_Register.php:722
4060
  msgid "Welcome Back!"
4061
  msgstr ""
4062
 
4063
- #: ../includes/Elements/Login_Register.php:726
4064
  msgid "Login Form Sub Title"
4065
  msgstr ""
4066
 
4067
- #: ../includes/Elements/Login_Register.php:729
4068
  msgid "Please login to your account"
4069
  msgstr ""
4070
 
4071
- #: ../includes/Elements/Login_Register.php:733
4072
  msgid "Register Form Title"
4073
  msgstr ""
4074
 
4075
- #: ../includes/Elements/Login_Register.php:736
4076
  msgid "Create a New Account"
4077
  msgstr ""
4078
 
4079
- #: ../includes/Elements/Login_Register.php:740
4080
  msgid "Register Form Sub Title"
4081
  msgstr ""
4082
 
4083
- #: ../includes/Elements/Login_Register.php:743
4084
  msgid "Create an account to enjoy awesome features."
4085
  msgstr ""
4086
 
4087
- #: ../includes/Elements/Login_Register.php:752
4088
  msgid "Login Form Options"
4089
  msgstr ""
4090
 
4091
- #: ../includes/Elements/Login_Register.php:757
4092
  msgid "Redirect After Login"
4093
  msgstr ""
4094
 
4095
- #: ../includes/Elements/Login_Register.php:766, ../includes/Elements/Login_Register.php:1146
4096
  msgid "Please note that only your current domain is allowed here to keep your site secure."
4097
  msgstr ""
4098
 
4099
- #: ../includes/Elements/Login_Register.php:783
4100
  msgid "Terms & Conditions"
4101
  msgstr ""
4102
 
4103
- #: ../includes/Elements/Login_Register.php:788
4104
  msgid "Enforce Terms & Conditions"
4105
  msgstr ""
4106
 
4107
- #: ../includes/Elements/Login_Register.php:797
4108
  msgid "Acceptance Label"
4109
  msgstr ""
4110
 
4111
- #: ../includes/Elements/Login_Register.php:798
4112
  msgid "Eg. I accept the terms & conditions. Note: First line is checkbox label & Last line will be used as link text."
4113
  msgstr ""
4114
 
4115
- #: ../includes/Elements/Login_Register.php:802
4116
  msgid "I Accept the Terms and Conditions."
4117
  msgstr ""
4118
 
4119
  #. translators: \n means new line. So, Don't translate this
4120
- #: ../includes/Elements/Login_Register.php:804
4121
  msgid ""
4122
  "I Accept\n"
4123
  " the Terms and Conditions."
4124
  msgstr ""
4125
 
4126
- #: ../includes/Elements/Login_Register.php:811
4127
  msgid "Content Source"
4128
  msgstr ""
4129
 
4130
- #: ../includes/Elements/Login_Register.php:824
4131
  msgid "Terms and Conditions"
4132
  msgstr ""
4133
 
4134
- #: ../includes/Elements/Login_Register.php:827
4135
  msgid "Please go through the following terms and conditions carefully."
4136
  msgstr ""
4137
 
4138
- #: ../includes/Elements/Login_Register.php:836
4139
  msgid "Terms & Conditions URL"
4140
  msgstr ""
4141
 
4142
- #: ../includes/Elements/Login_Register.php:837
4143
  msgid "Enter the link where your terms & condition or privacy policy is found."
4144
  msgstr ""
4145
 
4146
- #: ../includes/Elements/Login_Register.php:867
4147
  msgid "Invalid Email"
4148
  msgstr ""
4149
 
4150
- #: ../includes/Elements/Login_Register.php:870
4151
  msgid "Eg. Your email is invalid."
4152
  msgstr ""
4153
 
4154
- #: ../includes/Elements/Login_Register.php:871
4155
  msgid "You have used an invalid email"
4156
  msgstr ""
4157
 
4158
- #: ../includes/Elements/Login_Register.php:874
4159
  msgid "Email is missing"
4160
  msgstr ""
4161
 
4162
- #: ../includes/Elements/Login_Register.php:877
4163
  msgid "Eg. Email is missing or Invalid"
4164
  msgstr ""
4165
 
4166
- #: ../includes/Elements/Login_Register.php:878, ../includes/Traits/Login_Registration.php:295
4167
  msgid "Email is missing or Invalid"
4168
  msgstr ""
4169
 
4170
- #: ../includes/Elements/Login_Register.php:881
4171
  msgid "Already Used Email"
4172
  msgstr ""
4173
 
4174
- #: ../includes/Elements/Login_Register.php:884
4175
  msgid "Eg. Your email is already in use.."
4176
  msgstr ""
4177
 
4178
- #: ../includes/Elements/Login_Register.php:885, ../includes/Traits/Login_Registration.php:292
4179
  msgid "The provided email is already registered with other account. Please login or reset password or use another email."
4180
  msgstr ""
4181
 
4182
- #: ../includes/Elements/Login_Register.php:888
4183
  msgid "Invalid Username"
4184
  msgstr ""
4185
 
4186
- #: ../includes/Elements/Login_Register.php:891
4187
  msgid "Eg. Your username is invalid."
4188
  msgstr ""
4189
 
4190
- #: ../includes/Elements/Login_Register.php:892
4191
  msgid "You have used an invalid username"
4192
  msgstr ""
4193
 
4194
- #: ../includes/Elements/Login_Register.php:895
4195
  msgid "Username already in use"
4196
  msgstr ""
4197
 
4198
- #: ../includes/Elements/Login_Register.php:898
4199
  msgid "Eg. Your username is already registered."
4200
  msgstr ""
4201
 
4202
- #: ../includes/Elements/Login_Register.php:899
4203
  msgid "Invalid username provided or the username already registered."
4204
  msgstr ""
4205
 
4206
- #: ../includes/Elements/Login_Register.php:902, ../includes/Traits/Login_Registration.php:157
4207
  msgid "Invalid Password"
4208
  msgstr ""
4209
 
4210
- #: ../includes/Elements/Login_Register.php:905
4211
  msgid "Eg. Your password is invalid"
4212
  msgstr ""
4213
 
4214
- #: ../includes/Elements/Login_Register.php:906
4215
  msgid "Your password is invalid."
4216
  msgstr ""
4217
 
4218
- #: ../includes/Elements/Login_Register.php:910
4219
  msgid "Invalid Password Confirmed"
4220
  msgstr ""
4221
 
4222
- #: ../includes/Elements/Login_Register.php:913
4223
  msgid "Eg. Password did not matched"
4224
  msgstr ""
4225
 
4226
- #: ../includes/Elements/Login_Register.php:914
4227
  msgid "Your confirmed password did not match"
4228
  msgstr ""
4229
 
4230
- #: ../includes/Elements/Login_Register.php:918
4231
  msgid "Already Logged In"
4232
  msgstr ""
4233
 
4234
- #: ../includes/Elements/Login_Register.php:921
4235
  msgid "Eg. You are already logged in"
4236
  msgstr ""
4237
 
4238
- #: ../includes/Elements/Login_Register.php:922, ../includes/Traits/Login_Registration.php:106
4239
  msgid "You are already logged in"
4240
  msgstr ""
4241
 
4242
- #: ../includes/Elements/Login_Register.php:926
4243
  msgid "reCAPTCHA Failed"
4244
  msgstr ""
4245
 
4246
- #: ../includes/Elements/Login_Register.php:929
4247
  msgid "Eg. reCAPTCHA Validation Failed"
4248
  msgstr ""
4249
 
4250
- #: ../includes/Elements/Login_Register.php:930
4251
  msgid "You did not pass reCAPTCHA challenge."
4252
  msgstr ""
4253
 
4254
- #: ../includes/Elements/Login_Register.php:934
4255
  msgid "Terms & Condition Error"
4256
  msgstr ""
4257
 
4258
- #: ../includes/Elements/Login_Register.php:937
4259
  msgid "Eg. You must accept the Terms & Conditions"
4260
  msgstr ""
4261
 
4262
- #: ../includes/Elements/Login_Register.php:938, ../includes/Traits/Login_Registration.php:283
4263
  msgid "You did not accept the Terms and Conditions. Please accept it and try again."
4264
  msgstr ""
4265
 
4266
- #: ../includes/Elements/Login_Register.php:942
4267
  msgid "Other Errors"
4268
  msgstr ""
4269
 
4270
- #: ../includes/Elements/Login_Register.php:945
4271
  msgid "Eg. Something went wrong"
4272
  msgstr ""
4273
 
4274
- #: ../includes/Elements/Login_Register.php:946, ../includes/Traits/Admin.php:65
4275
  msgid "Something went wrong!"
4276
  msgstr ""
4277
 
4278
- #: ../includes/Elements/Login_Register.php:950
4279
  msgid "Success Messages"
4280
  msgstr ""
4281
 
4282
- #: ../includes/Elements/Login_Register.php:956
4283
  msgid "Successful Login"
4284
  msgstr ""
4285
 
4286
- #: ../includes/Elements/Login_Register.php:959
4287
  msgid "Eg. You have logged in successfully"
4288
  msgstr ""
4289
 
4290
- #: ../includes/Elements/Login_Register.php:960
4291
  msgid "You have logged in successfully"
4292
  msgstr ""
4293
 
4294
- #: ../includes/Elements/Login_Register.php:963
4295
  msgid "Successful Registration"
4296
  msgstr ""
4297
 
4298
- #: ../includes/Elements/Login_Register.php:965
4299
  msgid "Registration completed successfully, Check your inbox for password if you did not provided while registering."
4300
  msgstr ""
4301
 
4302
- #: ../includes/Elements/Login_Register.php:966
4303
  msgid "eg. Registration completed successfully"
4304
  msgstr ""
4305
 
4306
- #: ../includes/Elements/Login_Register.php:975
4307
  msgid "Register Form Fields"
4308
  msgstr ""
4309
 
4310
- #: ../includes/Elements/Login_Register.php:980
4311
  msgid "Select the type of fields you want to show in the registration form"
4312
  msgstr ""
4313
 
4314
- #: ../includes/Elements/Login_Register.php:986, ../includes/Traits/Woo_Product_Comparable.php:231
4315
  msgid "Type"
4316
  msgstr ""
4317
 
4318
- #: ../includes/Elements/Login_Register.php:1011
4319
  msgid "Required"
4320
  msgstr ""
4321
 
4322
- #: ../includes/Elements/Login_Register.php:1024
4323
  msgid "Note: This field is required by default."
4324
  msgstr ""
4325
 
4326
- #: ../includes/Elements/Login_Register.php:1036
4327
  msgid "Field Width"
4328
  msgstr ""
4329
 
4330
- #: ../includes/Elements/Login_Register.php:1094
4331
  msgid "Show Required Mark"
4332
  msgstr ""
4333
 
4334
- #: ../includes/Elements/Login_Register.php:1104
4335
  msgid "Register Button"
4336
  msgstr ""
4337
 
4338
- #: ../includes/Elements/Login_Register.php:1113, ../includes/Elements/Login_Register.php:3362, ../includes/Elements/Login_Register.php:3730
4339
  msgid "Register"
4340
  msgstr ""
4341
 
4342
- #: ../includes/Elements/Login_Register.php:1123
4343
  msgid "Register Form Options"
4344
  msgstr ""
4345
 
4346
- #: ../includes/Elements/Login_Register.php:1128
4347
  msgid "Register Actions"
4348
  msgstr ""
4349
 
4350
- #: ../includes/Elements/Login_Register.php:1129
4351
  msgid "You can select what should happen after a user registers successfully"
4352
  msgstr ""
4353
 
4354
- #: ../includes/Elements/Login_Register.php:1135
4355
  msgid "Redirect"
4356
  msgstr ""
4357
 
4358
- #: ../includes/Elements/Login_Register.php:1136
4359
  msgid "Auto Login"
4360
  msgstr ""
4361
 
4362
- #: ../includes/Elements/Login_Register.php:1137
4363
  msgid "Notify User By Email"
4364
  msgstr ""
4365
 
4366
- #: ../includes/Elements/Login_Register.php:1143
4367
  msgid "Custom Redirect URL"
4368
  msgstr ""
4369
 
4370
- #: ../includes/Elements/Login_Register.php:1145
4371
  msgid "eg. https://your-link.com/wp-admin/"
4372
  msgstr ""
4373
 
4374
- #: ../includes/Elements/Login_Register.php:1158
4375
  msgid "New User Role"
4376
  msgstr ""
4377
 
4378
  #. translators: %s: Site Name
4379
- #: ../includes/Elements/Login_Register.php:1171
4380
  msgid "Thank you for registering on \"%s\"!"
4381
  msgstr ""
4382
 
4383
- #: ../includes/Elements/Login_Register.php:1173, ../includes/Elements/Login_Register.php:1282
4384
  msgid "Username: [username]"
4385
  msgstr ""
4386
 
4387
- #: ../includes/Elements/Login_Register.php:1174
4388
  msgid "Password: [password]"
4389
  msgstr ""
4390
 
4391
- #: ../includes/Elements/Login_Register.php:1175
4392
  msgid "To reset your password, visit the following address:"
4393
  msgstr ""
4394
 
4395
- #: ../includes/Elements/Login_Register.php:1177
4396
  msgid "Please click the following address to login to your account:"
4397
  msgstr ""
4398
 
4399
- #: ../includes/Elements/Login_Register.php:1181
4400
  msgid "Register User Email Options"
4401
  msgstr ""
4402
 
4403
- #: ../includes/Elements/Login_Register.php:1215, ../includes/Elements/Login_Register.php:1321
4404
  msgid "Email Template Type"
4405
  msgstr ""
4406
 
4407
- #: ../includes/Elements/Login_Register.php:1216
4408
  msgid "Default template uses WordPress Default email template. So, please select the Custom Option to send the user proper information if you used any username field."
4409
  msgstr ""
4410
 
4411
- #: ../includes/Elements/Login_Register.php:1221, ../includes/Elements/Login_Register.php:1327
4412
  msgid "WordPres Default"
4413
  msgstr ""
4414
 
4415
- #: ../includes/Elements/Login_Register.php:1227, ../includes/Elements/Login_Register.php:1333
4416
  msgid "Email Subject"
4417
  msgstr ""
4418
 
4419
- #: ../includes/Elements/Login_Register.php:1239, ../includes/Elements/Login_Register.php:1345
4420
  msgid "Email Message"
4421
  msgstr ""
4422
 
4423
- #: ../includes/Elements/Login_Register.php:1241, ../includes/Elements/Login_Register.php:1347
4424
  msgid "Enter Your Custom Email Message.."
4425
  msgstr ""
4426
 
4427
- #: ../includes/Elements/Login_Register.php:1252
4428
  msgid "<strong>Note:</strong> You can use dynamic content in the email body like [fieldname]. For example [username] will be replaced by user-typed username. Available tags are: [password], [username], [email], [firstname],[lastname], [website], [loginurl], [password_reset_link] and [sitetitle] "
4429
  msgstr ""
4430
 
4431
- #: ../includes/Elements/Login_Register.php:1261, ../includes/Elements/Login_Register.php:1367
4432
  msgid "Email Content Type"
4433
  msgstr ""
4434
 
4435
- #: ../includes/Elements/Login_Register.php:1266, ../includes/Elements/Login_Register.php:1372
4436
  msgid "HTML"
4437
  msgstr ""
4438
 
4439
- #: ../includes/Elements/Login_Register.php:1267, ../includes/Elements/Login_Register.php:1373
4440
  msgid "Plain"
4441
  msgstr ""
4442
 
4443
  #. translators: %s: Site Name
4444
- #: ../includes/Elements/Login_Register.php:1279
4445
  msgid "[\"%s\"] New User Registration"
4446
  msgstr ""
4447
 
4448
  #. translators: %s: Site Name
4449
- #: ../includes/Elements/Login_Register.php:1281
4450
  msgid "New user registration on your site %s"
4451
  msgstr ""
4452
 
4453
- #: ../includes/Elements/Login_Register.php:1283
4454
  msgid "Email: [email]"
4455
  msgstr ""
4456
 
4457
- #: ../includes/Elements/Login_Register.php:1287
4458
  msgid "Register Admin Email Options"
4459
  msgstr ""
4460
 
4461
- #: ../includes/Elements/Login_Register.php:1322
4462
  msgid "Default template uses WordPress Default Admin email template. You can customize it by choosing the custom option."
4463
  msgstr ""
4464
 
4465
- #: ../includes/Elements/Login_Register.php:1358
4466
  msgid "<strong>Note:</strong> You can use dynamic content in the email body like [fieldname]. For example [username] will be replaced by user-typed username. Available tags are: [username], [email], [firstname],[lastname], [website], [loginurl] and [sitetitle] "
4467
  msgstr ""
4468
 
4469
- #: ../includes/Elements/Login_Register.php:1393
4470
  msgid "Container Box"
4471
  msgstr ""
4472
 
4473
- #: ../includes/Elements/Login_Register.php:1509, ../includes/Traits/Woo_Product_Comparable.php:377
4474
  msgid "Container Box Shadow"
4475
  msgstr ""
4476
 
4477
- #: ../includes/Elements/Login_Register.php:1529
4478
  msgid "---Form Wrapper---"
4479
  msgstr ""
4480
 
4481
- #: ../includes/Elements/Login_Register.php:1534
4482
  msgid "Wrapper width"
4483
  msgstr ""
4484
 
4485
- #: ../includes/Elements/Login_Register.php:1578
4486
  msgid "Wrapper Margin"
4487
  msgstr ""
4488
 
4489
- #: ../includes/Elements/Login_Register.php:1593
4490
  msgid "Wrapper Padding"
4491
  msgstr ""
4492
 
4493
- #: ../includes/Elements/Login_Register.php:1615
4494
  msgid "Wrapper Border Radius"
4495
  msgstr ""
4496
 
4497
- #: ../includes/Elements/Login_Register.php:1640
4498
  msgid "---Form Style---"
4499
  msgstr ""
4500
 
4501
- #: ../includes/Elements/Login_Register.php:1644
4502
  msgid "Form width"
4503
  msgstr ""
4504
 
4505
- #: ../includes/Elements/Login_Register.php:1742
4506
  msgid "Form Wrapper Shadow"
4507
  msgstr ""
4508
 
4509
- #: ../includes/Elements/Login_Register.php:1751
4510
  msgid "Form Shadow"
4511
  msgstr ""
4512
 
4513
- #: ../includes/Elements/Login_Register.php:1764
4514
  msgid "%s Form Header"
4515
  msgstr ""
4516
 
4517
- #: ../includes/Elements/Login_Register.php:1776
4518
  msgid "Header Content"
4519
  msgstr ""
4520
 
4521
- #: ../includes/Elements/Login_Register.php:1786
4522
  msgid "Header width"
4523
  msgstr ""
4524
 
4525
- #: ../includes/Elements/Login_Register.php:1821
4526
  msgid "Header height"
4527
  msgstr ""
4528
 
4529
- #: ../includes/Elements/Login_Register.php:1852
4530
  msgid "Header Margin"
4531
  msgstr ""
4532
 
4533
- #: ../includes/Elements/Login_Register.php:1867
4534
  msgid "Header Padding"
4535
  msgstr ""
4536
 
4537
- #: ../includes/Elements/Login_Register.php:1920
4538
  msgid "Form Illustration"
4539
  msgstr ""
4540
 
4541
- #: ../includes/Elements/Login_Register.php:2062
4542
  msgid "Illustration Shadow"
4543
  msgstr ""
4544
 
4545
- #: ../includes/Elements/Login_Register.php:2070
4546
  msgid "Form Logo"
4547
  msgstr ""
4548
 
4549
- #: ../includes/Elements/Login_Register.php:2079
4550
  msgid "width"
4551
  msgstr ""
4552
 
4553
- #: ../includes/Elements/Login_Register.php:2114
4554
  msgid "height"
4555
  msgstr ""
4556
 
4557
- #: ../includes/Elements/Login_Register.php:2202
4558
  msgid "Logo Shadow"
4559
  msgstr ""
4560
 
4561
- #: ../includes/Elements/Login_Register.php:2304
4562
  msgid "Subtitle"
4563
  msgstr ""
4564
 
4565
- #: ../includes/Elements/Login_Register.php:2389
4566
  msgid "Subtitle Typography"
4567
  msgstr ""
4568
 
4569
- #: ../includes/Elements/Login_Register.php:2398
4570
  msgid "Form Fields"
4571
  msgstr ""
4572
 
4573
- #: ../includes/Elements/Login_Register.php:2412
4574
  msgid "Form Input Fields"
4575
  msgstr ""
4576
 
4577
- #: ../includes/Elements/Login_Register.php:2447
4578
  msgid "Terms & Condition Field"
4579
  msgstr ""
4580
 
4581
- #: ../includes/Elements/Login_Register.php:2509, ../includes/Elements/Login_Register.php:3177, ../includes/Elements/Login_Register.php:3498
4582
  msgid "Colors & Border"
4583
  msgstr ""
4584
 
4585
- #: ../includes/Elements/Login_Register.php:2600
4586
  msgid "Form Labels"
4587
  msgstr ""
4588
 
4589
- #: ../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
4590
  msgid "Colors"
4591
  msgstr ""
4592
 
4593
- #: ../includes/Elements/Login_Register.php:2713
4594
  msgid "Required Mark Style"
4595
  msgstr ""
4596
 
4597
- #: ../includes/Elements/Login_Register.php:2723
4598
  msgid "Mark Sign"
4599
  msgstr ""
4600
 
4601
- #: ../includes/Elements/Login_Register.php:2812
4602
  msgid "Password Visibility Style"
4603
  msgstr ""
4604
 
4605
- #: ../includes/Elements/Login_Register.php:2843
4606
  msgid "Open Eye Color"
4607
  msgstr ""
4608
 
4609
- #: ../includes/Elements/Login_Register.php:2853
4610
  msgid "Close Eye Color"
4611
  msgstr ""
4612
 
4613
- #: ../includes/Elements/Login_Register.php:2915
4614
  msgid "Remember Me Style"
4615
  msgstr ""
4616
 
4617
- #: ../includes/Elements/Login_Register.php:2927, ../includes/Extensions/Table_of_Content.php:1028
4618
  msgid "Style"
4619
  msgstr ""
4620
 
4621
- #: ../includes/Elements/Login_Register.php:2941
4622
  msgid "Container Margin"
4623
  msgstr ""
4624
 
4625
- #: ../includes/Elements/Login_Register.php:2956
4626
  msgid "Container Padding"
4627
  msgstr ""
4628
 
4629
- #: ../includes/Elements/Login_Register.php:2971
4630
  msgid "Label Margin"
4631
  msgstr ""
4632
 
4633
- #: ../includes/Elements/Login_Register.php:2986
4634
  msgid "Label Padding"
4635
  msgstr ""
4636
 
4637
- #: ../includes/Elements/Login_Register.php:3012
4638
  msgid "Text Background"
4639
  msgstr ""
4640
 
4641
- #: ../includes/Elements/Login_Register.php:3023
4642
  msgid "Checkbox | Toggle Color"
4643
  msgstr ""
4644
 
4645
- #: ../includes/Elements/Login_Register.php:3034
4646
  msgid "Remember Me Typography"
4647
  msgstr ""
4648
 
4649
- #: ../includes/Elements/Login_Register.php:3072
4650
  msgid "%s Button"
4651
  msgstr ""
4652
 
4653
- #: ../includes/Elements/Login_Register.php:3120, ../includes/Elements/Login_Register.php:3420
4654
  msgid "Display as"
4655
  msgstr ""
4656
 
4657
- #: ../includes/Elements/Login_Register.php:3135, ../includes/Elements/Login_Register.php:3434
4658
  msgid "Justify Content"
4659
  msgstr ""
4660
 
4661
- #: ../includes/Elements/Login_Register.php:3138, ../includes/Elements/Login_Register.php:3437, ../includes/Elements/Login_Register.php:3457
4662
  msgid "Start"
4663
  msgstr ""
4664
 
4665
- #: ../includes/Elements/Login_Register.php:3139, ../includes/Elements/Login_Register.php:3438, ../includes/Elements/Login_Register.php:3458
4666
  msgid "End"
4667
  msgstr ""
4668
 
4669
- #: ../includes/Elements/Login_Register.php:3142, ../includes/Elements/Login_Register.php:3441
4670
  msgid "Space Around"
4671
  msgstr ""
4672
 
4673
- #: ../includes/Elements/Login_Register.php:3143, ../includes/Elements/Login_Register.php:3442, ../includes/Elements/Login_Register.php:3462
4674
  msgid "Space Evenly"
4675
  msgstr ""
4676
 
4677
- #: ../includes/Elements/Login_Register.php:3259
4678
  msgid "Button width"
4679
  msgstr ""
4680
 
4681
- #: ../includes/Elements/Login_Register.php:3282
4682
  msgid "Button Height"
4683
  msgstr ""
4684
 
4685
- #: ../includes/Elements/Login_Register.php:3313
4686
  msgid "%s Form reCAPTCHA"
4687
  msgstr ""
4688
 
4689
- #: ../includes/Elements/Login_Register.php:3334
4690
  msgid "Theme"
4691
  msgstr ""
4692
 
4693
- #: ../includes/Elements/Login_Register.php:3337, ../includes/Elements/Pricing_Table.php:469
4694
  msgid "Light"
4695
  msgstr ""
4696
 
4697
- #: ../includes/Elements/Login_Register.php:3338
4698
  msgid "Dark"
4699
  msgstr ""
4700
 
4701
- #: ../includes/Elements/Login_Register.php:3348
4702
  msgid "Compact"
4703
  msgstr ""
4704
 
4705
- #: ../includes/Elements/Login_Register.php:3364
4706
  msgid "%s Link"
4707
  msgstr ""
4708
 
4709
- #: ../includes/Elements/Login_Register.php:3372
4710
  msgid "Here you can style the %s link displayed on the %s Form"
4711
  msgstr ""
4712
 
4713
- #: ../includes/Elements/Login_Register.php:3454
4714
  msgid "Align Items"
4715
  msgstr ""
4716
 
4717
- #: ../includes/Elements/Login_Register.php:3460, ../includes/Elements/Woo_Product_Carousel.php:497
4718
  msgid "Stretch"
4719
  msgstr ""
4720
 
4721
- #: ../includes/Elements/Login_Register.php:3461
4722
  msgid "Baseline"
4723
  msgstr ""
4724
 
4725
- #: ../includes/Elements/Login_Register.php:3579
4726
  msgid "Link Container width"
4727
  msgstr ""
4728
 
4729
- #: ../includes/Elements/Login_Register.php:3602
4730
  msgid "Link width"
4731
  msgstr ""
4732
 
4733
- #: ../includes/Elements/Login_Register.php:3625
4734
  msgid "Link Height"
4735
  msgstr ""
4736
 
4737
  #. translators: %s user display name
4738
- #: ../includes/Elements/Login_Register.php:3806
4739
  msgid "You are already logged in as %s. "
4740
  msgstr ""
4741
 
4742
- #: ../includes/Elements/Login_Register.php:3807
4743
  msgid "Logout"
4744
  msgstr ""
4745
 
4746
- #: ../includes/Elements/Login_Register.php:4193
4747
  msgid "Form Logo Image"
4748
  msgstr ""
4749
 
4750
  #. translators: %s: Error fields
4751
- #: ../includes/Elements/Login_Register.php:4312
4752
  msgid "Error! you seem to have added %s field in the form more than once."
4753
  msgstr ""
4754
 
4755
  #. translators: %s: Error String
4756
- #: ../includes/Elements/Login_Register.php:4328
4757
  msgid "Error! It is required to use %s field."
4758
  msgstr ""
4759
 
4760
  #. translators: %s: Error String
4761
- #: ../includes/Elements/Login_Register.php:4352
4762
  msgid "Error! It is required to use %s field with %s Field."
4763
  msgstr ""
4764
 
@@ -4794,7 +4798,7 @@ msgstr ""
4794
  msgid "Post Grid Style"
4795
  msgstr ""
4796
 
4797
- #: ../includes/Elements/Post_Grid.php:230, ../includes/Elements/Testimonial.php:248
4798
  msgid "Select Style"
4799
  msgstr ""
4800
 
@@ -4970,279 +4974,279 @@ msgstr ""
4970
  msgid "<p class=\"no-posts-found\">No layout found!</p>"
4971
  msgstr ""
4972
 
4973
- #: ../includes/Elements/Pricing_Table.php:86
4974
  msgid "Pricing Style 2"
4975
  msgstr ""
4976
 
4977
- #: ../includes/Elements/Pricing_Table.php:87
4978
  msgid "Pricing Style 3 (Pro)"
4979
  msgstr ""
4980
 
4981
- #: ../includes/Elements/Pricing_Table.php:88
4982
  msgid "Pricing Style 4 (Pro)"
4983
  msgstr ""
4984
 
4985
- #: ../includes/Elements/Pricing_Table.php:89
4986
  msgid "Pricing Style 5 (Pro)"
4987
  msgstr ""
4988
 
4989
- #: ../includes/Elements/Pricing_Table.php:98
4990
  msgid "Pricing Style"
4991
  msgstr ""
4992
 
4993
- #: ../includes/Elements/Pricing_Table.php:125, ../includes/Elements/Pricing_Table.php:319, ../includes/Extensions/Table_of_Content.php:428
4994
  msgid "List Icon"
4995
  msgstr ""
4996
 
4997
- #: ../includes/Elements/Pricing_Table.php:141
4998
  msgid "Startup"
4999
  msgstr ""
5000
 
5001
- #: ../includes/Elements/Pricing_Table.php:158
5002
  msgid "A tagline here."
5003
  msgstr ""
5004
 
5005
- #: ../includes/Elements/Pricing_Table.php:210
5006
  msgid "99"
5007
  msgstr ""
5008
 
5009
- #: ../includes/Elements/Pricing_Table.php:216
5010
  msgid "On Sale?"
5011
  msgstr ""
5012
 
5013
- #: ../includes/Elements/Pricing_Table.php:227, ../includes/Elements/Pricing_Table.php:1104
5014
  msgid "Sale Price"
5015
  msgstr ""
5016
 
5017
- #: ../includes/Elements/Pricing_Table.php:236
5018
  msgid "89"
5019
  msgstr ""
5020
 
5021
- #: ../includes/Elements/Pricing_Table.php:245
5022
  msgid "Price Currency"
5023
  msgstr ""
5024
 
5025
- #: ../includes/Elements/Pricing_Table.php:249
5026
  msgid "$"
5027
  msgstr ""
5028
 
5029
- #: ../includes/Elements/Pricing_Table.php:256
5030
  msgid "Currency Placement"
5031
  msgstr ""
5032
 
5033
- #: ../includes/Elements/Pricing_Table.php:272
5034
  msgid "Price Period (per)"
5035
  msgstr ""
5036
 
5037
- #: ../includes/Elements/Pricing_Table.php:276
5038
  msgid "month"
5039
  msgstr ""
5040
 
5041
- #: ../includes/Elements/Pricing_Table.php:283
5042
  msgid "Period Separator"
5043
  msgstr ""
5044
 
5045
- #: ../includes/Elements/Pricing_Table.php:287
5046
  msgid "/"
5047
  msgstr ""
5048
 
5049
- #: ../includes/Elements/Pricing_Table.php:299
5050
  msgid "Feature"
5051
  msgstr ""
5052
 
5053
- #: ../includes/Elements/Pricing_Table.php:312
5054
  msgid "Pricing table list item"
5055
  msgstr ""
5056
 
5057
- #: ../includes/Elements/Pricing_Table.php:332
5058
  msgid "Item Active?"
5059
  msgstr ""
5060
 
5061
- #: ../includes/Elements/Pricing_Table.php:351
5062
  msgid "Enable Tooltip?"
5063
  msgstr ""
5064
 
5065
- #: ../includes/Elements/Pricing_Table.php:361
5066
  msgid "Tooltip Content"
5067
  msgstr ""
5068
 
5069
- #: ../includes/Elements/Pricing_Table.php:364
5070
  msgid "I'm a awesome tooltip!!"
5071
  msgstr ""
5072
 
5073
- #: ../includes/Elements/Pricing_Table.php:374
5074
  msgid "Tooltip Side"
5075
  msgstr ""
5076
 
5077
- #: ../includes/Elements/Pricing_Table.php:404
5078
  msgid "Tooltip Trigger"
5079
  msgstr ""
5080
 
5081
- #: ../includes/Elements/Pricing_Table.php:408
5082
  msgid "Click"
5083
  msgstr ""
5084
 
5085
- #: ../includes/Elements/Pricing_Table.php:420
5086
  msgid "Tooltip Animation"
5087
  msgstr ""
5088
 
5089
- #: ../includes/Elements/Pricing_Table.php:424
5090
  msgid "Grow"
5091
  msgstr ""
5092
 
5093
- #: ../includes/Elements/Pricing_Table.php:427
5094
  msgid "Fall"
5095
  msgstr ""
5096
 
5097
- #: ../includes/Elements/Pricing_Table.php:439, ../includes/Elements/Progress_Bar.php:219
5098
  msgid "Animation Duration"
5099
  msgstr ""
5100
 
5101
- #: ../includes/Elements/Pricing_Table.php:451, ../includes/Elements/Pricing_Table.php:1562
5102
  msgid "Tooltip Arrow"
5103
  msgstr ""
5104
 
5105
- #: ../includes/Elements/Pricing_Table.php:464
5106
  msgid "Tooltip Theme"
5107
  msgstr ""
5108
 
5109
- #: ../includes/Elements/Pricing_Table.php:468
5110
  msgid "Noir"
5111
  msgstr ""
5112
 
5113
- #: ../includes/Elements/Pricing_Table.php:470
5114
  msgid "Punk"
5115
  msgstr ""
5116
 
5117
- #: ../includes/Elements/Pricing_Table.php:472
5118
  msgid "Borderless"
5119
  msgstr ""
5120
 
5121
- #: ../includes/Elements/Pricing_Table.php:513
5122
  msgid "Display Button"
5123
  msgstr ""
5124
 
5125
- #: ../includes/Elements/Pricing_Table.php:582
5126
  msgid "Choose Plan"
5127
  msgstr ""
5128
 
5129
- #: ../includes/Elements/Pricing_Table.php:592, ../includes/Elements/Tooltip.php:240
5130
  msgid "Button Link"
5131
  msgstr ""
5132
 
5133
- #: ../includes/Elements/Pricing_Table.php:615, ../includes/Elements/Pricing_Table.php:1277
5134
  msgid "Ribbon"
5135
  msgstr ""
5136
 
5137
- #: ../includes/Elements/Pricing_Table.php:622
5138
  msgid "Featured?"
5139
  msgstr ""
5140
 
5141
- #: ../includes/Elements/Pricing_Table.php:632
5142
  msgid "Ribbon Style"
5143
  msgstr ""
5144
 
5145
- #: ../includes/Elements/Pricing_Table.php:637
5146
  msgid "Style 2"
5147
  msgstr ""
5148
 
5149
- #: ../includes/Elements/Pricing_Table.php:638
5150
  msgid "Style 3"
5151
  msgstr ""
5152
 
5153
- #: ../includes/Elements/Pricing_Table.php:639
5154
  msgid "Style 4"
5155
  msgstr ""
5156
 
5157
- #: ../includes/Elements/Pricing_Table.php:653
5158
  msgid "Featured Tag Text"
5159
  msgstr ""
5160
 
5161
- #: ../includes/Elements/Pricing_Table.php:657
5162
  msgid "Featured"
5163
  msgstr ""
5164
 
5165
- #: ../includes/Elements/Pricing_Table.php:676
5166
  msgid "Ribbon Alignment"
5167
  msgstr ""
5168
 
5169
- #: ../includes/Elements/Pricing_Table.php:733
5170
  msgid "Pricing Table Style"
5171
  msgstr ""
5172
 
5173
- #: ../includes/Elements/Pricing_Table.php:917, ../includes/Elements/Pricing_Table.php:1285
5174
  msgid "Line Color"
5175
  msgstr ""
5176
 
5177
- #: ../includes/Elements/Pricing_Table.php:940
5178
  msgid "Subtitle Style"
5179
  msgstr ""
5180
 
5181
- #: ../includes/Elements/Pricing_Table.php:1026
5182
  msgid "Pricing"
5183
  msgstr ""
5184
 
5185
- #: ../includes/Elements/Pricing_Table.php:1034
5186
  msgid "Original Price"
5187
  msgstr ""
5188
 
5189
- #: ../includes/Elements/Pricing_Table.php:1063
5190
  msgid "Original Price Currency"
5191
  msgstr ""
5192
 
5193
- #: ../includes/Elements/Pricing_Table.php:1133
5194
  msgid "Sale Price Currency"
5195
  msgstr ""
5196
 
5197
- #: ../includes/Elements/Pricing_Table.php:1173
5198
  msgid "Pricing Period"
5199
  msgstr ""
5200
 
5201
- #: ../includes/Elements/Pricing_Table.php:1229
5202
  msgid "Disable item color"
5203
  msgstr ""
5204
 
5205
- #: ../includes/Elements/Pricing_Table.php:1306, ../includes/Extensions/Table_of_Content.php:694
5206
  msgid "Line Height"
5207
  msgstr ""
5208
 
5209
- #: ../includes/Elements/Pricing_Table.php:1488
5210
  msgid "Arrow Background"
5211
  msgstr ""
5212
 
5213
- #: ../includes/Elements/Pricing_Table.php:1521
5214
  msgid "Refresh your browser after saving the padding value for see changes."
5215
  msgstr ""
5216
 
5217
- #: ../includes/Elements/Pricing_Table.php:1571, ../includes/Elements/Tooltip.php:651
5218
  msgid "Arrow Size"
5219
  msgstr ""
5220
 
5221
- #: ../includes/Elements/Pricing_Table.php:1616
5222
  msgid "Icon Settings"
5223
  msgstr ""
5224
 
5225
- #: ../includes/Elements/Pricing_Table.php:1627
5226
  msgid "Show Background"
5227
  msgstr ""
5228
 
5229
- #: ../includes/Elements/Pricing_Table.php:1660
5230
  msgid "Background Hover Color"
5231
  msgstr ""
5232
 
5233
- #: ../includes/Elements/Pricing_Table.php:1696
5234
  msgid "Icon Area Width"
5235
  msgstr ""
5236
 
5237
- #: ../includes/Elements/Pricing_Table.php:1721
5238
  msgid "Icon Area Height"
5239
  msgstr ""
5240
 
5241
- #: ../includes/Elements/Pricing_Table.php:1752, ../includes/Elements/Team_Member.php:795
5242
  msgid "Icon Hover Color"
5243
  msgstr ""
5244
 
5245
- #: ../includes/Elements/Pricing_Table.php:1876
5246
  msgid "Button Gradient Background"
5247
  msgstr ""
5248
 
@@ -5298,11 +5302,11 @@ msgstr ""
5298
  msgid "Layouts"
5299
  msgstr ""
5300
 
5301
- #: ../includes/Elements/Product_Grid.php:238, ../includes/Elements/Product_Grid.php:260, ../includes/Elements/Product_Grid.php:1634, ../includes/Elements/Product_Grid.php:1715, ../includes/Elements/Team_Member.php:279, ../includes/Elements/Woo_Product_Carousel.php:788
5302
  msgid "Style Preset"
5303
  msgstr ""
5304
 
5305
- #: ../includes/Elements/Product_Grid.php:243, ../includes/Elements/Team_Member.php:268
5306
  msgid "Simple Style"
5307
  msgstr ""
5308
 
@@ -5310,7 +5314,7 @@ msgstr ""
5310
  msgid "Reveal Style"
5311
  msgstr ""
5312
 
5313
- #: ../includes/Elements/Product_Grid.php:245, ../includes/Elements/Team_Member.php:269
5314
  msgid "Overlay Style"
5315
  msgstr ""
5316
 
@@ -5454,7 +5458,7 @@ msgstr ""
5454
  msgid "Label Text"
5455
  msgstr ""
5456
 
5457
- #: ../includes/Elements/Product_Grid.php:701, ../includes/Elements/Team_Member.php:358
5458
  msgid "Content Background Color"
5459
  msgstr ""
5460
 
@@ -5854,263 +5858,263 @@ msgstr ""
5854
  msgid "Bar Margin"
5855
  msgstr ""
5856
 
5857
- #: ../includes/Elements/Team_Member.php:65
5858
  msgid "Team Member Image"
5859
  msgstr ""
5860
 
5861
- #: ../includes/Elements/Team_Member.php:73
5862
  msgid "Team Member Avatar"
5863
  msgstr ""
5864
 
5865
- #: ../includes/Elements/Team_Member.php:99
5866
  msgid "Team Member Content"
5867
  msgstr ""
5868
 
5869
- #: ../includes/Elements/Team_Member.php:107, ../includes/Traits/Controls.php:301
5870
  msgid "Name"
5871
  msgstr ""
5872
 
5873
- #: ../includes/Elements/Team_Member.php:112, ../includes/Elements/Testimonial.php:136
5874
  msgid "John Doe"
5875
  msgstr ""
5876
 
5877
- #: ../includes/Elements/Team_Member.php:119
5878
  msgid "Job Position"
5879
  msgstr ""
5880
 
5881
- #: ../includes/Elements/Team_Member.php:124
5882
  msgid "Software Engineer"
5883
  msgstr ""
5884
 
5885
- #: ../includes/Elements/Team_Member.php:136
5886
  msgid "Add team member description here. Remove the text if not necessary."
5887
  msgstr ""
5888
 
5889
- #: ../includes/Elements/Team_Member.php:147
5890
  msgid "Social Profiles"
5891
  msgstr ""
5892
 
5893
- #: ../includes/Elements/Team_Member.php:154
5894
  msgid "Display Social Profiles?"
5895
  msgstr ""
5896
 
5897
- #: ../includes/Elements/Team_Member.php:187
5898
  msgid "Place URL here"
5899
  msgstr ""
5900
 
5901
- #: ../includes/Elements/Team_Member.php:262
5902
  msgid "Team Member Styles"
5903
  msgstr ""
5904
 
5905
- #: ../includes/Elements/Team_Member.php:270
5906
  msgid "Centered Style"
5907
  msgstr ""
5908
 
5909
- #: ../includes/Elements/Team_Member.php:271
5910
  msgid "Circle Style"
5911
  msgstr ""
5912
 
5913
- #: ../includes/Elements/Team_Member.php:272
5914
  msgid "Social on Bottom"
5915
  msgstr ""
5916
 
5917
- #: ../includes/Elements/Team_Member.php:273
5918
  msgid "Social on Right"
5919
  msgstr ""
5920
 
5921
- #: ../includes/Elements/Team_Member.php:307
5922
  msgid "Content Card"
5923
  msgstr ""
5924
 
5925
- #: ../includes/Elements/Team_Member.php:370
5926
  msgid "Set Alignment"
5927
  msgstr ""
5928
 
5929
- #: ../includes/Elements/Team_Member.php:434
5930
  msgid "Team Member Image Style"
5931
  msgstr ""
5932
 
5933
- #: ../includes/Elements/Team_Member.php:442, ../includes/Elements/Testimonial.php:360
5934
  msgid "Image Width"
5935
  msgstr ""
5936
 
5937
- #: ../includes/Elements/Team_Member.php:508, ../includes/Elements/Testimonial.php:442
5938
  msgid "Rounded Avatar?"
5939
  msgstr ""
5940
 
5941
- #: ../includes/Elements/Team_Member.php:544
5942
  msgid "Member Name"
5943
  msgstr ""
5944
 
5945
- #: ../includes/Elements/Team_Member.php:552
5946
  msgid "Member Name Color"
5947
  msgstr ""
5948
 
5949
- #: ../includes/Elements/Team_Member.php:572
5950
  msgid "Member Job Position"
5951
  msgstr ""
5952
 
5953
- #: ../includes/Elements/Team_Member.php:581
5954
  msgid "Job Position Color"
5955
  msgstr ""
5956
 
5957
- #: ../includes/Elements/Team_Member.php:601
5958
  msgid "Member Description"
5959
  msgstr ""
5960
 
5961
- #: ../includes/Elements/Team_Member.php:610
5962
  msgid "Description Color"
5963
  msgstr ""
5964
 
5965
- #: ../includes/Elements/Team_Member.php:633
5966
  msgid "Social Profiles Style"
5967
  msgstr ""
5968
 
5969
- #: ../includes/Elements/Team_Member.php:665
5970
  msgid "Social Profiles Margin"
5971
  msgstr ""
5972
 
5973
- #: ../includes/Elements/Team_Member.php:678
5974
  msgid "Social Icon Padding"
5975
  msgstr ""
5976
 
5977
- #: ../includes/Elements/Team_Member.php:690
5978
  msgid "Social Icon Distance"
5979
  msgstr ""
5980
 
5981
- #: ../includes/Elements/Team_Member.php:807
5982
  msgid "Hover Background"
5983
  msgstr ""
5984
 
5985
- #: ../includes/Elements/Team_Member.php:834
5986
  msgid "Hover Border Color"
5987
  msgstr ""
5988
 
5989
- #: ../includes/Elements/Testimonial.php:81
5990
  msgid "Testimonial Image"
5991
  msgstr ""
5992
 
5993
- #: ../includes/Elements/Testimonial.php:88
5994
  msgid "Display Avatar?"
5995
  msgstr ""
5996
 
5997
- #: ../includes/Elements/Testimonial.php:97
5998
  msgid "Testimonial Avatar"
5999
  msgstr ""
6000
 
6001
- #: ../includes/Elements/Testimonial.php:127
6002
  msgid "Testimonial Content"
6003
  msgstr ""
6004
 
6005
- #: ../includes/Elements/Testimonial.php:134, ../includes/Elements/Testimonial.php:478
6006
  msgid "User Name"
6007
  msgstr ""
6008
 
6009
- #: ../includes/Elements/Testimonial.php:144, ../includes/Elements/Testimonial.php:518
6010
  msgid "Company Name"
6011
  msgstr ""
6012
 
6013
- #: ../includes/Elements/Testimonial.php:146
6014
  msgid "Codetic"
6015
  msgstr ""
6016
 
6017
- #: ../includes/Elements/Testimonial.php:154
6018
  msgid "Testimonial Description"
6019
  msgstr ""
6020
 
6021
- #: ../includes/Elements/Testimonial.php:156
6022
  msgid "Add testimonial description here. Edit and place your own text."
6023
  msgstr ""
6024
 
6025
- #: ../includes/Elements/Testimonial.php:163
6026
  msgid "Description Height"
6027
  msgstr ""
6028
 
6029
- #: ../includes/Elements/Testimonial.php:180
6030
  msgid "Display Rating?"
6031
  msgstr ""
6032
 
6033
- #: ../includes/Elements/Testimonial.php:190
6034
  msgid "Rating Number"
6035
  msgstr ""
6036
 
6037
- #: ../includes/Elements/Testimonial.php:240
6038
  msgid "Testimonial Styles"
6039
  msgstr ""
6040
 
6041
- #: ../includes/Elements/Testimonial.php:254
6042
  msgid "Content | Icon/Image | Bio"
6043
  msgstr ""
6044
 
6045
- #: ../includes/Elements/Testimonial.php:255
6046
  msgid "Icon/Image | Content"
6047
  msgstr ""
6048
 
6049
- #: ../includes/Elements/Testimonial.php:256
6050
  msgid "Content | Icon/Image"
6051
  msgstr ""
6052
 
6053
- #: ../includes/Elements/Testimonial.php:257
6054
  msgid "Content Top | Icon Title Inline"
6055
  msgstr ""
6056
 
6057
- #: ../includes/Elements/Testimonial.php:258
6058
  msgid "Content Bottom | Icon Title Inline"
6059
  msgstr ""
6060
 
6061
- #: ../includes/Elements/Testimonial.php:304
6062
  msgid "Layout Alignment"
6063
  msgstr ""
6064
 
6065
- #: ../includes/Elements/Testimonial.php:336
6066
  msgid "Display User & Company Block?"
6067
  msgstr ""
6068
 
6069
- #: ../includes/Elements/Testimonial.php:349
6070
  msgid "Testimonial Image Style"
6071
  msgstr ""
6072
 
6073
- #: ../includes/Elements/Testimonial.php:386
6074
  msgid "Image Max Width"
6075
  msgstr ""
6076
 
6077
- #: ../includes/Elements/Testimonial.php:470
6078
  msgid "Color, Typography &amp; Spacing"
6079
  msgstr ""
6080
 
6081
- #: ../includes/Elements/Testimonial.php:486
6082
  msgid "User Name Color"
6083
  msgstr ""
6084
 
6085
- #: ../includes/Elements/Testimonial.php:527
6086
  msgid "Company Color"
6087
  msgstr ""
6088
 
6089
- #: ../includes/Elements/Testimonial.php:559
6090
  msgid "Testimonial Text"
6091
  msgstr ""
6092
 
6093
- #: ../includes/Elements/Testimonial.php:568
6094
  msgid "Testimonial Text Color"
6095
  msgstr ""
6096
 
6097
- #: ../includes/Elements/Testimonial.php:609
6098
  msgid "Distance Between Rating Item"
6099
  msgstr ""
6100
 
6101
- #: ../includes/Elements/Testimonial.php:635
6102
  msgid "Quotation Style"
6103
  msgstr ""
6104
 
6105
- #: ../includes/Elements/Testimonial.php:643
6106
  msgid "Quotation Mark Color"
6107
  msgstr ""
6108
 
6109
- #: ../includes/Elements/Testimonial.php:663
6110
  msgid "Quotation Postion From Top"
6111
  msgstr ""
6112
 
6113
- #: ../includes/Elements/Testimonial.php:685
6114
  msgid "Quotation Postion From Right"
6115
  msgstr ""
6116
 
@@ -6762,7 +6766,7 @@ msgstr ""
6762
  msgid "Hand"
6763
  msgstr ""
6764
 
6765
- #: ../includes/Elements/Woo_Product_Carousel.php:2901
6766
  msgid "<p class=\"eael-no-posts-found\">No layout found!</p>"
6767
  msgstr ""
6768
 
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:313, ../includes/Elements/Adv_Tabs.php:262, ../includes/Elements/Contact_Form_7.php:270, ../includes/Elements/Content_Ticker.php:306, ../includes/Elements/Countdown.php:467, ../includes/Elements/Creative_Button.php:188, ../includes/Elements/Cta_Box.php:346, ../includes/Elements/Data_Table.php:450, ../includes/Elements/Dual_Color_Header.php:214, ../includes/Elements/Fancy_Text.php:269, ../includes/Elements/Filterable_Gallery.php:795, ../includes/Elements/Flip_Box.php:727, ../includes/Elements/Info_Box.php:493, ../includes/Elements/Pricing_Table.php:703, ../includes/Elements/Progress_Bar.php:271, ../includes/Elements/Team_Member.php:237, ../includes/Elements/Testimonial.php:214, ../includes/Elements/Tooltip.php:505, ../includes/Elements/Twitter_Feed.php:295, ../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:320, ../includes/Elements/Adv_Tabs.php:269, ../includes/Elements/Contact_Form_7.php:277, ../includes/Elements/Content_Ticker.php:313, ../includes/Elements/Countdown.php:474, ../includes/Elements/Creative_Button.php:195, ../includes/Elements/Cta_Box.php:353, ../includes/Elements/Data_Table.php:457, ../includes/Elements/Dual_Color_Header.php:221, ../includes/Elements/Fancy_Text.php:276, ../includes/Elements/Filterable_Gallery.php:802, ../includes/Elements/Flip_Box.php:734, ../includes/Elements/Info_Box.php:500, ../includes/Elements/Pricing_Table.php:710, ../includes/Elements/Progress_Bar.php:278, ../includes/Elements/Team_Member.php:244, ../includes/Elements/Testimonial.php:221, ../includes/Elements/Tooltip.php:512, ../includes/Elements/Twitter_Feed.php:302, ../includes/Elements/WeForms.php:117
21
  msgid "Unlock more possibilities"
22
  msgstr ""
23
 
126
  " option."
127
  msgstr ""
128
 
129
+ #: ../includes/Classes/WPDeveloper_Setup_Wizard.php:215, ../includes/Elements/Caldera_Forms.php:1164, ../includes/Elements/Contact_Form_7.php:1190, ../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:272, ../includes/Elements/Login_Register.php:432, ../includes/Elements/Login_Register.php:529, ../includes/Elements/Login_Register.php:816, ../includes/Elements/Login_Register.php:1223, ../includes/Elements/Login_Register.php:1329, ../includes/Elements/Login_Register.php:1397, ../includes/Elements/Login_Register.php:1523, ../includes/Elements/Login_Register.php:1780, ../includes/Elements/Login_Register.php:1924, ../includes/Elements/Login_Register.php:2074, ../includes/Elements/Login_Register.php:2217, ../includes/Elements/Login_Register.php:2308, ../includes/Elements/Login_Register.php:2406, ../includes/Elements/Login_Register.php:2608, ../includes/Elements/Login_Register.php:2653, ../includes/Elements/Login_Register.php:2685, ../includes/Elements/Login_Register.php:2919, ../includes/Elements/Login_Register.php:3081, ../includes/Elements/Login_Register.php:3380, ../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
130
  msgid "Custom"
131
  msgstr ""
132
 
239
  msgid "Content Elements"
240
  msgstr ""
241
 
242
+ #: ../includes/Classes/WPDeveloper_Setup_Wizard.php:545, ../includes/Elements/Creative_Button.php:32, ../includes/templates/admin/elements.php:9
243
  msgid "Creative Button"
244
  msgstr ""
245
 
246
+ #: ../includes/Classes/WPDeveloper_Setup_Wizard.php:550, ../includes/Elements/Team_Member.php:26, ../includes/templates/admin/elements.php:15
247
  msgid "Team Member"
248
  msgstr ""
249
 
250
+ #: ../includes/Classes/WPDeveloper_Setup_Wizard.php:555, ../includes/Elements/Testimonial.php:24, ../includes/templates/admin/elements.php:21
251
  msgid "Testimonial"
252
  msgstr ""
253
 
263
  msgid "Dual Color Heading"
264
  msgstr ""
265
 
266
+ #: ../includes/Classes/WPDeveloper_Setup_Wizard.php:575, ../includes/Elements/Pricing_Table.php:1469, ../includes/Elements/Tooltip.php:25, ../includes/templates/admin/elements.php:45
267
  msgid "Tooltip"
268
  msgstr ""
269
 
275
  msgid "Advanced Tabs"
276
  msgstr ""
277
 
278
+ #: ../includes/Classes/WPDeveloper_Setup_Wizard.php:590, ../includes/Elements/Feature_List.php:28, ../includes/Elements/Pricing_Table.php:1210, ../includes/templates/admin/elements.php:63
279
  msgid "Feature List"
280
  msgstr ""
281
 
299
  msgid "Data Table"
300
  msgstr ""
301
 
302
+ #: ../includes/Classes/WPDeveloper_Setup_Wizard.php:625, ../includes/Elements/Advanced_Data_Table.php:26, ../includes/templates/admin/elements.php:146
303
  msgid "Advanced Data Table"
304
  msgstr ""
305
 
315
  msgid "Countdown"
316
  msgstr ""
317
 
318
+ #: ../includes/Classes/WPDeveloper_Setup_Wizard.php:644, ../includes/Elements/Fancy_Text.php:27, ../includes/Elements/Fancy_Text.php:64, ../includes/templates/admin/elements.php:211
319
  msgid "Fancy Text"
320
  msgstr ""
321
 
339
  msgid "Call To Action"
340
  msgstr ""
341
 
342
+ #: ../includes/Classes/WPDeveloper_Setup_Wizard.php:674, ../includes/Elements/Pricing_Table.php:32, ../includes/templates/admin/elements.php:330
343
  msgid "Pricing Table"
344
  msgstr ""
345
 
399
  msgid "BetterDocs Category Grid"
400
  msgstr ""
401
 
402
+ #: ../includes/Classes/WPDeveloper_Setup_Wizard.php:746, ../includes/Elements/Betterdocs_Category_Box.php:34, ../includes/templates/admin/elements.php:469
403
  msgid "BetterDocs Category Box"
404
  msgstr ""
405
 
406
+ #: ../includes/Classes/WPDeveloper_Setup_Wizard.php:751, ../includes/Elements/Betterdocs_Search_Form.php:29, ../includes/templates/admin/elements.php:475
407
  msgid "BetterDocs Search Form"
408
  msgstr ""
409
 
431
  msgid "Quick Setup Wizard- Essential Addons"
432
  msgstr ""
433
 
434
+ #: ../includes/Controls/Select2.php:28, ../includes/Elements/Advanced_Data_Table.php:142, ../includes/Elements/Advanced_Data_Table.php:157, ../includes/Elements/Advanced_Data_Table.php:861
435
  msgid "Search"
436
  msgstr ""
437
 
438
+ #: ../includes/Elements/Advanced_Data_Table.php:73
439
  msgid "Data Source"
440
  msgstr ""
441
 
442
+ #: ../includes/Elements/Advanced_Data_Table.php:80, ../includes/Elements/Event_Calendar.php:93, ../includes/Elements/Product_Grid.php:327, ../includes/Elements/Sticky_Video.php:144, ../includes/Traits/Controls.php:67
443
  msgid "Source"
444
  msgstr ""
445
 
446
+ #: ../includes/Elements/Advanced_Data_Table.php:84
447
  msgid "Static Data"
448
  msgstr ""
449
 
450
+ #: ../includes/Elements/Advanced_Data_Table.php:92
451
  msgid "Database(PRO)"
452
  msgstr ""
453
 
454
+ #: ../includes/Elements/Advanced_Data_Table.php:93
455
  msgid "Remote Database(PRO)"
456
  msgstr ""
457
 
458
+ #: ../includes/Elements/Advanced_Data_Table.php:94
459
  msgid "Google Sheets(PRO)"
460
  msgstr ""
461
 
462
+ #: ../includes/Elements/Advanced_Data_Table.php:95
463
  msgid "TablePress(PRO)"
464
  msgstr ""
465
 
466
+ #: ../includes/Elements/Advanced_Data_Table.php:87
467
  msgid "Database"
468
  msgstr ""
469
 
470
+ #: ../includes/Elements/Advanced_Data_Table.php:88
471
  msgid "Remote Database"
472
  msgstr ""
473
 
474
+ #: ../includes/Elements/Advanced_Data_Table.php:89
475
  msgid "Google Sheets"
476
  msgstr ""
477
 
478
+ #: ../includes/Elements/Advanced_Data_Table.php:90
479
  msgid "TablePress"
480
  msgstr ""
481
 
482
+ #: ../includes/Elements/Advanced_Data_Table.php:98
483
  msgid "Ninja Tables"
484
  msgstr ""
485
 
486
+ #: ../includes/Elements/Advanced_Data_Table.php:125
487
  msgid "Advanced Features"
488
  msgstr ""
489
 
490
+ #: ../includes/Elements/Advanced_Data_Table.php:132
491
  msgid "Sort"
492
  msgstr ""
493
 
494
+ #: ../includes/Elements/Advanced_Data_Table.php:152, ../includes/Elements/Caldera_Forms.php:162, ../includes/Elements/Caldera_Forms.php:895, ../includes/Elements/Contact_Form_7.php:900, ../includes/Elements/Filterable_Gallery.php:2291, ../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:1003, ../includes/Elements/NinjaForms.php:183, ../includes/Elements/NinjaForms.php:939, ../includes/Elements/WpForms.php:190, ../includes/Elements/WpForms.php:896
495
  msgid "Placeholder"
496
  msgstr ""
497
 
498
+ #: ../includes/Elements/Advanced_Data_Table.php:167, ../includes/Elements/Advanced_Data_Table.php:1056, ../includes/Elements/Facebook_Feed.php:376, ../includes/Elements/FluentForm.php:1679, ../includes/Elements/Formstack.php:1593, ../includes/Elements/Product_Grid.php:2031, ../includes/Elements/Product_Grid.php:2082
499
  msgid "Pagination"
500
  msgstr ""
501
 
502
+ #: ../includes/Elements/Advanced_Data_Table.php:177
503
  msgid "Pagination Type"
504
  msgstr ""
505
 
506
+ #: ../includes/Elements/Advanced_Data_Table.php:180, ../includes/Elements/Advanced_Data_Table.php:1332, ../includes/Elements/Betterdocs_Category_Grid.php:1290, ../includes/Elements/Event_Calendar.php:747, ../includes/Elements/Flip_Box.php:651, ../includes/Elements/FluentForm.php:1913, ../includes/Elements/Formstack.php:1773, ../includes/Elements/Info_Box.php:350, ../includes/Elements/Pricing_Table.php:507, ../includes/Elements/Pricing_Table.php:1816, ../includes/Elements/Product_Grid.php:1736, ../includes/Elements/Woo_Checkout.php:1287, ../includes/Elements/Woo_Checkout.php:1585, ../includes/Elements/Woo_Checkout.php:2358, ../includes/Elements/Woo_Product_Carousel.php:1284, ../includes/Traits/Woo_Product_Comparable.php:1200, ../includes/Traits/Woo_Product_Comparable.php:1250
507
  msgid "Button"
508
  msgstr ""
509
 
510
+ #: ../includes/Elements/Advanced_Data_Table.php:181
511
  msgid "Select"
512
  msgstr ""
513
 
514
+ #: ../includes/Elements/Advanced_Data_Table.php:193
515
  msgid "Rows Per Page"
516
  msgstr ""
517
 
518
+ #: ../includes/Elements/Advanced_Data_Table.php:207
519
  msgid "Note: Pagination will be applied on Live Preview only."
520
  msgstr ""
521
 
522
+ #: ../includes/Elements/Advanced_Data_Table.php:221
523
  msgid "Export/Import"
524
  msgstr ""
525
 
526
+ #: ../includes/Elements/Advanced_Data_Table.php:228, ../includes/Elements/Data_Table.php:437
527
  msgid "Export table as CSV file"
528
  msgstr ""
529
 
530
+ #: ../includes/Elements/Advanced_Data_Table.php:230, ../includes/Elements/Data_Table.php:430, ../includes/Elements/Data_Table.php:439
531
  msgid "Export"
532
  msgstr ""
533
 
534
+ #: ../includes/Elements/Advanced_Data_Table.php:238, ../includes/Elements/Advanced_Data_Table.php:260, ../includes/Elements/Advanced_Data_Table.php:263
535
  msgid "Import"
536
  msgstr ""
537
 
538
+ #: ../includes/Elements/Advanced_Data_Table.php:279, ../includes/Elements/Event_Calendar.php:620
539
  msgid "Data Cache Setting"
540
  msgstr ""
541
 
542
+ #: ../includes/Elements/Advanced_Data_Table.php:289, ../includes/Elements/Event_Calendar.php:630, ../includes/Elements/Facebook_Feed.php:112, ../includes/Elements/Twitter_Feed.php:134
543
  msgid "Data Cache Time"
544
  msgstr ""
545
 
546
+ #: ../includes/Elements/Advanced_Data_Table.php:293, ../includes/Elements/Event_Calendar.php:634, ../includes/Elements/Facebook_Feed.php:116, ../includes/Elements/Twitter_Feed.php:138
547
  msgid "Cache expiration time (Minutes)"
548
  msgstr ""
549
 
550
+ #: ../includes/Elements/Advanced_Data_Table.php:303
551
  msgid "Table"
552
  msgstr ""
553
 
554
+ #: ../includes/Elements/Advanced_Data_Table.php:311, ../includes/Elements/Advanced_Data_Table.php:872, ../includes/Elements/Advanced_Data_Table.php:1067, ../includes/Elements/Betterdocs_Search_Form.php:311, ../includes/Elements/Caldera_Forms.php:1159, ../includes/Elements/Caldera_Forms.php:1173, ../includes/Elements/Contact_Form_7.php:1185, ../includes/Elements/Contact_Form_7.php:1199, ../includes/Elements/Creative_Button.php:467, ../includes/Elements/Data_Table.php:489, ../includes/Elements/Data_Table.php:1044, ../includes/Elements/Dual_Color_Header.php:725, ../includes/Elements/Dual_Color_Header.php:805, ../includes/Elements/Filterable_Gallery.php:2156, ../includes/Elements/Filterable_Gallery.php:2314, ../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:1402, ../includes/Elements/Login_Register.php:1930, ../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:791, ../includes/Elements/Woo_Product_Carousel.php:1292, ../includes/Elements/Woo_Product_Carousel.php:2122, ../includes/Elements/Woo_Product_Carousel.php:2325, ../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
555
  msgid "Width"
556
  msgstr ""
557
 
558
+ #: ../includes/Elements/Advanced_Data_Table.php:348, ../includes/Elements/Advanced_Data_Table.php:1016, ../includes/Elements/Advanced_Data_Table.php:1214, ../includes/Elements/Advanced_Data_Table.php:1286, ../includes/Elements/Advanced_Data_Table.php:1414, ../includes/Elements/Adv_Accordion.php:372, ../includes/Elements/Adv_Accordion.php:561, ../includes/Elements/Adv_Accordion.php:621, ../includes/Elements/Adv_Accordion.php:682, ../includes/Elements/Adv_Accordion.php:765, ../includes/Elements/Adv_Accordion.php:887, ../includes/Elements/Adv_Accordion.php:933, ../includes/Elements/Adv_Accordion.php:979, ../includes/Elements/Adv_Tabs.php:324, ../includes/Elements/Adv_Tabs.php:516, ../includes/Elements/Adv_Tabs.php:583, ../includes/Elements/Adv_Tabs.php:654, ../includes/Elements/Adv_Tabs.php:749, ../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:844, ../includes/Elements/Betterdocs_Category_Grid.php:941, ../includes/Elements/Betterdocs_Category_Grid.php:1186, ../includes/Elements/Betterdocs_Category_Grid.php:1386, ../includes/Elements/Betterdocs_Category_Grid.php:1485, ../includes/Elements/Betterdocs_Search_Form.php:210, ../includes/Elements/Betterdocs_Search_Form.php:365, ../includes/Elements/Betterdocs_Search_Form.php:423, ../includes/Elements/Betterdocs_Search_Form.php:533, ../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:1255, ../includes/Elements/Contact_Form_7.php:1457, ../includes/Elements/Contact_Form_7.php:1551, ../includes/Elements/Contact_Form_7.php:1618, ../includes/Elements/Content_Ticker.php:622, ../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:347, ../includes/Elements/Event_Calendar.php:798, ../includes/Elements/Event_Calendar.php:865, ../includes/Elements/Event_Calendar.php:919, ../includes/Elements/Event_Calendar.php:1591, ../includes/Elements/Event_Calendar.php:1662, ../includes/Elements/Facebook_Feed.php:451, ../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:2410, ../includes/Elements/Filterable_Gallery.php:2527, ../includes/Elements/Flip_Box.php:988, ../includes/Elements/Flip_Box.php:1101, ../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:569, ../includes/Elements/Info_Box.php:624, ../includes/Elements/Info_Box.php:818, ../includes/Elements/Info_Box.php:898, ../includes/Elements/Info_Box.php:1052, ../includes/Elements/Info_Box.php:1133, ../includes/Elements/Login_Register.php:2682, ../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:1767, ../includes/Elements/Pricing_Table.php:1933, ../includes/Elements/Product_Grid.php:2177, ../includes/Elements/Team_Member.php:413, ../includes/Elements/Team_Member.php:501, ../includes/Elements/Testimonial.php:435, ../includes/Elements/Tooltip.php:431, ../includes/Elements/Tooltip.php:474, ../includes/Elements/Twitter_Feed.php:448, ../includes/Elements/Twitter_Feed.php:538, ../includes/Elements/Twitter_Feed.php:855, ../includes/Elements/Woo_Checkout.php:1507, ../includes/Elements/Woo_Checkout.php:1753, ../includes/Elements/Woo_Product_Carousel.php:2230, ../includes/Elements/Woo_Product_Carousel.php:2664, ../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:1229, ../includes/Traits/Controls.php:1283, ../includes/Traits/Controls.php:1413
559
  msgid "Border"
560
  msgstr ""
561
 
562
+ #: ../includes/Elements/Advanced_Data_Table.php:374, ../includes/Elements/Advanced_Data_Table.php:1042, ../includes/Elements/Advanced_Data_Table.php:1240, ../includes/Elements/Advanced_Data_Table.php:1312, ../includes/Elements/Advanced_Data_Table.php:1436, ../includes/Elements/Adv_Accordion.php:379, ../includes/Elements/Adv_Accordion.php:568, ../includes/Elements/Adv_Accordion.php:628, ../includes/Elements/Adv_Accordion.php:689, ../includes/Elements/Adv_Tabs.php:332, ../includes/Elements/Adv_Tabs.php:523, ../includes/Elements/Adv_Tabs.php:590, ../includes/Elements/Adv_Tabs.php:661, ../includes/Elements/Adv_Tabs.php:756, ../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:855, ../includes/Elements/Betterdocs_Category_Grid.php:952, ../includes/Elements/Betterdocs_Category_Grid.php:1394, ../includes/Elements/Betterdocs_Category_Grid.php:1493, ../includes/Elements/Betterdocs_Search_Form.php:197, ../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:1264, ../includes/Elements/Content_Ticker.php:401, ../includes/Elements/Content_Ticker.php:475, ../includes/Elements/Content_Ticker.php:632, ../includes/Elements/Countdown.php:627, ../includes/Elements/Creative_Button.php:336, ../includes/Elements/Cta_Box.php:471, ../includes/Elements/Cta_Box.php:748, ../includes/Elements/Cta_Box.php:935, ../includes/Elements/Dual_Color_Header.php:355, ../includes/Elements/Event_Calendar.php:806, ../includes/Elements/Event_Calendar.php:873, ../includes/Elements/Event_Calendar.php:927, ../includes/Elements/Event_Calendar.php:1163, ../includes/Elements/Event_Calendar.php:1331, ../includes/Elements/Event_Calendar.php:1599, ../includes/Elements/Event_Calendar.php:1670, ../includes/Elements/Facebook_Feed.php:476, ../includes/Elements/Facebook_Feed.php:536, ../includes/Elements/Fancy_Text.php:515, ../includes/Elements/Feature_List.php:642, ../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:2068, ../includes/Elements/Filterable_Gallery.php:2199, ../includes/Elements/Filterable_Gallery.php:2334, ../includes/Elements/Filterable_Gallery.php:2432, ../includes/Elements/Filterable_Gallery.php:2541, ../includes/Elements/Flip_Box.php:826, ../includes/Elements/Flip_Box.php:887, ../includes/Elements/Flip_Box.php:1011, ../includes/Elements/Flip_Box.php:1124, ../includes/Elements/Flip_Box.php:1385, ../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:1218, ../includes/Elements/Login_Register.php:1483, ../includes/Elements/Login_Register.php:1718, ../includes/Elements/Login_Register.php:1892, ../includes/Elements/Login_Register.php:2048, ../includes/Elements/Login_Register.php:2188, ../includes/Elements/Login_Register.php:2282, ../includes/Elements/Login_Register.php:2373, ../includes/Elements/Login_Register.php:2547, ../includes/Elements/Login_Register.php:2584, ../includes/Elements/Login_Register.php:2698, ../includes/Elements/Login_Register.php:3208, ../includes/Elements/Login_Register.php:3245, ../includes/Elements/Login_Register.php:3529, ../includes/Elements/Login_Register.php:3566, ../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:787, ../includes/Elements/Pricing_Table.php:1541, ../includes/Elements/Pricing_Table.php:1790, ../includes/Elements/Pricing_Table.php:1941, ../includes/Elements/Product_Grid.php:904, ../includes/Elements/Product_Grid.php:1921, ../includes/Elements/Product_Grid.php:2277, ../includes/Elements/Product_Grid.php:2614, ../includes/Elements/Product_Grid.php:2809, ../includes/Elements/Product_Grid.php:2841, ../includes/Elements/Sticky_Video.php:591, ../includes/Elements/Team_Member.php:421, ../includes/Elements/Team_Member.php:520, ../includes/Elements/Team_Member.php:767, ../includes/Elements/Testimonial.php:454, ../includes/Elements/Tooltip.php:491, ../includes/Elements/Twitter_Feed.php:456, ../includes/Elements/Twitter_Feed.php:549, ../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/Woo_Product_Carousel.php:997, ../includes/Elements/Woo_Product_Carousel.php:1399, ../includes/Elements/Woo_Product_Carousel.php:1802, ../includes/Elements/Woo_Product_Carousel.php:1998, ../includes/Elements/Woo_Product_Carousel.php:2030, ../includes/Elements/Woo_Product_Carousel.php:2240, ../includes/Elements/Woo_Product_Carousel.php:2363, ../includes/Elements/Woo_Product_Carousel.php:2674, ../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:1237, ../includes/Traits/Controls.php:1291, ../includes/Traits/Controls.php:1421, ../includes/Traits/Woo_Product_Comparable.php:357, ../includes/Traits/Woo_Product_Comparable.php:502, ../includes/Traits/Woo_Product_Comparable.php:1383
563
  msgid "Border Radius"
564
  msgstr ""
565
 
566
+ #: ../includes/Elements/Advanced_Data_Table.php:387, ../includes/Elements/Advanced_Data_Table.php:1450, ../includes/Elements/Betterdocs_Category_Grid.php:331, ../includes/Elements/Betterdocs_Category_Grid.php:379, ../includes/Elements/Event_Calendar.php:685, ../includes/Elements/Event_Calendar.php:1623, ../includes/Elements/Event_Calendar.php:1697, ../includes/Elements/Product_Grid.php:864, ../includes/Elements/Product_Grid.php:892, ../includes/Elements/Product_Grid.php:2833, ../includes/Elements/Product_Grid.php:2868, ../includes/Elements/Progress_Bar.php:652, ../includes/Elements/Twitter_Feed.php:651, ../includes/Elements/Twitter_Feed.php:863, ../includes/Elements/Woo_Product_Carousel.php:956, ../includes/Elements/Woo_Product_Carousel.php:985, ../includes/Elements/Woo_Product_Carousel.php:2022, ../includes/Elements/Woo_Product_Carousel.php:2057, ../includes/Elements/Woo_Product_Carousel.php:2736, ../includes/Extensions/Table_of_Content.php:510, ../includes/Extensions/Table_of_Content.php:755, ../includes/Traits/Woo_Product_Comparable.php:1407
567
  msgid "Box Shadow"
568
  msgstr ""
569
 
570
+ #: ../includes/Elements/Advanced_Data_Table.php:397
571
  msgid "Head"
572
  msgstr ""
573
 
574
+ #: ../includes/Elements/Advanced_Data_Table.php:406, ../includes/Elements/Advanced_Data_Table.php:525, ../includes/Elements/Advanced_Data_Table.php:983, ../includes/Elements/Advanced_Data_Table.php:1133, ../includes/Elements/Advanced_Data_Table.php:1341, ../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:1308, ../includes/Elements/Contact_Form_7.php:1443, ../includes/Elements/Contact_Form_7.php:1583, ../includes/Elements/Event_Calendar.php:727, ../includes/Elements/Event_Calendar.php:757, ../includes/Elements/Event_Calendar.php:971, ../includes/Elements/Event_Calendar.php:1046, ../includes/Elements/Event_Calendar.php:1080, ../includes/Elements/Event_Calendar.php:1323, ../includes/Elements/Event_Calendar.php:1386, ../includes/Elements/Event_Calendar.php:1415, ../includes/Elements/Event_Calendar.php:1483, ../includes/Elements/Event_Calendar.php:1641, ../includes/Elements/Filterable_Gallery.php:1964, ../includes/Elements/Filterable_Gallery.php:2011, ../includes/Elements/Filterable_Gallery.php:2047, ../includes/Elements/Filterable_Gallery.php:2104, ../includes/Elements/Filterable_Gallery.php:2398, ../includes/Elements/Filterable_Gallery.php:2558, ../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:2337, ../includes/Elements/Product_Grid.php:2367, ../includes/Elements/Product_Grid.php:2409, ../includes/Elements/Product_Grid.php:2475, ../includes/Elements/Product_Grid.php:2514, ../includes/Elements/Product_Grid.php:2571, ../includes/Elements/Product_Grid.php:2688, ../includes/Elements/Progress_Bar.php:672, ../includes/Elements/Woo_Checkout.php:1296, ../includes/Elements/Woo_Checkout.php:1594, ../includes/Elements/Woo_Product_Carousel.php:1510, ../includes/Elements/Woo_Product_Carousel.php:1540, ../includes/Elements/Woo_Product_Carousel.php:1582, ../includes/Elements/Woo_Product_Carousel.php:1661, ../includes/Elements/Woo_Product_Carousel.php:1701, ../includes/Elements/Woo_Product_Carousel.php:1758, ../includes/Elements/Woo_Product_Carousel.php:1877, ../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
575
  msgid "Typography"
576
  msgstr ""
577
 
578
+ #: ../includes/Elements/Advanced_Data_Table.php:414, ../includes/Elements/Advanced_Data_Table.php:533, ../includes/Elements/Betterdocs_Category_Box.php:763, ../includes/Elements/Betterdocs_Category_Grid.php:1509, ../includes/Elements/Countdown.php:1025, ../includes/Elements/Login_Register.php:2487
579
  msgid "Text Alignment"
580
  msgstr ""
581
 
582
+ #: ../includes/Elements/Advanced_Data_Table.php:418, ../includes/Elements/Advanced_Data_Table.php:537, ../includes/Elements/Advanced_Data_Table.php:963, ../includes/Elements/Advanced_Data_Table.php:1110, ../includes/Elements/Adv_Accordion.php:154, ../includes/Elements/Betterdocs_Category_Box.php:767, ../includes/Elements/Betterdocs_Category_Grid.php:1513, ../includes/Elements/Betterdocs_Category_Grid.php:1538, ../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:290, ../includes/Elements/Countdown.php:118, ../includes/Elements/Countdown.php:1030, ../includes/Elements/Creative_Button.php:445, ../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:191, ../includes/Elements/Event_Calendar.php:995, ../includes/Elements/Event_Calendar.php:1127, ../includes/Elements/Fancy_Text.php:174, ../includes/Elements/Feature_List.php:305, ../includes/Elements/Filterable_Gallery.php:767, ../includes/Elements/Filterable_Gallery.php:1299, ../includes/Elements/Filterable_Gallery.php:1682, ../includes/Elements/Flip_Box.php:369, ../includes/Elements/Flip_Box.php:598, ../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:304, ../includes/Elements/Login_Register.php:674, ../includes/Elements/Login_Register.php:707, ../includes/Elements/Login_Register.php:2491, ../includes/Elements/Login_Register.php:3159, ../includes/Elements/Login_Register.php:3479, ../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:262, ../includes/Elements/Pricing_Table.php:379, ../includes/Elements/Pricing_Table.php:681, ../includes/Elements/Pricing_Table.php:821, ../includes/Elements/Pricing_Table.php:846, ../includes/Elements/Product_Grid.php:656, ../includes/Elements/Product_Grid.php:974, ../includes/Elements/Product_Grid.php:1655, ../includes/Elements/Product_Grid.php:2098, ../includes/Elements/Progress_Bar.php:321, ../includes/Elements/Progress_Bar.php:532, ../includes/Elements/Team_Member.php:380, ../includes/Elements/Testimonial.php:314, ../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/Woo_Product_Carousel.php:809, ../includes/Elements/Woo_Product_Carousel.php:858, ../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:1502, ../includes/Traits/Controls.php:1553, ../includes/Traits/Controls.php:1554, ../includes/Traits/Controls.php:1876
583
  msgid "Left"
584
  msgstr ""
585
 
586
+ #: ../includes/Elements/Advanced_Data_Table.php:422, ../includes/Elements/Advanced_Data_Table.php:541, ../includes/Elements/Advanced_Data_Table.php:967, ../includes/Elements/Advanced_Data_Table.php:1114, ../includes/Elements/Betterdocs_Category_Box.php:771, ../includes/Elements/Betterdocs_Category_Grid.php:1517, ../includes/Elements/Betterdocs_Category_Grid.php:1542, ../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:449, ../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:195, ../includes/Elements/Dual_Color_Header.php:634, ../includes/Elements/Event_Calendar.php:999, ../includes/Elements/Event_Calendar.php:1131, ../includes/Elements/Fancy_Text.php:178, ../includes/Elements/Filterable_Gallery.php:771, ../includes/Elements/Filterable_Gallery.php:1303, ../includes/Elements/Filterable_Gallery.php:1686, ../includes/Elements/Flip_Box.php:373, ../includes/Elements/Flip_Box.php:602, ../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:308, ../includes/Elements/Login_Register.php:2495, ../includes/Elements/Login_Register.php:3141, ../includes/Elements/Login_Register.php:3163, ../includes/Elements/Login_Register.php:3440, ../includes/Elements/Login_Register.php:3460, ../includes/Elements/Login_Register.php:3483, ../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:825, ../includes/Elements/Pricing_Table.php:850, ../includes/Elements/Product_Grid.php:660, ../includes/Elements/Product_Grid.php:978, ../includes/Elements/Product_Grid.php:2102, ../includes/Elements/Progress_Bar.php:325, ../includes/Elements/Progress_Bar.php:536, ../includes/Elements/Team_Member.php:384, ../includes/Elements/Testimonial.php:318, ../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/Woo_Product_Carousel.php:862, ../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:1506, ../includes/Traits/Controls.php:1880
587
  msgid "Center"
588
  msgstr ""
589
 
590
+ #: ../includes/Elements/Advanced_Data_Table.php:426, ../includes/Elements/Advanced_Data_Table.php:545, ../includes/Elements/Advanced_Data_Table.php:971, ../includes/Elements/Advanced_Data_Table.php:1118, ../includes/Elements/Adv_Accordion.php:153, ../includes/Elements/Betterdocs_Category_Box.php:775, ../includes/Elements/Betterdocs_Category_Grid.php:1521, ../includes/Elements/Betterdocs_Category_Grid.php:1546, ../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:291, ../includes/Elements/Countdown.php:126, ../includes/Elements/Countdown.php:1038, ../includes/Elements/Creative_Button.php:453, ../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:199, ../includes/Elements/Event_Calendar.php:1003, ../includes/Elements/Event_Calendar.php:1135, ../includes/Elements/Fancy_Text.php:182, ../includes/Elements/Feature_List.php:313, ../includes/Elements/Filterable_Gallery.php:775, ../includes/Elements/Filterable_Gallery.php:1307, ../includes/Elements/Filterable_Gallery.php:1690, ../includes/Elements/Flip_Box.php:377, ../includes/Elements/Flip_Box.php:606, ../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:312, ../includes/Elements/Login_Register.php:678, ../includes/Elements/Login_Register.php:2499, ../includes/Elements/Login_Register.php:3167, ../includes/Elements/Login_Register.php:3487, ../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:263, ../includes/Elements/Pricing_Table.php:387, ../includes/Elements/Pricing_Table.php:685, ../includes/Elements/Pricing_Table.php:829, ../includes/Elements/Pricing_Table.php:854, ../includes/Elements/Product_Grid.php:664, ../includes/Elements/Product_Grid.php:982, ../includes/Elements/Product_Grid.php:1659, ../includes/Elements/Product_Grid.php:2106, ../includes/Elements/Progress_Bar.php:329, ../includes/Elements/Progress_Bar.php:540, ../includes/Elements/Team_Member.php:388, ../includes/Elements/Testimonial.php:322, ../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/Woo_Product_Carousel.php:813, ../includes/Elements/Woo_Product_Carousel.php:866, ../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:1510, ../includes/Traits/Controls.php:1553, ../includes/Traits/Controls.php:1554, ../includes/Traits/Controls.php:1884
591
  msgid "Right"
592
  msgstr ""
593
 
594
+ #: ../includes/Elements/Advanced_Data_Table.php:441, ../includes/Elements/Advanced_Data_Table.php:560, ../includes/Elements/Advanced_Data_Table.php:654, ../includes/Elements/Advanced_Data_Table.php:685, ../includes/Elements/Advanced_Data_Table.php:716, ../includes/Elements/Advanced_Data_Table.php:747, ../includes/Elements/Advanced_Data_Table.php:778, ../includes/Elements/Advanced_Data_Table.php:809, ../includes/Elements/Advanced_Data_Table.php:991, ../includes/Elements/Advanced_Data_Table.php:1187, ../includes/Elements/Advanced_Data_Table.php:1257, ../includes/Elements/Adv_Accordion.php:537, ../includes/Elements/Adv_Accordion.php:597, ../includes/Elements/Adv_Accordion.php:657, ../includes/Elements/Adv_Accordion.php:724, ../includes/Elements/Adv_Tabs.php:489, ../includes/Elements/Adv_Tabs.php:556, ../includes/Elements/Adv_Tabs.php:624, ../includes/Elements/Adv_Tabs.php:708, ../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:1242, ../includes/Elements/Contact_Form_7.php:1348, ../includes/Elements/Contact_Form_7.php:1412, ../includes/Elements/Contact_Form_7.php:1535, ../includes/Elements/Contact_Form_7.php:1592, ../includes/Elements/Content_Ticker.php:357, ../includes/Elements/Content_Ticker.php:433, ../includes/Elements/Countdown.php:1109, ../includes/Elements/Creative_Button.php:277, ../includes/Elements/Creative_Button.php:370, ../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:1241, ../includes/Elements/Event_Calendar.php:1274, ../includes/Elements/Filterable_Gallery.php:959, ../includes/Elements/Filterable_Gallery.php:1025, ../includes/Elements/Filterable_Gallery.php:2510, ../includes/Elements/Filterable_Gallery.php:2705, ../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:1240, ../includes/Elements/Info_Box.php:1287, ../includes/Elements/Login_Register.php:2520, ../includes/Elements/Login_Register.php:2659, ../includes/Elements/Login_Register.php:3003, ../includes/Elements/Login_Register.php:3188, ../includes/Elements/Login_Register.php:3225, ../includes/Elements/Login_Register.php:3509, ../includes/Elements/Login_Register.php:3546, ../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:1893, ../includes/Elements/Pricing_Table.php:1962, ../includes/Elements/Product_Grid.php:2152, ../includes/Elements/Product_Grid.php:2190, ../includes/Elements/Product_Grid.php:2234, ../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:1203, ../includes/Traits/Controls.php:1258, ../includes/Traits/Controls.php:1388, ../includes/Traits/Controls.php:1450, ../includes/Traits/Controls.php:1833
595
  msgid "Text Color"
596
  msgstr ""
597
 
598
+ #: ../includes/Elements/Advanced_Data_Table.php:455, ../includes/Elements/Advanced_Data_Table.php:596, ../includes/Elements/Advanced_Data_Table.php:669, ../includes/Elements/Advanced_Data_Table.php:700, ../includes/Elements/Advanced_Data_Table.php:731, ../includes/Elements/Advanced_Data_Table.php:762, ../includes/Elements/Advanced_Data_Table.php:793, ../includes/Elements/Advanced_Data_Table.php:824, ../includes/Elements/Advanced_Data_Table.php:1003, ../includes/Elements/Advanced_Data_Table.php:1200, ../includes/Elements/Advanced_Data_Table.php:1271, ../includes/Elements/Advanced_Data_Table.php:1366, ../includes/Elements/Advanced_Data_Table.php:1396, ../includes/Elements/Adv_Accordion.php:873, ../includes/Elements/Adv_Accordion.php:919, ../includes/Elements/Adv_Accordion.php:965, ../includes/Elements/Adv_Tabs.php:470, ../includes/Elements/Adv_Tabs.php:689, ../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:1230, ../includes/Elements/Contact_Form_7.php:1336, ../includes/Elements/Contact_Form_7.php:1427, ../includes/Elements/Contact_Form_7.php:1520, ../includes/Elements/Content_Ticker.php:345, ../includes/Elements/Content_Ticker.php:422, ../includes/Elements/Content_Ticker.php:597, ../includes/Elements/Content_Ticker.php:653, ../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:291, ../includes/Elements/Creative_Button.php:383, ../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:310, ../includes/Elements/Event_Calendar.php:1253, ../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:2494, ../includes/Elements/Filterable_Gallery.php:2689, ../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:544, ../includes/Elements/Info_Box.php:785, ../includes/Elements/Info_Box.php:864, ../includes/Elements/Info_Box.php:1036, ../includes/Elements/Info_Box.php:1099, ../includes/Elements/Info_Box.php:1253, ../includes/Elements/Info_Box.php:1300, ../includes/Elements/Login_Register.php:1498, ../includes/Elements/Login_Register.php:1631, ../includes/Elements/Login_Register.php:1733, ../includes/Elements/Login_Register.php:1907, ../includes/Elements/Login_Register.php:2263, ../includes/Elements/Login_Register.php:2354, ../includes/Elements/Login_Register.php:2534, ../includes/Elements/Login_Register.php:2572, ../includes/Elements/Login_Register.php:2669, ../includes/Elements/Login_Register.php:3196, ../includes/Elements/Login_Register.php:3233, ../includes/Elements/Login_Register.php:3517, ../includes/Elements/Login_Register.php:3554, ../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:742, ../includes/Elements/Pricing_Table.php:902, ../includes/Elements/Pricing_Table.php:1408, ../includes/Elements/Pricing_Table.php:1477, ../includes/Elements/Pricing_Table.php:1643, ../includes/Elements/Pricing_Table.php:1905, ../includes/Elements/Pricing_Table.php:1974, ../includes/Elements/Product_Grid.php:1764, ../includes/Elements/Product_Grid.php:1872, ../includes/Elements/Product_Grid.php:1978, ../includes/Elements/Product_Grid.php:2164, ../includes/Elements/Product_Grid.php:2202, ../includes/Elements/Product_Grid.php:2246, ../includes/Elements/Product_Grid.php:2492, ../includes/Elements/Product_Grid.php:2534, ../includes/Elements/Product_Grid.php:2595, ../includes/Elements/Product_Grid.php:2646, ../includes/Elements/Progress_Bar.php:578, ../includes/Elements/Team_Member.php:731, ../includes/Elements/Tooltip.php:399, ../includes/Elements/Tooltip.php:442, ../includes/Elements/Tooltip.php:615, ../includes/Elements/Twitter_Feed.php:401, ../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/Woo_Product_Carousel.php:884, ../includes/Elements/Woo_Product_Carousel.php:1377, ../includes/Elements/Woo_Product_Carousel.php:1459, ../includes/Elements/Woo_Product_Carousel.php:1678, ../includes/Elements/Woo_Product_Carousel.php:1721, ../includes/Elements/Woo_Product_Carousel.php:1783, ../includes/Elements/Woo_Product_Carousel.php:1835, ../includes/Elements/Woo_Product_Carousel.php:2639, ../includes/Elements/Woo_Product_Carousel.php:2695, ../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:1400, ../includes/Traits/Controls.php:1462, ../includes/Traits/Controls.php:1843, ../includes/Traits/Woo_Product_Comparable.php:369, ../includes/Traits/Woo_Product_Comparable.php:475
599
  msgid "Background Color"
600
  msgstr ""
601
 
602
+ #: ../includes/Elements/Advanced_Data_Table.php:468, ../includes/Elements/Advanced_Data_Table.php:609
603
  msgid "Cell Border"
604
  msgstr ""
605
 
606
+ #: ../includes/Elements/Advanced_Data_Table.php:494, ../includes/Elements/Advanced_Data_Table.php:839, ../includes/Elements/Advanced_Data_Table.php:923, ../includes/Elements/Advanced_Data_Table.php:1141, ../includes/Elements/Advanced_Data_Table.php:1458, ../includes/Elements/Adv_Accordion.php:349, ../includes/Elements/Adv_Accordion.php:502, ../includes/Elements/Adv_Accordion.php:742, ../includes/Elements/Adv_Tabs.php:301, ../includes/Elements/Adv_Tabs.php:444, ../includes/Elements/Adv_Tabs.php:726, ../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:1406, ../includes/Elements/Betterdocs_Search_Form.php:123, ../includes/Elements/Betterdocs_Search_Form.php:431, ../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:1276, ../includes/Elements/Contact_Form_7.php:1471, ../includes/Elements/Contact_Form_7.php:1668, ../includes/Elements/Content_Ticker.php:389, ../includes/Elements/Content_Ticker.php:452, ../includes/Elements/Content_Ticker.php:693, ../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:322, ../includes/Elements/Facebook_Feed.php:605, ../includes/Elements/Facebook_Feed.php:631, ../includes/Elements/Facebook_Feed.php:703, ../includes/Elements/Fancy_Text.php:480, ../includes/Elements/Feature_List.php:599, ../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:2613, ../includes/Elements/Flip_Box.php:999, ../includes/Elements/Flip_Box.php:1112, ../includes/Elements/Flip_Box.php:1348, ../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:556, ../includes/Elements/Login_Register.php:1461, ../includes/Elements/Login_Register.php:2026, ../includes/Elements/Login_Register.php:2165, ../includes/Elements/Login_Register.php:2238, ../includes/Elements/Login_Register.php:2329, ../includes/Elements/Login_Register.php:2431, ../includes/Elements/Login_Register.php:2467, ../includes/Elements/Login_Register.php:2629, ../includes/Elements/Login_Register.php:3101, ../includes/Elements/Login_Register.php:3400, ../includes/Elements/NinjaForms.php:784, ../includes/Elements/NinjaForms.php:1419, ../includes/Elements/Pricing_Table.php:754, ../includes/Elements/Pricing_Table.php:1519, ../includes/Elements/Pricing_Table.php:1824, ../includes/Elements/Product_Grid.php:767, ../includes/Elements/Product_Grid.php:1018, ../includes/Elements/Product_Grid.php:1426, ../includes/Elements/Team_Member.php:487, ../includes/Elements/Testimonial.php:421, ../includes/Elements/Tooltip.php:344, ../includes/Elements/Tooltip.php:593, ../includes/Elements/Twitter_Feed.php:431, ../includes/Elements/Twitter_Feed.php:490, ../includes/Elements/Twitter_Feed.php:523, ../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/Woo_Product_Carousel.php:1019, ../includes/Elements/Woo_Product_Carousel.php:2252, ../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:1307, ../includes/Traits/Controls.php:1352, ../includes/Traits/Controls.php:1853, ../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
607
  msgid "Padding"
608
  msgstr ""
609
 
610
+ #: ../includes/Elements/Advanced_Data_Table.php:516, ../includes/Elements/Event_Calendar.php:1266
611
  msgid "Body"
612
  msgstr ""
613
 
614
+ #: ../includes/Elements/Advanced_Data_Table.php:572, ../includes/Elements/Data_Table.php:942, ../includes/Elements/Facebook_Feed.php:986, ../includes/Elements/Twitter_Feed.php:598, ../includes/Elements/Woo_Checkout.php:905, ../includes/Elements/Woo_Checkout.php:921, ../includes/Elements/Woo_Checkout.php:948, ../includes/Elements/Woo_Checkout.php:965, ../includes/Elements/Woo_Checkout.php:2335
615
  msgid "Link Color"
616
  msgstr ""
617
 
618
+ #: ../includes/Elements/Advanced_Data_Table.php:584
619
  msgid "Link Hover Color"
620
  msgstr ""
621
 
622
+ #: ../includes/Elements/Advanced_Data_Table.php:635
623
  msgid "Highlight"
624
  msgstr ""
625
 
626
+ #: ../includes/Elements/Advanced_Data_Table.php:638, ../includes/Elements/Adv_Tabs.php:147, ../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:200, ../includes/Elements/Flip_Box.php:429, ../includes/Elements/Flip_Box.php:648, ../includes/Elements/GravityForms.php:1016, ../includes/Elements/Info_Box.php:99, ../includes/Elements/Info_Box.php:805, ../includes/Elements/Info_Box.php:885, ../includes/Elements/Info_Box.php:1024, ../includes/Elements/Info_Box.php:1120, ../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
627
  msgid "None"
628
  msgstr ""
629
 
630
+ #: ../includes/Elements/Advanced_Data_Table.php:639
631
  msgid "First Column"
632
  msgstr ""
633
 
634
+ #: ../includes/Elements/Advanced_Data_Table.php:640
635
  msgid "Last Column"
636
  msgstr ""
637
 
638
+ #: ../includes/Elements/Advanced_Data_Table.php:641
639
  msgid "Even Column"
640
  msgstr ""
641
 
642
+ #: ../includes/Elements/Advanced_Data_Table.php:642
643
  msgid "Odd Column"
644
  msgstr ""
645
 
646
+ #: ../includes/Elements/Advanced_Data_Table.php:643
647
  msgid "Even Row"
648
  msgstr ""
649
 
650
+ #: ../includes/Elements/Advanced_Data_Table.php:644
651
  msgid "Odd Row"
652
  msgstr ""
653
 
654
+ #: ../includes/Elements/Advanced_Data_Table.php:900, ../includes/Elements/Dual_Color_Header.php:751, ../includes/Elements/Dual_Color_Header.php:831, ../includes/Elements/Flip_Box.php:123, ../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:1973, ../includes/Elements/Progress_Bar.php:384, ../includes/Elements/Progress_Bar.php:436, ../includes/Elements/Sticky_Video.php:459, ../includes/Elements/Team_Member.php:318, ../includes/Elements/Twitter_Feed.php:818, ../includes/Elements/Woo_Product_Carousel.php:1311, ../includes/Elements/Woo_Product_Carousel.php:2144, ../includes/Elements/Woo_Product_Carousel.php:2344, ../includes/Extensions/Reading_Progress.php:128
655
  msgid "Height"
656
  msgstr ""
657
 
658
+ #: ../includes/Elements/Advanced_Data_Table.php:935
659
  msgid "Margin Bottom"
660
  msgstr ""
661
 
662
+ #: ../includes/Elements/Advanced_Data_Table.php:958, ../includes/Elements/Advanced_Data_Table.php:1106, ../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:186, ../includes/Elements/Dual_Color_Header.php:626, ../includes/Elements/Event_Calendar.php:991, ../includes/Elements/Event_Calendar.php:1123, ../includes/Elements/Fancy_Text.php:170, ../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:3155, ../includes/Elements/Login_Register.php:3475, ../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:652, ../includes/Elements/Product_Grid.php:970, ../includes/Elements/Product_Grid.php:1651, ../includes/Elements/Product_Grid.php:2094, ../includes/Elements/Progress_Bar.php:317, ../includes/Elements/Progress_Bar.php:528, ../includes/Elements/Tooltip.php:172, ../includes/Elements/Woo_Product_Carousel.php:805, ../includes/Elements/Woo_Product_Carousel.php:854, ../includes/Elements/WpForms.php:384, ../includes/Elements/WpForms.php:568, ../includes/Elements/WpForms.php:1133, ../includes/Traits/Controls.php:1872
663
  msgid "Alignment"
664
  msgstr ""
665
 
666
+ #: ../includes/Elements/Advanced_Data_Table.php:1162, ../includes/Elements/Adv_Accordion.php:360, ../includes/Elements/Adv_Accordion.php:513, ../includes/Elements/Adv_Accordion.php:753, ../includes/Elements/Adv_Tabs.php:312, ../includes/Elements/Adv_Tabs.php:455, ../includes/Elements/Adv_Tabs.php:737, ../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:1653, ../includes/Elements/Content_Ticker.php:464, ../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:334, ../includes/Elements/Dual_Color_Header.php:678, ../includes/Elements/Fancy_Text.php:492, ../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:2211, ../includes/Elements/Filterable_Gallery.php:2654, ../includes/Elements/Flip_Box.php:1336, ../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:689, ../includes/Elements/Info_Box.php:751, ../includes/Elements/Info_Box.php:984, ../includes/Elements/Info_Box.php:1381, ../includes/Elements/Login_Register.php:1446, ../includes/Elements/Login_Register.php:2011, ../includes/Elements/Login_Register.php:2150, ../includes/Elements/Login_Register.php:2223, ../includes/Elements/Login_Register.php:2314, ../includes/Elements/Login_Register.php:2416, ../includes/Elements/Login_Register.php:2452, ../includes/Elements/Login_Register.php:2614, ../includes/Elements/Login_Register.php:3086, ../includes/Elements/Login_Register.php:3321, ../includes/Elements/Login_Register.php:3385, ../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:766, ../includes/Elements/Pricing_Table.php:1092, ../includes/Elements/Pricing_Table.php:1162, ../includes/Elements/Pricing_Table.php:1836, ../includes/Elements/Team_Member.php:475, ../includes/Elements/Testimonial.php:409, ../includes/Elements/Testimonial.php:507, ../includes/Elements/Testimonial.php:548, ../includes/Elements/Testimonial.php:589, ../includes/Elements/Testimonial.php:622, ../includes/Elements/Tooltip.php:355, ../includes/Elements/Tooltip.php:604, ../includes/Elements/WeForms.php:490, ../includes/Elements/WeForms.php:664, ../includes/Elements/Woo_Product_Carousel.php:913, ../includes/Elements/WpForms.php:440, ../includes/Elements/WpForms.php:490, ../includes/Elements/WpForms.php:522, ../includes/Traits/Controls.php:1319, ../includes/Traits/Controls.php:1364, ../includes/Traits/Woo_Product_Comparable.php:329, ../includes/Traits/Woo_Product_Comparable.php:1451
667
  msgid "Margin"
668
  msgstr ""
669
 
670
+ #: ../includes/Elements/Advanced_Data_Table.php:1182, ../includes/Elements/Advanced_Data_Table.php:1348, ../includes/Elements/Adv_Accordion.php:524, ../includes/Elements/Adv_Accordion.php:852, ../includes/Elements/Adv_Tabs.php:466, ../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:800, ../includes/Elements/Betterdocs_Category_Grid.php:1348, ../includes/Elements/Betterdocs_Search_Form.php:389, ../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:1223, ../includes/Elements/Content_Ticker.php:590, ../includes/Elements/Creative_Button.php:260, ../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:768, ../includes/Elements/Filterable_Gallery.php:954, ../includes/Elements/Filterable_Gallery.php:1719, ../includes/Elements/Filterable_Gallery.php:2483, ../includes/Elements/Flip_Box.php:1330, ../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:537, ../includes/Elements/Info_Box.php:765, ../includes/Elements/Info_Box.php:998, ../includes/Elements/Info_Box.php:1234, ../includes/Elements/Info_Box.php:1347, ../includes/Elements/Login_Register.php:2517, ../includes/Elements/Login_Register.php:3185, ../includes/Elements/Login_Register.php:3348, ../includes/Elements/Login_Register.php:3506, ../includes/Elements/NinjaForms.php:627, ../includes/Elements/NinjaForms.php:1020, ../includes/Elements/NinjaForms.php:1365, ../includes/Elements/Pricing_Table.php:1888, ../includes/Elements/Product_Grid.php:822, ../includes/Elements/Product_Grid.php:1463, ../includes/Elements/Product_Grid.php:1854, ../includes/Elements/Product_Grid.php:2147, ../includes/Elements/Product_Grid.php:2578, ../includes/Elements/Team_Member.php:714, ../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/Woo_Product_Carousel.php:925, ../includes/Elements/Woo_Product_Carousel.php:1361, ../includes/Elements/Woo_Product_Carousel.php:1766, ../includes/Elements/Woo_Product_Carousel.php:2210, ../includes/Elements/Woo_Product_Carousel.php:2632, ../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:1196, ../includes/Traits/Controls.php:1383, ../includes/Traits/Woo_Product_Comparable.php:827, ../includes/Traits/Woo_Product_Comparable.php:1213, ../includes/Traits/Woo_Product_Comparable.php:1631
671
  msgid "Normal"
672
  msgstr ""
673
 
674
+ #: ../includes/Elements/Advanced_Data_Table.php:1252, ../includes/Elements/Advanced_Data_Table.php:1378, ../includes/Elements/Adv_Accordion.php:582, ../includes/Elements/Adv_Accordion.php:899, ../includes/Elements/Adv_Tabs.php:533, ../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:872, ../includes/Elements/Betterdocs_Category_Grid.php:1432, ../includes/Elements/Betterdocs_Search_Form.php:473, ../includes/Elements/Caldera_Forms.php:1303, ../includes/Elements/Contact_Form_7.php:1329, ../includes/Elements/Content_Ticker.php:646, ../includes/Elements/Creative_Button.php:353, ../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:835, ../includes/Elements/Filterable_Gallery.php:1857, ../includes/Elements/Filterable_Gallery.php:2678, ../includes/Elements/Flip_Box.php:1413, ../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:598, ../includes/Elements/Info_Box.php:836, ../includes/Elements/Info_Box.php:1070, ../includes/Elements/Info_Box.php:1281, ../includes/Elements/Info_Box.php:1457, ../includes/Elements/Login_Register.php:3222, ../includes/Elements/Login_Register.php:3543, ../includes/Elements/NinjaForms.php:1452, ../includes/Elements/Pricing_Table.php:408, ../includes/Elements/Pricing_Table.php:1957, ../includes/Elements/Product_Grid.php:872, ../includes/Elements/Product_Grid.php:1532, ../includes/Elements/Product_Grid.php:1961, ../includes/Elements/Product_Grid.php:2185, ../includes/Elements/Product_Grid.php:2629, ../includes/Elements/Team_Member.php:791, ../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/Woo_Product_Carousel.php:965, ../includes/Elements/Woo_Product_Carousel.php:1443, ../includes/Elements/Woo_Product_Carousel.php:1818, ../includes/Elements/Woo_Product_Carousel.php:2273, ../includes/Elements/Woo_Product_Carousel.php:2688, ../includes/Elements/WpForms.php:1308, ../includes/Extensions/Table_of_Content.php:910, ../includes/Traits/Controls.php:1251, ../includes/Traits/Controls.php:1445, ../includes/Traits/Woo_Product_Comparable.php:927, ../includes/Traits/Woo_Product_Comparable.php:1294, ../includes/Traits/Woo_Product_Comparable.php:1681
675
  msgid "Hover"
676
  msgstr ""
677
 
678
+ #: ../includes/Elements/Advanced_Data_Table.php:1353, ../includes/Elements/Advanced_Data_Table.php:1383, ../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:806, ../includes/Elements/Betterdocs_Category_Grid.php:903, ../includes/Elements/Betterdocs_Category_Grid.php:1006, ../includes/Elements/Betterdocs_Category_Grid.php:1086, ../includes/Elements/Betterdocs_Category_Grid.php:1162, ../includes/Elements/Betterdocs_Category_Grid.php:1239, ../includes/Elements/Betterdocs_Category_Grid.php:1362, ../includes/Elements/Betterdocs_Category_Grid.php:1461, ../includes/Elements/Betterdocs_Search_Form.php:237, ../includes/Elements/Betterdocs_Search_Form.php:274, ../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:609, ../includes/Elements/Content_Ticker.php:665, ../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:473, ../includes/Elements/Dual_Color_Header.php:546, ../includes/Elements/Dual_Color_Header.php:689, ../includes/Elements/Event_Calendar.php:735, ../includes/Elements/Event_Calendar.php:775, ../includes/Elements/Event_Calendar.php:842, ../includes/Elements/Event_Calendar.php:896, ../includes/Elements/Event_Calendar.php:979, ../includes/Elements/Event_Calendar.php:1054, ../includes/Elements/Event_Calendar.php:1088, ../includes/Elements/Event_Calendar.php:1197, ../includes/Elements/Event_Calendar.php:1563, ../includes/Elements/Facebook_Feed.php:769, ../includes/Elements/Facebook_Feed.php:807, ../includes/Elements/Facebook_Feed.php:847, ../includes/Elements/Facebook_Feed.php:895, ../includes/Elements/Facebook_Feed.php:933, ../includes/Elements/Facebook_Feed.php:971, ../includes/Elements/Facebook_Feed.php:1024, ../includes/Elements/Facebook_Feed.php:1062, ../includes/Elements/Facebook_Feed.php:1100, ../includes/Elements/Facebook_Feed.php:1132, ../includes/Elements/Fancy_Text.php:346, ../includes/Elements/Feature_List.php:543, ../includes/Elements/Feature_List.php:765, ../includes/Elements/Feature_List.php:799, ../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:1988, ../includes/Elements/Filterable_Gallery.php:2035, ../includes/Elements/Filterable_Gallery.php:2176, ../includes/Elements/Filterable_Gallery.php:2363, ../includes/Elements/Flip_Box.php:945, ../includes/Elements/Flip_Box.php:1058, ../includes/Elements/Flip_Box.php:1185, ../includes/Elements/Flip_Box.php:1216, ../includes/Elements/Flip_Box.php:1254, ../includes/Elements/Flip_Box.php:1286, ../includes/Elements/Flip_Box.php:1360, ../includes/Elements/Flip_Box.php:1419, ../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:1361, ../includes/Elements/Info_Box.php:1437, ../includes/Elements/Login_Register.php:2253, ../includes/Elements/Login_Register.php:2344, ../includes/Elements/Login_Register.php:2758, ../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:889, ../includes/Elements/Pricing_Table.php:953, ../includes/Elements/Pricing_Table.php:1044, ../includes/Elements/Pricing_Table.php:1073, ../includes/Elements/Pricing_Table.php:1114, ../includes/Elements/Pricing_Table.php:1143, ../includes/Elements/Pricing_Table.php:1183, ../includes/Elements/Pricing_Table.php:1218, ../includes/Elements/Pricing_Table.php:1375, ../includes/Elements/Pricing_Table.php:1507, ../includes/Elements/Product_Grid.php:1292, ../includes/Elements/Product_Grid.php:1859, ../includes/Elements/Product_Grid.php:1966, ../includes/Elements/Product_Grid.php:2303, ../includes/Elements/Product_Grid.php:2482, ../includes/Elements/Product_Grid.php:2522, ../includes/Elements/Product_Grid.php:2583, ../includes/Elements/Product_Grid.php:2634, ../includes/Elements/Product_Grid.php:2787, ../includes/Elements/Progress_Bar.php:407, ../includes/Elements/Progress_Bar.php:467, ../includes/Elements/Twitter_Feed.php:682, ../includes/Elements/Twitter_Feed.php:711, ../includes/Elements/Twitter_Feed.php:741, ../includes/Elements/Twitter_Feed.php:911, ../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/Woo_Product_Carousel.php:1171, ../includes/Elements/Woo_Product_Carousel.php:1366, ../includes/Elements/Woo_Product_Carousel.php:1448, ../includes/Elements/Woo_Product_Carousel.php:1668, ../includes/Elements/Woo_Product_Carousel.php:1709, ../includes/Elements/Woo_Product_Carousel.php:1771, ../includes/Elements/Woo_Product_Carousel.php:1823, ../includes/Elements/Woo_Product_Carousel.php:1976, ../includes/Elements/Woo_Product_Carousel.php:2217, ../includes/Elements/Woo_Product_Carousel.php:2280, ../includes/Elements/Woo_Product_Carousel.php:2313, ../includes/Elements/Woo_Product_Carousel.php:2651, ../includes/Elements/Woo_Product_Carousel.php:2707, ../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
679
  msgid "Color"
680
  msgstr ""
681
 
682
+ #: ../includes/Elements/Advanced_Data_Table.php:1565
683
  msgid "No content found"
684
  msgstr ""
685
 
695
  msgid "Accordion"
696
  msgstr ""
697
 
698
+ #: ../includes/Elements/Adv_Accordion.php:116, ../includes/Elements/Login_Register.php:2933, ../includes/Elements/Woo_Product_Carousel.php:2543, ../includes/Traits/Elements.php:286, ../includes/templates/admin/elements.php:83
699
  msgid "Toggle"
700
  msgstr ""
701
 
703
  msgid "Select Accordion Tab Title Tag"
704
  msgstr ""
705
 
706
+ #: ../includes/Elements/Adv_Accordion.php:127, ../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:138, ../includes/Elements/Filterable_Gallery.php:367, ../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:138, ../includes/Elements/Tooltip.php:114, ../includes/Elements/Woo_Product_Carousel.php:257, ../includes/Extensions/Table_of_Content.php:147, ../includes/Traits/Controls.php:800
707
  msgid "H1"
708
  msgstr ""
709
 
710
+ #: ../includes/Elements/Adv_Accordion.php:128, ../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:139, ../includes/Elements/Filterable_Gallery.php:368, ../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:139, ../includes/Elements/Tooltip.php:115, ../includes/Elements/Woo_Product_Carousel.php:258, ../includes/Extensions/Table_of_Content.php:148, ../includes/Traits/Controls.php:801
711
  msgid "H2"
712
  msgstr ""
713
 
714
+ #: ../includes/Elements/Adv_Accordion.php:129, ../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:140, ../includes/Elements/Filterable_Gallery.php:369, ../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:140, ../includes/Elements/Tooltip.php:116, ../includes/Elements/Woo_Product_Carousel.php:259, ../includes/Extensions/Table_of_Content.php:149, ../includes/Traits/Controls.php:802
715
  msgid "H3"
716
  msgstr ""
717
 
718
+ #: ../includes/Elements/Adv_Accordion.php:130, ../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:141, ../includes/Elements/Filterable_Gallery.php:370, ../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:141, ../includes/Elements/Tooltip.php:117, ../includes/Elements/Woo_Product_Carousel.php:260, ../includes/Extensions/Table_of_Content.php:150, ../includes/Traits/Controls.php:803
719
  msgid "H4"
720
  msgstr ""
721
 
722
+ #: ../includes/Elements/Adv_Accordion.php:131, ../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:142, ../includes/Elements/Filterable_Gallery.php:371, ../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:142, ../includes/Elements/Tooltip.php:118, ../includes/Elements/Woo_Product_Carousel.php:261, ../includes/Extensions/Table_of_Content.php:151, ../includes/Traits/Controls.php:804
723
  msgid "H5"
724
  msgstr ""
725
 
726
+ #: ../includes/Elements/Adv_Accordion.php:132, ../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:143, ../includes/Elements/Filterable_Gallery.php:372, ../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/Elements/Progress_Bar.php:143, ../includes/Elements/Tooltip.php:119, ../includes/Elements/Woo_Product_Carousel.php:262, ../includes/Extensions/Table_of_Content.php:152, ../includes/Traits/Controls.php:805
727
  msgid "H6"
728
  msgstr ""
729
 
730
+ #: ../includes/Elements/Adv_Accordion.php:133, ../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:144, ../includes/Elements/Filterable_Gallery.php:373, ../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/Woo_Product_Carousel.php:263, ../includes/Traits/Controls.php:806
731
  msgid "Span"
732
  msgstr ""
733
 
734
+ #: ../includes/Elements/Adv_Accordion.php:134, ../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:145, ../includes/Elements/Filterable_Gallery.php:374, ../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/Elements/Tooltip.php:122, ../includes/Elements/Woo_Product_Carousel.php:264, ../includes/Traits/Controls.php:807
735
  msgid "P"
736
  msgstr ""
737
 
738
+ #: ../includes/Elements/Adv_Accordion.php:135, ../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:146, ../includes/Elements/Filterable_Gallery.php:375, ../includes/Elements/Flip_Box.php:306, ../includes/Elements/Flip_Box.php:535, ../includes/Elements/Image_Accordion.php:164, ../includes/Elements/Info_Box.php:242, ../includes/Elements/Woo_Product_Carousel.php:265, ../includes/Traits/Controls.php:808
739
  msgid "Div"
740
  msgstr ""
741
 
755
  msgid "Toggle Speed (ms)"
756
  msgstr ""
757
 
758
+ #: ../includes/Elements/Adv_Accordion.php:195, ../includes/Elements/Countdown.php:142, ../includes/Elements/Cta_Box.php:72, ../includes/Elements/Dual_Color_Header.php:69, ../includes/Elements/Facebook_Feed.php:209, ../includes/Elements/Feature_List.php:65, ../includes/Elements/Tooltip.php:63
759
  msgid "Content Settings"
760
  msgstr ""
761
 
767
  msgid "Enable Tab Icon"
768
  msgstr ""
769
 
770
+ #: ../includes/Elements/Adv_Accordion.php:224, ../includes/Elements/Adv_Tabs.php:151, ../includes/Elements/Adv_Tabs.php:166, ../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:1065, ../includes/Elements/Betterdocs_Category_Grid.php:1074, ../includes/Elements/Betterdocs_Category_Grid.php:1206, ../includes/Elements/Betterdocs_Category_Grid.php:1313, ../includes/Elements/Creative_Button.php:131, ../includes/Elements/Cta_Box.php:151, ../includes/Elements/Data_Table.php:140, ../includes/Elements/Data_Table.php:159, ../includes/Elements/Dual_Color_Header.php:118, ../includes/Elements/Dual_Color_Header.php:273, ../includes/Elements/Feature_List.php:78, ../includes/Elements/Feature_List.php:94, ../includes/Elements/Feature_List.php:504, ../includes/Elements/Flip_Box.php:202, ../includes/Elements/Flip_Box.php:228, ../includes/Elements/Flip_Box.php:431, ../includes/Elements/Flip_Box.php:457, ../includes/Elements/Info_Box.php:107, ../includes/Elements/Info_Box.php:176, ../includes/Elements/Info_Box.php:441, ../includes/Elements/Pricing_Table.php:172, ../includes/Elements/Team_Member.php:166, ../includes/Elements/Tooltip.php:74, ../includes/Elements/Tooltip.php:144, ../includes/Elements/Twitter_Feed.php:877, ../includes/Extensions/Table_of_Content.php:622, ../includes/Traits/Controls.php:712, ../includes/Traits/Controls.php:765
771
  msgid "Icon"
772
  msgstr ""
773
 
779
  msgid "Content Type"
780
  msgstr ""
781
 
782
+ #: ../includes/Elements/Adv_Accordion.php:255, ../includes/Elements/Adv_Tabs.php:123, ../includes/Elements/Adv_Tabs.php:210, ../includes/Elements/Adv_Tabs.php:682, ../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:1473, ../includes/Elements/Facebook_Feed.php:948, ../includes/Elements/Feature_List.php:193, ../includes/Elements/Feature_List.php:697, ../includes/Elements/Flip_Box.php:157, ../includes/Elements/Image_Accordion.php:97, ../includes/Elements/Image_Accordion.php:208, ../includes/Elements/Image_Accordion.php:516, ../includes/Elements/Info_Box.php:252, ../includes/Elements/Product_Grid.php:2399, ../includes/Elements/Tooltip.php:96, ../includes/Elements/Tooltip.php:268, ../includes/Elements/Woo_Product_Carousel.php:1572
783
  msgid "Content"
784
  msgstr ""
785
 
795
  msgid "Tab Content"
796
  msgstr ""
797
 
798
+ #: ../includes/Elements/Adv_Accordion.php:281, ../includes/Elements/Adv_Tabs.php:234, ../includes/Elements/Feature_List.php:195
799
  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."
800
  msgstr ""
801
 
819
  msgid "Tab Style"
820
  msgstr ""
821
 
822
+ #: ../includes/Elements/Adv_Accordion.php:416, ../includes/Elements/Adv_Accordion.php:793, ../includes/Elements/Adv_Tabs.php:397, ../includes/Elements/Creative_Button.php:499, ../includes/Elements/Data_Table.php:679, ../includes/Elements/Dual_Color_Header.php:397, ../includes/Elements/Dual_Color_Header.php:584, ../includes/Elements/Event_Calendar.php:1444, ../includes/Elements/Event_Calendar.php:1511, ../includes/Elements/Feature_List.php:577, ../includes/Elements/Filterable_Gallery.php:1774, ../includes/Elements/Filterable_Gallery.php:2136, ../includes/Elements/Filterable_Gallery.php:2573, ../includes/Elements/Flip_Box.php:961, ../includes/Elements/Flip_Box.php:1074, ../includes/Elements/Info_Box.php:936, ../includes/Elements/Info_Box.php:1179, ../includes/Elements/Login_Register.php:2822, ../includes/Elements/Pricing_Table.php:1242, ../includes/Elements/Pricing_Table.php:1677, ../includes/Elements/Pricing_Table.php:1848, ../includes/Elements/Product_Grid.php:1242, ../includes/Elements/Product_Grid.php:2735, ../includes/Elements/Team_Member.php:643, ../includes/Elements/Tooltip.php:201, ../includes/Elements/Woo_Product_Carousel.php:1140, ../includes/Elements/Woo_Product_Carousel.php:1924, ../includes/Elements/Woo_Product_Carousel.php:2572, ../includes/Extensions/Table_of_Content.php:658, ../includes/Traits/Woo_Product_Comparable.php:1334
823
  msgid "Icon Size"
824
  msgstr ""
825
 
831
  msgid "Distance"
832
  msgstr ""
833
 
834
+ #: ../includes/Elements/Adv_Accordion.php:548, ../includes/Elements/Adv_Accordion.php:608, ../includes/Elements/Adv_Accordion.php:669, ../includes/Elements/Adv_Tabs.php:500, ../includes/Elements/Adv_Tabs.php:567, ../includes/Elements/Adv_Tabs.php:636, ../includes/Elements/Dual_Color_Header.php:421, ../includes/Elements/Dual_Color_Header.php:610, ../includes/Elements/Event_Calendar.php:1462, ../includes/Elements/Feature_List.php:122, ../includes/Elements/Info_Box.php:772, ../includes/Elements/Info_Box.php:851, ../includes/Elements/Info_Box.php:1005, ../includes/Elements/Info_Box.php:1085, ../includes/Elements/Post_Grid.php:947, ../includes/Elements/Pricing_Table.php:343, ../includes/Elements/Pricing_Table.php:1741, ../includes/Elements/Team_Member.php:719, ../includes/Elements/Twitter_Feed.php:618, ../includes/Elements/Woo_Checkout.php:1186, ../includes/Elements/Woo_Checkout.php:1472
835
  msgid "Icon Color"
836
  msgstr ""
837
 
875
  msgid "Enable Icon"
876
  msgstr ""
877
 
878
+ #: ../includes/Elements/Adv_Tabs.php:102, ../includes/Elements/Betterdocs_Category_Grid.php:1328, ../includes/Elements/Creative_Button.php:143, ../includes/Elements/Data_Table.php:701, ../includes/Elements/Feature_List.php:301, ../includes/Elements/Filterable_Gallery.php:747, ../includes/Elements/Flip_Box.php:708, ../includes/Elements/Info_Box.php:122, ../includes/Elements/Info_Box.php:453, ../includes/Elements/Pricing_Table.php:541
879
  msgid "Icon Position"
880
  msgstr ""
881
 
882
+ #: ../includes/Elements/Adv_Tabs.php:107, ../includes/Elements/Feature_List.php:293
883
  msgid "Stacked"
884
  msgstr ""
885
 
886
+ #: ../includes/Elements/Adv_Tabs.php:108, ../includes/Elements/Contact_Form_7.php:831, ../includes/Elements/Countdown.php:85, ../includes/Elements/Login_Register.php:3124, ../includes/Elements/Login_Register.php:3424
887
  msgid "Inline"
888
  msgstr ""
889
 
891
  msgid "Set as Default"
892
  msgstr ""
893
 
894
+ #: ../includes/Elements/Adv_Tabs.php:142, ../includes/Elements/Feature_List.php:74, ../includes/Elements/Flip_Box.php:197, ../includes/Elements/Flip_Box.php:426
895
  msgid "Icon Type"
896
  msgstr ""
897
 
898
+ #: ../includes/Elements/Adv_Tabs.php:155, ../includes/Elements/Adv_Tabs.php:182, ../includes/Elements/Data_Table.php:144, ../includes/Elements/Data_Table.php:176, ../includes/Elements/Feature_List.php:82, ../includes/Elements/Feature_List.php:169, ../includes/Elements/Filterable_Gallery.php:563, ../includes/Elements/Flip_Box.php:201, ../includes/Elements/Flip_Box.php:430, ../includes/Elements/Info_Box.php:111, ../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:708, ../includes/Traits/Woo_Product_Comparable.php:40, ../includes/Traits/Woo_Product_Comparable.php:73
899
  msgid "Image"
900
  msgstr ""
901
 
911
  msgid "Tab Title 3"
912
  msgstr ""
913
 
914
+ #: ../includes/Elements/Adv_Tabs.php:293, ../includes/Elements/Event_Calendar.php:141, ../includes/Elements/Image_Accordion.php:61, ../includes/Elements/Image_Accordion.php:296, ../includes/Elements/Login_Register.php:236, ../includes/Elements/Login_Register.php:1389, ../includes/Elements/Progress_Bar.php:306, ../includes/Elements/Progress_Bar.php:517, ../includes/Traits/Admin.php:111
915
  msgid "General"
916
  msgstr ""
917
 
935
  msgid "Caret Size"
936
  msgstr ""
937
 
938
+ #: ../includes/Elements/Adv_Tabs.php:853, ../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:194, ../includes/Elements/Content_Ticker.php:227, ../includes/Elements/Content_Ticker.php:242, ../includes/Elements/Content_Ticker.php:277, ../includes/Elements/Data_Table.php:1035, ../includes/Elements/Facebook_Feed.php:388, ../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: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: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:220, ../includes/Elements/Pricing_Table.php:1879, ../includes/Elements/Team_Member.php:705, ../includes/Elements/Woo_Product_Carousel.php:349, ../includes/Elements/Woo_Product_Carousel.php:555, ../includes/Elements/Woo_Product_Carousel.php:587, ../includes/Elements/Woo_Product_Carousel.php:602, ../includes/Elements/Woo_Product_Carousel.php:637, ../includes/Elements/Woo_Product_Carousel.php:649, ../includes/Elements/Woo_Product_Carousel.php:2113, ../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
939
  msgid "Yes"
940
  msgstr ""
941
 
942
+ #: ../includes/Elements/Adv_Tabs.php:854, ../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:195, ../includes/Elements/Content_Ticker.php:228, ../includes/Elements/Content_Ticker.php:243, ../includes/Elements/Content_Ticker.php:278, ../includes/Elements/Cta_Box.php:685, ../includes/Elements/Data_Table.php:1036, ../includes/Elements/Facebook_Feed.php:392, ../includes/Elements/Feature_List.php:363, ../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:360, ../includes/Elements/Info_Box.php:374, ../includes/Elements/Login_Register.php:410, ../includes/Elements/Login_Register.php:488, ../includes/Elements/Login_Register.php:792, ../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:221, ../includes/Elements/Pricing_Table.php:1880, ../includes/Elements/Team_Member.php:706, ../includes/Elements/Woo_Product_Carousel.php:350, ../includes/Elements/Woo_Product_Carousel.php:556, ../includes/Elements/Woo_Product_Carousel.php:588, ../includes/Elements/Woo_Product_Carousel.php:603, ../includes/Elements/Woo_Product_Carousel.php:638, ../includes/Elements/Woo_Product_Carousel.php:650, ../includes/Elements/Woo_Product_Carousel.php:2114, ../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
943
  msgid "No"
944
  msgstr ""
945
 
946
+ #: ../includes/Elements/Betterdocs_Category_Box.php:118, ../includes/Elements/Betterdocs_Category_Grid.php:120
947
  msgid "Layout Options"
948
  msgstr ""
949
 
950
+ #: ../includes/Elements/Betterdocs_Category_Box.php:125, ../includes/Elements/Betterdocs_Category_Grid.php:127
951
  msgid "Select Layout"
952
  msgstr ""
953
 
954
+ #: ../includes/Elements/Betterdocs_Category_Box.php:136
955
  msgid "Box Column"
956
  msgstr ""
957
 
958
+ #: ../includes/Elements/Betterdocs_Category_Box.php:156, ../includes/Elements/Betterdocs_Category_Grid.php:188, ../includes/Elements/Betterdocs_Category_Grid.php:1301, ../includes/Elements/Dual_Color_Header.php:92, ../includes/Elements/Twitter_Feed.php:280
959
  msgid "Show Icon"
960
  msgstr ""
961
 
962
+ #: ../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:1303, ../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:255, ../includes/Elements/Countdown.php:503, ../includes/Elements/Creative_Button.php:252, ../includes/Elements/Cta_Box.php:134, ../includes/Elements/Cta_Box.php:281, ../includes/Elements/Dual_Color_Header.php:95, ../includes/Elements/Dual_Color_Header.php:105, ../includes/Elements/Facebook_Feed.php:306, ../includes/Elements/Facebook_Feed.php:318, ../includes/Elements/Facebook_Feed.php:333, ../includes/Elements/Facebook_Feed.php:348, ../includes/Elements/Facebook_Feed.php:363, ../includes/Elements/Facebook_Feed.php:429, ../includes/Elements/Feature_List.php:362, ../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:291, ../includes/Elements/Login_Register.php:331, ../includes/Elements/Login_Register.php:622, ../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:516, ../includes/Elements/Pricing_Table.php:1631, ../includes/Elements/Product_Grid.php:518, ../includes/Elements/Product_Grid.php:620, ../includes/Elements/Product_Grid.php:1455, ../includes/Elements/Product_Grid.php:2045, ../includes/Elements/Sticky_Video.php:362, ../includes/Elements/Twitter_Feed.php:379, ../includes/Elements/Woo_Product_Carousel.php:243, ../includes/Elements/Woo_Product_Carousel.php:616, ../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:786, ../includes/Traits/Controls.php:834, ../includes/Traits/Controls.php:902, ../includes/Traits/Controls.php:937, ../includes/Traits/Controls.php:964, ../includes/Traits/Controls.php:1015, ../includes/Traits/Controls.php:1043, ../includes/Traits/Controls.php:1059, ../includes/Traits/Controls.php:1074
963
  msgid "Show"
964
  msgstr ""
965
 
966
+ #: ../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:1304, ../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:256, ../includes/Elements/Countdown.php:504, ../includes/Elements/Creative_Button.php:253, ../includes/Elements/Cta_Box.php:135, ../includes/Elements/Cta_Box.php:282, ../includes/Elements/Dual_Color_Header.php:96, ../includes/Elements/Dual_Color_Header.php:106, ../includes/Elements/Facebook_Feed.php:307, ../includes/Elements/Facebook_Feed.php:319, ../includes/Elements/Facebook_Feed.php:334, ../includes/Elements/Facebook_Feed.php:349, ../includes/Elements/Facebook_Feed.php:364, ../includes/Elements/Facebook_Feed.php:430, ../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:292, ../includes/Elements/Login_Register.php:330, ../includes/Elements/Login_Register.php:530, ../includes/Elements/Login_Register.php:621, ../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:517, ../includes/Elements/Pricing_Table.php:1632, ../includes/Elements/Product_Grid.php:519, ../includes/Elements/Product_Grid.php:621, ../includes/Elements/Product_Grid.php:1456, ../includes/Elements/Product_Grid.php:2046, ../includes/Elements/Sticky_Video.php:363, ../includes/Elements/Twitter_Feed.php:380, ../includes/Elements/Woo_Product_Carousel.php:244, ../includes/Elements/Woo_Product_Carousel.php:617, ../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:787, ../includes/Traits/Controls.php:835, ../includes/Traits/Controls.php:903, ../includes/Traits/Controls.php:938, ../includes/Traits/Controls.php:965, ../includes/Traits/Controls.php:1016, ../includes/Traits/Controls.php:1044, ../includes/Traits/Controls.php:1060, ../includes/Traits/Controls.php:1075
967
  msgid "Hide"
968
  msgstr ""
969
 
970
+ #: ../includes/Elements/Betterdocs_Category_Box.php:168, ../includes/Elements/Betterdocs_Category_Grid.php:203, ../includes/Elements/Woo_Product_Carousel.php:241, ../includes/Traits/Controls.php:784
971
  msgid "Show Title"
972
  msgstr ""
973
 
974
+ #: ../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:152
975
  msgid "Select Tag"
976
  msgstr ""
977
 
978
+ #: ../includes/Elements/Betterdocs_Category_Box.php:203, ../includes/Elements/Betterdocs_Category_Grid.php:242
979
  msgid "Show Count"
980
  msgstr ""
981
 
982
+ #: ../includes/Elements/Betterdocs_Category_Box.php:215, ../includes/Elements/Progress_Bar.php:243
983
  msgid "Prefix"
984
  msgstr ""
985
 
986
+ #: ../includes/Elements/Betterdocs_Category_Box.php:228
987
  msgid "Suffix"
988
  msgstr ""
989
 
990
+ #: ../includes/Elements/Betterdocs_Category_Box.php:231
991
  msgid "articles"
992
  msgstr ""
993
 
994
+ #: ../includes/Elements/Betterdocs_Category_Box.php:250, ../includes/Elements/Flip_Box.php:649
995
  msgid "Box"
996
  msgstr ""
997
 
998
+ #: ../includes/Elements/Betterdocs_Category_Box.php:258
999
  msgid "Box Spacing"
1000
  msgstr ""
1001
 
1002
+ #: ../includes/Elements/Betterdocs_Category_Box.php:270
1003
  msgid "Box Padding"
1004
  msgstr ""
1005
 
1006
+ #: ../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:479, ../includes/Elements/Filterable_Gallery.php:1916, ../includes/Elements/Info_Box.php:1487
1007
  msgid "Transition"
1008
  msgstr ""
1009
 
1010
+ #: ../includes/Elements/Betterdocs_Category_Box.php:415, ../includes/Elements/Betterdocs_Category_Box.php:635, ../includes/Elements/Betterdocs_Category_Box.php:807
1011
  msgid "Area"
1012
  msgstr ""
1013
 
1014
+ #: ../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:777, ../includes/Elements/Betterdocs_Category_Grid.php:1097, ../includes/Elements/Betterdocs_Category_Grid.php:1250, ../includes/Elements/Betterdocs_Search_Form.php:248, ../includes/Elements/Caldera_Forms.php:945, ../includes/Elements/Contact_Form_7.php:972, ../includes/Elements/Feature_List.php:557, ../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:2736, ../includes/Elements/Login_Register.php:3345, ../includes/Elements/NinjaForms.php:992, ../includes/Elements/Progress_Bar.php:551, ../includes/Elements/Woo_Product_Carousel.php:2166, ../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
1015
  msgid "Size"
1016
  msgstr ""
1017
 
1018
+ #: ../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:1116, ../includes/Elements/Betterdocs_Category_Grid.php:1194, ../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:1486, ../includes/Elements/Feature_List.php:658, ../includes/Elements/Filterable_Gallery.php:2419, ../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:2403, ../includes/Elements/Login_Register.php:2605, ../includes/Elements/Login_Register.php:3078, ../includes/Elements/Login_Register.php:3377, ../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/Woo_Product_Carousel.php:2189, ../includes/Elements/WpForms.php:765, ../includes/Elements/WpForms.php:871
1019
  msgid "Spacing"
1020
  msgstr ""
1021
 
1022
+ #: ../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:1146, ../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:718, ../includes/Elements/Event_Calendar.php:1377, ../includes/Elements/Feature_List.php:183, ../includes/Elements/Feature_List.php:185, ../includes/Elements/Feature_List.php:737, ../includes/Elements/Flip_Box.php:650, ../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:2214, ../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:136, ../includes/Elements/Product_Grid.php:2328, ../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/Woo_Product_Carousel.php:1501, ../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
1023
  msgid "Title"
1024
  msgstr ""
1025
 
1026
+ #: ../includes/Elements/Betterdocs_Category_Box.php:646
1027
  msgid "Area Size"
1028
  msgstr ""
1029
 
1030
+ #: ../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:443, ../includes/Elements/Betterdocs_Search_Form.php:541
1031
  msgid "Count"
1032
  msgstr ""
1033
 
1034
+ #: ../includes/Elements/Betterdocs_Category_Box.php:87, ../includes/Elements/Betterdocs_Category_Grid.php:90, ../includes/Elements/Betterdocs_Search_Form.php:83, ../includes/Elements/Caldera_Forms.php:67, ../includes/Elements/Career_Page.php:49, ../includes/Elements/Contact_Form_7.php:109, ../includes/Elements/Crowdfundly_All_Campaign.php:38, ../includes/Elements/Crowdfundly_Organization.php:38, ../includes/Elements/Crowdfundly_Single_Campaign.php:38, ../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/Woo_Product_Carousel.php:202, ../includes/Elements/WpForms.php:69, ../includes/Traits/Woo_Product_Comparable.php:121
1035
  msgid "Warning!"
1036
  msgstr ""
1037
 
1038
+ #: ../includes/Elements/Betterdocs_Category_Box.php:95, ../includes/Elements/Betterdocs_Category_Grid.php:98, ../includes/Elements/Betterdocs_Search_Form.php:91
1039
  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."
1040
  msgstr ""
1041
 
1042
+ #: ../includes/Elements/Betterdocs_Category_Box.php:1187, ../includes/Elements/Betterdocs_Category_Box.php:1152, ../includes/Elements/Betterdocs_Category_Grid.php:1685, ../includes/Elements/Betterdocs_Category_Grid.php:1652
1043
  msgid "File Not Found"
1044
  msgstr ""
1045
 
1046
+ #: ../includes/Elements/Betterdocs_Category_Box.php:1180, ../includes/Elements/Betterdocs_Category_Box.php:1145, ../includes/Elements/Betterdocs_Category_Grid.php:1679, ../includes/Elements/Betterdocs_Category_Grid.php:1646, ../includes/Elements/Post_Grid.php:1041, ../includes/Elements/Post_Timeline.php:460, ../includes/Elements/Product_Grid.php:2941
1047
  msgid "<p class=\"no-posts-found\">No posts found!</p>"
1048
  msgstr ""
1049
 
1079
  msgid "Show Button"
1080
  msgstr ""
1081
 
1082
+ #: ../includes/Elements/Betterdocs_Category_Grid.php:282, ../includes/Elements/Creative_Button.php:80, ../includes/Elements/Cta_Box.php:256, ../includes/Elements/Filterable_Gallery.php:689, ../includes/Elements/Flip_Box.php:681, ../includes/Elements/Info_Box.php:403, ../includes/Elements/Login_Register.php:636, ../includes/Elements/Login_Register.php:1111, ../includes/Elements/Pricing_Table.php:579, ../includes/Elements/Woo_Checkout.php:370, ../includes/Traits/Controls.php:947
1083
  msgid "Button Text"
1084
  msgstr ""
1085
 
1095
  msgid "Grid Spacing"
1096
  msgstr ""
1097
 
1098
+ #: ../includes/Elements/Betterdocs_Category_Grid.php:829, ../includes/Elements/Betterdocs_Category_Grid.php:926
1099
  msgid "Ticker Background"
1100
  msgstr ""
1101
 
1102
+ #: ../includes/Elements/Betterdocs_Category_Grid.php:979, ../includes/Elements/Betterdocs_Category_Grid.php:990, ../includes/Elements/Event_Calendar.php:527, ../includes/Elements/Feature_List.php:379, ../includes/Elements/Product_Grid.php:229, ../includes/Elements/Twitter_Feed.php:158, ../includes/Extensions/Table_of_Content.php:801
1103
  msgid "List"
1104
  msgstr ""
1105
 
1106
+ #: ../includes/Elements/Betterdocs_Category_Grid.php:1017, ../includes/Elements/Filterable_Gallery.php:1228, ../includes/Elements/Filterable_Gallery.php:1608, ../includes/Elements/Filterable_Gallery.php:2374, ../includes/Elements/Pricing_Table.php:1775, ../includes/Elements/Product_Grid.php:2715, ../includes/Elements/Twitter_Feed.php:753, ../includes/Elements/Woo_Product_Carousel.php:1904
1107
  msgid "Hover Color"
1108
  msgstr ""
1109
 
1110
+ #: ../includes/Elements/Betterdocs_Category_Grid.php:1028
1111
  msgid "List Item Spacing"
1112
  msgstr ""
1113
 
1114
+ #: ../includes/Elements/Betterdocs_Category_Grid.php:1052
1115
  msgid "List Area Padding"
1116
  msgstr ""
1117
 
1118
+ #: ../includes/Elements/Betterdocs_Category_Grid.php:1135
1119
  msgid "Nested List"
1120
  msgstr ""
1121
 
1122
+ #: ../includes/Elements/Betterdocs_Category_Grid.php:1215
1123
  msgid "Collapse Icon"
1124
  msgstr ""
1125
 
1126
+ #: ../includes/Elements/Betterdocs_Category_Grid.php:1227
1127
  msgid "Open Icon"
1128
  msgstr ""
1129
 
1130
+ #: ../includes/Elements/Betterdocs_Category_Grid.php:1269, ../includes/Elements/Betterdocs_Category_Grid.php:1418
1131
  msgid "Area Spacing"
1132
  msgstr ""
1133
 
1134
+ #: ../includes/Elements/Betterdocs_Category_Grid.php:1332, ../includes/Elements/Creative_Button.php:147, ../includes/Elements/Filterable_Gallery.php:752, ../includes/Elements/Flip_Box.php:713, ../includes/Elements/Info_Box.php:457, ../includes/Elements/Pricing_Table.php:545
1135
  msgid "Before"
1136
  msgstr ""
1137
 
1138
+ #: ../includes/Elements/Betterdocs_Category_Grid.php:1333, ../includes/Elements/Creative_Button.php:148, ../includes/Elements/Filterable_Gallery.php:751, ../includes/Elements/Flip_Box.php:712, ../includes/Elements/Info_Box.php:458, ../includes/Elements/Pricing_Table.php:546
1139
  msgid "After"
1140
  msgstr ""
1141
 
1142
+ #: ../includes/Elements/Betterdocs_Category_Grid.php:1534, ../includes/Elements/Creative_Button.php:440, ../includes/Elements/Pricing_Table.php:841, ../includes/Elements/WeForms.php:626, ../includes/Traits/Controls.php:1498
1143
  msgid "Button Alignment"
1144
  msgstr ""
1145
 
1146
+ #: ../includes/Elements/Betterdocs_Search_Form.php:107
1147
  msgid "Search Box"
1148
  msgstr ""
1149
 
1150
+ #: ../includes/Elements/Betterdocs_Search_Form.php:148
1151
  msgid "Search Field"
1152
  msgstr ""
1153
 
1154
+ #: ../includes/Elements/Betterdocs_Search_Form.php:155
1155
  msgid "Field Background Color"
1156
  msgstr ""
1157
 
1158
+ #: ../includes/Elements/Betterdocs_Search_Form.php:166
1159
  msgid "Field Color"
1160
  msgstr ""
1161
 
1162
+ #: ../includes/Elements/Betterdocs_Search_Form.php:185
1163
  msgid "Field Padding"
1164
  msgstr ""
1165
 
1166
+ #: ../includes/Elements/Betterdocs_Search_Form.php:219, ../includes/Elements/Facebook_Feed.php:518, ../includes/Elements/Post_Grid.php:392, ../includes/Elements/Pricing_Table.php:472, ../includes/Elements/Pricing_Table.php:1450, ../includes/Elements/Woo_Product_Carousel.php:2376
1167
  msgid "Shadow"
1168
  msgstr ""
1169
 
1170
+ #: ../includes/Elements/Betterdocs_Search_Form.php:228
1171
  msgid "Search Icon"
1172
  msgstr ""
1173
 
1174
+ #: ../includes/Elements/Betterdocs_Search_Form.php:265
1175
  msgid "Close Icon"
1176
  msgstr ""
1177
 
1178
+ #: ../includes/Elements/Betterdocs_Search_Form.php:285, ../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:1360, ../includes/Elements/Content_Ticker.php:677, ../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:420, ../includes/Elements/Cta_Box.php:809, ../includes/Elements/Cta_Box.php:978, ../includes/Elements/Event_Calendar.php:666, ../includes/Elements/Facebook_Feed.php:728, ../includes/Elements/Filterable_Gallery.php:2721, ../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:2001, ../includes/Elements/Product_Grid.php:737, ../includes/Elements/Product_Grid.php:877, ../includes/Elements/Product_Grid.php:1581, ../includes/Elements/Product_Grid.php:1825, ../includes/Elements/Product_Grid.php:2005, ../includes/Elements/Product_Grid.php:2214, ../includes/Elements/Product_Grid.php:2258, ../includes/Elements/Product_Grid.php:2452, ../includes/Elements/Product_Grid.php:2546, ../includes/Elements/Product_Grid.php:2658, ../includes/Elements/Sticky_Video.php:579, ../includes/Elements/Twitter_Feed.php:629, ../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/Woo_Product_Carousel.php:970, ../includes/Elements/Woo_Product_Carousel.php:1346, ../includes/Elements/Woo_Product_Carousel.php:1470, ../includes/Elements/Woo_Product_Carousel.php:1638, ../includes/Elements/Woo_Product_Carousel.php:1733, ../includes/Elements/Woo_Product_Carousel.php:1847, ../includes/Elements/Woo_Product_Carousel.php:2292, ../includes/Elements/Woo_Product_Carousel.php:2719, ../includes/Elements/WpForms.php:1021, ../includes/Elements/WpForms.php:1339, ../includes/Traits/Controls.php:1474, ../includes/Traits/Woo_Product_Comparable.php:1712
1179
  msgid "Border Color"
1180
  msgstr ""
1181
 
1182
+ #: ../includes/Elements/Betterdocs_Search_Form.php:304
1183
  msgid "Search Result Box"
1184
  msgstr ""
1185
 
1186
+ #: ../includes/Elements/Betterdocs_Search_Form.php:333
1187
  msgid "Max Width"
1188
  msgstr ""
1189
 
1190
+ #: ../includes/Elements/Betterdocs_Search_Form.php:380
1191
  msgid "Search Result List"
1192
  msgstr ""
1193
 
1194
+ #: ../includes/Elements/Betterdocs_Search_Form.php:395, ../includes/Elements/Betterdocs_Search_Form.php:501
1195
  msgid "Item"
1196
  msgstr ""
1197
 
1198
+ #: ../includes/Elements/Betterdocs_Search_Form.php:411, ../includes/Elements/Betterdocs_Search_Form.php:460, ../includes/Elements/Betterdocs_Search_Form.php:521, ../includes/Elements/Betterdocs_Search_Form.php:550
1199
  msgid "Item Color"
1200
  msgstr ""
1201
 
1207
  msgid "Custom Title & Description"
1208
  msgstr ""
1209
 
1210
+ #: ../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:790, ../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:132, ../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
1211
  msgid "Description"
1212
  msgstr ""
1213
 
1214
+ #: ../includes/Elements/Caldera_Forms.php:149, ../includes/Elements/Caldera_Forms.php:515, ../includes/Elements/Contact_Form_7.php:202, ../includes/Elements/Contact_Form_7.php:805, ../includes/Elements/FluentForm.php:163, ../includes/Elements/FluentForm.php:534, ../includes/Elements/Formstack.php:232, ../includes/Elements/Formstack.php:789, ../includes/Elements/GravityForms.php:219, ../includes/Elements/GravityForms.php:574, ../includes/Elements/Login_Register.php:536, ../includes/Elements/NinjaForms.php:170, ../includes/Elements/NinjaForms.php:548, ../includes/Elements/WpForms.php:177, ../includes/Elements/WpForms.php:515
1215
  msgid "Labels"
1216
  msgstr ""
1217
 
1219
  msgid "Errors"
1220
  msgstr ""
1221
 
1222
+ #: ../includes/Elements/Caldera_Forms.php:187, ../includes/Elements/Caldera_Forms.php:1420, ../includes/Elements/Contact_Form_7.php:227, ../includes/Elements/Contact_Form_7.php:1389, ../includes/Elements/FluentForm.php:200, ../includes/Elements/FluentForm.php:2104, ../includes/Elements/Formstack.php:269, ../includes/Elements/Formstack.php:1911, ../includes/Elements/GravityForms.php:268, ../includes/Elements/GravityForms.php:2188, ../includes/Elements/Login_Register.php:863, ../includes/Elements/NinjaForms.php:208, ../includes/Elements/NinjaForms.php:1622, ../includes/Elements/WpForms.php:212
1223
  msgid "Error Messages"
1224
  msgstr ""
1225
 
1243
  msgid "Form Alignment"
1244
  msgstr ""
1245
 
1246
+ #: ../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:227, ../includes/Elements/Cta_Box.php:641, ../includes/Elements/Cta_Box.php:858, ../includes/Elements/Dual_Color_Header.php:81, ../includes/Elements/Flip_Box.php:872, ../includes/Elements/FluentForm.php:430, ../includes/Elements/Formstack.php:330, ../includes/Elements/GravityForms.php:343, ../includes/Elements/Login_Register.php:431, ../includes/Elements/Login_Register.php:528, ../includes/Elements/Login_Register.php:1040, ../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:278, ../includes/Elements/Post_Grid.php:233, ../includes/Elements/Pricing_Table.php:86, ../includes/Elements/Pricing_Table.php:468, ../includes/Elements/Product_Grid.php:242, ../includes/Elements/Team_Member.php:376, ../includes/Elements/Testimonial.php:253, ../includes/Elements/Testimonial.php:310, ../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:1544, ../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
1247
  msgid "Default"
1248
  msgstr ""
1249
 
1251
  msgid "Form Max Width"
1252
  msgstr ""
1253
 
1254
+ #: ../includes/Elements/Caldera_Forms.php:456, ../includes/Elements/FluentForm.php:475, ../includes/Elements/Formstack.php:375, ../includes/Elements/GravityForms.php:411, ../includes/Elements/Login_Register.php:1681, ../includes/Elements/NinjaForms.php:345, ../includes/Elements/TypeForm.php:286, ../includes/Elements/WeForms.php:229, ../includes/Elements/WpForms.php:313
1255
  msgid "Form Margin"
1256
  msgstr ""
1257
 
1258
+ #: ../includes/Elements/Caldera_Forms.php:468, ../includes/Elements/Contact_Form_7.php:384, ../includes/Elements/FluentForm.php:487, ../includes/Elements/Formstack.php:387, ../includes/Elements/GravityForms.php:423, ../includes/Elements/Login_Register.php:1696, ../includes/Elements/NinjaForms.php:357, ../includes/Elements/TypeForm.php:298, ../includes/Elements/WeForms.php:241, ../includes/Elements/WpForms.php:325
1259
  msgid "Form Padding"
1260
  msgstr ""
1261
 
1283
  msgid "Textarea Height"
1284
  msgstr ""
1285
 
1286
+ #: ../includes/Elements/Caldera_Forms.php:793, ../includes/Elements/Contact_Form_7.php:756, ../includes/Elements/FluentForm.php:812, ../includes/Elements/Formstack.php:1041, ../includes/Elements/GravityForms.php:879, ../includes/Elements/Login_Register.php:2561, ../includes/Elements/NinjaForms.php:837, ../includes/Elements/WpForms.php:806
1287
  msgid "Focus"
1288
  msgstr ""
1289
 
1299
  msgid "Custom Styles"
1300
  msgstr ""
1301
 
1302
+ #: ../includes/Elements/Caldera_Forms.php:998, ../includes/Elements/Contact_Form_7.php:1025, ../includes/Elements/Feature_List.php:618, ../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
1303
  msgid "Border Width"
1304
  msgstr ""
1305
 
1306
+ #: ../includes/Elements/Caldera_Forms.php:1035, ../includes/Elements/Contact_Form_7.php:1062, ../includes/Elements/FluentForm.php:1001, ../includes/Elements/Formstack.php:1191, ../includes/Elements/GravityForms.php:1196, ../includes/Elements/GravityForms.php:1305, ../includes/Elements/Login_Register.php:2932, ../includes/Elements/NinjaForms.php:1082, ../includes/Elements/WpForms.php:1036
1307
  msgid "Checkbox"
1308
  msgstr ""
1309
 
1383
  msgid "<strong>Contact Form 7</strong> is not installed/activated on your site. Please install and activate <strong>Contact Form 7</strong> first."
1384
  msgstr ""
1385
 
1386
+ #: ../includes/Elements/Contact_Form_7.php:313, ../includes/Elements/Contact_Form_7.php:1607, ../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:789, ../includes/Elements/Dual_Color_Header.php:869, ../includes/Elements/Event_Calendar.php:654, ../includes/Elements/Event_Calendar.php:786, ../includes/Elements/Event_Calendar.php:853, ../includes/Elements/Event_Calendar.php:907, ../includes/Elements/Event_Calendar.php:1019, ../includes/Elements/Event_Calendar.php:1111, ../includes/Elements/Event_Calendar.php:1209, ../includes/Elements/Event_Calendar.php:1575, ../includes/Elements/Event_Calendar.php:1684, ../includes/Elements/Facebook_Feed.php:488, ../includes/Elements/Facebook_Feed.php:501, ../includes/Elements/Facebook_Feed.php:576, ../includes/Elements/Facebook_Feed.php:589, ../includes/Elements/Facebook_Feed.php:674, ../includes/Elements/Facebook_Feed.php:687, ../includes/Elements/Facebook_Feed.php:758, ../includes/Elements/Facebook_Feed.php:796, ../includes/Elements/Facebook_Feed.php:836, ../includes/Elements/Fancy_Text.php:365, ../includes/Elements/Filterable_Gallery.php:2059, ../includes/Elements/Filterable_Gallery.php:2280, ../includes/Elements/Flip_Box.php:1373, ../includes/Elements/Flip_Box.php:1433, ../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:1920, ../includes/Elements/Pricing_Table.php:1989, ../includes/Elements/Product_Grid.php:1483, ../includes/Elements/Product_Grid.php:1497, ../includes/Elements/Product_Grid.php:1551, ../includes/Elements/Product_Grid.php:1564, ../includes/Elements/Product_Grid.php:2798, ../includes/Elements/Product_Grid.php:2855, ../includes/Elements/Progress_Bar.php:345, ../includes/Elements/Team_Member.php:746, ../includes/Elements/Team_Member.php:823, ../includes/Elements/Twitter_Feed.php:389, ../includes/Elements/Twitter_Feed.php:641, ../includes/Elements/Woo_Checkout.php:1769, ../includes/Elements/Woo_Checkout.php:1813, ../includes/Elements/Woo_Checkout.php:1857, ../includes/Elements/Woo_Product_Carousel.php:1987, ../includes/Elements/Woo_Product_Carousel.php:2044, ../includes/Traits/Controls.php:1216, ../includes/Traits/Controls.php:1270, ../includes/Traits/Woo_Product_Comparable.php:1372, ../includes/Traits/Woo_Product_Comparable.php:1651, ../includes/Traits/Woo_Product_Comparable.php:1700
1387
  msgid "Background"
1388
  msgstr ""
1389
 
1423
  msgid "Alert"
1424
  msgstr ""
1425
 
1426
+ #: ../includes/Elements/Contact_Form_7.php:1510, ../includes/Elements/Login_Register.php:1056, ../includes/Elements/Woo_Checkout.php:2025
1427
  msgid "Fields"
1428
  msgstr ""
1429
 
1475
  msgid "Sets transition effect"
1476
  msgstr ""
1477
 
1478
+ #: ../includes/Elements/Content_Ticker.php:163, ../includes/Elements/Pricing_Table.php:427
1479
  msgid "Slide"
1480
  msgstr ""
1481
 
1482
+ #: ../includes/Elements/Content_Ticker.php:164, ../includes/Elements/Fancy_Text.php:201, ../includes/Elements/Pricing_Table.php:424
1483
  msgid "Fade"
1484
  msgstr ""
1485
 
1579
  msgid "Label Position"
1580
  msgstr ""
1581
 
1582
+ #: ../includes/Elements/Countdown.php:84, ../includes/Elements/Login_Register.php:3125, ../includes/Elements/Login_Register.php:3425, ../includes/Traits/Controls.php:406
1583
  msgid "Block"
1584
  msgstr ""
1585
 
1663
  msgid "Separator Style"
1664
  msgstr ""
1665
 
1666
+ #: ../includes/Elements/Countdown.php:296, ../includes/Elements/Feature_List.php:433, ../includes/Elements/GravityForms.php:1017, ../includes/Elements/Sticky_Video.php:553, ../includes/Extensions/Table_of_Content.php:1032
1667
  msgid "Solid"
1668
  msgstr ""
1669
 
1670
+ #: ../includes/Elements/Countdown.php:297, ../includes/Elements/Feature_List.php:435, ../includes/Elements/GravityForms.php:1019, ../includes/Elements/Sticky_Video.php:555, ../includes/Extensions/Table_of_Content.php:1034
1671
  msgid "Dotted"
1672
  msgstr ""
1673
 
1743
  msgid "Space Below Container"
1744
  msgstr ""
1745
 
1746
+ #: ../includes/Elements/Countdown.php:648, ../includes/Elements/Dual_Color_Header.php:441, ../includes/Elements/Facebook_Feed.php:864, ../includes/Elements/Flip_Box.php:1161, ../includes/Elements/Image_Accordion.php:479, ../includes/Elements/Info_Box.php:1339, ../includes/Elements/Product_Grid.php:1118, ../includes/Elements/Team_Member.php:537, ../includes/Elements/Twitter_Feed.php:666, ../includes/Elements/Woo_Product_Carousel.php:1055
1747
  msgid "Color &amp; Typography"
1748
  msgstr ""
1749
 
1771
  msgid "Expire Message"
1772
  msgstr ""
1773
 
1774
+ #: ../includes/Elements/Countdown.php:1052, ../includes/Elements/Cta_Box.php:510, ../includes/Elements/Dual_Color_Header.php:449, ../includes/Elements/Flip_Box.php:1177, ../includes/Elements/Flip_Box.php:1245, ../includes/Elements/Info_Box.php:1353, ../includes/Elements/Post_Grid.php:564, ../includes/Elements/Post_Timeline.php:300, ../includes/Elements/Pricing_Table.php:881, ../includes/Elements/Twitter_Feed.php:674
1775
  msgid "Title Style"
1776
  msgstr ""
1777
 
1779
  msgid "Title Color"
1780
  msgstr ""
1781
 
1782
+ #: ../includes/Elements/Creative_Button.php:73
1783
  msgid "Button Content"
1784
  msgstr ""
1785
 
1786
+ #: ../includes/Elements/Creative_Button.php:87, ../includes/Elements/Info_Box.php:411
1787
  msgid "Enter button text"
1788
  msgstr ""
1789
 
1790
+ #: ../includes/Elements/Creative_Button.php:88, ../includes/Elements/Info_Box.php:412
1791
  msgid "Enter button text here"
1792
  msgstr ""
1793
 
1794
+ #: ../includes/Elements/Creative_Button.php:95
1795
  msgid "Button Secondary Text"
1796
  msgstr ""
1797
 
1798
+ #: ../includes/Elements/Creative_Button.php:102
1799
  msgid "Enter button secondary text"
1800
  msgstr ""
1801
 
1802
+ #: ../includes/Elements/Creative_Button.php:103
1803
  msgid "Enter button secondary text here"
1804
  msgstr ""
1805
 
1806
+ #: ../includes/Elements/Creative_Button.php:110, ../includes/Elements/Info_Box.php:422
1807
  msgid "Link URL"
1808
  msgstr ""
1809
 
1810
+ #: ../includes/Elements/Creative_Button.php:160, ../includes/Elements/Filterable_Gallery.php:2595, ../includes/Elements/Info_Box.php:470, ../includes/Elements/Pricing_Table.php:558
1811
  msgid "Icon Spacing"
1812
  msgstr ""
1813
 
1814
+ #: ../includes/Elements/Creative_Button.php:215
1815
  msgid "Button Effects &amp; Styles"
1816
  msgstr ""
1817
 
1818
+ #: ../includes/Elements/Creative_Button.php:223
1819
  msgid "Set Button Effect"
1820
  msgstr ""
1821
 
1822
+ #: ../includes/Elements/Creative_Button.php:228
1823
  msgid "Winona"
1824
  msgstr ""
1825
 
1826
+ #: ../includes/Elements/Creative_Button.php:229
1827
  msgid "Ujarak"
1828
  msgstr ""
1829
 
1830
+ #: ../includes/Elements/Creative_Button.php:230
1831
  msgid "Wayra"
1832
  msgstr ""
1833
 
1834
+ #: ../includes/Elements/Creative_Button.php:231
1835
  msgid "Tamaya"
1836
  msgstr ""
1837
 
1838
+ #: ../includes/Elements/Creative_Button.php:232
1839
  msgid "Rayen"
1840
  msgstr ""
1841
 
1842
+ #: ../includes/Elements/Creative_Button.php:233
1843
  msgid "Pipaluk (Pro)"
1844
  msgstr ""
1845
 
1846
+ #: ../includes/Elements/Creative_Button.php:234
1847
  msgid "Moema (Pro)"
1848
  msgstr ""
1849
 
1850
+ #: ../includes/Elements/Creative_Button.php:235
1851
  msgid "Wave (Pro)"
1852
  msgstr ""
1853
 
1854
+ #: ../includes/Elements/Creative_Button.php:236
1855
  msgid "Aylen (Pro)"
1856
  msgstr ""
1857
 
1858
+ #: ../includes/Elements/Creative_Button.php:237
1859
  msgid "Saqui (Pro)"
1860
  msgstr ""
1861
 
1862
+ #: ../includes/Elements/Creative_Button.php:238
1863
  msgid "Wapasha (Pro)"
1864
  msgstr ""
1865
 
1866
+ #: ../includes/Elements/Creative_Button.php:239
1867
  msgid "Nuka (Pro)"
1868
  msgstr ""
1869
 
1870
+ #: ../includes/Elements/Creative_Button.php:240
1871
  msgid "Antiman (Pro)"
1872
  msgstr ""
1873
 
1874
+ #: ../includes/Elements/Creative_Button.php:241
1875
  msgid "Quidel (Pro)"
1876
  msgstr ""
1877
 
1878
+ #: ../includes/Elements/Creative_Button.php:242
1879
  msgid "Shikoba (Pro)"
1880
  msgstr ""
1881
 
1882
+ #: ../includes/Elements/Creative_Button.php:250, ../includes/Elements/Cta_Box.php:682, ../includes/Elements/Product_Grid.php:1453, ../includes/Elements/Team_Member.php:703
1883
  msgid "Use Gradient Background"
1884
  msgstr ""
1885
 
1886
+ #: ../includes/Elements/Creative_Button.php:527, ../includes/Elements/Info_Box.php:1206
1887
  msgid "Button Padding"
1888
  msgstr ""
1889
 
1923
  msgid "Background Overlay"
1924
  msgstr ""
1925
 
1926
+ #: ../includes/Elements/Cta_Box.php:167, ../includes/Elements/Pricing_Table.php:153
1927
  msgid "Sub Title"
1928
  msgstr ""
1929
 
2007
  msgid "Secondary Button Style"
2008
  msgstr ""
2009
 
2010
+ #: ../includes/Elements/Cta_Box.php:1011, ../includes/Elements/Dual_Color_Header.php:386, ../includes/Elements/Feature_List.php:107, ../includes/Elements/Flip_Box.php:915, ../includes/Elements/Flip_Box.php:934, ../includes/Elements/Flip_Box.php:1047, ../includes/Elements/Info_Box.php:925
2011
  msgid "Icon Style"
2012
  msgstr ""
2013
 
2014
+ #: ../includes/Elements/Cta_Box.php:1022, ../includes/Elements/Pricing_Table.php:1335, ../includes/Elements/Twitter_Feed.php:888
2015
  msgid "Font Size"
2016
  msgstr ""
2017
 
2018
+ #: ../includes/Elements/Data_Table.php:74, ../includes/Elements/Event_Calendar.php:1233, ../includes/Elements/Pricing_Table.php:873, ../includes/Traits/Woo_Product_Comparable.php:1077
2019
  msgid "Header"
2020
  msgstr ""
2021
 
2027
  msgid "Column Name"
2028
  msgstr ""
2029
 
2030
+ #: ../includes/Elements/Data_Table.php:99
2031
+ msgid "Table Header"
2032
+ msgstr ""
2033
+
2034
  #: ../includes/Elements/Data_Table.php:109
2035
  msgid "Column Span"
2036
  msgstr ""
2075
  msgid "Textarea"
2076
  msgstr ""
2077
 
2078
+ #: ../includes/Elements/Data_Table.php:290, ../includes/Elements/Login_Register.php:815
2079
  msgid "Editor"
2080
  msgstr ""
2081
 
2091
  msgid "Cell Text"
2092
  msgstr ""
2093
 
2094
+ #: ../includes/Elements/Data_Table.php:364, ../includes/Elements/Event_Calendar.php:158, ../includes/Elements/Feature_List.php:203, ../includes/Elements/Filterable_Gallery.php:302, ../includes/Elements/Flip_Box.php:634, ../includes/Elements/Flip_Box.php:659, ../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:180
2095
  msgid "Link"
2096
  msgstr ""
2097
 
2135
  msgid "Background Color (Even Row)"
2136
  msgstr ""
2137
 
2138
+ #: ../includes/Elements/Data_Table.php:990, ../includes/Elements/Filterable_Gallery.php:1293, ../includes/Elements/Filterable_Gallery.php:1676, ../includes/Elements/Flip_Box.php:364, ../includes/Elements/Flip_Box.php:593, ../includes/Elements/Info_Box.php:299, ../includes/Elements/Pricing_Table.php:816, ../includes/Elements/Tooltip.php:367
2139
  msgid "Content Alignment"
2140
  msgstr ""
2141
 
2231
  msgid "Dual Color"
2232
  msgstr ""
2233
 
2234
+ #: ../includes/Elements/Dual_Color_Header.php:477, ../includes/Elements/Fancy_Text.php:350
2235
  msgid "Gradient"
2236
  msgstr ""
2237
 
2238
+ #: ../includes/Elements/Dual_Color_Header.php:489, ../includes/Elements/Fancy_Text.php:436
2239
  msgid "Solid Color"
2240
  msgstr ""
2241
 
2571
  msgid "Columns"
2572
  msgstr ""
2573
 
2574
+ #: ../includes/Elements/Facebook_Feed.php:196, ../includes/Elements/Product_Grid.php:282, ../includes/Elements/Product_Grid.php:304, ../includes/Elements/Testimonial.php:195, ../includes/Elements/Woo_Product_Carousel.php:378, ../includes/Elements/Woo_Product_Carousel.php:442, ../includes/Traits/Controls.php:516, ../includes/Traits/Controls.php:995
2575
  msgid "1"
2576
  msgstr ""
2577
 
2578
+ #: ../includes/Elements/Facebook_Feed.php:197, ../includes/Elements/Product_Grid.php:283, ../includes/Elements/Product_Grid.php:305, ../includes/Elements/Testimonial.php:196, ../includes/Elements/Woo_Product_Carousel.php:379, ../includes/Elements/Woo_Product_Carousel.php:443, ../includes/Traits/Controls.php:517, ../includes/Traits/Controls.php:996
2579
  msgid "2"
2580
  msgstr ""
2581
 
2582
+ #: ../includes/Elements/Facebook_Feed.php:198, ../includes/Elements/Product_Grid.php:284, ../includes/Elements/Testimonial.php:197, ../includes/Elements/Woo_Product_Carousel.php:380, ../includes/Elements/Woo_Product_Carousel.php:444, ../includes/Traits/Controls.php:518, ../includes/Traits/Controls.php:997
2583
  msgid "3"
2584
  msgstr ""
2585
 
2586
+ #: ../includes/Elements/Facebook_Feed.php:199, ../includes/Elements/Product_Grid.php:285, ../includes/Elements/Testimonial.php:198, ../includes/Elements/Woo_Product_Carousel.php:445, ../includes/Traits/Controls.php:519
2587
  msgid "4"
2588
  msgstr ""
2589
 
2590
+ #: ../includes/Elements/Facebook_Feed.php:200, ../includes/Elements/Filterable_Gallery.php:518, ../includes/Elements/Product_Grid.php:286, ../includes/Elements/Testimonial.php:199, ../includes/Elements/Woo_Product_Carousel.php:446, ../includes/Traits/Controls.php:520
2591
  msgid "5"
2592
  msgstr ""
2593
 
2647
  msgid "Show Load More"
2648
  msgstr ""
2649
 
2650
+ #: ../includes/Elements/Facebook_Feed.php:403, ../includes/Elements/FluentForm.php:1098, ../includes/Elements/FluentForm.php:1696, ../includes/Elements/Formstack.php:650, ../includes/Elements/Login_Register.php:994, ../includes/Elements/Woo_Checkout.php:1960, ../includes/Elements/Woo_Checkout.php:2216, ../includes/Traits/Woo_Product_Comparable.php:237
2651
  msgid "Label"
2652
  msgstr ""
2653
 
2711
  msgid "Likes & Comments"
2712
  msgstr ""
2713
 
2714
+ #: ../includes/Elements/Facebook_Feed.php:1146, ../includes/Elements/Image_Accordion.php:391, ../includes/Elements/Post_Timeline.php:101, ../includes/Elements/Team_Member.php:344, ../includes/Elements/Woo_Product_Carousel.php:898
2715
  msgid "Overlay Color"
2716
  msgstr ""
2717
 
2718
+ #: ../includes/Elements/Fancy_Text.php:72
2719
  msgid "Prefix Text"
2720
  msgstr ""
2721
 
2722
+ #: ../includes/Elements/Fancy_Text.php:73
2723
  msgid "Place your prefix text"
2724
  msgstr ""
2725
 
2726
+ #: ../includes/Elements/Fancy_Text.php:75
2727
  msgid "This is the "
2728
  msgstr ""
2729
 
2730
+ #: ../includes/Elements/Fancy_Text.php:85
2731
  msgid "Fancy String"
2732
  msgstr ""
2733
 
2734
+ #: ../includes/Elements/Fancy_Text.php:95
2735
  msgid "Fancy Text Strings"
2736
  msgstr ""
2737
 
2738
+ #: ../includes/Elements/Fancy_Text.php:102
2739
  msgid "First string"
2740
  msgstr ""
2741
 
2742
+ #: ../includes/Elements/Fancy_Text.php:105
2743
  msgid "Second string"
2744
  msgstr ""
2745
 
2746
+ #: ../includes/Elements/Fancy_Text.php:108
2747
  msgid "Third string"
2748
  msgstr ""
2749
 
2750
+ #: ../includes/Elements/Fancy_Text.php:117
2751
  msgid "Suffix Text"
2752
  msgstr ""
2753
 
2754
+ #: ../includes/Elements/Fancy_Text.php:118
2755
  msgid "Place your suffix text"
2756
  msgstr ""
2757
 
2758
+ #: ../includes/Elements/Fancy_Text.php:120
2759
  msgid " of the sentence."
2760
  msgstr ""
2761
 
2762
+ #: ../includes/Elements/Fancy_Text.php:131
2763
  msgid "Fancy Text Settings"
2764
  msgstr ""
2765
 
2766
+ #: ../includes/Elements/Fancy_Text.php:139, ../includes/Elements/Pricing_Table.php:637
2767
  msgid "Style 1"
2768
  msgstr ""
2769
 
2770
+ #: ../includes/Elements/Fancy_Text.php:140
2771
  msgid "Style 2 (Pro)"
2772
  msgstr ""
2773
 
2774
+ #: ../includes/Elements/Fancy_Text.php:149
2775
  msgid "Style Type"
2776
  msgstr ""
2777
 
2778
+ #: ../includes/Elements/Fancy_Text.php:159, ../includes/Elements/Pricing_Table.php:110, ../includes/Elements/Team_Member.php:297
2779
  msgid "Only available in pro version!"
2780
  msgstr ""
2781
 
2782
+ #: ../includes/Elements/Fancy_Text.php:196
2783
  msgid "Animation Type"
2784
  msgstr ""
2785
 
2786
+ #: ../includes/Elements/Fancy_Text.php:200
2787
  msgid "Typing"
2788
  msgstr ""
2789
 
2790
+ #: ../includes/Elements/Fancy_Text.php:202
2791
  msgid "Fade Up"
2792
  msgstr ""
2793
 
2794
+ #: ../includes/Elements/Fancy_Text.php:203
2795
  msgid "Fade Down"
2796
  msgstr ""
2797
 
2798
+ #: ../includes/Elements/Fancy_Text.php:204
2799
  msgid "Fade Left"
2800
  msgstr ""
2801
 
2802
+ #: ../includes/Elements/Fancy_Text.php:205
2803
  msgid "Fade Right"
2804
  msgstr ""
2805
 
2806
+ #: ../includes/Elements/Fancy_Text.php:206
2807
  msgid "Zoom"
2808
  msgstr ""
2809
 
2810
+ #: ../includes/Elements/Fancy_Text.php:207
2811
  msgid "Bounce"
2812
  msgstr ""
2813
 
2814
+ #: ../includes/Elements/Fancy_Text.php:208, ../includes/Elements/Pricing_Table.php:426
2815
  msgid "Swing"
2816
  msgstr ""
2817
 
2818
+ #: ../includes/Elements/Fancy_Text.php:217
2819
  msgid "Typing Speed"
2820
  msgstr ""
2821
 
2822
+ #: ../includes/Elements/Fancy_Text.php:229
2823
  msgid "Delay on Change"
2824
  msgstr ""
2825
 
2826
+ #: ../includes/Elements/Fancy_Text.php:238
2827
  msgid "Loop the Typing"
2828
  msgstr ""
2829
 
2830
+ #: ../includes/Elements/Fancy_Text.php:251
2831
  msgid "Display Type Cursor"
2832
  msgstr ""
2833
 
2834
+ #: ../includes/Elements/Fancy_Text.php:296
2835
  msgid "Prefix Text Styles"
2836
  msgstr ""
2837
 
2838
+ #: ../includes/Elements/Fancy_Text.php:304
2839
  msgid "Prefix Text Color"
2840
  msgstr ""
2841
 
2842
+ #: ../includes/Elements/Fancy_Text.php:334
2843
  msgid "Fancy Text Styles"
2844
  msgstr ""
2845
 
2846
+ #: ../includes/Elements/Fancy_Text.php:342
2847
  msgid "Choose Background Type"
2848
  msgstr ""
2849
 
2850
+ #: ../includes/Elements/Fancy_Text.php:466
2851
  msgid "Typing Cursor Color"
2852
  msgstr ""
2853
 
2854
+ #: ../includes/Elements/Fancy_Text.php:537
2855
  msgid "Suffix Text Styles"
2856
  msgstr ""
2857
 
2858
+ #: ../includes/Elements/Fancy_Text.php:545
2859
  msgid "Suffix Text Color"
2860
  msgstr ""
2861
 
2862
+ #: ../includes/Elements/Feature_List.php:109
2863
  msgid "ON"
2864
  msgstr ""
2865
 
2866
+ #: ../includes/Elements/Feature_List.php:110
2867
  msgid "OFF"
2868
  msgstr ""
2869
 
2870
+ #: ../includes/Elements/Feature_List.php:137
2871
  msgid "Icon Background"
2872
  msgstr ""
2873
 
2874
+ #: ../includes/Elements/Feature_List.php:152
2875
  msgid "Icon Box Background"
2876
  msgstr ""
2877
 
2878
+ #: ../includes/Elements/Feature_List.php:206
2879
  msgid "https://your-link.com"
2880
  msgstr ""
2881
 
2882
+ #: ../includes/Elements/Feature_List.php:214
2883
  msgid "Feature Item"
2884
  msgstr ""
2885
 
2886
+ #: ../includes/Elements/Feature_List.php:223
2887
  msgid "Feature Item 1"
2888
  msgstr ""
2889
 
2890
+ #: ../includes/Elements/Feature_List.php:224, ../includes/Elements/Feature_List.php:232, ../includes/Elements/Feature_List.php:240
2891
  msgid "Lorem ipsum dolor sit amet, consectetur adipisi cing elit, sed do eiusmod tempor incididunt ut abore et dolore magna"
2892
  msgstr ""
2893
 
2894
+ #: ../includes/Elements/Feature_List.php:231
2895
  msgid "Feature Item 2"
2896
  msgstr ""
2897
 
2898
+ #: ../includes/Elements/Feature_List.php:239
2899
  msgid "Feature Item 3"
2900
  msgstr ""
2901
 
2902
+ #: ../includes/Elements/Feature_List.php:251, ../includes/Elements/Progress_Bar.php:135
2903
  msgid "Title HTML Tag"
2904
  msgstr ""
2905
 
2906
+ #: ../includes/Elements/Feature_List.php:272
2907
  msgid "Icon Shape"
2908
  msgstr ""
2909
 
2910
+ #: ../includes/Elements/Feature_List.php:277, ../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:1025, ../includes/Elements/Info_Box.php:1121, ../includes/Elements/Progress_Bar.php:86
2911
  msgid "Circle"
2912
  msgstr ""
2913
 
2914
+ #: ../includes/Elements/Feature_List.php:278, ../includes/Elements/Info_Box.php:582, ../includes/Elements/Info_Box.php:637, ../includes/Elements/Info_Box.php:808, ../includes/Elements/Info_Box.php:888, ../includes/Elements/Info_Box.php:1027, ../includes/Elements/Info_Box.php:1123
2915
  msgid "Square"
2916
  msgstr ""
2917
 
2918
+ #: ../includes/Elements/Feature_List.php:279
2919
  msgid "Rhombus"
2920
  msgstr ""
2921
 
2922
+ #: ../includes/Elements/Feature_List.php:287
2923
  msgid "Shape View"
2924
  msgstr ""
2925
 
2926
+ #: ../includes/Elements/Feature_List.php:292
2927
  msgid "Framed"
2928
  msgstr ""
2929
 
2930
+ #: ../includes/Elements/Feature_List.php:309, ../includes/Elements/Flip_Box.php:334, ../includes/Elements/Flip_Box.php:563, ../includes/Elements/Image_Accordion.php:132, ../includes/Elements/Info_Box.php:130, ../includes/Elements/Login_Register.php:711, ../includes/Elements/Pricing_Table.php:383, ../includes/Elements/Tooltip.php:285, ../includes/Elements/Twitter_Feed.php:352, ../includes/Extensions/Reading_Progress.php:115, ../includes/Traits/Controls.php:1668
2931
  msgid "Top"
2932
  msgstr ""
2933
 
2934
+ #: ../includes/Elements/Feature_List.php:329
2935
  msgid "Arrow Indicator Position"
2936
  msgstr ""
2937
 
2938
+ #: ../includes/Elements/Feature_List.php:359
2939
  msgid "Show Connector"
2940
  msgstr ""
2941
 
2942
+ #: ../includes/Elements/Feature_List.php:387, ../includes/Elements/Login_Register.php:3142, ../includes/Elements/Login_Register.php:3441
2943
  msgid "Space Between"
2944
  msgstr ""
2945
 
2946
+ #: ../includes/Elements/Feature_List.php:409
2947
  msgid "Connector Type"
2948
  msgstr ""
2949
 
2950
+ #: ../includes/Elements/Feature_List.php:414, ../includes/Elements/Testimonial.php:254
2951
  msgid "Classic"
2952
  msgstr ""
2953
 
2954
+ #: ../includes/Elements/Feature_List.php:415
2955
  msgid "Modern"
2956
  msgstr ""
2957
 
2958
+ #: ../includes/Elements/Feature_List.php:428
2959
  msgid "Connector Styles"
2960
  msgstr ""
2961
 
2962
+ #: ../includes/Elements/Feature_List.php:434, ../includes/Elements/GravityForms.php:1020, ../includes/Elements/Sticky_Video.php:556, ../includes/Extensions/Table_of_Content.php:1033
2963
  msgid "Dashed"
2964
  msgstr ""
2965
 
2966
+ #: ../includes/Elements/Feature_List.php:450
2967
  msgid "Connector Color"
2968
  msgstr ""
2969
 
2970
+ #: ../includes/Elements/Feature_List.php:470
2971
  msgid "Connector Width"
2972
  msgstr ""
2973
 
2974
+ #: ../includes/Elements/Feature_List.php:527
2975
  msgid "Secondary Color"
2976
  msgstr ""
2977
 
2978
+ #: ../includes/Elements/Feature_List.php:745
2979
  msgid "Title Bottom Space"
2980
  msgstr ""
2981
 
2982
+ #: ../includes/Elements/Filterable_Gallery.php:93, ../includes/Elements/Flip_Box.php:77, ../includes/Elements/Pricing_Table.php:78, ../includes/Traits/Core.php:44, ../includes/templates/admin/elements.php:571, ../includes/templates/admin/elements.php:554, ../includes/templates/admin/elements.php:551, ../includes/templates/admin/extensions.php:85
2983
  msgid "Settings"
2984
  msgstr ""
2985
 
3079
  msgid "Select Title Tag"
3080
  msgstr ""
3081
 
3082
+ #: ../includes/Elements/Filterable_Gallery.php:391, ../includes/Elements/Pricing_Table.php:309
3083
  msgid "List Item"
3084
  msgstr ""
3085
 
3207
  msgid "Extra Large"
3208
  msgstr ""
3209
 
3210
+ #: ../includes/Elements/Filterable_Gallery.php:735, ../includes/Elements/Filterable_Gallery.php:2641, ../includes/Elements/Flip_Box.php:696, ../includes/Elements/Pricing_Table.php:529
3211
  msgid "Button Icon"
3212
  msgstr ""
3213
 
3223
  msgid "Item Hover Style"
3224
  msgstr ""
3225
 
3226
+ #: ../includes/Elements/Filterable_Gallery.php:1207, ../includes/Elements/Filterable_Gallery.php:1569, ../includes/Elements/Login_Register.php:2299, ../includes/Elements/Post_Timeline.php:348
3227
  msgid "Title Typography"
3228
  msgstr ""
3229
 
3283
  msgid "Search Form Style"
3284
  msgstr ""
3285
 
3286
+ #: ../includes/Elements/Filterable_Gallery.php:2094, ../includes/Elements/Login_Register.php:271
3287
  msgid "Controls"
3288
  msgstr ""
3289
 
3295
  msgid "Separator Size"
3296
  msgstr ""
3297
 
3298
+ #: ../includes/Elements/Filterable_Gallery.php:2271, ../includes/Elements/Login_Register.php:1520, ../includes/Elements/Woo_Checkout.php:1564
3299
  msgid "Form"
3300
  msgstr ""
3301
 
3303
  msgid "Search Gallery Item..."
3304
  msgstr ""
3305
 
3306
+ #: ../includes/Elements/Filterable_Gallery.php:2300, ../includes/Elements/Login_Register.php:2527, ../includes/Elements/Login_Register.php:2565
3307
  msgid "Placeholder Color"
3308
  msgstr ""
3309
 
3383
  msgid "Middle"
3384
  msgstr ""
3385
 
3386
+ #: ../includes/Elements/Flip_Box.php:342, ../includes/Elements/Flip_Box.php:571, ../includes/Elements/Image_Accordion.php:140, ../includes/Elements/Info_Box.php:138, ../includes/Elements/Pricing_Table.php:391, ../includes/Elements/Tooltip.php:286, ../includes/Elements/Twitter_Feed.php:360, ../includes/Extensions/Reading_Progress.php:116, ../includes/Traits/Controls.php:1672
3387
  msgid "Bottom"
3388
  msgstr ""
3389
 
3427
  msgid "Back Background Color"
3428
  msgstr ""
3429
 
3430
+ #: ../includes/Elements/Flip_Box.php:804, ../includes/Elements/Team_Member.php:400
3431
  msgid "Content Padding"
3432
  msgstr ""
3433
 
3479
  msgid "Address Line Style"
3480
  msgstr ""
3481
 
3482
+ #: ../includes/Elements/FluentForm.php:1704, ../includes/Elements/Login_Register.php:1089
3483
  msgid "Show Label"
3484
  msgstr ""
3485
 
3523
  msgid "Section Heading Style"
3524
  msgstr ""
3525
 
3526
+ #: ../includes/Elements/Formstack.php:1281, ../includes/Elements/Testimonial.php:601
3527
  msgid "Rating"
3528
  msgstr ""
3529
 
3530
+ #: ../includes/Elements/Formstack.php:1994, ../includes/Elements/Login_Register.php:859
3531
  msgid "Validation Messages"
3532
  msgstr ""
3533
 
3555
  msgid "Section Field"
3556
  msgstr ""
3557
 
3558
+ #: ../includes/Elements/GravityForms.php:1012, ../includes/Elements/Pricing_Table.php:779, ../includes/Elements/Pricing_Table.php:1533, ../includes/Elements/Sticky_Video.php:548
3559
  msgid "Border Type"
3560
  msgstr ""
3561
 
3567
  msgid "Border Height"
3568
  msgstr ""
3569
 
3570
+ #: ../includes/Elements/GravityForms.php:1091, ../includes/Elements/Pricing_Table.php:195, ../includes/Elements/Pricing_Table.php:202, ../includes/Elements/Product_Grid.php:136, ../includes/Elements/Product_Grid.php:2357, ../includes/Elements/Woo_Checkout.php:216, ../includes/Elements/Woo_Product_Carousel.php:124, ../includes/Elements/Woo_Product_Carousel.php:1530, ../includes/Traits/Woo_Product_Comparable.php:42, ../includes/Traits/Woo_Product_Comparable.php:81
3571
  msgid "Price"
3572
  msgstr ""
3573
 
3635
  msgid "On Click"
3636
  msgstr ""
3637
 
3638
+ #: ../includes/Elements/Image_Accordion.php:105, ../includes/Elements/Login_Register.php:2790, ../includes/Elements/Login_Register.php:2886
3639
  msgid "Horizontal Alignment"
3640
  msgstr ""
3641
 
3642
+ #: ../includes/Elements/Image_Accordion.php:128, ../includes/Elements/Login_Register.php:2769, ../includes/Elements/Login_Register.php:2865
3643
  msgid "Vertical Alignment"
3644
  msgstr ""
3645
 
3803
  msgid "Transition will applied to ms (ex: 300ms)."
3804
  msgstr ""
3805
 
3806
+ #: ../includes/Elements/Login_Register.php:118
3807
  msgid "Login | Register Form"
3808
  msgstr ""
3809
 
3810
+ #: ../includes/Elements/Login_Register.php:181, ../includes/Elements/Login_Register.php:1062, ../includes/Elements/Login_Register.php:1063, ../includes/Elements/Login_Register.php:3951
3811
  msgid "Username"
3812
  msgstr ""
3813
 
3814
+ #: ../includes/Elements/Login_Register.php:182, ../includes/Elements/Login_Register.php:1068, ../includes/Elements/Login_Register.php:1069, ../includes/Elements/Login_Register.php:3948
3815
  msgid "Email"
3816
  msgstr ""
3817
 
3818
+ #: ../includes/Elements/Login_Register.php:183, ../includes/Elements/Login_Register.php:555, ../includes/Elements/Login_Register.php:556, ../includes/Elements/Login_Register.php:582, ../includes/Elements/Login_Register.php:583, ../includes/Elements/Login_Register.php:1075, ../includes/Elements/Login_Register.php:1076, ../includes/Elements/Login_Register.php:3759, ../includes/Elements/Login_Register.php:3949, ../includes/Template/Woocommerce/Checkout/Woo_Checkout_Helper.php:329
3819
  msgid "Password"
3820
  msgstr ""
3821
 
3822
+ #: ../includes/Elements/Login_Register.php:184, ../includes/Elements/Login_Register.php:3950
3823
  msgid "Confirm Password"
3824
  msgstr ""
3825
 
3826
+ #: ../includes/Elements/Login_Register.php:185, ../includes/Elements/Login_Register.php:3952
3827
  msgid "First Name"
3828
  msgstr ""
3829
 
3830
+ #: ../includes/Elements/Login_Register.php:186, ../includes/Elements/Login_Register.php:3953
3831
  msgid "Last Name"
3832
  msgstr ""
3833
 
3834
+ #: ../includes/Elements/Login_Register.php:187, ../includes/Elements/Login_Register.php:3954
3835
  msgid "Website"
3836
  msgstr ""
3837
 
3838
+ #: ../includes/Elements/Login_Register.php:240
3839
  msgid "Choose the type of form you want to show by default. Note: you can show both forms in a single page even if you select only login or registration from below."
3840
  msgstr ""
3841
 
3842
+ #: ../includes/Elements/Login_Register.php:244
3843
  msgid "Default Form Type"
3844
  msgstr ""
3845
 
3846
+ #: ../includes/Elements/Login_Register.php:247, ../includes/Elements/Login_Register.php:3363, ../includes/Elements/Login_Register.php:3962, ../includes/Elements/Woo_Checkout.php:388, ../includes/Elements/Woo_Checkout.php:1153, ../includes/Template/Woocommerce/Checkout/Woo_Checkout_Helper.php:342, ../includes/Template/Woocommerce/Checkout/Woo_Checkout_Helper.php:342
3847
  msgid "Login"
3848
  msgstr ""
3849
 
3850
+ #: ../includes/Elements/Login_Register.php:248
3851
  msgid "Registration"
3852
  msgstr ""
3853
 
3854
  #. translators: %1$s is settings page link open tag, %2$s is link closing tag
3855
+ #: ../includes/Elements/Login_Register.php:256
3856
  msgid "Registration is disabled on your site. Please enable it to use registration form. You can enable it from Dashboard » Settings » General » %1$sMembership%2$s."
3857
  msgstr ""
3858
 
3859
+ #: ../includes/Elements/Login_Register.php:264
3860
  msgid "Hide all Forms from Logged-in Users"
3861
  msgstr ""
3862
 
3863
+ #: ../includes/Elements/Login_Register.php:269
3864
  msgid "Login Form General"
3865
  msgstr ""
3866
 
3867
+ #: ../includes/Elements/Login_Register.php:278
3868
  msgid "Show Logout Link"
3869
  msgstr ""
3870
 
3871
+ #: ../includes/Elements/Login_Register.php:283
3872
  msgid "Show Lost your password?"
3873
  msgstr ""
3874
 
3875
+ #: ../includes/Elements/Login_Register.php:289
3876
  msgid "Lost Password Text"
3877
  msgstr ""
3878
 
3879
+ #: ../includes/Elements/Login_Register.php:295, ../includes/Elements/Login_Register.php:3778
3880
  msgid "Forgot password?"
3881
  msgstr ""
3882
 
3883
+ #: ../includes/Elements/Login_Register.php:301
3884
  msgid "Lost Password Link to"
3885
  msgstr ""
3886
 
3887
+ #: ../includes/Elements/Login_Register.php:305, ../includes/Elements/Login_Register.php:461
3888
  msgid "Default WordPress Page"
3889
  msgstr ""
3890
 
3891
+ #: ../includes/Elements/Login_Register.php:306, ../includes/Elements/Login_Register.php:376, ../includes/Elements/Login_Register.php:462
3892
  msgid "Custom URL"
3893
  msgstr ""
3894
 
3895
+ #: ../includes/Elements/Login_Register.php:314
3896
  msgid "Custom Lost Password URL"
3897
  msgstr ""
3898
 
3899
+ #: ../includes/Elements/Login_Register.php:327, ../includes/Elements/Login_Register.php:2912
3900
  msgid "Remember Me Field"
3901
  msgstr ""
3902
 
3903
+ #: ../includes/Elements/Login_Register.php:334
3904
  msgid "Remember Me Field Text"
3905
  msgstr ""
3906
 
3907
+ #: ../includes/Elements/Login_Register.php:340, ../includes/Elements/Login_Register.php:3772
3908
  msgid "Remember Me"
3909
  msgstr ""
3910
 
3911
+ #: ../includes/Elements/Login_Register.php:399, ../includes/Elements/Login_Register.php:350
3912
  msgid "Show Register Link"
3913
  msgstr ""
3914
 
3915
+ #: ../includes/Elements/Login_Register.php:357
3916
  msgid "Register Link Text"
3917
  msgstr ""
3918
 
3919
+ #: ../includes/Elements/Login_Register.php:359, ../includes/Elements/Login_Register.php:445
3920
  msgid "You can put text in two lines to make the last line linkable. Pro Tip: You can keep the first line empty and put the text only in the second line to get a link only."
3921
  msgstr ""
3922
 
3923
+ #: ../includes/Elements/Login_Register.php:365
3924
  msgid ""
3925
  " \n"
3926
  "Register Now"
3927
  msgstr ""
3928
 
3929
+ #: ../includes/Elements/Login_Register.php:371
3930
  msgid "Registration Link Action"
3931
  msgstr ""
3932
 
3933
+ #: ../includes/Elements/Login_Register.php:375
3934
  msgid "WordPress Registration Page"
3935
  msgstr ""
3936
 
3937
+ #: ../includes/Elements/Login_Register.php:377
3938
  msgid "Show Register Form"
3939
  msgstr ""
3940
 
3941
+ #: ../includes/Elements/Login_Register.php:385
3942
  msgid "Custom Register URL"
3943
  msgstr ""
3944
 
3945
+ #: ../includes/Elements/Login_Register.php:406, ../includes/Elements/Login_Register.php:484
3946
  msgid "Enable Google reCAPTCHA"
3947
  msgstr ""
3948
 
3949
+ #: ../includes/Elements/Login_Register.php:407
3950
  msgid "reCAPTCHA will prevent spam login from bots."
3951
  msgstr ""
3952
 
3953
+ #: ../includes/Elements/Login_Register.php:416, ../includes/Elements/Login_Register.php:494
3954
  msgid "reCAPTCHA API keys are missing. Please add them from %sDashboard >> Essential Addons >> Elements >> Login | Register Form %sSettings"
3955
  msgstr ""
3956
 
3957
+ #: ../includes/Elements/Login_Register.php:505, ../includes/Elements/Login_Register.php:438
3958
  msgid "Show Login Link"
3959
  msgstr ""
3960
 
3961
+ #: ../includes/Elements/Login_Register.php:429
3962
  msgid "Register Form General"
3963
  msgstr ""
3964
 
3965
+ #: ../includes/Elements/Login_Register.php:443
3966
  msgid "Login Link Text"
3967
  msgstr ""
3968
 
3969
+ #: ../includes/Elements/Login_Register.php:451
3970
  msgid ""
3971
  " \n"
3972
  "Sign In"
3973
  msgstr ""
3974
 
3975
+ #: ../includes/Elements/Login_Register.php:457
3976
  msgid "Login Link Action"
3977
  msgstr ""
3978
 
3979
+ #: ../includes/Elements/Login_Register.php:463
3980
  msgid "Show Login Form"
3981
  msgstr ""
3982
 
3983
+ #: ../includes/Elements/Login_Register.php:471
3984
  msgid "Custom Login URL"
3985
  msgstr ""
3986
 
3987
+ #: ../includes/Elements/Login_Register.php:485
3988
  msgid "reCAPTCHA will prevent spam registration from bots."
3989
  msgstr ""
3990
 
3991
+ #: ../includes/Elements/Login_Register.php:520
3992
  msgid "Login Form Fields"
3993
  msgstr ""
3994
 
3995
+ #: ../includes/Elements/Login_Register.php:525
3996
  msgid "Labels & Placeholders"
3997
  msgstr ""
3998
 
3999
+ #: ../includes/Elements/Login_Register.php:544
4000
  msgid "Username Label"
4001
  msgstr ""
4002
 
4003
+ #: ../includes/Elements/Login_Register.php:545, ../includes/Elements/Login_Register.php:546, ../includes/Elements/Login_Register.php:572, ../includes/Elements/Login_Register.php:573, ../includes/Elements/Login_Register.php:3758
4004
  msgid "Username or Email Address"
4005
  msgstr ""
4006
 
4007
+ #: ../includes/Elements/Login_Register.php:554
4008
  msgid "Password Label"
4009
  msgstr ""
4010
 
4011
+ #: ../includes/Elements/Login_Register.php:564
4012
  msgid "Placeholders"
4013
  msgstr ""
4014
 
4015
+ #: ../includes/Elements/Login_Register.php:571
4016
  msgid "Username Placeholder"
4017
  msgstr ""
4018
 
4019
+ #: ../includes/Elements/Login_Register.php:581
4020
  msgid "Password Placeholder"
4021
  msgstr ""
4022
 
4023
+ #: ../includes/Elements/Login_Register.php:591
4024
  msgid "Input Fields width"
4025
  msgstr ""
4026
 
4027
+ #: ../includes/Elements/Login_Register.php:619
4028
  msgid "Password Visibility Icon"
4029
  msgstr ""
4030
 
4031
+ #: ../includes/Elements/Login_Register.php:630
4032
  msgid "Login Button"
4033
  msgstr ""
4034
 
4035
+ #: ../includes/Elements/Login_Register.php:639, ../includes/Elements/Login_Register.php:640
4036
  msgid "Log In"
4037
  msgstr ""
4038
 
4039
+ #: ../includes/Elements/Login_Register.php:648
4040
  msgid "Form Header Content"
4041
  msgstr ""
4042
 
4043
+ #: ../includes/Elements/Login_Register.php:652
4044
  msgid "Form Header Image"
4045
  msgstr ""
4046
 
4047
+ #: ../includes/Elements/Login_Register.php:670
4048
  msgid "Header Image Position"
4049
  msgstr ""
4050
 
4051
+ #: ../includes/Elements/Login_Register.php:687
4052
  msgid "Form Header Logo"
4053
  msgstr ""
4054
 
4055
+ #: ../includes/Elements/Login_Register.php:703
4056
  msgid "Form Logo Position"
4057
  msgstr ""
4058
 
4059
+ #: ../includes/Elements/Login_Register.php:720
4060
  msgid "Login Form Title"
4061
  msgstr ""
4062
 
4063
+ #: ../includes/Elements/Login_Register.php:723
4064
  msgid "Welcome Back!"
4065
  msgstr ""
4066
 
4067
+ #: ../includes/Elements/Login_Register.php:727
4068
  msgid "Login Form Sub Title"
4069
  msgstr ""
4070
 
4071
+ #: ../includes/Elements/Login_Register.php:730
4072
  msgid "Please login to your account"
4073
  msgstr ""
4074
 
4075
+ #: ../includes/Elements/Login_Register.php:734
4076
  msgid "Register Form Title"
4077
  msgstr ""
4078
 
4079
+ #: ../includes/Elements/Login_Register.php:737
4080
  msgid "Create a New Account"
4081
  msgstr ""
4082
 
4083
+ #: ../includes/Elements/Login_Register.php:741
4084
  msgid "Register Form Sub Title"
4085
  msgstr ""
4086
 
4087
+ #: ../includes/Elements/Login_Register.php:744
4088
  msgid "Create an account to enjoy awesome features."
4089
  msgstr ""
4090
 
4091
+ #: ../includes/Elements/Login_Register.php:753
4092
  msgid "Login Form Options"
4093
  msgstr ""
4094
 
4095
+ #: ../includes/Elements/Login_Register.php:758
4096
  msgid "Redirect After Login"
4097
  msgstr ""
4098
 
4099
+ #: ../includes/Elements/Login_Register.php:767, ../includes/Elements/Login_Register.php:1147
4100
  msgid "Please note that only your current domain is allowed here to keep your site secure."
4101
  msgstr ""
4102
 
4103
+ #: ../includes/Elements/Login_Register.php:784
4104
  msgid "Terms & Conditions"
4105
  msgstr ""
4106
 
4107
+ #: ../includes/Elements/Login_Register.php:789
4108
  msgid "Enforce Terms & Conditions"
4109
  msgstr ""
4110
 
4111
+ #: ../includes/Elements/Login_Register.php:798
4112
  msgid "Acceptance Label"
4113
  msgstr ""
4114
 
4115
+ #: ../includes/Elements/Login_Register.php:799
4116
  msgid "Eg. I accept the terms & conditions. Note: First line is checkbox label & Last line will be used as link text."
4117
  msgstr ""
4118
 
4119
+ #: ../includes/Elements/Login_Register.php:803
4120
  msgid "I Accept the Terms and Conditions."
4121
  msgstr ""
4122
 
4123
  #. translators: \n means new line. So, Don't translate this
4124
+ #: ../includes/Elements/Login_Register.php:805
4125
  msgid ""
4126
  "I Accept\n"
4127
  " the Terms and Conditions."
4128
  msgstr ""
4129
 
4130
+ #: ../includes/Elements/Login_Register.php:812
4131
  msgid "Content Source"
4132
  msgstr ""
4133
 
4134
+ #: ../includes/Elements/Login_Register.php:825
4135
  msgid "Terms and Conditions"
4136
  msgstr ""
4137
 
4138
+ #: ../includes/Elements/Login_Register.php:828
4139
  msgid "Please go through the following terms and conditions carefully."
4140
  msgstr ""
4141
 
4142
+ #: ../includes/Elements/Login_Register.php:837
4143
  msgid "Terms & Conditions URL"
4144
  msgstr ""
4145
 
4146
+ #: ../includes/Elements/Login_Register.php:838
4147
  msgid "Enter the link where your terms & condition or privacy policy is found."
4148
  msgstr ""
4149
 
4150
+ #: ../includes/Elements/Login_Register.php:868
4151
  msgid "Invalid Email"
4152
  msgstr ""
4153
 
4154
+ #: ../includes/Elements/Login_Register.php:871
4155
  msgid "Eg. Your email is invalid."
4156
  msgstr ""
4157
 
4158
+ #: ../includes/Elements/Login_Register.php:872
4159
  msgid "You have used an invalid email"
4160
  msgstr ""
4161
 
4162
+ #: ../includes/Elements/Login_Register.php:875
4163
  msgid "Email is missing"
4164
  msgstr ""
4165
 
4166
+ #: ../includes/Elements/Login_Register.php:878
4167
  msgid "Eg. Email is missing or Invalid"
4168
  msgstr ""
4169
 
4170
+ #: ../includes/Elements/Login_Register.php:879, ../includes/Traits/Login_Registration.php:295
4171
  msgid "Email is missing or Invalid"
4172
  msgstr ""
4173
 
4174
+ #: ../includes/Elements/Login_Register.php:882
4175
  msgid "Already Used Email"
4176
  msgstr ""
4177
 
4178
+ #: ../includes/Elements/Login_Register.php:885
4179
  msgid "Eg. Your email is already in use.."
4180
  msgstr ""
4181
 
4182
+ #: ../includes/Elements/Login_Register.php:886, ../includes/Traits/Login_Registration.php:292
4183
  msgid "The provided email is already registered with other account. Please login or reset password or use another email."
4184
  msgstr ""
4185
 
4186
+ #: ../includes/Elements/Login_Register.php:889
4187
  msgid "Invalid Username"
4188
  msgstr ""
4189
 
4190
+ #: ../includes/Elements/Login_Register.php:892
4191
  msgid "Eg. Your username is invalid."
4192
  msgstr ""
4193
 
4194
+ #: ../includes/Elements/Login_Register.php:893
4195
  msgid "You have used an invalid username"
4196
  msgstr ""
4197
 
4198
+ #: ../includes/Elements/Login_Register.php:896
4199
  msgid "Username already in use"
4200
  msgstr ""
4201
 
4202
+ #: ../includes/Elements/Login_Register.php:899
4203
  msgid "Eg. Your username is already registered."
4204
  msgstr ""
4205
 
4206
+ #: ../includes/Elements/Login_Register.php:900
4207
  msgid "Invalid username provided or the username already registered."
4208
  msgstr ""
4209
 
4210
+ #: ../includes/Elements/Login_Register.php:903, ../includes/Traits/Login_Registration.php:157
4211
  msgid "Invalid Password"
4212
  msgstr ""
4213
 
4214
+ #: ../includes/Elements/Login_Register.php:906
4215
  msgid "Eg. Your password is invalid"
4216
  msgstr ""
4217
 
4218
+ #: ../includes/Elements/Login_Register.php:907
4219
  msgid "Your password is invalid."
4220
  msgstr ""
4221
 
4222
+ #: ../includes/Elements/Login_Register.php:911
4223
  msgid "Invalid Password Confirmed"
4224
  msgstr ""
4225
 
4226
+ #: ../includes/Elements/Login_Register.php:914
4227
  msgid "Eg. Password did not matched"
4228
  msgstr ""
4229
 
4230
+ #: ../includes/Elements/Login_Register.php:915
4231
  msgid "Your confirmed password did not match"
4232
  msgstr ""
4233
 
4234
+ #: ../includes/Elements/Login_Register.php:919
4235
  msgid "Already Logged In"
4236
  msgstr ""
4237
 
4238
+ #: ../includes/Elements/Login_Register.php:922
4239
  msgid "Eg. You are already logged in"
4240
  msgstr ""
4241
 
4242
+ #: ../includes/Elements/Login_Register.php:923, ../includes/Traits/Login_Registration.php:106
4243
  msgid "You are already logged in"
4244
  msgstr ""
4245
 
4246
+ #: ../includes/Elements/Login_Register.php:927
4247
  msgid "reCAPTCHA Failed"
4248
  msgstr ""
4249
 
4250
+ #: ../includes/Elements/Login_Register.php:930
4251
  msgid "Eg. reCAPTCHA Validation Failed"
4252
  msgstr ""
4253
 
4254
+ #: ../includes/Elements/Login_Register.php:931
4255
  msgid "You did not pass reCAPTCHA challenge."
4256
  msgstr ""
4257
 
4258
+ #: ../includes/Elements/Login_Register.php:935
4259
  msgid "Terms & Condition Error"
4260
  msgstr ""
4261
 
4262
+ #: ../includes/Elements/Login_Register.php:938
4263
  msgid "Eg. You must accept the Terms & Conditions"
4264
  msgstr ""
4265
 
4266
+ #: ../includes/Elements/Login_Register.php:939, ../includes/Traits/Login_Registration.php:283
4267
  msgid "You did not accept the Terms and Conditions. Please accept it and try again."
4268
  msgstr ""
4269
 
4270
+ #: ../includes/Elements/Login_Register.php:943
4271
  msgid "Other Errors"
4272
  msgstr ""
4273
 
4274
+ #: ../includes/Elements/Login_Register.php:946
4275
  msgid "Eg. Something went wrong"
4276
  msgstr ""
4277
 
4278
+ #: ../includes/Elements/Login_Register.php:947, ../includes/Traits/Admin.php:65
4279
  msgid "Something went wrong!"
4280
  msgstr ""
4281
 
4282
+ #: ../includes/Elements/Login_Register.php:951
4283
  msgid "Success Messages"
4284
  msgstr ""
4285
 
4286
+ #: ../includes/Elements/Login_Register.php:957
4287
  msgid "Successful Login"
4288
  msgstr ""
4289
 
4290
+ #: ../includes/Elements/Login_Register.php:960
4291
  msgid "Eg. You have logged in successfully"
4292
  msgstr ""
4293
 
4294
+ #: ../includes/Elements/Login_Register.php:961
4295
  msgid "You have logged in successfully"
4296
  msgstr ""
4297
 
4298
+ #: ../includes/Elements/Login_Register.php:964
4299
  msgid "Successful Registration"
4300
  msgstr ""
4301
 
4302
+ #: ../includes/Elements/Login_Register.php:966
4303
  msgid "Registration completed successfully, Check your inbox for password if you did not provided while registering."
4304
  msgstr ""
4305
 
4306
+ #: ../includes/Elements/Login_Register.php:967
4307
  msgid "eg. Registration completed successfully"
4308
  msgstr ""
4309
 
4310
+ #: ../includes/Elements/Login_Register.php:976
4311
  msgid "Register Form Fields"
4312
  msgstr ""
4313
 
4314
+ #: ../includes/Elements/Login_Register.php:981
4315
  msgid "Select the type of fields you want to show in the registration form"
4316
  msgstr ""
4317
 
4318
+ #: ../includes/Elements/Login_Register.php:987, ../includes/Traits/Woo_Product_Comparable.php:231
4319
  msgid "Type"
4320
  msgstr ""
4321
 
4322
+ #: ../includes/Elements/Login_Register.php:1012
4323
  msgid "Required"
4324
  msgstr ""
4325
 
4326
+ #: ../includes/Elements/Login_Register.php:1025
4327
  msgid "Note: This field is required by default."
4328
  msgstr ""
4329
 
4330
+ #: ../includes/Elements/Login_Register.php:1037
4331
  msgid "Field Width"
4332
  msgstr ""
4333
 
4334
+ #: ../includes/Elements/Login_Register.php:1095
4335
  msgid "Show Required Mark"
4336
  msgstr ""
4337
 
4338
+ #: ../includes/Elements/Login_Register.php:1105
4339
  msgid "Register Button"
4340
  msgstr ""
4341
 
4342
+ #: ../includes/Elements/Login_Register.php:1114, ../includes/Elements/Login_Register.php:3363, ../includes/Elements/Login_Register.php:3731
4343
  msgid "Register"
4344
  msgstr ""
4345
 
4346
+ #: ../includes/Elements/Login_Register.php:1124
4347
  msgid "Register Form Options"
4348
  msgstr ""
4349
 
4350
+ #: ../includes/Elements/Login_Register.php:1129
4351
  msgid "Register Actions"
4352
  msgstr ""
4353
 
4354
+ #: ../includes/Elements/Login_Register.php:1130
4355
  msgid "You can select what should happen after a user registers successfully"
4356
  msgstr ""
4357
 
4358
+ #: ../includes/Elements/Login_Register.php:1136
4359
  msgid "Redirect"
4360
  msgstr ""
4361
 
4362
+ #: ../includes/Elements/Login_Register.php:1137
4363
  msgid "Auto Login"
4364
  msgstr ""
4365
 
4366
+ #: ../includes/Elements/Login_Register.php:1138
4367
  msgid "Notify User By Email"
4368
  msgstr ""
4369
 
4370
+ #: ../includes/Elements/Login_Register.php:1144
4371
  msgid "Custom Redirect URL"
4372
  msgstr ""
4373
 
4374
+ #: ../includes/Elements/Login_Register.php:1146
4375
  msgid "eg. https://your-link.com/wp-admin/"
4376
  msgstr ""
4377
 
4378
+ #: ../includes/Elements/Login_Register.php:1159
4379
  msgid "New User Role"
4380
  msgstr ""
4381
 
4382
  #. translators: %s: Site Name
4383
+ #: ../includes/Elements/Login_Register.php:1172
4384
  msgid "Thank you for registering on \"%s\"!"
4385
  msgstr ""
4386
 
4387
+ #: ../includes/Elements/Login_Register.php:1174, ../includes/Elements/Login_Register.php:1283
4388
  msgid "Username: [username]"
4389
  msgstr ""
4390
 
4391
+ #: ../includes/Elements/Login_Register.php:1175
4392
  msgid "Password: [password]"
4393
  msgstr ""
4394
 
4395
+ #: ../includes/Elements/Login_Register.php:1176
4396
  msgid "To reset your password, visit the following address:"
4397
  msgstr ""
4398
 
4399
+ #: ../includes/Elements/Login_Register.php:1178
4400
  msgid "Please click the following address to login to your account:"
4401
  msgstr ""
4402
 
4403
+ #: ../includes/Elements/Login_Register.php:1182
4404
  msgid "Register User Email Options"
4405
  msgstr ""
4406
 
4407
+ #: ../includes/Elements/Login_Register.php:1216, ../includes/Elements/Login_Register.php:1322
4408
  msgid "Email Template Type"
4409
  msgstr ""
4410
 
4411
+ #: ../includes/Elements/Login_Register.php:1217
4412
  msgid "Default template uses WordPress Default email template. So, please select the Custom Option to send the user proper information if you used any username field."
4413
  msgstr ""
4414
 
4415
+ #: ../includes/Elements/Login_Register.php:1222, ../includes/Elements/Login_Register.php:1328
4416
  msgid "WordPres Default"
4417
  msgstr ""
4418
 
4419
+ #: ../includes/Elements/Login_Register.php:1228, ../includes/Elements/Login_Register.php:1334
4420
  msgid "Email Subject"
4421
  msgstr ""
4422
 
4423
+ #: ../includes/Elements/Login_Register.php:1240, ../includes/Elements/Login_Register.php:1346
4424
  msgid "Email Message"
4425
  msgstr ""
4426
 
4427
+ #: ../includes/Elements/Login_Register.php:1242, ../includes/Elements/Login_Register.php:1348
4428
  msgid "Enter Your Custom Email Message.."
4429
  msgstr ""
4430
 
4431
+ #: ../includes/Elements/Login_Register.php:1253
4432
  msgid "<strong>Note:</strong> You can use dynamic content in the email body like [fieldname]. For example [username] will be replaced by user-typed username. Available tags are: [password], [username], [email], [firstname],[lastname], [website], [loginurl], [password_reset_link] and [sitetitle] "
4433
  msgstr ""
4434
 
4435
+ #: ../includes/Elements/Login_Register.php:1262, ../includes/Elements/Login_Register.php:1368
4436
  msgid "Email Content Type"
4437
  msgstr ""
4438
 
4439
+ #: ../includes/Elements/Login_Register.php:1267, ../includes/Elements/Login_Register.php:1373
4440
  msgid "HTML"
4441
  msgstr ""
4442
 
4443
+ #: ../includes/Elements/Login_Register.php:1268, ../includes/Elements/Login_Register.php:1374
4444
  msgid "Plain"
4445
  msgstr ""
4446
 
4447
  #. translators: %s: Site Name
4448
+ #: ../includes/Elements/Login_Register.php:1280
4449
  msgid "[\"%s\"] New User Registration"
4450
  msgstr ""
4451
 
4452
  #. translators: %s: Site Name
4453
+ #: ../includes/Elements/Login_Register.php:1282
4454
  msgid "New user registration on your site %s"
4455
  msgstr ""
4456
 
4457
+ #: ../includes/Elements/Login_Register.php:1284
4458
  msgid "Email: [email]"
4459
  msgstr ""
4460
 
4461
+ #: ../includes/Elements/Login_Register.php:1288
4462
  msgid "Register Admin Email Options"
4463
  msgstr ""
4464
 
4465
+ #: ../includes/Elements/Login_Register.php:1323
4466
  msgid "Default template uses WordPress Default Admin email template. You can customize it by choosing the custom option."
4467
  msgstr ""
4468
 
4469
+ #: ../includes/Elements/Login_Register.php:1359
4470
  msgid "<strong>Note:</strong> You can use dynamic content in the email body like [fieldname]. For example [username] will be replaced by user-typed username. Available tags are: [username], [email], [firstname],[lastname], [website], [loginurl] and [sitetitle] "
4471
  msgstr ""
4472
 
4473
+ #: ../includes/Elements/Login_Register.php:1394
4474
  msgid "Container Box"
4475
  msgstr ""
4476
 
4477
+ #: ../includes/Elements/Login_Register.php:1510, ../includes/Traits/Woo_Product_Comparable.php:377
4478
  msgid "Container Box Shadow"
4479
  msgstr ""
4480
 
4481
+ #: ../includes/Elements/Login_Register.php:1530
4482
  msgid "---Form Wrapper---"
4483
  msgstr ""
4484
 
4485
+ #: ../includes/Elements/Login_Register.php:1535
4486
  msgid "Wrapper width"
4487
  msgstr ""
4488
 
4489
+ #: ../includes/Elements/Login_Register.php:1579
4490
  msgid "Wrapper Margin"
4491
  msgstr ""
4492
 
4493
+ #: ../includes/Elements/Login_Register.php:1594
4494
  msgid "Wrapper Padding"
4495
  msgstr ""
4496
 
4497
+ #: ../includes/Elements/Login_Register.php:1616
4498
  msgid "Wrapper Border Radius"
4499
  msgstr ""
4500
 
4501
+ #: ../includes/Elements/Login_Register.php:1641
4502
  msgid "---Form Style---"
4503
  msgstr ""
4504
 
4505
+ #: ../includes/Elements/Login_Register.php:1645
4506
  msgid "Form width"
4507
  msgstr ""
4508
 
4509
+ #: ../includes/Elements/Login_Register.php:1743
4510
  msgid "Form Wrapper Shadow"
4511
  msgstr ""
4512
 
4513
+ #: ../includes/Elements/Login_Register.php:1752
4514
  msgid "Form Shadow"
4515
  msgstr ""
4516
 
4517
+ #: ../includes/Elements/Login_Register.php:1765
4518
  msgid "%s Form Header"
4519
  msgstr ""
4520
 
4521
+ #: ../includes/Elements/Login_Register.php:1777
4522
  msgid "Header Content"
4523
  msgstr ""
4524
 
4525
+ #: ../includes/Elements/Login_Register.php:1787
4526
  msgid "Header width"
4527
  msgstr ""
4528
 
4529
+ #: ../includes/Elements/Login_Register.php:1822
4530
  msgid "Header height"
4531
  msgstr ""
4532
 
4533
+ #: ../includes/Elements/Login_Register.php:1853
4534
  msgid "Header Margin"
4535
  msgstr ""
4536
 
4537
+ #: ../includes/Elements/Login_Register.php:1868
4538
  msgid "Header Padding"
4539
  msgstr ""
4540
 
4541
+ #: ../includes/Elements/Login_Register.php:1921
4542
  msgid "Form Illustration"
4543
  msgstr ""
4544
 
4545
+ #: ../includes/Elements/Login_Register.php:2063
4546
  msgid "Illustration Shadow"
4547
  msgstr ""
4548
 
4549
+ #: ../includes/Elements/Login_Register.php:2071
4550
  msgid "Form Logo"
4551
  msgstr ""
4552
 
4553
+ #: ../includes/Elements/Login_Register.php:2080
4554
  msgid "width"
4555
  msgstr ""
4556
 
4557
+ #: ../includes/Elements/Login_Register.php:2115
4558
  msgid "height"
4559
  msgstr ""
4560
 
4561
+ #: ../includes/Elements/Login_Register.php:2203
4562
  msgid "Logo Shadow"
4563
  msgstr ""
4564
 
4565
+ #: ../includes/Elements/Login_Register.php:2305
4566
  msgid "Subtitle"
4567
  msgstr ""
4568
 
4569
+ #: ../includes/Elements/Login_Register.php:2390
4570
  msgid "Subtitle Typography"
4571
  msgstr ""
4572
 
4573
+ #: ../includes/Elements/Login_Register.php:2399
4574
  msgid "Form Fields"
4575
  msgstr ""
4576
 
4577
+ #: ../includes/Elements/Login_Register.php:2413
4578
  msgid "Form Input Fields"
4579
  msgstr ""
4580
 
4581
+ #: ../includes/Elements/Login_Register.php:2448
4582
  msgid "Terms & Condition Field"
4583
  msgstr ""
4584
 
4585
+ #: ../includes/Elements/Login_Register.php:2510, ../includes/Elements/Login_Register.php:3178, ../includes/Elements/Login_Register.php:3499
4586
  msgid "Colors & Border"
4587
  msgstr ""
4588
 
4589
+ #: ../includes/Elements/Login_Register.php:2601
4590
  msgid "Form Labels"
4591
  msgstr ""
4592
 
4593
+ #: ../includes/Elements/Login_Register.php:2650, ../includes/Traits/Woo_Product_Comparable.php:813, ../includes/Traits/Woo_Product_Comparable.php:998, ../includes/Traits/Woo_Product_Comparable.php:1206
4594
  msgid "Colors"
4595
  msgstr ""
4596
 
4597
+ #: ../includes/Elements/Login_Register.php:2714
4598
  msgid "Required Mark Style"
4599
  msgstr ""
4600
 
4601
+ #: ../includes/Elements/Login_Register.php:2724
4602
  msgid "Mark Sign"
4603
  msgstr ""
4604
 
4605
+ #: ../includes/Elements/Login_Register.php:2813
4606
  msgid "Password Visibility Style"
4607
  msgstr ""
4608
 
4609
+ #: ../includes/Elements/Login_Register.php:2844
4610
  msgid "Open Eye Color"
4611
  msgstr ""
4612
 
4613
+ #: ../includes/Elements/Login_Register.php:2854
4614
  msgid "Close Eye Color"
4615
  msgstr ""
4616
 
4617
+ #: ../includes/Elements/Login_Register.php:2916
4618
  msgid "Remember Me Style"
4619
  msgstr ""
4620
 
4621
+ #: ../includes/Elements/Login_Register.php:2928, ../includes/Extensions/Table_of_Content.php:1028
4622
  msgid "Style"
4623
  msgstr ""
4624
 
4625
+ #: ../includes/Elements/Login_Register.php:2942
4626
  msgid "Container Margin"
4627
  msgstr ""
4628
 
4629
+ #: ../includes/Elements/Login_Register.php:2957
4630
  msgid "Container Padding"
4631
  msgstr ""
4632
 
4633
+ #: ../includes/Elements/Login_Register.php:2972
4634
  msgid "Label Margin"
4635
  msgstr ""
4636
 
4637
+ #: ../includes/Elements/Login_Register.php:2987
4638
  msgid "Label Padding"
4639
  msgstr ""
4640
 
4641
+ #: ../includes/Elements/Login_Register.php:3013
4642
  msgid "Text Background"
4643
  msgstr ""
4644
 
4645
+ #: ../includes/Elements/Login_Register.php:3024
4646
  msgid "Checkbox | Toggle Color"
4647
  msgstr ""
4648
 
4649
+ #: ../includes/Elements/Login_Register.php:3035
4650
  msgid "Remember Me Typography"
4651
  msgstr ""
4652
 
4653
+ #: ../includes/Elements/Login_Register.php:3073
4654
  msgid "%s Button"
4655
  msgstr ""
4656
 
4657
+ #: ../includes/Elements/Login_Register.php:3121, ../includes/Elements/Login_Register.php:3421
4658
  msgid "Display as"
4659
  msgstr ""
4660
 
4661
+ #: ../includes/Elements/Login_Register.php:3136, ../includes/Elements/Login_Register.php:3435
4662
  msgid "Justify Content"
4663
  msgstr ""
4664
 
4665
+ #: ../includes/Elements/Login_Register.php:3139, ../includes/Elements/Login_Register.php:3438, ../includes/Elements/Login_Register.php:3458
4666
  msgid "Start"
4667
  msgstr ""
4668
 
4669
+ #: ../includes/Elements/Login_Register.php:3140, ../includes/Elements/Login_Register.php:3439, ../includes/Elements/Login_Register.php:3459
4670
  msgid "End"
4671
  msgstr ""
4672
 
4673
+ #: ../includes/Elements/Login_Register.php:3143, ../includes/Elements/Login_Register.php:3442
4674
  msgid "Space Around"
4675
  msgstr ""
4676
 
4677
+ #: ../includes/Elements/Login_Register.php:3144, ../includes/Elements/Login_Register.php:3443, ../includes/Elements/Login_Register.php:3463
4678
  msgid "Space Evenly"
4679
  msgstr ""
4680
 
4681
+ #: ../includes/Elements/Login_Register.php:3260
4682
  msgid "Button width"
4683
  msgstr ""
4684
 
4685
+ #: ../includes/Elements/Login_Register.php:3283
4686
  msgid "Button Height"
4687
  msgstr ""
4688
 
4689
+ #: ../includes/Elements/Login_Register.php:3314
4690
  msgid "%s Form reCAPTCHA"
4691
  msgstr ""
4692
 
4693
+ #: ../includes/Elements/Login_Register.php:3335
4694
  msgid "Theme"
4695
  msgstr ""
4696
 
4697
+ #: ../includes/Elements/Login_Register.php:3338, ../includes/Elements/Pricing_Table.php:470
4698
  msgid "Light"
4699
  msgstr ""
4700
 
4701
+ #: ../includes/Elements/Login_Register.php:3339
4702
  msgid "Dark"
4703
  msgstr ""
4704
 
4705
+ #: ../includes/Elements/Login_Register.php:3349
4706
  msgid "Compact"
4707
  msgstr ""
4708
 
4709
+ #: ../includes/Elements/Login_Register.php:3365
4710
  msgid "%s Link"
4711
  msgstr ""
4712
 
4713
+ #: ../includes/Elements/Login_Register.php:3373
4714
  msgid "Here you can style the %s link displayed on the %s Form"
4715
  msgstr ""
4716
 
4717
+ #: ../includes/Elements/Login_Register.php:3455
4718
  msgid "Align Items"
4719
  msgstr ""
4720
 
4721
+ #: ../includes/Elements/Login_Register.php:3461, ../includes/Elements/Woo_Product_Carousel.php:497
4722
  msgid "Stretch"
4723
  msgstr ""
4724
 
4725
+ #: ../includes/Elements/Login_Register.php:3462
4726
  msgid "Baseline"
4727
  msgstr ""
4728
 
4729
+ #: ../includes/Elements/Login_Register.php:3580
4730
  msgid "Link Container width"
4731
  msgstr ""
4732
 
4733
+ #: ../includes/Elements/Login_Register.php:3603
4734
  msgid "Link width"
4735
  msgstr ""
4736
 
4737
+ #: ../includes/Elements/Login_Register.php:3626
4738
  msgid "Link Height"
4739
  msgstr ""
4740
 
4741
  #. translators: %s user display name
4742
+ #: ../includes/Elements/Login_Register.php:3807
4743
  msgid "You are already logged in as %s. "
4744
  msgstr ""
4745
 
4746
+ #: ../includes/Elements/Login_Register.php:3808
4747
  msgid "Logout"
4748
  msgstr ""
4749
 
4750
+ #: ../includes/Elements/Login_Register.php:4194
4751
  msgid "Form Logo Image"
4752
  msgstr ""
4753
 
4754
  #. translators: %s: Error fields
4755
+ #: ../includes/Elements/Login_Register.php:4313
4756
  msgid "Error! you seem to have added %s field in the form more than once."
4757
  msgstr ""
4758
 
4759
  #. translators: %s: Error String
4760
+ #: ../includes/Elements/Login_Register.php:4329
4761
  msgid "Error! It is required to use %s field."
4762
  msgstr ""
4763
 
4764
  #. translators: %s: Error String
4765
+ #: ../includes/Elements/Login_Register.php:4353
4766
  msgid "Error! It is required to use %s field with %s Field."
4767
  msgstr ""
4768
 
4798
  msgid "Post Grid Style"
4799
  msgstr ""
4800
 
4801
+ #: ../includes/Elements/Post_Grid.php:230, ../includes/Elements/Testimonial.php:249
4802
  msgid "Select Style"
4803
  msgstr ""
4804
 
4974
  msgid "<p class=\"no-posts-found\">No layout found!</p>"
4975
  msgstr ""
4976
 
4977
+ #: ../includes/Elements/Pricing_Table.php:87
4978
  msgid "Pricing Style 2"
4979
  msgstr ""
4980
 
4981
+ #: ../includes/Elements/Pricing_Table.php:88
4982
  msgid "Pricing Style 3 (Pro)"
4983
  msgstr ""
4984
 
4985
+ #: ../includes/Elements/Pricing_Table.php:89
4986
  msgid "Pricing Style 4 (Pro)"
4987
  msgstr ""
4988
 
4989
+ #: ../includes/Elements/Pricing_Table.php:90
4990
  msgid "Pricing Style 5 (Pro)"
4991
  msgstr ""
4992
 
4993
+ #: ../includes/Elements/Pricing_Table.php:99
4994
  msgid "Pricing Style"
4995
  msgstr ""
4996
 
4997
+ #: ../includes/Elements/Pricing_Table.php:126, ../includes/Elements/Pricing_Table.php:320, ../includes/Extensions/Table_of_Content.php:428
4998
  msgid "List Icon"
4999
  msgstr ""
5000
 
5001
+ #: ../includes/Elements/Pricing_Table.php:142
5002
  msgid "Startup"
5003
  msgstr ""
5004
 
5005
+ #: ../includes/Elements/Pricing_Table.php:159
5006
  msgid "A tagline here."
5007
  msgstr ""
5008
 
5009
+ #: ../includes/Elements/Pricing_Table.php:211
5010
  msgid "99"
5011
  msgstr ""
5012
 
5013
+ #: ../includes/Elements/Pricing_Table.php:217
5014
  msgid "On Sale?"
5015
  msgstr ""
5016
 
5017
+ #: ../includes/Elements/Pricing_Table.php:228, ../includes/Elements/Pricing_Table.php:1105
5018
  msgid "Sale Price"
5019
  msgstr ""
5020
 
5021
+ #: ../includes/Elements/Pricing_Table.php:237
5022
  msgid "89"
5023
  msgstr ""
5024
 
5025
+ #: ../includes/Elements/Pricing_Table.php:246
5026
  msgid "Price Currency"
5027
  msgstr ""
5028
 
5029
+ #: ../includes/Elements/Pricing_Table.php:250
5030
  msgid "$"
5031
  msgstr ""
5032
 
5033
+ #: ../includes/Elements/Pricing_Table.php:257
5034
  msgid "Currency Placement"
5035
  msgstr ""
5036
 
5037
+ #: ../includes/Elements/Pricing_Table.php:273
5038
  msgid "Price Period (per)"
5039
  msgstr ""
5040
 
5041
+ #: ../includes/Elements/Pricing_Table.php:277
5042
  msgid "month"
5043
  msgstr ""
5044
 
5045
+ #: ../includes/Elements/Pricing_Table.php:284
5046
  msgid "Period Separator"
5047
  msgstr ""
5048
 
5049
+ #: ../includes/Elements/Pricing_Table.php:288
5050
  msgid "/"
5051
  msgstr ""
5052
 
5053
+ #: ../includes/Elements/Pricing_Table.php:300
5054
  msgid "Feature"
5055
  msgstr ""
5056
 
5057
+ #: ../includes/Elements/Pricing_Table.php:313
5058
  msgid "Pricing table list item"
5059
  msgstr ""
5060
 
5061
+ #: ../includes/Elements/Pricing_Table.php:333
5062
  msgid "Item Active?"
5063
  msgstr ""
5064
 
5065
+ #: ../includes/Elements/Pricing_Table.php:352
5066
  msgid "Enable Tooltip?"
5067
  msgstr ""
5068
 
5069
+ #: ../includes/Elements/Pricing_Table.php:362
5070
  msgid "Tooltip Content"
5071
  msgstr ""
5072
 
5073
+ #: ../includes/Elements/Pricing_Table.php:365
5074
  msgid "I'm a awesome tooltip!!"
5075
  msgstr ""
5076
 
5077
+ #: ../includes/Elements/Pricing_Table.php:375
5078
  msgid "Tooltip Side"
5079
  msgstr ""
5080
 
5081
+ #: ../includes/Elements/Pricing_Table.php:405
5082
  msgid "Tooltip Trigger"
5083
  msgstr ""
5084
 
5085
+ #: ../includes/Elements/Pricing_Table.php:409
5086
  msgid "Click"
5087
  msgstr ""
5088
 
5089
+ #: ../includes/Elements/Pricing_Table.php:421
5090
  msgid "Tooltip Animation"
5091
  msgstr ""
5092
 
5093
+ #: ../includes/Elements/Pricing_Table.php:425
5094
  msgid "Grow"
5095
  msgstr ""
5096
 
5097
+ #: ../includes/Elements/Pricing_Table.php:428
5098
  msgid "Fall"
5099
  msgstr ""
5100
 
5101
+ #: ../includes/Elements/Pricing_Table.php:440, ../includes/Elements/Progress_Bar.php:219
5102
  msgid "Animation Duration"
5103
  msgstr ""
5104
 
5105
+ #: ../includes/Elements/Pricing_Table.php:452, ../includes/Elements/Pricing_Table.php:1563
5106
  msgid "Tooltip Arrow"
5107
  msgstr ""
5108
 
5109
+ #: ../includes/Elements/Pricing_Table.php:465
5110
  msgid "Tooltip Theme"
5111
  msgstr ""
5112
 
5113
+ #: ../includes/Elements/Pricing_Table.php:469
5114
  msgid "Noir"
5115
  msgstr ""
5116
 
5117
+ #: ../includes/Elements/Pricing_Table.php:471
5118
  msgid "Punk"
5119
  msgstr ""
5120
 
5121
+ #: ../includes/Elements/Pricing_Table.php:473
5122
  msgid "Borderless"
5123
  msgstr ""
5124
 
5125
+ #: ../includes/Elements/Pricing_Table.php:514
5126
  msgid "Display Button"
5127
  msgstr ""
5128
 
5129
+ #: ../includes/Elements/Pricing_Table.php:583
5130
  msgid "Choose Plan"
5131
  msgstr ""
5132
 
5133
+ #: ../includes/Elements/Pricing_Table.php:593, ../includes/Elements/Tooltip.php:240
5134
  msgid "Button Link"
5135
  msgstr ""
5136
 
5137
+ #: ../includes/Elements/Pricing_Table.php:616, ../includes/Elements/Pricing_Table.php:1278
5138
  msgid "Ribbon"
5139
  msgstr ""
5140
 
5141
+ #: ../includes/Elements/Pricing_Table.php:623
5142
  msgid "Featured?"
5143
  msgstr ""
5144
 
5145
+ #: ../includes/Elements/Pricing_Table.php:633
5146
  msgid "Ribbon Style"
5147
  msgstr ""
5148
 
5149
+ #: ../includes/Elements/Pricing_Table.php:638
5150
  msgid "Style 2"
5151
  msgstr ""
5152
 
5153
+ #: ../includes/Elements/Pricing_Table.php:639
5154
  msgid "Style 3"
5155
  msgstr ""
5156
 
5157
+ #: ../includes/Elements/Pricing_Table.php:640
5158
  msgid "Style 4"
5159
  msgstr ""
5160
 
5161
+ #: ../includes/Elements/Pricing_Table.php:654
5162
  msgid "Featured Tag Text"
5163
  msgstr ""
5164
 
5165
+ #: ../includes/Elements/Pricing_Table.php:658
5166
  msgid "Featured"
5167
  msgstr ""
5168
 
5169
+ #: ../includes/Elements/Pricing_Table.php:677
5170
  msgid "Ribbon Alignment"
5171
  msgstr ""
5172
 
5173
+ #: ../includes/Elements/Pricing_Table.php:734
5174
  msgid "Pricing Table Style"
5175
  msgstr ""
5176
 
5177
+ #: ../includes/Elements/Pricing_Table.php:918, ../includes/Elements/Pricing_Table.php:1286
5178
  msgid "Line Color"
5179
  msgstr ""
5180
 
5181
+ #: ../includes/Elements/Pricing_Table.php:941
5182
  msgid "Subtitle Style"
5183
  msgstr ""
5184
 
5185
+ #: ../includes/Elements/Pricing_Table.php:1027
5186
  msgid "Pricing"
5187
  msgstr ""
5188
 
5189
+ #: ../includes/Elements/Pricing_Table.php:1035
5190
  msgid "Original Price"
5191
  msgstr ""
5192
 
5193
+ #: ../includes/Elements/Pricing_Table.php:1064
5194
  msgid "Original Price Currency"
5195
  msgstr ""
5196
 
5197
+ #: ../includes/Elements/Pricing_Table.php:1134
5198
  msgid "Sale Price Currency"
5199
  msgstr ""
5200
 
5201
+ #: ../includes/Elements/Pricing_Table.php:1174
5202
  msgid "Pricing Period"
5203
  msgstr ""
5204
 
5205
+ #: ../includes/Elements/Pricing_Table.php:1230
5206
  msgid "Disable item color"
5207
  msgstr ""
5208
 
5209
+ #: ../includes/Elements/Pricing_Table.php:1307, ../includes/Extensions/Table_of_Content.php:694
5210
  msgid "Line Height"
5211
  msgstr ""
5212
 
5213
+ #: ../includes/Elements/Pricing_Table.php:1489
5214
  msgid "Arrow Background"
5215
  msgstr ""
5216
 
5217
+ #: ../includes/Elements/Pricing_Table.php:1522
5218
  msgid "Refresh your browser after saving the padding value for see changes."
5219
  msgstr ""
5220
 
5221
+ #: ../includes/Elements/Pricing_Table.php:1572, ../includes/Elements/Tooltip.php:651
5222
  msgid "Arrow Size"
5223
  msgstr ""
5224
 
5225
+ #: ../includes/Elements/Pricing_Table.php:1617
5226
  msgid "Icon Settings"
5227
  msgstr ""
5228
 
5229
+ #: ../includes/Elements/Pricing_Table.php:1628
5230
  msgid "Show Background"
5231
  msgstr ""
5232
 
5233
+ #: ../includes/Elements/Pricing_Table.php:1661
5234
  msgid "Background Hover Color"
5235
  msgstr ""
5236
 
5237
+ #: ../includes/Elements/Pricing_Table.php:1697
5238
  msgid "Icon Area Width"
5239
  msgstr ""
5240
 
5241
+ #: ../includes/Elements/Pricing_Table.php:1722
5242
  msgid "Icon Area Height"
5243
  msgstr ""
5244
 
5245
+ #: ../includes/Elements/Pricing_Table.php:1753, ../includes/Elements/Team_Member.php:796
5246
  msgid "Icon Hover Color"
5247
  msgstr ""
5248
 
5249
+ #: ../includes/Elements/Pricing_Table.php:1877
5250
  msgid "Button Gradient Background"
5251
  msgstr ""
5252
 
5302
  msgid "Layouts"
5303
  msgstr ""
5304
 
5305
+ #: ../includes/Elements/Product_Grid.php:238, ../includes/Elements/Product_Grid.php:260, ../includes/Elements/Product_Grid.php:1634, ../includes/Elements/Product_Grid.php:1715, ../includes/Elements/Team_Member.php:280, ../includes/Elements/Woo_Product_Carousel.php:788
5306
  msgid "Style Preset"
5307
  msgstr ""
5308
 
5309
+ #: ../includes/Elements/Product_Grid.php:243, ../includes/Elements/Team_Member.php:269
5310
  msgid "Simple Style"
5311
  msgstr ""
5312
 
5314
  msgid "Reveal Style"
5315
  msgstr ""
5316
 
5317
+ #: ../includes/Elements/Product_Grid.php:245, ../includes/Elements/Team_Member.php:270
5318
  msgid "Overlay Style"
5319
  msgstr ""
5320
 
5458
  msgid "Label Text"
5459
  msgstr ""
5460
 
5461
+ #: ../includes/Elements/Product_Grid.php:701, ../includes/Elements/Team_Member.php:359
5462
  msgid "Content Background Color"
5463
  msgstr ""
5464
 
5858
  msgid "Bar Margin"
5859
  msgstr ""
5860
 
5861
+ #: ../includes/Elements/Team_Member.php:66
5862
  msgid "Team Member Image"
5863
  msgstr ""
5864
 
5865
+ #: ../includes/Elements/Team_Member.php:74
5866
  msgid "Team Member Avatar"
5867
  msgstr ""
5868
 
5869
+ #: ../includes/Elements/Team_Member.php:100
5870
  msgid "Team Member Content"
5871
  msgstr ""
5872
 
5873
+ #: ../includes/Elements/Team_Member.php:108, ../includes/Traits/Controls.php:301
5874
  msgid "Name"
5875
  msgstr ""
5876
 
5877
+ #: ../includes/Elements/Team_Member.php:113, ../includes/Elements/Testimonial.php:137
5878
  msgid "John Doe"
5879
  msgstr ""
5880
 
5881
+ #: ../includes/Elements/Team_Member.php:120
5882
  msgid "Job Position"
5883
  msgstr ""
5884
 
5885
+ #: ../includes/Elements/Team_Member.php:125
5886
  msgid "Software Engineer"
5887
  msgstr ""
5888
 
5889
+ #: ../includes/Elements/Team_Member.php:137
5890
  msgid "Add team member description here. Remove the text if not necessary."
5891
  msgstr ""
5892
 
5893
+ #: ../includes/Elements/Team_Member.php:148
5894
  msgid "Social Profiles"
5895
  msgstr ""
5896
 
5897
+ #: ../includes/Elements/Team_Member.php:155
5898
  msgid "Display Social Profiles?"
5899
  msgstr ""
5900
 
5901
+ #: ../includes/Elements/Team_Member.php:188
5902
  msgid "Place URL here"
5903
  msgstr ""
5904
 
5905
+ #: ../includes/Elements/Team_Member.php:263
5906
  msgid "Team Member Styles"
5907
  msgstr ""
5908
 
5909
+ #: ../includes/Elements/Team_Member.php:271
5910
  msgid "Centered Style"
5911
  msgstr ""
5912
 
5913
+ #: ../includes/Elements/Team_Member.php:272
5914
  msgid "Circle Style"
5915
  msgstr ""
5916
 
5917
+ #: ../includes/Elements/Team_Member.php:273
5918
  msgid "Social on Bottom"
5919
  msgstr ""
5920
 
5921
+ #: ../includes/Elements/Team_Member.php:274
5922
  msgid "Social on Right"
5923
  msgstr ""
5924
 
5925
+ #: ../includes/Elements/Team_Member.php:308
5926
  msgid "Content Card"
5927
  msgstr ""
5928
 
5929
+ #: ../includes/Elements/Team_Member.php:371
5930
  msgid "Set Alignment"
5931
  msgstr ""
5932
 
5933
+ #: ../includes/Elements/Team_Member.php:435
5934
  msgid "Team Member Image Style"
5935
  msgstr ""
5936
 
5937
+ #: ../includes/Elements/Team_Member.php:443, ../includes/Elements/Testimonial.php:361
5938
  msgid "Image Width"
5939
  msgstr ""
5940
 
5941
+ #: ../includes/Elements/Team_Member.php:509, ../includes/Elements/Testimonial.php:443
5942
  msgid "Rounded Avatar?"
5943
  msgstr ""
5944
 
5945
+ #: ../includes/Elements/Team_Member.php:545
5946
  msgid "Member Name"
5947
  msgstr ""
5948
 
5949
+ #: ../includes/Elements/Team_Member.php:553
5950
  msgid "Member Name Color"
5951
  msgstr ""
5952
 
5953
+ #: ../includes/Elements/Team_Member.php:573
5954
  msgid "Member Job Position"
5955
  msgstr ""
5956
 
5957
+ #: ../includes/Elements/Team_Member.php:582
5958
  msgid "Job Position Color"
5959
  msgstr ""
5960
 
5961
+ #: ../includes/Elements/Team_Member.php:602
5962
  msgid "Member Description"
5963
  msgstr ""
5964
 
5965
+ #: ../includes/Elements/Team_Member.php:611
5966
  msgid "Description Color"
5967
  msgstr ""
5968
 
5969
+ #: ../includes/Elements/Team_Member.php:634
5970
  msgid "Social Profiles Style"
5971
  msgstr ""
5972
 
5973
+ #: ../includes/Elements/Team_Member.php:666
5974
  msgid "Social Profiles Margin"
5975
  msgstr ""
5976
 
5977
+ #: ../includes/Elements/Team_Member.php:679
5978
  msgid "Social Icon Padding"
5979
  msgstr ""
5980
 
5981
+ #: ../includes/Elements/Team_Member.php:691
5982
  msgid "Social Icon Distance"
5983
  msgstr ""
5984
 
5985
+ #: ../includes/Elements/Team_Member.php:808
5986
  msgid "Hover Background"
5987
  msgstr ""
5988
 
5989
+ #: ../includes/Elements/Team_Member.php:835
5990
  msgid "Hover Border Color"
5991
  msgstr ""
5992
 
5993
+ #: ../includes/Elements/Testimonial.php:82
5994
  msgid "Testimonial Image"
5995
  msgstr ""
5996
 
5997
+ #: ../includes/Elements/Testimonial.php:89
5998
  msgid "Display Avatar?"
5999
  msgstr ""
6000
 
6001
+ #: ../includes/Elements/Testimonial.php:98
6002
  msgid "Testimonial Avatar"
6003
  msgstr ""
6004
 
6005
+ #: ../includes/Elements/Testimonial.php:128
6006
  msgid "Testimonial Content"
6007
  msgstr ""
6008
 
6009
+ #: ../includes/Elements/Testimonial.php:135, ../includes/Elements/Testimonial.php:479
6010
  msgid "User Name"
6011
  msgstr ""
6012
 
6013
+ #: ../includes/Elements/Testimonial.php:145, ../includes/Elements/Testimonial.php:519
6014
  msgid "Company Name"
6015
  msgstr ""
6016
 
6017
+ #: ../includes/Elements/Testimonial.php:147
6018
  msgid "Codetic"
6019
  msgstr ""
6020
 
6021
+ #: ../includes/Elements/Testimonial.php:155
6022
  msgid "Testimonial Description"
6023
  msgstr ""
6024
 
6025
+ #: ../includes/Elements/Testimonial.php:157
6026
  msgid "Add testimonial description here. Edit and place your own text."
6027
  msgstr ""
6028
 
6029
+ #: ../includes/Elements/Testimonial.php:164
6030
  msgid "Description Height"
6031
  msgstr ""
6032
 
6033
+ #: ../includes/Elements/Testimonial.php:181
6034
  msgid "Display Rating?"
6035
  msgstr ""
6036
 
6037
+ #: ../includes/Elements/Testimonial.php:191
6038
  msgid "Rating Number"
6039
  msgstr ""
6040
 
6041
+ #: ../includes/Elements/Testimonial.php:241
6042
  msgid "Testimonial Styles"
6043
  msgstr ""
6044
 
6045
+ #: ../includes/Elements/Testimonial.php:255
6046
  msgid "Content | Icon/Image | Bio"
6047
  msgstr ""
6048
 
6049
+ #: ../includes/Elements/Testimonial.php:256
6050
  msgid "Icon/Image | Content"
6051
  msgstr ""
6052
 
6053
+ #: ../includes/Elements/Testimonial.php:257
6054
  msgid "Content | Icon/Image"
6055
  msgstr ""
6056
 
6057
+ #: ../includes/Elements/Testimonial.php:258
6058
  msgid "Content Top | Icon Title Inline"
6059
  msgstr ""
6060
 
6061
+ #: ../includes/Elements/Testimonial.php:259
6062
  msgid "Content Bottom | Icon Title Inline"
6063
  msgstr ""
6064
 
6065
+ #: ../includes/Elements/Testimonial.php:305
6066
  msgid "Layout Alignment"
6067
  msgstr ""
6068
 
6069
+ #: ../includes/Elements/Testimonial.php:337
6070
  msgid "Display User & Company Block?"
6071
  msgstr ""
6072
 
6073
+ #: ../includes/Elements/Testimonial.php:350
6074
  msgid "Testimonial Image Style"
6075
  msgstr ""
6076
 
6077
+ #: ../includes/Elements/Testimonial.php:387
6078
  msgid "Image Max Width"
6079
  msgstr ""
6080
 
6081
+ #: ../includes/Elements/Testimonial.php:471
6082
  msgid "Color, Typography &amp; Spacing"
6083
  msgstr ""
6084
 
6085
+ #: ../includes/Elements/Testimonial.php:487
6086
  msgid "User Name Color"
6087
  msgstr ""
6088
 
6089
+ #: ../includes/Elements/Testimonial.php:528
6090
  msgid "Company Color"
6091
  msgstr ""
6092
 
6093
+ #: ../includes/Elements/Testimonial.php:560
6094
  msgid "Testimonial Text"
6095
  msgstr ""
6096
 
6097
+ #: ../includes/Elements/Testimonial.php:569
6098
  msgid "Testimonial Text Color"
6099
  msgstr ""
6100
 
6101
+ #: ../includes/Elements/Testimonial.php:610
6102
  msgid "Distance Between Rating Item"
6103
  msgstr ""
6104
 
6105
+ #: ../includes/Elements/Testimonial.php:636
6106
  msgid "Quotation Style"
6107
  msgstr ""
6108
 
6109
+ #: ../includes/Elements/Testimonial.php:644
6110
  msgid "Quotation Mark Color"
6111
  msgstr ""
6112
 
6113
+ #: ../includes/Elements/Testimonial.php:664
6114
  msgid "Quotation Postion From Top"
6115
  msgstr ""
6116
 
6117
+ #: ../includes/Elements/Testimonial.php:686
6118
  msgid "Quotation Postion From Right"
6119
  msgstr ""
6120
 
6766
  msgid "Hand"
6767
  msgstr ""
6768
 
6769
+ #: ../includes/Elements/Woo_Product_Carousel.php:2903
6770
  msgid "<p class=\"eael-no-posts-found\">No layout found!</p>"
6771
  msgstr ""
6772
 
readme.txt CHANGED
@@ -4,7 +4,7 @@ Tags: elementor, elements, addons, elementor addons, elementor widget, elementor
4
  Requires at least: 5.0
5
  Tested up to: 5.7
6
  Requires PHP: 5.6
7
- Stable tag: 4.6.2
8
  License: GPLv3
9
  License URI: https://opensource.org/licenses/GPL-3.0
10
 
@@ -223,6 +223,11 @@ Your existing elements/content will work with premium version. So you won't lose
223
 
224
  == Changelog ==
225
 
 
 
 
 
 
226
  = 4.6.2 - 13/04/2021 =
227
 
228
  - Fixed: EA Creative Button | Missing style controls
4
  Requires at least: 5.0
5
  Tested up to: 5.7
6
  Requires PHP: 5.6
7
+ Stable tag: 4.6.3
8
  License: GPLv3
9
  License URI: https://opensource.org/licenses/GPL-3.0
10
 
223
 
224
  == Changelog ==
225
 
226
+ = 4.6.3 - 25/04/2021 =
227
+
228
+ - Fixed: Elementor\Scheme_Typography is deprecated
229
+ - Few minor bug fix & improvements
230
+
231
  = 4.6.2 - 13/04/2021 =
232
 
233
  - Fixed: EA Creative Button | Missing style controls