Version Description
11/12/2022 =
Fixed: EA Filterable Gallery | Gallery Item name showing default value
Few minor bug fixes & improvements
Download this release
Release Info
Developer | wpdevteam |
Plugin | Elementor Essential Addons |
Version | 5.5.1 |
Comparing to | |
See all releases |
Code changes from version 5.5.0 to 5.5.1
- essential_adons_elementor.php +5 -5
- includes/Elements/Filterable_Gallery.php +1 -10
- languages/essential-addons-for-elementor-lite.pot +102 -106
- readme.txt +6 -1
essential_adons_elementor.php
CHANGED
@@ -4,14 +4,14 @@
|
|
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: 5.5.
|
8 |
* Author URI: https://wpdeveloper.com/
|
9 |
* Text Domain: essential-addons-for-elementor-lite
|
10 |
* Domain Path: /languages
|
11 |
*
|
12 |
-
* WC tested up to: 7.1.
|
13 |
-
* Elementor tested up to: 3.
|
14 |
-
* Elementor Pro tested up to: 3.
|
15 |
*/
|
16 |
|
17 |
if (!defined('ABSPATH')) {
|
@@ -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', '5.5.
|
31 |
define('EAEL_ASSET_PATH', wp_upload_dir()['basedir'] . '/essential-addons-elementor');
|
32 |
define('EAEL_ASSET_URL', wp_upload_dir()['baseurl'] . '/essential-addons-elementor');
|
33 |
/**
|
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: 5.5.1
|
8 |
* Author URI: https://wpdeveloper.com/
|
9 |
* Text Domain: essential-addons-for-elementor-lite
|
10 |
* Domain Path: /languages
|
11 |
*
|
12 |
+
* WC tested up to: 7.1.1
|
13 |
+
* Elementor tested up to: 3.9.0
|
14 |
+
* Elementor Pro tested up to: 3.9.0
|
15 |
*/
|
16 |
|
17 |
if (!defined('ABSPATH')) {
|
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', '5.5.1');
|
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/Elements/Filterable_Gallery.php
CHANGED
@@ -398,14 +398,6 @@ class Filterable_Gallery extends Widget_Base
|
|
398 |
'label_block' => true,
|
399 |
'default' => esc_html__('Gallery Item', 'essential-addons-for-elementor-lite'),
|
400 |
],
|
401 |
-
[
|
402 |
-
'name' => 'eael_fg_control_label',
|
403 |
-
'label' => esc_html__('Item Label', 'essential-addons-for-elementor-lite'),
|
404 |
-
'type' => Controls_Manager::TEXT,
|
405 |
-
'dynamic' => ['active' => true],
|
406 |
-
'label_block' => true,
|
407 |
-
'default' => esc_html__('Gallery Item', 'essential-addons-for-elementor-lite'),
|
408 |
-
],
|
409 |
],
|
410 |
'title_field' => '{{eael_fg_control}}',
|
411 |
]
|
@@ -2816,10 +2808,9 @@ class Filterable_Gallery extends Widget_Base
|
|
2816 |
|
2817 |
foreach ($settings['eael_fg_controls'] as $key => $control) :
|
2818 |
$sorter_filter = $this->sorter_class($control['eael_fg_control']);
|
2819 |
-
$sorter_label = $control['eael_fg_control_label'] != '' ? $control['eael_fg_control_label'] : $control['eael_fg_control'];
|
2820 |
?><li data-load-more-status="0" data-first-init="0" class="control <?php if ($key == 0 && empty($settings['eael_fg_all_label_text'])) {
|
2821 |
echo 'active';
|
2822 |
-
} ?>" data-filter=".eael-cf-<?php echo esc_attr($sorter_filter); ?>"><?php echo esc_html( $
|
2823 |
endforeach;
|
2824 |
?></ul>
|
2825 |
</div>
|
398 |
'label_block' => true,
|
399 |
'default' => esc_html__('Gallery Item', 'essential-addons-for-elementor-lite'),
|
400 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
401 |
],
|
402 |
'title_field' => '{{eael_fg_control}}',
|
403 |
]
|
2808 |
|
2809 |
foreach ($settings['eael_fg_controls'] as $key => $control) :
|
2810 |
$sorter_filter = $this->sorter_class($control['eael_fg_control']);
|
|
|
2811 |
?><li data-load-more-status="0" data-first-init="0" class="control <?php if ($key == 0 && empty($settings['eael_fg_all_label_text'])) {
|
2812 |
echo 'active';
|
2813 |
+
} ?>" data-filter=".eael-cf-<?php echo esc_attr($sorter_filter); ?>"><?php echo esc_html( $control['eael_fg_control'] ); ?></li><?php
|
2814 |
endforeach;
|
2815 |
?></ul>
|
2816 |
</div>
|
languages/essential-addons-for-elementor-lite.pot
CHANGED
@@ -6,7 +6,7 @@ msgstr ""
|
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
-
"POT-Creation-Date: 2022-12-
|
10 |
"X-Poedit-Basepath: ..\n"
|
11 |
"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n"
|
12 |
"X-Poedit-SearchPath-0: .\n"
|
@@ -26,11 +26,11 @@ msgstr ""
|
|
26 |
msgid "Loading..."
|
27 |
msgstr ""
|
28 |
|
29 |
-
#: ../includes/Classes/Helper.php:240, ../includes/Elements/Adv_Accordion.php:409, ../includes/Elements/Adv_Tabs.php:345, ../includes/Elements/Contact_Form_7.php:270, ../includes/Elements/Content_Ticker.php:306, ../includes/Elements/Countdown.php:551, ../includes/Elements/Creative_Button.php:188, ../includes/Elements/Cta_Box.php:397, ../includes/Elements/Data_Table.php:482, ../includes/Elements/Dual_Color_Header.php:214, ../includes/Elements/Fancy_Text.php:269, ../includes/Elements/Filterable_Gallery.php:
|
30 |
msgid "Go Premium for More Features"
|
31 |
msgstr ""
|
32 |
|
33 |
-
#: ../includes/Classes/Helper.php:247, ../includes/Elements/Adv_Accordion.php:416, ../includes/Elements/Adv_Tabs.php:352, ../includes/Elements/Contact_Form_7.php:277, ../includes/Elements/Content_Ticker.php:313, ../includes/Elements/Countdown.php:558, ../includes/Elements/Creative_Button.php:195, ../includes/Elements/Cta_Box.php:404, ../includes/Elements/Data_Table.php:489, ../includes/Elements/Dual_Color_Header.php:221, ../includes/Elements/Fancy_Text.php:276, ../includes/Elements/Filterable_Gallery.php:
|
34 |
msgid "Unlock more possibilities"
|
35 |
msgstr ""
|
36 |
|
@@ -134,7 +134,7 @@ msgstr ""
|
|
134 |
msgid "Next"
|
135 |
msgstr ""
|
136 |
|
137 |
-
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:154, ../includes/Elements/Advanced_Data_Table.php:439, ../includes/Elements/Advanced_Data_Table.php:558, ../includes/Elements/Advanced_Data_Table.php:984, ../includes/Elements/Advanced_Data_Table.php:1131, ../includes/Elements/Adv_Accordion.php:154, ../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:210, ../includes/Elements/Countdown.php:1122, ../includes/Elements/Creative_Button.php:456, ../includes/Elements/Cta_Box.php:119, ../includes/Elements/Data_Table.php:561, ../includes/Elements/Data_Table.php:786, ../includes/Elements/Data_Table.php:1035, ../includes/Elements/Dual_Color_Header.php:199, ../includes/Elements/Event_Calendar.php:1171, ../includes/Elements/Event_Calendar.php:1303, ../includes/Elements/Fancy_Text.php:182, ../includes/Elements/Feature_List.php:312, ../includes/Elements/Filterable_Gallery.php:
|
138 |
msgid "Right"
|
139 |
msgstr ""
|
140 |
|
@@ -597,7 +597,7 @@ msgstr ""
|
|
597 |
msgid "Remove"
|
598 |
msgstr ""
|
599 |
|
600 |
-
#: ../includes/Controls/Select2.php:29, ../includes/Elements/Adv_Tabs.php:204, ../includes/Elements/Adv_Tabs.php:231, ../includes/Elements/Data_Table.php:156, ../includes/Elements/Data_Table.php:188, ../includes/Elements/Feature_List.php:82, ../includes/Elements/Feature_List.php:168, ../includes/Elements/Filterable_Gallery.php:
|
601 |
msgid "Image"
|
602 |
msgstr ""
|
603 |
|
@@ -701,7 +701,7 @@ msgstr ""
|
|
701 |
msgid "Sort"
|
702 |
msgstr ""
|
703 |
|
704 |
-
#: ../includes/Elements/Advanced_Data_Table.php:165, ../includes/Elements/Betterdocs_Search_Form.php:155, ../includes/Elements/Caldera_Forms.php:162, ../includes/Elements/Caldera_Forms.php:895, ../includes/Elements/Contact_Form_7.php:900, ../includes/Elements/Filterable_Gallery.php:
|
705 |
msgid "Placeholder"
|
706 |
msgstr ""
|
707 |
|
@@ -761,15 +761,15 @@ msgstr ""
|
|
761 |
msgid "Table"
|
762 |
msgstr ""
|
763 |
|
764 |
-
#: ../includes/Elements/Advanced_Data_Table.php:324, ../includes/Elements/Advanced_Data_Table.php:885, ../includes/Elements/Advanced_Data_Table.php:1080, ../includes/Elements/Betterdocs_Search_Form.php:320, ../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:470, ../includes/Elements/Data_Table.php:521, ../includes/Elements/Data_Table.php:1150, ../includes/Elements/Dual_Color_Header.php:749, ../includes/Elements/Dual_Color_Header.php:829, ../includes/Elements/Filterable_Gallery.php:
|
765 |
msgid "Width"
|
766 |
msgstr ""
|
767 |
|
768 |
-
#: ../includes/Elements/Advanced_Data_Table.php:361, ../includes/Elements/Advanced_Data_Table.php:1029, ../includes/Elements/Advanced_Data_Table.php:1227, ../includes/Elements/Advanced_Data_Table.php:1299, ../includes/Elements/Advanced_Data_Table.php:1427, ../includes/Elements/Adv_Accordion.php:468, ../includes/Elements/Adv_Accordion.php:659, ../includes/Elements/Adv_Accordion.php:720, ../includes/Elements/Adv_Accordion.php:782, ../includes/Elements/Adv_Accordion.php:865, ../includes/Elements/Adv_Accordion.php:989, ../includes/Elements/Adv_Accordion.php:1036, ../includes/Elements/Adv_Accordion.php:1083, ../includes/Elements/Adv_Tabs.php:407, ../includes/Elements/Adv_Tabs.php:601, ../includes/Elements/Adv_Tabs.php:668, ../includes/Elements/Adv_Tabs.php:737, ../includes/Elements/Adv_Tabs.php:831, ../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:219, ../includes/Elements/Betterdocs_Search_Form.php:374, ../includes/Elements/Betterdocs_Search_Form.php:432, ../includes/Elements/Betterdocs_Search_Form.php:542, ../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:624, ../includes/Elements/Countdown.php:703, ../includes/Elements/Cta_Box.php:557, ../includes/Elements/Cta_Box.php:885, ../includes/Elements/Cta_Box.php:1244, ../includes/Elements/Data_Table.php:652, ../includes/Elements/Data_Table.php:691, ../includes/Elements/Data_Table.php:883, ../includes/Elements/Data_Table.php:1217, ../includes/Elements/Dual_Color_Header.php:347, ../includes/Elements/Event_Calendar.php:966, ../includes/Elements/Event_Calendar.php:1033, ../includes/Elements/Event_Calendar.php:1087, ../includes/Elements/Event_Calendar.php:1759, ../includes/Elements/Event_Calendar.php:1830, ../includes/Elements/Facebook_Feed.php:525, ../includes/Elements/Filterable_Gallery.php:
|
769 |
msgid "Border"
|
770 |
msgstr ""
|
771 |
|
772 |
-
#: ../includes/Elements/Advanced_Data_Table.php:387, ../includes/Elements/Advanced_Data_Table.php:1055, ../includes/Elements/Advanced_Data_Table.php:1253, ../includes/Elements/Advanced_Data_Table.php:1325, ../includes/Elements/Advanced_Data_Table.php:1449, ../includes/Elements/Adv_Accordion.php:475, ../includes/Elements/Adv_Accordion.php:666, ../includes/Elements/Adv_Accordion.php:727, ../includes/Elements/Adv_Accordion.php:789, ../includes/Elements/Adv_Tabs.php:415, ../includes/Elements/Adv_Tabs.php:608, ../includes/Elements/Adv_Tabs.php:675, ../includes/Elements/Adv_Tabs.php:744, ../includes/Elements/Adv_Tabs.php:838, ../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:206, ../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:634, ../includes/Elements/Countdown.php:711, ../includes/Elements/Creative_Button.php:336, ../includes/Elements/Cta_Box.php:565, ../includes/Elements/Cta_Box.php:918, ../includes/Elements/Cta_Box.php:1252, ../includes/Elements/Dual_Color_Header.php:355, ../includes/Elements/Event_Calendar.php:974, ../includes/Elements/Event_Calendar.php:1041, ../includes/Elements/Event_Calendar.php:1095, ../includes/Elements/Event_Calendar.php:1331, ../includes/Elements/Event_Calendar.php:1499, ../includes/Elements/Event_Calendar.php:1767, ../includes/Elements/Event_Calendar.php:1838, ../includes/Elements/Facebook_Feed.php:550, ../includes/Elements/Facebook_Feed.php:610, ../includes/Elements/Fancy_Text.php:515, ../includes/Elements/Feature_List.php:641, ../includes/Elements/Filterable_Gallery.php:
|
773 |
msgid "Border Radius"
|
774 |
msgstr ""
|
775 |
|
@@ -781,7 +781,7 @@ msgstr ""
|
|
781 |
msgid "Head"
|
782 |
msgstr ""
|
783 |
|
784 |
-
#: ../includes/Elements/Advanced_Data_Table.php:419, ../includes/Elements/Advanced_Data_Table.php:538, ../includes/Elements/Advanced_Data_Table.php:996, ../includes/Elements/Advanced_Data_Table.php:1146, ../includes/Elements/Advanced_Data_Table.php:1354, ../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:895, ../includes/Elements/Event_Calendar.php:925, ../includes/Elements/Event_Calendar.php:1139, ../includes/Elements/Event_Calendar.php:1214, ../includes/Elements/Event_Calendar.php:1248, ../includes/Elements/Event_Calendar.php:1491, ../includes/Elements/Event_Calendar.php:1554, ../includes/Elements/Event_Calendar.php:1583, ../includes/Elements/Event_Calendar.php:1651, ../includes/Elements/Event_Calendar.php:1809, ../includes/Elements/Filterable_Gallery.php:
|
785 |
msgid "Typography"
|
786 |
msgstr ""
|
787 |
|
@@ -789,19 +789,19 @@ msgstr ""
|
|
789 |
msgid "Text Alignment"
|
790 |
msgstr ""
|
791 |
|
792 |
-
#: ../includes/Elements/Advanced_Data_Table.php:431, ../includes/Elements/Advanced_Data_Table.php:550, ../includes/Elements/Advanced_Data_Table.php:976, ../includes/Elements/Advanced_Data_Table.php:1123, ../includes/Elements/Adv_Accordion.php:155, ../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:202, ../includes/Elements/Countdown.php:1114, ../includes/Elements/Creative_Button.php:448, ../includes/Elements/Cta_Box.php:117, ../includes/Elements/Data_Table.php:553, ../includes/Elements/Data_Table.php:778, ../includes/Elements/Data_Table.php:1027, ../includes/Elements/Dual_Color_Header.php:191, ../includes/Elements/Event_Calendar.php:1163, ../includes/Elements/Event_Calendar.php:1295, ../includes/Elements/Fancy_Text.php:174, ../includes/Elements/Feature_List.php:304, ../includes/Elements/Filterable_Gallery.php:
|
793 |
msgid "Left"
|
794 |
msgstr ""
|
795 |
|
796 |
-
#: ../includes/Elements/Advanced_Data_Table.php:435, ../includes/Elements/Advanced_Data_Table.php:554, ../includes/Elements/Advanced_Data_Table.php:980, ../includes/Elements/Advanced_Data_Table.php:1127, ../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:206, ../includes/Elements/Countdown.php:1118, ../includes/Elements/Creative_Button.php:452, ../includes/Elements/Cta_Box.php:118, ../includes/Elements/Data_Table.php:557, ../includes/Elements/Data_Table.php:782, ../includes/Elements/Data_Table.php:1031, ../includes/Elements/Dual_Color_Header.php:195, ../includes/Elements/Dual_Color_Header.php:658, ../includes/Elements/Event_Calendar.php:1167, ../includes/Elements/Event_Calendar.php:1299, ../includes/Elements/Fancy_Text.php:178, ../includes/Elements/Filterable_Gallery.php:
|
797 |
msgid "Center"
|
798 |
msgstr ""
|
799 |
|
800 |
-
#: ../includes/Elements/Advanced_Data_Table.php:454, ../includes/Elements/Advanced_Data_Table.php:573, ../includes/Elements/Advanced_Data_Table.php:667, ../includes/Elements/Advanced_Data_Table.php:698, ../includes/Elements/Advanced_Data_Table.php:729, ../includes/Elements/Advanced_Data_Table.php:760, ../includes/Elements/Advanced_Data_Table.php:791, ../includes/Elements/Advanced_Data_Table.php:822, ../includes/Elements/Advanced_Data_Table.php:1004, ../includes/Elements/Advanced_Data_Table.php:1200, ../includes/Elements/Advanced_Data_Table.php:1270, ../includes/Elements/Adv_Accordion.php:634, ../includes/Elements/Adv_Accordion.php:695, ../includes/Elements/Adv_Accordion.php:756, ../includes/Elements/Adv_Accordion.php:824, ../includes/Elements/Adv_Tabs.php:574, ../includes/Elements/Adv_Tabs.php:641, ../includes/Elements/Adv_Tabs.php:708, ../includes/Elements/Adv_Tabs.php:790, ../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:1193, ../includes/Elements/Creative_Button.php:277, ../includes/Elements/Creative_Button.php:370, ../includes/Elements/Cta_Box.php:811, ../includes/Elements/Cta_Box.php:826, ../includes/Elements/Cta_Box.php:997, ../includes/Elements/Cta_Box.php:1012, ../includes/Elements/Cta_Box.php:1204, ../includes/Elements/Cta_Box.php:1219, ../includes/Elements/Cta_Box.php:1273, ../includes/Elements/Cta_Box.php:1288, ../includes/Elements/Data_Table.php:989, ../includes/Elements/Data_Table.php:1006, ../includes/Elements/Event_Calendar.php:1409, ../includes/Elements/Event_Calendar.php:1442, ../includes/Elements/Filterable_Gallery.php:
|
801 |
msgid "Text Color"
|
802 |
msgstr ""
|
803 |
|
804 |
-
#: ../includes/Elements/Advanced_Data_Table.php:468, ../includes/Elements/Advanced_Data_Table.php:609, ../includes/Elements/Advanced_Data_Table.php:682, ../includes/Elements/Advanced_Data_Table.php:713, ../includes/Elements/Advanced_Data_Table.php:744, ../includes/Elements/Advanced_Data_Table.php:775, ../includes/Elements/Advanced_Data_Table.php:806, ../includes/Elements/Advanced_Data_Table.php:837, ../includes/Elements/Advanced_Data_Table.php:1016, ../includes/Elements/Advanced_Data_Table.php:1213, ../includes/Elements/Advanced_Data_Table.php:1284, ../includes/Elements/Advanced_Data_Table.php:1379, ../includes/Elements/Advanced_Data_Table.php:1409, ../includes/Elements/Adv_Accordion.php:975, ../includes/Elements/Adv_Accordion.php:1022, ../includes/Elements/Adv_Accordion.php:1069, ../includes/Elements/Adv_Tabs.php:555, ../includes/Elements/Adv_Tabs.php:771, ../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:598, ../includes/Elements/Content_Ticker.php:655, ../includes/Elements/Countdown.php:817, ../includes/Elements/Countdown.php:829, ../includes/Elements/Countdown.php:889, ../includes/Elements/Countdown.php:901, ../includes/Elements/Countdown.php:961, ../includes/Elements/Countdown.php:973, ../includes/Elements/Countdown.php:1033, ../includes/Elements/Countdown.php:1045, ../includes/Elements/Creative_Button.php:291, ../includes/Elements/Creative_Button.php:384, ../includes/Elements/Cta_Box.php:137, ../includes/Elements/Cta_Box.php:477, ../includes/Elements/Cta_Box.php:518, ../includes/Elements/Cta_Box.php:840, ../includes/Elements/Cta_Box.php:856, ../includes/Elements/Cta_Box.php:1026, ../includes/Elements/Cta_Box.php:1043, ../includes/Elements/Data_Table.php:639, ../includes/Elements/Data_Table.php:679, ../includes/Elements/Data_Table.php:1190, ../includes/Elements/Dual_Color_Header.php:310, ../includes/Elements/Event_Calendar.php:1421, ../includes/Elements/Filterable_Gallery.php:
|
805 |
msgid "Background Color"
|
806 |
msgstr ""
|
807 |
|
@@ -809,7 +809,7 @@ msgstr ""
|
|
809 |
msgid "Cell Border"
|
810 |
msgstr ""
|
811 |
|
812 |
-
#: ../includes/Elements/Advanced_Data_Table.php:507, ../includes/Elements/Advanced_Data_Table.php:852, ../includes/Elements/Advanced_Data_Table.php:936, ../includes/Elements/Advanced_Data_Table.php:1154, ../includes/Elements/Advanced_Data_Table.php:1471, ../includes/Elements/Adv_Accordion.php:445, ../includes/Elements/Adv_Accordion.php:599, ../includes/Elements/Adv_Accordion.php:842, ../includes/Elements/Adv_Tabs.php:384, ../includes/Elements/Adv_Tabs.php:529, ../includes/Elements/Adv_Tabs.php:808, ../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:440, ../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:696, ../includes/Elements/Countdown.php:690, ../includes/Elements/Countdown.php:1220, ../includes/Elements/Cta_Box.php:532, ../includes/Elements/Cta_Box.php:745, ../includes/Elements/Cta_Box.php:1168, ../includes/Elements/Data_Table.php:607, ../includes/Elements/Data_Table.php:892, ../includes/Elements/Dual_Color_Header.php:322, ../includes/Elements/Facebook_Feed.php:680, ../includes/Elements/Facebook_Feed.php:706, ../includes/Elements/Facebook_Feed.php:778, ../includes/Elements/Fancy_Text.php:480, ../includes/Elements/Feature_List.php:598, ../includes/Elements/Filterable_Gallery.php:
|
813 |
msgid "Padding"
|
814 |
msgstr ""
|
815 |
|
@@ -865,23 +865,23 @@ msgstr ""
|
|
865 |
msgid "Margin Bottom"
|
866 |
msgstr ""
|
867 |
|
868 |
-
#: ../includes/Elements/Advanced_Data_Table.php:971, ../includes/Elements/Advanced_Data_Table.php:1119, ../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:198, ../includes/Elements/Cta_Box.php:112, ../includes/Elements/Data_Table.php:547, ../includes/Elements/Dual_Color_Header.php:186, ../includes/Elements/Dual_Color_Header.php:650, ../includes/Elements/Event_Calendar.php:1159, ../includes/Elements/Event_Calendar.php:1291, ../includes/Elements/Fancy_Text.php:170, ../includes/Elements/Filterable_Gallery.php:
|
869 |
msgid "Alignment"
|
870 |
msgstr ""
|
871 |
|
872 |
-
#: ../includes/Elements/Advanced_Data_Table.php:1175, ../includes/Elements/Adv_Accordion.php:456, ../includes/Elements/Adv_Accordion.php:610, ../includes/Elements/Adv_Accordion.php:853, ../includes/Elements/Adv_Tabs.php:395, ../includes/Elements/Adv_Tabs.php:540, ../includes/Elements/Adv_Tabs.php:819, ../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:1172, ../includes/Elements/Cta_Box.php:544, ../includes/Elements/Cta_Box.php:757, ../includes/Elements/Cta_Box.php:1180, ../includes/Elements/Dual_Color_Header.php:334, ../includes/Elements/Dual_Color_Header.php:702, ../includes/Elements/Fancy_Text.php:492, ../includes/Elements/Filterable_Gallery.php:
|
873 |
msgid "Margin"
|
874 |
msgstr ""
|
875 |
|
876 |
-
#: ../includes/Elements/Advanced_Data_Table.php:1195, ../includes/Elements/Advanced_Data_Table.php:1361, ../includes/Elements/Adv_Accordion.php:621, ../includes/Elements/Adv_Accordion.php:953, ../includes/Elements/Adv_Tabs.php:551, ../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:398, ../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:591, ../includes/Elements/Creative_Button.php:260, ../includes/Elements/Cta_Box.php:806, ../includes/Elements/Cta_Box.php:1199, ../includes/Elements/Data_Table.php:619, ../includes/Elements/Data_Table.php:812, ../includes/Elements/Data_Table.php:984, ../includes/Elements/Data_Table.php:1082, ../includes/Elements/Event_Calendar.php:936, ../includes/Elements/Filterable_Gallery.php:
|
877 |
msgid "Normal"
|
878 |
msgstr ""
|
879 |
|
880 |
-
#: ../includes/Elements/Advanced_Data_Table.php:1265, ../includes/Elements/Advanced_Data_Table.php:1391, ../includes/Elements/Adv_Accordion.php:680, ../includes/Elements/Adv_Accordion.php:1001, ../includes/Elements/Adv_Tabs.php:618, ../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:482, ../includes/Elements/Caldera_Forms.php:1303, ../includes/Elements/Contact_Form_7.php:1329, ../includes/Elements/Content_Ticker.php:648, ../includes/Elements/Creative_Button.php:353, ../includes/Elements/Cta_Box.php:992, ../includes/Elements/Cta_Box.php:1268, ../includes/Elements/Data_Table.php:659, ../includes/Elements/Data_Table.php:903, ../includes/Elements/Data_Table.php:1001, ../includes/Elements/Data_Table.php:1100, ../includes/Elements/Event_Calendar.php:1003, ../includes/Elements/Filterable_Gallery.php:
|
881 |
msgid "Hover"
|
882 |
msgstr ""
|
883 |
|
884 |
-
#: ../includes/Elements/Advanced_Data_Table.php:1366, ../includes/Elements/Advanced_Data_Table.php:1396, ../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:246, ../includes/Elements/Betterdocs_Search_Form.php:283, ../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:610, ../includes/Elements/Content_Ticker.php:667, ../includes/Elements/Cta_Box.php:612, ../includes/Elements/Cta_Box.php:653, ../includes/Elements/Cta_Box.php:695, ../includes/Elements/Cta_Box.php:1377, ../includes/Elements/Cta_Box.php:1393, ../includes/Elements/Data_Table.php:624, ../includes/Elements/Data_Table.php:664, ../includes/Elements/Data_Table.php:1175, ../includes/Elements/Dual_Color_Header.php:473, ../includes/Elements/Dual_Color_Header.php:570, ../includes/Elements/Dual_Color_Header.php:713, ../includes/Elements/Event_Calendar.php:903, ../includes/Elements/Event_Calendar.php:943, ../includes/Elements/Event_Calendar.php:1010, ../includes/Elements/Event_Calendar.php:1064, ../includes/Elements/Event_Calendar.php:1147, ../includes/Elements/Event_Calendar.php:1222, ../includes/Elements/Event_Calendar.php:1256, ../includes/Elements/Event_Calendar.php:1365, ../includes/Elements/Event_Calendar.php:1731, ../includes/Elements/Facebook_Feed.php:844, ../includes/Elements/Facebook_Feed.php:882, ../includes/Elements/Facebook_Feed.php:922, ../includes/Elements/Facebook_Feed.php:970, ../includes/Elements/Facebook_Feed.php:1008, ../includes/Elements/Facebook_Feed.php:1046, ../includes/Elements/Facebook_Feed.php:1099, ../includes/Elements/Facebook_Feed.php:1137, ../includes/Elements/Facebook_Feed.php:1175, ../includes/Elements/Facebook_Feed.php:1207, ../includes/Elements/Fancy_Text.php:346, ../includes/Elements/Feature_List.php:542, ../includes/Elements/Feature_List.php:764, ../includes/Elements/Feature_List.php:798, ../includes/Elements/Filterable_Gallery.php:
|
885 |
msgid "Color"
|
886 |
msgstr ""
|
887 |
|
@@ -1041,7 +1041,7 @@ msgstr ""
|
|
1041 |
msgid "Accordion Tab Title 3"
|
1042 |
msgstr ""
|
1043 |
|
1044 |
-
#: ../includes/Elements/Adv_Accordion.php:438, ../includes/Elements/Data_Table.php:513, ../includes/Elements/Filterable_Gallery.php:
|
1045 |
msgid "General Style"
|
1046 |
msgstr ""
|
1047 |
|
@@ -1049,7 +1049,7 @@ msgstr ""
|
|
1049 |
msgid "Tab Style"
|
1050 |
msgstr ""
|
1051 |
|
1052 |
-
#: ../includes/Elements/Adv_Accordion.php:512, ../includes/Elements/Adv_Accordion.php:893, ../includes/Elements/Adv_Tabs.php:480, ../includes/Elements/Creative_Button.php:502, ../includes/Elements/Cta_Box.php:787, ../includes/Elements/Data_Table.php:711, ../includes/Elements/Data_Table.php:1059, ../includes/Elements/Dual_Color_Header.php:397, ../includes/Elements/Dual_Color_Header.php:608, ../includes/Elements/Event_Calendar.php:1612, ../includes/Elements/Event_Calendar.php:1679, ../includes/Elements/Feature_List.php:576, ../includes/Elements/Filterable_Gallery.php:
|
1053 |
msgid "Icon Size"
|
1054 |
msgstr ""
|
1055 |
|
@@ -1065,7 +1065,7 @@ msgstr ""
|
|
1065 |
msgid "Icon Color"
|
1066 |
msgstr ""
|
1067 |
|
1068 |
-
#: ../includes/Elements/Adv_Accordion.php:741, ../includes/Elements/Adv_Accordion.php:1047, ../includes/Elements/Adv_Tabs.php:685, ../includes/Elements/Event_Calendar.php:1057, ../includes/Elements/Filterable_Gallery.php:
|
1069 |
msgid "Active"
|
1070 |
msgstr ""
|
1071 |
|
@@ -1105,7 +1105,7 @@ msgstr ""
|
|
1105 |
msgid "Enable Icon"
|
1106 |
msgstr ""
|
1107 |
|
1108 |
-
#: ../includes/Elements/Adv_Tabs.php:102, ../includes/Elements/Betterdocs_Category_Grid.php:1328, ../includes/Elements/Creative_Button.php:143, ../includes/Elements/Data_Table.php:733, ../includes/Elements/Feature_List.php:300, ../includes/Elements/Filterable_Gallery.php:
|
1109 |
msgid "Icon Position"
|
1110 |
msgstr ""
|
1111 |
|
@@ -1125,11 +1125,11 @@ msgstr ""
|
|
1125 |
msgid "Set icon position before/after the tab title."
|
1126 |
msgstr ""
|
1127 |
|
1128 |
-
#: ../includes/Elements/Adv_Tabs.php:125, ../includes/Elements/Betterdocs_Category_Grid.php:1332, ../includes/Elements/Creative_Button.php:147, ../includes/Elements/Filterable_Gallery.php:
|
1129 |
msgid "Before"
|
1130 |
msgstr ""
|
1131 |
|
1132 |
-
#: ../includes/Elements/Adv_Tabs.php:129, ../includes/Elements/Betterdocs_Category_Grid.php:1333, ../includes/Elements/Creative_Button.php:148, ../includes/Elements/Filterable_Gallery.php:
|
1133 |
msgid "After"
|
1134 |
msgstr ""
|
1135 |
|
@@ -1141,11 +1141,11 @@ msgstr ""
|
|
1141 |
msgid "If no tab is selected as default active tab, then we display first tab as active. Turn on/off this default behaviour."
|
1142 |
msgstr ""
|
1143 |
|
1144 |
-
#: ../includes/Elements/Adv_Tabs.php:147, ../includes/Elements/Adv_Tabs.php:935, ../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:87, ../includes/Elements/Data_Table.php:1141, ../includes/Elements/Event_Calendar.php:648, ../includes/Elements/Facebook_Feed.php:462, ../includes/Elements/Filterable_Gallery.php:245, ../includes/Elements/Filterable_Gallery.php:
|
1145 |
msgid "Yes"
|
1146 |
msgstr ""
|
1147 |
|
1148 |
-
#: ../includes/Elements/Adv_Tabs.php:148, ../includes/Elements/Adv_Tabs.php:936, ../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:779, ../includes/Elements/Data_Table.php:88, ../includes/Elements/Data_Table.php:1142, ../includes/Elements/Event_Calendar.php:649, ../includes/Elements/Facebook_Feed.php:466, ../includes/Elements/Feature_List.php:362, ../includes/Elements/Filterable_Gallery.php:246, ../includes/Elements/Filterable_Gallery.php:
|
1149 |
msgid "No"
|
1150 |
msgstr ""
|
1151 |
|
@@ -1253,7 +1253,7 @@ msgstr ""
|
|
1253 |
msgid "Box Padding"
|
1254 |
msgstr ""
|
1255 |
|
1256 |
-
#: ../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:488, ../includes/Elements/Filterable_Gallery.php:
|
1257 |
msgid "Transition"
|
1258 |
msgstr ""
|
1259 |
|
@@ -1261,11 +1261,11 @@ msgstr ""
|
|
1261 |
msgid "Area"
|
1262 |
msgstr ""
|
1263 |
|
1264 |
-
#: ../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:257, ../includes/Elements/Caldera_Forms.php:945, ../includes/Elements/Contact_Form_7.php:972, ../includes/Elements/Feature_List.php:556, ../includes/Elements/Filterable_Gallery.php:
|
1265 |
msgid "Size"
|
1266 |
msgstr ""
|
1267 |
|
1268 |
-
#: ../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:657, ../includes/Elements/Filterable_Gallery.php:
|
1269 |
msgid "Spacing"
|
1270 |
msgstr ""
|
1271 |
|
@@ -1325,7 +1325,7 @@ msgstr ""
|
|
1325 |
msgid "Show Button"
|
1326 |
msgstr ""
|
1327 |
|
1328 |
-
#: ../includes/Elements/Betterdocs_Category_Grid.php:282, ../includes/Elements/Creative_Button.php:80, ../includes/Elements/Filterable_Gallery.php:
|
1329 |
msgid "Button Text"
|
1330 |
msgstr ""
|
1331 |
|
@@ -1349,7 +1349,7 @@ msgstr ""
|
|
1349 |
msgid "List"
|
1350 |
msgstr ""
|
1351 |
|
1352 |
-
#: ../includes/Elements/Betterdocs_Category_Grid.php:1017, ../includes/Elements/Filterable_Gallery.php:
|
1353 |
msgid "Hover Color"
|
1354 |
msgstr ""
|
1355 |
|
@@ -1413,7 +1413,7 @@ msgstr ""
|
|
1413 |
msgid "Close Icon"
|
1414 |
msgstr ""
|
1415 |
|
1416 |
-
#: ../includes/Elements/Betterdocs_Search_Form.php:294, ../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:680, ../includes/Elements/Countdown.php:868, ../includes/Elements/Countdown.php:940, ../includes/Elements/Countdown.php:1012, ../includes/Elements/Countdown.php:1084, ../includes/Elements/Creative_Button.php:423, ../includes/Elements/Cta_Box.php:1073, ../includes/Elements/Cta_Box.php:1312, ../includes/Elements/Event_Calendar.php:834, ../includes/Elements/Facebook_Feed.php:803, ../includes/Elements/Filterable_Gallery.php:
|
1417 |
msgid "Border Color"
|
1418 |
msgstr ""
|
1419 |
|
@@ -1629,7 +1629,7 @@ msgstr ""
|
|
1629 |
msgid "<strong>Contact Form 7</strong> is not installed/activated on your site. Please install and activate <strong>Contact Form 7</strong> first."
|
1630 |
msgstr ""
|
1631 |
|
1632 |
-
#: ../includes/Elements/Contact_Form_7.php:313, ../includes/Elements/Contact_Form_7.php:1607, ../includes/Elements/Cta_Box.php:872, ../includes/Elements/Cta_Box.php:1061, ../includes/Elements/Cta_Box.php:1234, ../includes/Elements/Cta_Box.php:1303, ../includes/Elements/Dual_Color_Header.php:813, ../includes/Elements/Dual_Color_Header.php:893, ../includes/Elements/Event_Calendar.php:822, ../includes/Elements/Event_Calendar.php:954, ../includes/Elements/Event_Calendar.php:1021, ../includes/Elements/Event_Calendar.php:1075, ../includes/Elements/Event_Calendar.php:1187, ../includes/Elements/Event_Calendar.php:1279, ../includes/Elements/Event_Calendar.php:1377, ../includes/Elements/Event_Calendar.php:1743, ../includes/Elements/Event_Calendar.php:1852, ../includes/Elements/Facebook_Feed.php:562, ../includes/Elements/Facebook_Feed.php:575, ../includes/Elements/Facebook_Feed.php:651, ../includes/Elements/Facebook_Feed.php:664, ../includes/Elements/Facebook_Feed.php:749, ../includes/Elements/Facebook_Feed.php:762, ../includes/Elements/Facebook_Feed.php:833, ../includes/Elements/Facebook_Feed.php:871, ../includes/Elements/Facebook_Feed.php:911, ../includes/Elements/Fancy_Text.php:365, ../includes/Elements/Filterable_Gallery.php:
|
1633 |
msgid "Background"
|
1634 |
msgstr ""
|
1635 |
|
@@ -1953,7 +1953,7 @@ msgstr ""
|
|
1953 |
msgid "Position Left"
|
1954 |
msgstr ""
|
1955 |
|
1956 |
-
#: ../includes/Elements/Countdown.php:445, ../includes/Elements/Filterable_Gallery.php:
|
1957 |
msgid "Separator Color"
|
1958 |
msgstr ""
|
1959 |
|
@@ -2081,7 +2081,7 @@ msgstr ""
|
|
2081 |
msgid "Link URL"
|
2082 |
msgstr ""
|
2083 |
|
2084 |
-
#: ../includes/Elements/Creative_Button.php:160, ../includes/Elements/Filterable_Gallery.php:
|
2085 |
msgid "Icon Spacing"
|
2086 |
msgstr ""
|
2087 |
|
@@ -2413,7 +2413,7 @@ msgstr ""
|
|
2413 |
msgid "Header Border Radius"
|
2414 |
msgstr ""
|
2415 |
|
2416 |
-
#: ../includes/Elements/Data_Table.php:755, ../includes/Elements/Filterable_Gallery.php:
|
2417 |
msgid "Icon Space"
|
2418 |
msgstr ""
|
2419 |
|
@@ -2445,7 +2445,7 @@ msgstr ""
|
|
2445 |
msgid "Background Color (Even Row)"
|
2446 |
msgstr ""
|
2447 |
|
2448 |
-
#: ../includes/Elements/Data_Table.php:1022, ../includes/Elements/Filterable_Gallery.php:
|
2449 |
msgid "Content Alignment"
|
2450 |
msgstr ""
|
2451 |
|
@@ -2505,7 +2505,7 @@ msgstr ""
|
|
2505 |
msgid "Insert a meaningful line to evaluate the headline."
|
2506 |
msgstr ""
|
2507 |
|
2508 |
-
#: ../includes/Elements/Dual_Color_Header.php:245, ../includes/Elements/Dual_Color_Header.php:597, ../includes/Elements/Filterable_Gallery.php:
|
2509 |
msgid "Separator"
|
2510 |
msgstr ""
|
2511 |
|
@@ -2677,7 +2677,7 @@ msgstr ""
|
|
2677 |
msgid "Get Events"
|
2678 |
msgstr ""
|
2679 |
|
2680 |
-
#: ../includes/Elements/Event_Calendar.php:393, ../includes/Elements/Filterable_Gallery.php:341, ../includes/Elements/Filterable_Gallery.php:
|
2681 |
msgid "All"
|
2682 |
msgstr ""
|
2683 |
|
@@ -2961,7 +2961,7 @@ msgstr ""
|
|
2961 |
msgid "4"
|
2962 |
msgstr ""
|
2963 |
|
2964 |
-
#: ../includes/Elements/Facebook_Feed.php:274, ../includes/Elements/Filterable_Gallery.php:
|
2965 |
msgid "5"
|
2966 |
msgstr ""
|
2967 |
|
@@ -3025,7 +3025,7 @@ msgstr ""
|
|
3025 |
msgid "Label"
|
3026 |
msgstr ""
|
3027 |
|
3028 |
-
#: ../includes/Elements/Facebook_Feed.php:480, ../includes/Elements/Filterable_Gallery.php:
|
3029 |
msgid "Load More"
|
3030 |
msgstr ""
|
3031 |
|
@@ -3037,7 +3037,7 @@ msgstr ""
|
|
3037 |
msgid "Space Between Items"
|
3038 |
msgstr ""
|
3039 |
|
3040 |
-
#: ../includes/Elements/Facebook_Feed.php:600, ../includes/Elements/Filterable_Gallery.php:
|
3041 |
msgid "Thumbnail Style"
|
3042 |
msgstr ""
|
3043 |
|
@@ -3453,239 +3453,235 @@ msgstr ""
|
|
3453 |
msgid "List Item"
|
3454 |
msgstr ""
|
3455 |
|
3456 |
-
#: ../includes/Elements/Filterable_Gallery.php:399
|
3457 |
msgid "Gallery Item"
|
3458 |
msgstr ""
|
3459 |
|
3460 |
-
#: ../includes/Elements/Filterable_Gallery.php:
|
3461 |
-
msgid "Item Label"
|
3462 |
-
msgstr ""
|
3463 |
-
|
3464 |
-
#: ../includes/Elements/Filterable_Gallery.php:422
|
3465 |
msgid "Gallery Items"
|
3466 |
msgstr ""
|
3467 |
|
3468 |
-
#: ../includes/Elements/Filterable_Gallery.php:
|
3469 |
msgid "Enable Photo Gallery"
|
3470 |
msgstr ""
|
3471 |
|
3472 |
-
#: ../includes/Elements/Filterable_Gallery.php:
|
3473 |
msgid "Video Gallery?"
|
3474 |
msgstr ""
|
3475 |
|
3476 |
-
#: ../includes/Elements/Filterable_Gallery.php:
|
3477 |
msgid "Video Link"
|
3478 |
msgstr ""
|
3479 |
|
3480 |
-
#: ../includes/Elements/Filterable_Gallery.php:
|
3481 |
msgid "Control Name"
|
3482 |
msgstr ""
|
3483 |
|
3484 |
-
#: ../includes/Elements/Filterable_Gallery.php:
|
3485 |
msgid "Use the gallery control name from Control Settings. Separate multiple items with comma (e.g. <strong>Gallery Item, Gallery Item 2</strong>)"
|
3486 |
msgstr ""
|
3487 |
|
3488 |
-
#: ../includes/Elements/Filterable_Gallery.php:
|
3489 |
msgid "Item Name"
|
3490 |
msgstr ""
|
3491 |
|
3492 |
-
#: ../includes/Elements/Filterable_Gallery.php:
|
3493 |
msgid "Gallery item name"
|
3494 |
msgstr ""
|
3495 |
|
3496 |
-
#: ../includes/Elements/Filterable_Gallery.php:
|
3497 |
msgid "Enable Price ?"
|
3498 |
msgstr ""
|
3499 |
|
3500 |
-
#: ../includes/Elements/Filterable_Gallery.php:
|
3501 |
msgid "Item Price"
|
3502 |
msgstr ""
|
3503 |
|
3504 |
-
#: ../includes/Elements/Filterable_Gallery.php:
|
3505 |
msgid "$20.00"
|
3506 |
msgstr ""
|
3507 |
|
3508 |
-
#: ../includes/Elements/Filterable_Gallery.php:
|
3509 |
msgid "Enable Ratings ?"
|
3510 |
msgstr ""
|
3511 |
|
3512 |
-
#: ../includes/Elements/Filterable_Gallery.php:
|
3513 |
msgid "Item Ratings"
|
3514 |
msgstr ""
|
3515 |
|
3516 |
-
#: ../includes/Elements/Filterable_Gallery.php:
|
3517 |
msgid "Enable Category ?"
|
3518 |
msgstr ""
|
3519 |
|
3520 |
-
#: ../includes/Elements/Filterable_Gallery.php:
|
3521 |
msgid "Item Category"
|
3522 |
msgstr ""
|
3523 |
|
3524 |
-
#: ../includes/Elements/Filterable_Gallery.php:
|
3525 |
msgid "Essential Addons"
|
3526 |
msgstr ""
|
3527 |
|
3528 |
-
#: ../includes/Elements/Filterable_Gallery.php:
|
3529 |
msgid "Item Content"
|
3530 |
msgstr ""
|
3531 |
|
3532 |
-
#: ../includes/Elements/Filterable_Gallery.php:
|
3533 |
msgid "Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident."
|
3534 |
msgstr ""
|
3535 |
|
3536 |
-
#: ../includes/Elements/Filterable_Gallery.php:
|
3537 |
msgid "Video play icon"
|
3538 |
msgstr ""
|
3539 |
|
3540 |
-
#: ../includes/Elements/Filterable_Gallery.php:
|
3541 |
msgid "Gallery Lightbox Button?"
|
3542 |
msgstr ""
|
3543 |
|
3544 |
-
#: ../includes/Elements/Filterable_Gallery.php:
|
3545 |
msgid "Gallery Link Button?"
|
3546 |
msgstr ""
|
3547 |
|
3548 |
-
#: ../includes/Elements/Filterable_Gallery.php:
|
3549 |
msgid "Load More Button"
|
3550 |
msgstr ""
|
3551 |
|
3552 |
-
#: ../includes/Elements/Filterable_Gallery.php:
|
3553 |
msgid "Images Per Page"
|
3554 |
msgstr ""
|
3555 |
|
3556 |
-
#: ../includes/Elements/Filterable_Gallery.php:
|
3557 |
msgid "No More Items Text"
|
3558 |
msgstr ""
|
3559 |
|
3560 |
-
#: ../includes/Elements/Filterable_Gallery.php:
|
3561 |
msgid "No more items!"
|
3562 |
msgstr ""
|
3563 |
|
3564 |
-
#: ../includes/Elements/Filterable_Gallery.php:
|
3565 |
msgid "Extra Small"
|
3566 |
msgstr ""
|
3567 |
|
3568 |
-
#: ../includes/Elements/Filterable_Gallery.php:
|
3569 |
msgid "Small"
|
3570 |
msgstr ""
|
3571 |
|
3572 |
-
#: ../includes/Elements/Filterable_Gallery.php:
|
3573 |
msgid "Medium"
|
3574 |
msgstr ""
|
3575 |
|
3576 |
-
#: ../includes/Elements/Filterable_Gallery.php:
|
3577 |
msgid "Large"
|
3578 |
msgstr ""
|
3579 |
|
3580 |
-
#: ../includes/Elements/Filterable_Gallery.php:
|
3581 |
msgid "Extra Large"
|
3582 |
msgstr ""
|
3583 |
|
3584 |
-
#: ../includes/Elements/Filterable_Gallery.php:
|
3585 |
msgid "Button Icon"
|
3586 |
msgstr ""
|
3587 |
|
3588 |
-
#: ../includes/Elements/Filterable_Gallery.php:
|
3589 |
msgid "Control Style"
|
3590 |
msgstr ""
|
3591 |
|
3592 |
-
#: ../includes/Elements/Filterable_Gallery.php:
|
3593 |
msgid "Item Style"
|
3594 |
msgstr ""
|
3595 |
|
3596 |
-
#: ../includes/Elements/Filterable_Gallery.php:
|
3597 |
msgid "Item Hover Style"
|
3598 |
msgstr ""
|
3599 |
|
3600 |
-
#: ../includes/Elements/Filterable_Gallery.php:
|
3601 |
msgid "Title Typography"
|
3602 |
msgstr ""
|
3603 |
|
3604 |
-
#: ../includes/Elements/Filterable_Gallery.php:
|
3605 |
msgid "Content Typography"
|
3606 |
msgstr ""
|
3607 |
|
3608 |
-
#: ../includes/Elements/Filterable_Gallery.php:
|
3609 |
msgid "Video item hover"
|
3610 |
msgstr ""
|
3611 |
|
3612 |
-
#: ../includes/Elements/Filterable_Gallery.php:
|
3613 |
msgid "Background transition"
|
3614 |
msgstr ""
|
3615 |
|
3616 |
-
#: ../includes/Elements/Filterable_Gallery.php:
|
3617 |
msgid "Icon size"
|
3618 |
msgstr ""
|
3619 |
|
3620 |
-
#: ../includes/Elements/Filterable_Gallery.php:
|
3621 |
msgid "Hover icon scale"
|
3622 |
msgstr ""
|
3623 |
|
3624 |
-
#: ../includes/Elements/Filterable_Gallery.php:
|
3625 |
msgid "Icon transition"
|
3626 |
msgstr ""
|
3627 |
|
3628 |
-
#: ../includes/Elements/Filterable_Gallery.php:
|
3629 |
msgid "Item Card Style"
|
3630 |
msgstr ""
|
3631 |
|
3632 |
-
#: ../includes/Elements/Filterable_Gallery.php:
|
3633 |
msgid "Icons Style"
|
3634 |
msgstr ""
|
3635 |
|
3636 |
-
#: ../includes/Elements/Filterable_Gallery.php:
|
3637 |
msgid "Icon Font Size"
|
3638 |
msgstr ""
|
3639 |
|
3640 |
-
#: ../includes/Elements/Filterable_Gallery.php:
|
3641 |
msgid "Price Style"
|
3642 |
msgstr ""
|
3643 |
|
3644 |
-
#: ../includes/Elements/Filterable_Gallery.php:
|
3645 |
msgid "Ratings Style"
|
3646 |
msgstr ""
|
3647 |
|
3648 |
-
#: ../includes/Elements/Filterable_Gallery.php:
|
3649 |
msgid "Star Color"
|
3650 |
msgstr ""
|
3651 |
|
3652 |
-
#: ../includes/Elements/Filterable_Gallery.php:
|
3653 |
msgid "Category Style"
|
3654 |
msgstr ""
|
3655 |
|
3656 |
-
#: ../includes/Elements/Filterable_Gallery.php:
|
3657 |
msgid "Search Form Style"
|
3658 |
msgstr ""
|
3659 |
|
3660 |
-
#: ../includes/Elements/Filterable_Gallery.php:
|
3661 |
msgid "Controls"
|
3662 |
msgstr ""
|
3663 |
|
3664 |
-
#: ../includes/Elements/Filterable_Gallery.php:
|
3665 |
msgid "Controls Background"
|
3666 |
msgstr ""
|
3667 |
|
3668 |
-
#: ../includes/Elements/Filterable_Gallery.php:
|
3669 |
msgid "Separator Size"
|
3670 |
msgstr ""
|
3671 |
|
3672 |
-
#: ../includes/Elements/Filterable_Gallery.php:
|
3673 |
msgid "Form"
|
3674 |
msgstr ""
|
3675 |
|
3676 |
-
#: ../includes/Elements/Filterable_Gallery.php:
|
3677 |
msgid "Search Gallery Item..."
|
3678 |
msgstr ""
|
3679 |
|
3680 |
-
#: ../includes/Elements/Filterable_Gallery.php:
|
3681 |
msgid "Placeholder Color"
|
3682 |
msgstr ""
|
3683 |
|
3684 |
-
#: ../includes/Elements/Filterable_Gallery.php:
|
3685 |
msgid "Dropdown"
|
3686 |
msgstr ""
|
3687 |
|
3688 |
-
#: ../includes/Elements/Filterable_Gallery.php:
|
3689 |
msgid "Top Spacing"
|
3690 |
msgstr ""
|
3691 |
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
+
"POT-Creation-Date: 2022-12-11 13:36+0000\n"
|
10 |
"X-Poedit-Basepath: ..\n"
|
11 |
"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n"
|
12 |
"X-Poedit-SearchPath-0: .\n"
|
26 |
msgid "Loading..."
|
27 |
msgstr ""
|
28 |
|
29 |
+
#: ../includes/Classes/Helper.php:240, ../includes/Elements/Adv_Accordion.php:409, ../includes/Elements/Adv_Tabs.php:345, ../includes/Elements/Contact_Form_7.php:270, ../includes/Elements/Content_Ticker.php:306, ../includes/Elements/Countdown.php:551, ../includes/Elements/Creative_Button.php:188, ../includes/Elements/Cta_Box.php:397, ../includes/Elements/Data_Table.php:482, ../includes/Elements/Dual_Color_Header.php:214, ../includes/Elements/Fancy_Text.php:269, ../includes/Elements/Filterable_Gallery.php:799, ../includes/Elements/Flip_Box.php:733, ../includes/Elements/Info_Box.php:493, ../includes/Elements/Login_Register.php:1638, ../includes/Elements/Pricing_Table.php:719, ../includes/Elements/Progress_Bar.php:271, ../includes/Elements/Team_Member.php:237, ../includes/Elements/Testimonial.php:214, ../includes/Elements/Tooltip.php:518, ../includes/Elements/Twitter_Feed.php:489, ../includes/Elements/WeForms.php:110
|
30 |
msgid "Go Premium for More Features"
|
31 |
msgstr ""
|
32 |
|
33 |
+
#: ../includes/Classes/Helper.php:247, ../includes/Elements/Adv_Accordion.php:416, ../includes/Elements/Adv_Tabs.php:352, ../includes/Elements/Contact_Form_7.php:277, ../includes/Elements/Content_Ticker.php:313, ../includes/Elements/Countdown.php:558, ../includes/Elements/Creative_Button.php:195, ../includes/Elements/Cta_Box.php:404, ../includes/Elements/Data_Table.php:489, ../includes/Elements/Dual_Color_Header.php:221, ../includes/Elements/Fancy_Text.php:276, ../includes/Elements/Filterable_Gallery.php:806, ../includes/Elements/Flip_Box.php:740, ../includes/Elements/Info_Box.php:500, ../includes/Elements/Login_Register.php:1645, ../includes/Elements/Pricing_Table.php:726, ../includes/Elements/Progress_Bar.php:278, ../includes/Elements/Team_Member.php:244, ../includes/Elements/Testimonial.php:221, ../includes/Elements/Tooltip.php:525, ../includes/Elements/Twitter_Feed.php:496, ../includes/Elements/WeForms.php:117
|
34 |
msgid "Unlock more possibilities"
|
35 |
msgstr ""
|
36 |
|
134 |
msgid "Next"
|
135 |
msgstr ""
|
136 |
|
137 |
+
#: ../includes/Classes/WPDeveloper_Setup_Wizard.php:154, ../includes/Elements/Advanced_Data_Table.php:439, ../includes/Elements/Advanced_Data_Table.php:558, ../includes/Elements/Advanced_Data_Table.php:984, ../includes/Elements/Advanced_Data_Table.php:1131, ../includes/Elements/Adv_Accordion.php:154, ../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:210, ../includes/Elements/Countdown.php:1122, ../includes/Elements/Creative_Button.php:456, ../includes/Elements/Cta_Box.php:119, ../includes/Elements/Data_Table.php:561, ../includes/Elements/Data_Table.php:786, ../includes/Elements/Data_Table.php:1035, ../includes/Elements/Dual_Color_Header.php:199, ../includes/Elements/Event_Calendar.php:1171, ../includes/Elements/Event_Calendar.php:1303, ../includes/Elements/Fancy_Text.php:182, ../includes/Elements/Feature_List.php:312, ../includes/Elements/Filterable_Gallery.php:779, ../includes/Elements/Filterable_Gallery.php:1311, ../includes/Elements/Filterable_Gallery.php:1694, ../includes/Elements/Flip_Box.php:381, ../includes/Elements/Flip_Box.php:612, ../includes/Elements/FluentForm.php:275, ../includes/Elements/FluentForm.php:470, ../includes/Elements/FluentForm.php:616, ../includes/Elements/FluentForm.php:1249, ../includes/Elements/FluentForm.php:1494, ../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:681, ../includes/Elements/GravityForms.php:1958, ../includes/Elements/GravityForms.php:2218, ../includes/Elements/Image_Accordion.php:117, ../includes/Elements/Info_Box.php:312, ../includes/Elements/Login_Register.php:1214, ../includes/Elements/Login_Register.php:3321, ../includes/Elements/Login_Register.php:4296, ../includes/Elements/Login_Register.php:4645, ../includes/Elements/NFT_Gallery.php:702, ../includes/Elements/NFT_Gallery.php:1870, ../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:495, ../includes/Elements/Post_Grid.php:651, ../includes/Elements/Post_Grid.php:719, ../includes/Elements/Post_Grid.php:814, ../includes/Elements/Post_Grid.php:897, ../includes/Elements/Post_Timeline.php:325, ../includes/Elements/Post_Timeline.php:383, ../includes/Elements/Pricing_Table.php:143, ../includes/Elements/Pricing_Table.php:275, ../includes/Elements/Pricing_Table.php:403, ../includes/Elements/Pricing_Table.php:701, ../includes/Elements/Pricing_Table.php:847, ../includes/Elements/Pricing_Table.php:872, ../includes/Elements/Product_Grid.php:729, ../includes/Elements/Product_Grid.php:1047, ../includes/Elements/Product_Grid.php:1717, ../includes/Elements/Product_Grid.php:2206, ../includes/Elements/Progress_Bar.php:329, ../includes/Elements/Progress_Bar.php:540, ../includes/Elements/Simple_Menu.php:203, ../includes/Elements/Simple_Menu.php:384, ../includes/Elements/Simple_Menu.php:791, ../includes/Elements/Simple_Menu.php:817, ../includes/Elements/Simple_Menu.php:842, ../includes/Elements/Simple_Menu.php:1137, ../includes/Elements/Team_Member.php:415, ../includes/Elements/Testimonial.php:322, ../includes/Elements/Tooltip.php:220, ../includes/Elements/Tooltip.php:292, ../includes/Elements/Tooltip.php:388, ../includes/Elements/Twitter_Feed.php:469, ../includes/Elements/TypeForm.php:208, ../includes/Elements/WeForms.php:173, ../includes/Elements/WeForms.php:643, ../includes/Elements/Woo_Cart.php:279, ../includes/Elements/Woo_Cart.php:500, ../includes/Elements/Woo_Cart.php:596, ../includes/Elements/Woo_Cart.php:667, ../includes/Elements/Woo_Cart.php:745, ../includes/Elements/Woo_Cart.php:857, ../includes/Elements/Woo_Cart.php:1627, ../includes/Elements/Woo_Cart.php:2256, ../includes/Elements/Woo_Product_Carousel.php:716, ../includes/Elements/Woo_Product_Carousel.php:835, ../includes/Elements/Woo_Product_Carousel.php:888, ../includes/Elements/Woo_Product_Gallery.php:201, ../includes/Elements/Woo_Product_Gallery.php:227, ../includes/Elements/Woo_Product_Gallery.php:573, ../includes/Elements/Woo_Product_Gallery.php:1536, ../includes/Elements/WpForms.php:279, ../includes/Elements/WpForms.php:396, ../includes/Elements/WpForms.php:580, ../includes/Elements/WpForms.php:1145, ../includes/Extensions/Scroll_to_Top.php:202, ../includes/Extensions/Table_of_Content.php:495, ../includes/Traits/Controls.php:624, ../includes/Traits/Controls.php:1625, ../includes/Traits/Controls.php:1963, ../includes/Traits/Controls.php:2006, ../includes/Traits/Controls.php:2007, ../includes/Traits/Controls.php:2337
|
138 |
msgid "Right"
|
139 |
msgstr ""
|
140 |
|
597 |
msgid "Remove"
|
598 |
msgstr ""
|
599 |
|
600 |
+
#: ../includes/Controls/Select2.php:29, ../includes/Elements/Adv_Tabs.php:204, ../includes/Elements/Adv_Tabs.php:231, ../includes/Elements/Data_Table.php:156, ../includes/Elements/Data_Table.php:188, ../includes/Elements/Feature_List.php:82, ../includes/Elements/Feature_List.php:168, ../includes/Elements/Filterable_Gallery.php:567, ../includes/Elements/Flip_Box.php:205, ../includes/Elements/Flip_Box.php:436, ../includes/Elements/Info_Box.php:111, ../includes/Elements/NFT_Gallery.php:999, ../includes/Elements/NFT_Gallery.php:1318, ../includes/Elements/NFT_Gallery.php:1566, ../includes/Elements/Post_Grid.php:120, ../includes/Elements/Post_Timeline.php:235, ../includes/Elements/Tooltip.php:83, ../includes/Elements/Tooltip.php:180, ../includes/Elements/Woo_Cart.php:196, ../includes/Traits/Controls.php:600, ../includes/Traits/Controls.php:879, ../includes/Traits/Woo_Product_Comparable.php:40, ../includes/Traits/Woo_Product_Comparable.php:71
|
601 |
msgid "Image"
|
602 |
msgstr ""
|
603 |
|
701 |
msgid "Sort"
|
702 |
msgstr ""
|
703 |
|
704 |
+
#: ../includes/Elements/Advanced_Data_Table.php:165, ../includes/Elements/Betterdocs_Search_Form.php:155, ../includes/Elements/Caldera_Forms.php:162, ../includes/Elements/Caldera_Forms.php:895, ../includes/Elements/Contact_Form_7.php:900, ../includes/Elements/Filterable_Gallery.php:2295, ../includes/Elements/FluentForm.php:203, ../includes/Elements/FluentForm.php:891, ../includes/Elements/Formstack.php:244, ../includes/Elements/Formstack.php:1090, ../includes/Elements/GravityForms.php:231, ../includes/Elements/GravityForms.php:1209, ../includes/Elements/Login_Register.php:938, ../includes/Elements/Login_Register.php:1692, ../includes/Elements/NinjaForms.php:183, ../includes/Elements/NinjaForms.php:939, ../includes/Elements/Woo_Cart.php:952, ../includes/Elements/WpForms.php:190, ../includes/Elements/WpForms.php:896
|
705 |
msgid "Placeholder"
|
706 |
msgstr ""
|
707 |
|
761 |
msgid "Table"
|
762 |
msgstr ""
|
763 |
|
764 |
+
#: ../includes/Elements/Advanced_Data_Table.php:324, ../includes/Elements/Advanced_Data_Table.php:885, ../includes/Elements/Advanced_Data_Table.php:1080, ../includes/Elements/Betterdocs_Search_Form.php:320, ../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:470, ../includes/Elements/Data_Table.php:521, ../includes/Elements/Data_Table.php:1150, ../includes/Elements/Dual_Color_Header.php:749, ../includes/Elements/Dual_Color_Header.php:829, ../includes/Elements/Filterable_Gallery.php:2160, ../includes/Elements/Filterable_Gallery.php:2318, ../includes/Elements/FluentForm.php:1509, ../includes/Elements/FluentForm.php:1523, ../includes/Elements/Formstack.php:1395, ../includes/Elements/Formstack.php:1409, ../includes/Elements/GravityForms.php:1860, ../includes/Elements/GravityForms.php:1976, ../includes/Elements/GravityForms.php:1990, ../includes/Elements/GravityForms.php:2233, ../includes/Elements/Interactive_Circle.php:432, ../includes/Elements/Login_Register.php:2173, ../includes/Elements/Login_Register.php:2218, ../includes/Elements/Login_Register.php:2752, ../includes/Elements/NFT_Gallery.php:1008, ../includes/Elements/NFT_Gallery.php:1323, ../includes/Elements/NFT_Gallery.php:1571, ../includes/Elements/NFT_Gallery.php:1827, ../includes/Elements/NinjaForms.php:1323, ../includes/Elements/NinjaForms.php:1337, ../includes/Elements/Progress_Bar.php:356, ../includes/Elements/Sticky_Video.php:457, ../includes/Elements/Sticky_Video.php:541, ../includes/Elements/Twitter_Feed.php:985, ../includes/Elements/Woo_Cart.php:453, ../includes/Elements/Woo_Cart.php:609, ../includes/Elements/Woo_Cart.php:687, ../includes/Elements/Woo_Cart.php:758, ../includes/Elements/Woo_Cart.php:870, ../includes/Elements/Woo_Cart.php:2218, ../includes/Elements/Woo_Product_Carousel.php:1316, ../includes/Elements/Woo_Product_Carousel.php:2146, ../includes/Elements/Woo_Product_Carousel.php:2349, ../includes/Elements/Woo_Product_Carousel.php:2429, ../includes/Elements/Woo_Product_Gallery.php:1176, ../includes/Elements/WpForms.php:1163, ../includes/Elements/WpForms.php:1177, ../includes/Extensions/Scroll_to_Top.php:239, ../includes/Extensions/Table_of_Content.php:463, ../includes/Traits/Woo_Product_Comparable.php:307, ../includes/Traits/Woo_Product_Comparable.php:969, ../includes/Traits/Woo_Product_Comparable.php:1118
|
765 |
msgid "Width"
|
766 |
msgstr ""
|
767 |
|
768 |
+
#: ../includes/Elements/Advanced_Data_Table.php:361, ../includes/Elements/Advanced_Data_Table.php:1029, ../includes/Elements/Advanced_Data_Table.php:1227, ../includes/Elements/Advanced_Data_Table.php:1299, ../includes/Elements/Advanced_Data_Table.php:1427, ../includes/Elements/Adv_Accordion.php:468, ../includes/Elements/Adv_Accordion.php:659, ../includes/Elements/Adv_Accordion.php:720, ../includes/Elements/Adv_Accordion.php:782, ../includes/Elements/Adv_Accordion.php:865, ../includes/Elements/Adv_Accordion.php:989, ../includes/Elements/Adv_Accordion.php:1036, ../includes/Elements/Adv_Accordion.php:1083, ../includes/Elements/Adv_Tabs.php:407, ../includes/Elements/Adv_Tabs.php:601, ../includes/Elements/Adv_Tabs.php:668, ../includes/Elements/Adv_Tabs.php:737, ../includes/Elements/Adv_Tabs.php:831, ../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:219, ../includes/Elements/Betterdocs_Search_Form.php:374, ../includes/Elements/Betterdocs_Search_Form.php:432, ../includes/Elements/Betterdocs_Search_Form.php:542, ../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:624, ../includes/Elements/Countdown.php:703, ../includes/Elements/Cta_Box.php:557, ../includes/Elements/Cta_Box.php:885, ../includes/Elements/Cta_Box.php:1244, ../includes/Elements/Data_Table.php:652, ../includes/Elements/Data_Table.php:691, ../includes/Elements/Data_Table.php:883, ../includes/Elements/Data_Table.php:1217, ../includes/Elements/Dual_Color_Header.php:347, ../includes/Elements/Event_Calendar.php:966, ../includes/Elements/Event_Calendar.php:1033, ../includes/Elements/Event_Calendar.php:1087, ../includes/Elements/Event_Calendar.php:1759, ../includes/Elements/Event_Calendar.php:1830, ../includes/Elements/Facebook_Feed.php:525, ../includes/Elements/Filterable_Gallery.php:875, ../includes/Elements/Filterable_Gallery.php:988, ../includes/Elements/Filterable_Gallery.php:1054, ../includes/Elements/Filterable_Gallery.php:1134, ../includes/Elements/Filterable_Gallery.php:1281, ../includes/Elements/Filterable_Gallery.php:1338, ../includes/Elements/Filterable_Gallery.php:1557, ../includes/Elements/Filterable_Gallery.php:1832, ../includes/Elements/Filterable_Gallery.php:1893, ../includes/Elements/Filterable_Gallery.php:2414, ../includes/Elements/Filterable_Gallery.php:2531, ../includes/Elements/Flip_Box.php:995, ../includes/Elements/Flip_Box.php:1109, ../includes/Elements/FluentForm.php:666, ../includes/Elements/FluentForm.php:862, ../includes/Elements/FluentForm.php:1580, ../includes/Elements/FluentForm.php:1878, ../includes/Elements/FluentForm.php:2005, ../includes/Elements/FluentForm.php:2123, ../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:879, ../includes/Elements/GravityForms.php:943, ../includes/Elements/GravityForms.php:1678, ../includes/Elements/GravityForms.php:1884, ../includes/Elements/GravityForms.php:2056, ../includes/Elements/GravityForms.php:2290, ../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:1051, ../includes/Elements/Info_Box.php:1132, ../includes/Elements/Interactive_Circle.php:358, ../includes/Elements/Interactive_Circle.php:516, ../includes/Elements/Interactive_Circle.php:743, ../includes/Elements/Login_Register.php:3504, ../includes/Elements/NFT_Gallery.php:2112, ../includes/Elements/NinjaForms.php:659, ../includes/Elements/NinjaForms.php:857, ../includes/Elements/NinjaForms.php:1397, ../includes/Elements/Post_Grid.php:303, ../includes/Elements/Pricing_Table.php:1821, ../includes/Elements/Pricing_Table.php:1989, ../includes/Elements/Product_Grid.php:2277, ../includes/Elements/Simple_Menu.php:664, ../includes/Elements/Simple_Menu.php:737, ../includes/Elements/Team_Member.php:440, ../includes/Elements/Team_Member.php:528, ../includes/Elements/Testimonial.php:435, ../includes/Elements/Tooltip.php:443, ../includes/Elements/Tooltip.php:487, ../includes/Elements/Twitter_Feed.php:642, ../includes/Elements/Twitter_Feed.php:732, ../includes/Elements/Twitter_Feed.php:1049, ../includes/Elements/Twitter_Feed.php:1203, ../includes/Elements/Woo_Checkout.php:1714, ../includes/Elements/Woo_Checkout.php:1993, ../includes/Elements/Woo_Product_Carousel.php:2254, ../includes/Elements/Woo_Product_Carousel.php:2688, ../includes/Elements/WpForms.php:628, ../includes/Elements/WpForms.php:814, ../includes/Elements/WpForms.php:1233, ../includes/Extensions/Table_of_Content.php:577, ../includes/Traits/Controls.php:1682, ../includes/Traits/Controls.php:1736, ../includes/Traits/Controls.php:1866
|
769 |
msgid "Border"
|
770 |
msgstr ""
|
771 |
|
772 |
+
#: ../includes/Elements/Advanced_Data_Table.php:387, ../includes/Elements/Advanced_Data_Table.php:1055, ../includes/Elements/Advanced_Data_Table.php:1253, ../includes/Elements/Advanced_Data_Table.php:1325, ../includes/Elements/Advanced_Data_Table.php:1449, ../includes/Elements/Adv_Accordion.php:475, ../includes/Elements/Adv_Accordion.php:666, ../includes/Elements/Adv_Accordion.php:727, ../includes/Elements/Adv_Accordion.php:789, ../includes/Elements/Adv_Tabs.php:415, ../includes/Elements/Adv_Tabs.php:608, ../includes/Elements/Adv_Tabs.php:675, ../includes/Elements/Adv_Tabs.php:744, ../includes/Elements/Adv_Tabs.php:838, ../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:206, ../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:634, ../includes/Elements/Countdown.php:711, ../includes/Elements/Creative_Button.php:336, ../includes/Elements/Cta_Box.php:565, ../includes/Elements/Cta_Box.php:918, ../includes/Elements/Cta_Box.php:1252, ../includes/Elements/Dual_Color_Header.php:355, ../includes/Elements/Event_Calendar.php:974, ../includes/Elements/Event_Calendar.php:1041, ../includes/Elements/Event_Calendar.php:1095, ../includes/Elements/Event_Calendar.php:1331, ../includes/Elements/Event_Calendar.php:1499, ../includes/Elements/Event_Calendar.php:1767, ../includes/Elements/Event_Calendar.php:1838, ../includes/Elements/Facebook_Feed.php:550, ../includes/Elements/Facebook_Feed.php:610, ../includes/Elements/Fancy_Text.php:515, ../includes/Elements/Feature_List.php:641, ../includes/Elements/Filterable_Gallery.php:883, ../includes/Elements/Filterable_Gallery.php:996, ../includes/Elements/Filterable_Gallery.php:1062, ../includes/Elements/Filterable_Gallery.php:1142, ../includes/Elements/Filterable_Gallery.php:1346, ../includes/Elements/Filterable_Gallery.php:1840, ../includes/Elements/Filterable_Gallery.php:1901, ../includes/Elements/Filterable_Gallery.php:2072, ../includes/Elements/Filterable_Gallery.php:2203, ../includes/Elements/Filterable_Gallery.php:2338, ../includes/Elements/Filterable_Gallery.php:2436, ../includes/Elements/Filterable_Gallery.php:2545, ../includes/Elements/Flip_Box.php:832, ../includes/Elements/Flip_Box.php:893, ../includes/Elements/Flip_Box.php:1018, ../includes/Elements/Flip_Box.php:1132, ../includes/Elements/Flip_Box.php:1393, ../includes/Elements/FluentForm.php:527, ../includes/Elements/FluentForm.php:677, ../includes/Elements/FluentForm.php:1042, ../includes/Elements/FluentForm.php:1068, ../includes/Elements/FluentForm.php:1590, ../includes/Elements/FluentForm.php:1889, ../includes/Elements/FluentForm.php:2013, ../includes/Elements/FluentForm.php:2067, ../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:890, ../includes/Elements/GravityForms.php:1360, ../includes/Elements/GravityForms.php:1556, ../includes/Elements/GravityForms.php:1688, ../includes/Elements/GravityForms.php:1894, ../includes/Elements/GravityForms.php:2066, ../includes/Elements/GravityForms.php:2300, ../includes/Elements/Image_Accordion.php:362, ../includes/Elements/Image_Accordion.php:452, ../includes/Elements/Info_Box.php:1215, ../includes/Elements/Login_Register.php:2301, ../includes/Elements/Login_Register.php:2536, ../includes/Elements/Login_Register.php:2714, ../includes/Elements/Login_Register.php:2870, ../includes/Elements/Login_Register.php:3010, ../includes/Elements/Login_Register.php:3104, ../includes/Elements/Login_Register.php:3195, ../includes/Elements/Login_Register.php:3369, ../includes/Elements/Login_Register.php:3406, ../includes/Elements/Login_Register.php:3520, ../includes/Elements/Login_Register.php:4337, ../includes/Elements/Login_Register.php:4374, ../includes/Elements/Login_Register.php:4687, ../includes/Elements/Login_Register.php:4724, ../includes/Elements/NFT_Gallery.php:758, ../includes/Elements/NFT_Gallery.php:886, ../includes/Elements/NFT_Gallery.php:1098, ../includes/Elements/NFT_Gallery.php:1409, ../includes/Elements/NFT_Gallery.php:1662, ../includes/Elements/NFT_Gallery.php:1893, ../includes/Elements/NFT_Gallery.php:1916, ../includes/Elements/NFT_Gallery.php:2126, ../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:311, ../includes/Elements/Post_Timeline.php:183, ../includes/Elements/Post_Timeline.php:266, ../includes/Elements/Post_Timeline.php:564, ../includes/Elements/Pricing_Table.php:803, ../includes/Elements/Pricing_Table.php:1592, ../includes/Elements/Pricing_Table.php:1844, ../includes/Elements/Pricing_Table.php:1997, ../includes/Elements/Product_Grid.php:969, ../includes/Elements/Product_Grid.php:2021, ../includes/Elements/Product_Grid.php:2377, ../includes/Elements/Product_Grid.php:2717, ../includes/Elements/Product_Grid.php:2916, ../includes/Elements/Product_Grid.php:2948, ../includes/Elements/Simple_Menu.php:672, ../includes/Elements/Sticky_Video.php:607, ../includes/Elements/Team_Member.php:448, ../includes/Elements/Team_Member.php:547, ../includes/Elements/Team_Member.php:798, ../includes/Elements/Testimonial.php:454, ../includes/Elements/Tooltip.php:504, ../includes/Elements/Twitter_Feed.php:650, ../includes/Elements/Twitter_Feed.php:743, ../includes/Elements/Twitter_Feed.php:1217, ../includes/Elements/TypeForm.php:310, ../includes/Elements/WeForms.php:253, ../includes/Elements/WeForms.php:394, ../includes/Elements/WeForms.php:722, ../includes/Elements/Woo_Cart.php:1323, ../includes/Elements/Woo_Cart.php:1495, ../includes/Elements/Woo_Cart.php:1751, ../includes/Elements/Woo_Cart.php:1890, ../includes/Elements/Woo_Cart.php:2014, ../includes/Elements/Woo_Cart.php:2168, ../includes/Elements/Woo_Cart.php:2373, ../includes/Elements/Woo_Cart.php:2459, ../includes/Elements/Woo_Cart.php:2543, ../includes/Elements/Woo_Checkout.php:783, ../includes/Elements/Woo_Checkout.php:932, ../includes/Elements/Woo_Checkout.php:1128, ../includes/Elements/Woo_Checkout.php:1376, ../includes/Elements/Woo_Checkout.php:1581, ../includes/Elements/Woo_Checkout.php:1723, ../includes/Elements/Woo_Checkout.php:1931, ../includes/Elements/Woo_Checkout.php:2139, ../includes/Elements/Woo_Checkout.php:2341, ../includes/Elements/Woo_Checkout.php:2521, ../includes/Elements/Woo_Checkout.php:2801, ../includes/Elements/Woo_Product_Carousel.php:1019, ../includes/Elements/Woo_Product_Carousel.php:1423, ../includes/Elements/Woo_Product_Carousel.php:1826, ../includes/Elements/Woo_Product_Carousel.php:2022, ../includes/Elements/Woo_Product_Carousel.php:2054, ../includes/Elements/Woo_Product_Carousel.php:2264, ../includes/Elements/Woo_Product_Carousel.php:2387, ../includes/Elements/Woo_Product_Carousel.php:2511, ../includes/Elements/Woo_Product_Carousel.php:2698, ../includes/Elements/Woo_Product_Gallery.php:688, ../includes/Elements/Woo_Product_Gallery.php:1705, ../includes/Elements/Woo_Product_Gallery.php:2065, ../includes/Elements/Woo_Product_Gallery.php:2264, ../includes/Elements/Woo_Product_Gallery.php:2296, ../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/Scroll_to_Top.php:418, ../includes/Extensions/Table_of_Content.php:600, ../includes/Extensions/Table_of_Content.php:815, ../includes/Traits/Controls.php:1690, ../includes/Traits/Controls.php:1744, ../includes/Traits/Controls.php:1874, ../includes/Traits/Woo_Product_Comparable.php:368, ../includes/Traits/Woo_Product_Comparable.php:513, ../includes/Traits/Woo_Product_Comparable.php:1394
|
773 |
msgid "Border Radius"
|
774 |
msgstr ""
|
775 |
|
781 |
msgid "Head"
|
782 |
msgstr ""
|
783 |
|
784 |
+
#: ../includes/Elements/Advanced_Data_Table.php:419, ../includes/Elements/Advanced_Data_Table.php:538, ../includes/Elements/Advanced_Data_Table.php:996, ../includes/Elements/Advanced_Data_Table.php:1146, ../includes/Elements/Advanced_Data_Table.php:1354, ../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:895, ../includes/Elements/Event_Calendar.php:925, ../includes/Elements/Event_Calendar.php:1139, ../includes/Elements/Event_Calendar.php:1214, ../includes/Elements/Event_Calendar.php:1248, ../includes/Elements/Event_Calendar.php:1491, ../includes/Elements/Event_Calendar.php:1554, ../includes/Elements/Event_Calendar.php:1583, ../includes/Elements/Event_Calendar.php:1651, ../includes/Elements/Event_Calendar.php:1809, ../includes/Elements/Filterable_Gallery.php:1968, ../includes/Elements/Filterable_Gallery.php:2015, ../includes/Elements/Filterable_Gallery.php:2051, ../includes/Elements/Filterable_Gallery.php:2108, ../includes/Elements/Filterable_Gallery.php:2402, ../includes/Elements/Filterable_Gallery.php:2562, ../includes/Elements/FluentForm.php:321, ../includes/Elements/FluentForm.php:382, ../includes/Elements/FluentForm.php:582, ../includes/Elements/FluentForm.php:822, ../includes/Elements/FluentForm.php:1149, ../includes/Elements/FluentForm.php:1204, ../includes/Elements/FluentForm.php:1308, ../includes/Elements/FluentForm.php:1394, ../includes/Elements/FluentForm.php:1460, ../includes/Elements/FluentForm.php:1655, ../includes/Elements/FluentForm.php:1788, ../includes/Elements/FluentForm.php:1985, ../includes/Elements/FluentForm.php:2134, ../includes/Elements/FluentForm.php:2183, ../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:529, ../includes/Elements/GravityForms.php:560, ../includes/Elements/GravityForms.php:601, ../includes/Elements/GravityForms.php:644, ../includes/Elements/GravityForms.php:903, ../includes/Elements/GravityForms.php:992, ../includes/Elements/GravityForms.php:1046, ../includes/Elements/GravityForms.php:1182, ../includes/Elements/GravityForms.php:1772, ../includes/Elements/GravityForms.php:1792, ../includes/Elements/GravityForms.php:1827, ../includes/Elements/GravityForms.php:2172, ../includes/Elements/GravityForms.php:2393, ../includes/Elements/GravityForms.php:2586, ../includes/Elements/NFT_Gallery.php:2143, ../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:392, ../includes/Elements/Post_Grid.php:511, ../includes/Elements/Post_Grid.php:523, ../includes/Elements/Post_Grid.php:665, ../includes/Elements/Post_Grid.php:877, ../includes/Elements/Post_Timeline.php:283, ../includes/Elements/Post_Timeline.php:544, ../includes/Elements/Product_Grid.php:2437, ../includes/Elements/Product_Grid.php:2468, ../includes/Elements/Product_Grid.php:2510, ../includes/Elements/Product_Grid.php:2576, ../includes/Elements/Product_Grid.php:2617, ../includes/Elements/Product_Grid.php:2674, ../includes/Elements/Product_Grid.php:2791, ../includes/Elements/Progress_Bar.php:672, ../includes/Elements/Simple_Menu.php:874, ../includes/Elements/Simple_Menu.php:1185, ../includes/Elements/Twitter_Feed.php:1234, ../includes/Elements/Woo_Cart.php:1736, ../includes/Elements/Woo_Cart.php:1797, ../includes/Elements/Woo_Cart.php:1975, ../includes/Elements/Woo_Cart.php:2067, ../includes/Elements/Woo_Checkout.php:1484, ../includes/Elements/Woo_Checkout.php:1834, ../includes/Elements/Woo_Product_Carousel.php:1534, ../includes/Elements/Woo_Product_Carousel.php:1564, ../includes/Elements/Woo_Product_Carousel.php:1606, ../includes/Elements/Woo_Product_Carousel.php:1685, ../includes/Elements/Woo_Product_Carousel.php:1725, ../includes/Elements/Woo_Product_Carousel.php:1782, ../includes/Elements/Woo_Product_Carousel.php:1901, ../includes/Elements/Woo_Product_Gallery.php:1786, ../includes/Elements/Woo_Product_Gallery.php:1816, ../includes/Elements/Woo_Product_Gallery.php:1858, ../includes/Elements/Woo_Product_Gallery.php:1924, ../includes/Elements/Woo_Product_Gallery.php:1965, ../includes/Elements/Woo_Product_Gallery.php:2022, ../includes/Elements/Woo_Product_Gallery.php:2139, ../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:1077, ../includes/Traits/Woo_Product_Comparable.php:1195
|
785 |
msgid "Typography"
|
786 |
msgstr ""
|
787 |
|
789 |
msgid "Text Alignment"
|
790 |
msgstr ""
|
791 |
|
792 |
+
#: ../includes/Elements/Advanced_Data_Table.php:431, ../includes/Elements/Advanced_Data_Table.php:550, ../includes/Elements/Advanced_Data_Table.php:976, ../includes/Elements/Advanced_Data_Table.php:1123, ../includes/Elements/Adv_Accordion.php:155, ../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:202, ../includes/Elements/Countdown.php:1114, ../includes/Elements/Creative_Button.php:448, ../includes/Elements/Cta_Box.php:117, ../includes/Elements/Data_Table.php:553, ../includes/Elements/Data_Table.php:778, ../includes/Elements/Data_Table.php:1027, ../includes/Elements/Dual_Color_Header.php:191, ../includes/Elements/Event_Calendar.php:1163, ../includes/Elements/Event_Calendar.php:1295, ../includes/Elements/Fancy_Text.php:174, ../includes/Elements/Feature_List.php:304, ../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:604, ../includes/Elements/FluentForm.php:267, ../includes/Elements/FluentForm.php:462, ../includes/Elements/FluentForm.php:608, ../includes/Elements/FluentForm.php:1241, ../includes/Elements/FluentForm.php:1486, ../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:673, ../includes/Elements/GravityForms.php:1950, ../includes/Elements/GravityForms.php:2210, ../includes/Elements/Image_Accordion.php:109, ../includes/Elements/Info_Box.php:304, ../includes/Elements/Login_Register.php:1210, ../includes/Elements/Login_Register.php:1262, ../includes/Elements/Login_Register.php:3313, ../includes/Elements/Login_Register.php:4288, ../includes/Elements/Login_Register.php:4637, ../includes/Elements/NFT_Gallery.php:694, ../includes/Elements/NFT_Gallery.php:1862, ../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:487, ../includes/Elements/Post_Grid.php:643, ../includes/Elements/Post_Grid.php:711, ../includes/Elements/Post_Grid.php:806, ../includes/Elements/Post_Grid.php:889, ../includes/Elements/Post_Timeline.php:317, ../includes/Elements/Post_Timeline.php:375, ../includes/Elements/Pricing_Table.php:142, ../includes/Elements/Pricing_Table.php:274, ../includes/Elements/Pricing_Table.php:395, ../includes/Elements/Pricing_Table.php:697, ../includes/Elements/Pricing_Table.php:839, ../includes/Elements/Pricing_Table.php:864, ../includes/Elements/Product_Grid.php:721, ../includes/Elements/Product_Grid.php:1039, ../includes/Elements/Product_Grid.php:1713, ../includes/Elements/Product_Grid.php:2198, ../includes/Elements/Progress_Bar.php:321, ../includes/Elements/Progress_Bar.php:532, ../includes/Elements/Simple_Menu.php:195, ../includes/Elements/Simple_Menu.php:376, ../includes/Elements/Simple_Menu.php:783, ../includes/Elements/Simple_Menu.php:809, ../includes/Elements/Simple_Menu.php:834, ../includes/Elements/Simple_Menu.php:1129, ../includes/Elements/Team_Member.php:407, ../includes/Elements/Testimonial.php:314, ../includes/Elements/Tooltip.php:212, ../includes/Elements/Tooltip.php:291, ../includes/Elements/Tooltip.php:380, ../includes/Elements/Twitter_Feed.php:461, ../includes/Elements/TypeForm.php:200, ../includes/Elements/WeForms.php:165, ../includes/Elements/WeForms.php:635, ../includes/Elements/Woo_Cart.php:271, ../includes/Elements/Woo_Cart.php:496, ../includes/Elements/Woo_Cart.php:588, ../includes/Elements/Woo_Cart.php:659, ../includes/Elements/Woo_Cart.php:737, ../includes/Elements/Woo_Cart.php:849, ../includes/Elements/Woo_Cart.php:1619, ../includes/Elements/Woo_Cart.php:2248, ../includes/Elements/Woo_Product_Carousel.php:715, ../includes/Elements/Woo_Product_Carousel.php:831, ../includes/Elements/Woo_Product_Carousel.php:880, ../includes/Elements/Woo_Product_Gallery.php:193, ../includes/Elements/Woo_Product_Gallery.php:223, ../includes/Elements/Woo_Product_Gallery.php:565, ../includes/Elements/Woo_Product_Gallery.php:1532, ../includes/Elements/WpForms.php:271, ../includes/Elements/WpForms.php:388, ../includes/Elements/WpForms.php:572, ../includes/Elements/WpForms.php:1137, ../includes/Extensions/Scroll_to_Top.php:165, ../includes/Extensions/Table_of_Content.php:494, ../includes/Traits/Controls.php:626, ../includes/Traits/Controls.php:1617, ../includes/Traits/Controls.php:1955, ../includes/Traits/Controls.php:2006, ../includes/Traits/Controls.php:2007, ../includes/Traits/Controls.php:2329
|
793 |
msgid "Left"
|
794 |
msgstr ""
|
795 |
|
796 |
+
#: ../includes/Elements/Advanced_Data_Table.php:435, ../includes/Elements/Advanced_Data_Table.php:554, ../includes/Elements/Advanced_Data_Table.php:980, ../includes/Elements/Advanced_Data_Table.php:1127, ../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:206, ../includes/Elements/Countdown.php:1118, ../includes/Elements/Creative_Button.php:452, ../includes/Elements/Cta_Box.php:118, ../includes/Elements/Data_Table.php:557, ../includes/Elements/Data_Table.php:782, ../includes/Elements/Data_Table.php:1031, ../includes/Elements/Dual_Color_Header.php:195, ../includes/Elements/Dual_Color_Header.php:658, ../includes/Elements/Event_Calendar.php:1167, ../includes/Elements/Event_Calendar.php:1299, ../includes/Elements/Fancy_Text.php:178, ../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:608, ../includes/Elements/FluentForm.php:271, ../includes/Elements/FluentForm.php:466, ../includes/Elements/FluentForm.php:612, ../includes/Elements/FluentForm.php:1245, ../includes/Elements/FluentForm.php:1490, ../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:677, ../includes/Elements/GravityForms.php:1954, ../includes/Elements/GravityForms.php:2214, ../includes/Elements/Image_Accordion.php:113, ../includes/Elements/Image_Accordion.php:136, ../includes/Elements/Info_Box.php:308, ../includes/Elements/Login_Register.php:3317, ../includes/Elements/Login_Register.php:4270, ../includes/Elements/Login_Register.php:4292, ../includes/Elements/Login_Register.php:4598, ../includes/Elements/Login_Register.php:4618, ../includes/Elements/Login_Register.php:4641, ../includes/Elements/NFT_Gallery.php:698, ../includes/Elements/NFT_Gallery.php:1866, ../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:491, ../includes/Elements/Post_Grid.php:647, ../includes/Elements/Post_Grid.php:715, ../includes/Elements/Post_Grid.php:810, ../includes/Elements/Post_Grid.php:893, ../includes/Elements/Post_Timeline.php:321, ../includes/Elements/Post_Timeline.php:379, ../includes/Elements/Pricing_Table.php:843, ../includes/Elements/Pricing_Table.php:868, ../includes/Elements/Product_Grid.php:725, ../includes/Elements/Product_Grid.php:1043, ../includes/Elements/Product_Grid.php:2202, ../includes/Elements/Progress_Bar.php:325, ../includes/Elements/Progress_Bar.php:536, ../includes/Elements/Simple_Menu.php:199, ../includes/Elements/Simple_Menu.php:380, ../includes/Elements/Simple_Menu.php:787, ../includes/Elements/Simple_Menu.php:813, ../includes/Elements/Simple_Menu.php:838, ../includes/Elements/Simple_Menu.php:1133, ../includes/Elements/Team_Member.php:411, ../includes/Elements/Testimonial.php:318, ../includes/Elements/Tooltip.php:216, ../includes/Elements/Tooltip.php:384, ../includes/Elements/Twitter_Feed.php:465, ../includes/Elements/TypeForm.php:204, ../includes/Elements/WeForms.php:169, ../includes/Elements/WeForms.php:639, ../includes/Elements/Woo_Cart.php:275, ../includes/Elements/Woo_Cart.php:592, ../includes/Elements/Woo_Cart.php:663, ../includes/Elements/Woo_Cart.php:741, ../includes/Elements/Woo_Cart.php:853, ../includes/Elements/Woo_Cart.php:1623, ../includes/Elements/Woo_Cart.php:2252, ../includes/Elements/Woo_Product_Carousel.php:884, ../includes/Elements/Woo_Product_Gallery.php:197, ../includes/Elements/Woo_Product_Gallery.php:569, ../includes/Elements/WpForms.php:275, ../includes/Elements/WpForms.php:392, ../includes/Elements/WpForms.php:576, ../includes/Elements/WpForms.php:1141, ../includes/Traits/Controls.php:625, ../includes/Traits/Controls.php:642, ../includes/Traits/Controls.php:1621, ../includes/Traits/Controls.php:1959, ../includes/Traits/Controls.php:2333
|
797 |
msgid "Center"
|
798 |
msgstr ""
|
799 |
|
800 |
+
#: ../includes/Elements/Advanced_Data_Table.php:454, ../includes/Elements/Advanced_Data_Table.php:573, ../includes/Elements/Advanced_Data_Table.php:667, ../includes/Elements/Advanced_Data_Table.php:698, ../includes/Elements/Advanced_Data_Table.php:729, ../includes/Elements/Advanced_Data_Table.php:760, ../includes/Elements/Advanced_Data_Table.php:791, ../includes/Elements/Advanced_Data_Table.php:822, ../includes/Elements/Advanced_Data_Table.php:1004, ../includes/Elements/Advanced_Data_Table.php:1200, ../includes/Elements/Advanced_Data_Table.php:1270, ../includes/Elements/Adv_Accordion.php:634, ../includes/Elements/Adv_Accordion.php:695, ../includes/Elements/Adv_Accordion.php:756, ../includes/Elements/Adv_Accordion.php:824, ../includes/Elements/Adv_Tabs.php:574, ../includes/Elements/Adv_Tabs.php:641, ../includes/Elements/Adv_Tabs.php:708, ../includes/Elements/Adv_Tabs.php:790, ../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:1193, ../includes/Elements/Creative_Button.php:277, ../includes/Elements/Creative_Button.php:370, ../includes/Elements/Cta_Box.php:811, ../includes/Elements/Cta_Box.php:826, ../includes/Elements/Cta_Box.php:997, ../includes/Elements/Cta_Box.php:1012, ../includes/Elements/Cta_Box.php:1204, ../includes/Elements/Cta_Box.php:1219, ../includes/Elements/Cta_Box.php:1273, ../includes/Elements/Cta_Box.php:1288, ../includes/Elements/Data_Table.php:989, ../includes/Elements/Data_Table.php:1006, ../includes/Elements/Event_Calendar.php:1409, ../includes/Elements/Event_Calendar.php:1442, ../includes/Elements/Filterable_Gallery.php:963, ../includes/Elements/Filterable_Gallery.php:1029, ../includes/Elements/Filterable_Gallery.php:2514, ../includes/Elements/Filterable_Gallery.php:2709, ../includes/Elements/FluentForm.php:305, ../includes/Elements/FluentForm.php:366, ../includes/Elements/FluentForm.php:570, ../includes/Elements/FluentForm.php:653, ../includes/Elements/FluentForm.php:902, ../includes/Elements/FluentForm.php:1567, ../includes/Elements/FluentForm.php:1694, ../includes/Elements/FluentForm.php:2111, ../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:516, ../includes/Elements/GravityForms.php:547, ../includes/Elements/GravityForms.php:586, ../includes/Elements/GravityForms.php:629, ../includes/Elements/GravityForms.php:716, ../includes/Elements/GravityForms.php:980, ../includes/Elements/GravityForms.php:1033, ../includes/Elements/GravityForms.php:1220, ../includes/Elements/GravityForms.php:1663, ../includes/Elements/GravityForms.php:1739, ../includes/Elements/GravityForms.php:2041, ../includes/Elements/GravityForms.php:2103, ../includes/Elements/GravityForms.php:2277, ../includes/Elements/GravityForms.php:2364, ../includes/Elements/GravityForms.php:2438, ../includes/Elements/GravityForms.php:2573, ../includes/Elements/Info_Box.php:1237, ../includes/Elements/Info_Box.php:1284, ../includes/Elements/Interactive_Circle.php:489, ../includes/Elements/Interactive_Circle.php:549, ../includes/Elements/Interactive_Circle.php:617, ../includes/Elements/Interactive_Circle.php:702, ../includes/Elements/Login_Register.php:3342, ../includes/Elements/Login_Register.php:3481, ../includes/Elements/Login_Register.php:3922, ../includes/Elements/Login_Register.php:4317, ../includes/Elements/Login_Register.php:4354, ../includes/Elements/Login_Register.php:4667, ../includes/Elements/Login_Register.php:4704, ../includes/Elements/NFT_Gallery.php:1141, ../includes/Elements/NFT_Gallery.php:1203, ../includes/Elements/NFT_Gallery.php:1264, ../includes/Elements/NFT_Gallery.php:1439, ../includes/Elements/NFT_Gallery.php:1494, ../includes/Elements/NFT_Gallery.php:1511, ../includes/Elements/NFT_Gallery.php:1692, ../includes/Elements/NFT_Gallery.php:1747, ../includes/Elements/NFT_Gallery.php:1764, ../includes/Elements/NFT_Gallery.php:1941, ../includes/Elements/NFT_Gallery.php:1986, ../includes/Elements/NFT_Gallery.php:2095, ../includes/Elements/NFT_Gallery.php:2290, ../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:1948, ../includes/Elements/Pricing_Table.php:2018, ../includes/Elements/Product_Grid.php:2252, ../includes/Elements/Product_Grid.php:2290, ../includes/Elements/Product_Grid.php:2334, ../includes/Elements/Simple_Menu.php:406, ../includes/Elements/Simple_Menu.php:440, ../includes/Elements/Simple_Menu.php:474, ../includes/Elements/Simple_Menu.php:532, ../includes/Elements/Simple_Menu.php:566, ../includes/Elements/Simple_Menu.php:892, ../includes/Elements/Simple_Menu.php:1019, ../includes/Elements/Simple_Menu.php:1203, ../includes/Elements/Simple_Menu.php:1328, ../includes/Elements/Tooltip.php:421, ../includes/Elements/Tooltip.php:465, ../includes/Elements/Tooltip.php:639, ../includes/Elements/Twitter_Feed.php:1186, ../includes/Elements/Twitter_Feed.php:1381, ../includes/Elements/WeForms.php:692, ../includes/Elements/WeForms.php:742, ../includes/Elements/Woo_Cart.php:1254, ../includes/Elements/Woo_Cart.php:1533, ../includes/Elements/Woo_Cart.php:1824, ../includes/Elements/Woo_Cart.php:1862, ../includes/Elements/Woo_Cart.php:1950, ../includes/Elements/Woo_Cart.php:2097, ../includes/Elements/Woo_Cart.php:2138, ../includes/Elements/Woo_Cart.php:2333, ../includes/Elements/Woo_Cart.php:2416, ../includes/Elements/Woo_Cart.php:2503, ../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:658, ../includes/Extensions/Table_of_Content.php:973, ../includes/Extensions/Table_of_Content.php:996, ../includes/Extensions/Table_of_Content.php:1022, ../includes/Traits/Controls.php:1656, ../includes/Traits/Controls.php:1711, ../includes/Traits/Controls.php:1841, ../includes/Traits/Controls.php:1903, ../includes/Traits/Controls.php:2286
|
801 |
msgid "Text Color"
|
802 |
msgstr ""
|
803 |
|
804 |
+
#: ../includes/Elements/Advanced_Data_Table.php:468, ../includes/Elements/Advanced_Data_Table.php:609, ../includes/Elements/Advanced_Data_Table.php:682, ../includes/Elements/Advanced_Data_Table.php:713, ../includes/Elements/Advanced_Data_Table.php:744, ../includes/Elements/Advanced_Data_Table.php:775, ../includes/Elements/Advanced_Data_Table.php:806, ../includes/Elements/Advanced_Data_Table.php:837, ../includes/Elements/Advanced_Data_Table.php:1016, ../includes/Elements/Advanced_Data_Table.php:1213, ../includes/Elements/Advanced_Data_Table.php:1284, ../includes/Elements/Advanced_Data_Table.php:1379, ../includes/Elements/Advanced_Data_Table.php:1409, ../includes/Elements/Adv_Accordion.php:975, ../includes/Elements/Adv_Accordion.php:1022, ../includes/Elements/Adv_Accordion.php:1069, ../includes/Elements/Adv_Tabs.php:555, ../includes/Elements/Adv_Tabs.php:771, ../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:598, ../includes/Elements/Content_Ticker.php:655, ../includes/Elements/Countdown.php:817, ../includes/Elements/Countdown.php:829, ../includes/Elements/Countdown.php:889, ../includes/Elements/Countdown.php:901, ../includes/Elements/Countdown.php:961, ../includes/Elements/Countdown.php:973, ../includes/Elements/Countdown.php:1033, ../includes/Elements/Countdown.php:1045, ../includes/Elements/Creative_Button.php:291, ../includes/Elements/Creative_Button.php:384, ../includes/Elements/Cta_Box.php:137, ../includes/Elements/Cta_Box.php:477, ../includes/Elements/Cta_Box.php:518, ../includes/Elements/Cta_Box.php:840, ../includes/Elements/Cta_Box.php:856, ../includes/Elements/Cta_Box.php:1026, ../includes/Elements/Cta_Box.php:1043, ../includes/Elements/Data_Table.php:639, ../includes/Elements/Data_Table.php:679, ../includes/Elements/Data_Table.php:1190, ../includes/Elements/Dual_Color_Header.php:310, ../includes/Elements/Event_Calendar.php:1421, ../includes/Elements/Filterable_Gallery.php:838, ../includes/Elements/Filterable_Gallery.php:975, ../includes/Elements/Filterable_Gallery.php:1041, ../includes/Elements/Filterable_Gallery.php:1187, ../includes/Elements/Filterable_Gallery.php:1377, ../includes/Elements/Filterable_Gallery.php:1407, ../includes/Elements/Filterable_Gallery.php:1512, ../includes/Elements/Filterable_Gallery.php:1528, ../includes/Elements/Filterable_Gallery.php:1730, ../includes/Elements/Filterable_Gallery.php:1868, ../includes/Elements/Filterable_Gallery.php:2498, ../includes/Elements/Filterable_Gallery.php:2693, ../includes/Elements/FluentForm.php:641, ../includes/Elements/FluentForm.php:849, ../includes/Elements/FluentForm.php:1283, ../includes/Elements/FluentForm.php:1369, ../includes/Elements/FluentForm.php:1555, ../includes/Elements/FluentForm.php:1682, ../includes/Elements/FluentForm.php:2100, ../includes/Elements/Formstack.php:840, ../includes/Elements/Formstack.php:1048, ../includes/Elements/Formstack.php:1440, ../includes/Elements/Formstack.php:1546, ../includes/Elements/GravityForms.php:704, ../includes/Elements/GravityForms.php:930, ../includes/Elements/GravityForms.php:1649, ../includes/Elements/GravityForms.php:1725, ../includes/Elements/GravityForms.php:1848, ../includes/Elements/GravityForms.php:2027, ../includes/Elements/GravityForms.php:2089, ../includes/Elements/GravityForms.php:2265, ../includes/Elements/GravityForms.php:2352, ../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:1035, ../includes/Elements/Info_Box.php:1098, ../includes/Elements/Info_Box.php:1250, ../includes/Elements/Info_Box.php:1297, ../includes/Elements/Interactive_Circle.php:478, ../includes/Elements/Interactive_Circle.php:535, ../includes/Elements/Interactive_Circle.php:603, ../includes/Elements/Interactive_Circle.php:685, ../includes/Elements/Login_Register.php:2316, ../includes/Elements/Login_Register.php:2449, ../includes/Elements/Login_Register.php:2551, ../includes/Elements/Login_Register.php:2729, ../includes/Elements/Login_Register.php:3085, ../includes/Elements/Login_Register.php:3176, ../includes/Elements/Login_Register.php:3356, ../includes/Elements/Login_Register.php:3394, ../includes/Elements/Login_Register.php:3491, ../includes/Elements/Login_Register.php:4049, ../includes/Elements/Login_Register.php:4325, ../includes/Elements/Login_Register.php:4362, ../includes/Elements/Login_Register.php:4675, ../includes/Elements/Login_Register.php:4712, ../includes/Elements/NFT_Gallery.php:783, ../includes/Elements/NFT_Gallery.php:816, ../includes/Elements/NFT_Gallery.php:928, ../includes/Elements/NFT_Gallery.php:961, ../includes/Elements/NFT_Gallery.php:1952, ../includes/Elements/NFT_Gallery.php:1997, ../includes/Elements/NFT_Gallery.php:2079, ../includes/Elements/NFT_Gallery.php:2274, ../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:963, ../includes/Elements/Post_Timeline.php:154, ../includes/Elements/Pricing_Table.php:758, ../includes/Elements/Pricing_Table.php:920, ../includes/Elements/Pricing_Table.php:1451, ../includes/Elements/Pricing_Table.php:1528, ../includes/Elements/Pricing_Table.php:1694, ../includes/Elements/Pricing_Table.php:1961, ../includes/Elements/Pricing_Table.php:2031, ../includes/Elements/Product_Grid.php:1862, ../includes/Elements/Product_Grid.php:1970, ../includes/Elements/Product_Grid.php:2078, ../includes/Elements/Product_Grid.php:2264, ../includes/Elements/Product_Grid.php:2302, ../includes/Elements/Product_Grid.php:2346, ../includes/Elements/Product_Grid.php:2594, ../includes/Elements/Product_Grid.php:2637, ../includes/Elements/Product_Grid.php:2698, ../includes/Elements/Product_Grid.php:2749, ../includes/Elements/Progress_Bar.php:578, ../includes/Elements/Simple_Menu.php:308, ../includes/Elements/Simple_Menu.php:419, ../includes/Elements/Simple_Menu.php:453, ../includes/Elements/Simple_Menu.php:487, ../includes/Elements/Simple_Menu.php:545, ../includes/Elements/Simple_Menu.php:579, ../includes/Elements/Simple_Menu.php:651, ../includes/Elements/Simple_Menu.php:723, ../includes/Elements/Simple_Menu.php:906, ../includes/Elements/Simple_Menu.php:986, ../includes/Elements/Simple_Menu.php:1034, ../includes/Elements/Simple_Menu.php:1081, ../includes/Elements/Simple_Menu.php:1215, ../includes/Elements/Simple_Menu.php:1295, ../includes/Elements/Simple_Menu.php:1342, ../includes/Elements/Simple_Menu.php:1389, ../includes/Elements/Team_Member.php:762, ../includes/Elements/Tooltip.php:410, ../includes/Elements/Tooltip.php:454, ../includes/Elements/Tooltip.php:628, ../includes/Elements/Twitter_Feed.php:595, ../includes/Elements/Twitter_Feed.php:1170, ../includes/Elements/Twitter_Feed.php:1365, ../includes/Elements/WeForms.php:703, ../includes/Elements/WeForms.php:753, ../includes/Elements/Woo_Cart.php:1149, ../includes/Elements/Woo_Cart.php:1813, ../includes/Elements/Woo_Cart.php:1851, ../includes/Elements/Woo_Cart.php:2085, ../includes/Elements/Woo_Cart.php:2126, ../includes/Elements/Woo_Checkout.php:753, ../includes/Elements/Woo_Checkout.php:868, ../includes/Elements/Woo_Checkout.php:990, ../includes/Elements/Woo_Checkout.php:1500, ../includes/Elements/Woo_Checkout.php:1540, ../includes/Elements/Woo_Checkout.php:1850, ../includes/Elements/Woo_Checkout.php:1890, ../includes/Elements/Woo_Checkout.php:2480, ../includes/Elements/Woo_Checkout.php:2610, ../includes/Elements/Woo_Checkout.php:2720, ../includes/Elements/Woo_Checkout.php:2760, ../includes/Elements/Woo_Product_Carousel.php:906, ../includes/Elements/Woo_Product_Carousel.php:1401, ../includes/Elements/Woo_Product_Carousel.php:1483, ../includes/Elements/Woo_Product_Carousel.php:1702, ../includes/Elements/Woo_Product_Carousel.php:1745, ../includes/Elements/Woo_Product_Carousel.php:1807, ../includes/Elements/Woo_Product_Carousel.php:1859, ../includes/Elements/Woo_Product_Carousel.php:2663, ../includes/Elements/Woo_Product_Carousel.php:2719, ../includes/Elements/Woo_Product_Gallery.php:1693, ../includes/Elements/Woo_Product_Gallery.php:1743, ../includes/Elements/Woo_Product_Gallery.php:1942, ../includes/Elements/Woo_Product_Gallery.php:1985, ../includes/Elements/Woo_Product_Gallery.php:2046, ../includes/Elements/Woo_Product_Gallery.php:2097, ../includes/Elements/WpForms.php:603, ../includes/Elements/WpForms.php:1208, ../includes/Elements/WpForms.php:1315, ../includes/Extensions/Reading_Progress.php:156, ../includes/Extensions/Scroll_to_Top.php:403, ../includes/Extensions/Table_of_Content.php:645, ../includes/Extensions/Table_of_Content.php:791, ../includes/Extensions/Table_of_Content.php:855, ../includes/Traits/Controls.php:1853, ../includes/Traits/Controls.php:1915, ../includes/Traits/Controls.php:2296, ../includes/Traits/Woo_Product_Comparable.php:380, ../includes/Traits/Woo_Product_Comparable.php:486
|
805 |
msgid "Background Color"
|
806 |
msgstr ""
|
807 |
|
809 |
msgid "Cell Border"
|
810 |
msgstr ""
|
811 |
|
812 |
+
#: ../includes/Elements/Advanced_Data_Table.php:507, ../includes/Elements/Advanced_Data_Table.php:852, ../includes/Elements/Advanced_Data_Table.php:936, ../includes/Elements/Advanced_Data_Table.php:1154, ../includes/Elements/Advanced_Data_Table.php:1471, ../includes/Elements/Adv_Accordion.php:445, ../includes/Elements/Adv_Accordion.php:599, ../includes/Elements/Adv_Accordion.php:842, ../includes/Elements/Adv_Tabs.php:384, ../includes/Elements/Adv_Tabs.php:529, ../includes/Elements/Adv_Tabs.php:808, ../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:440, ../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:696, ../includes/Elements/Countdown.php:690, ../includes/Elements/Countdown.php:1220, ../includes/Elements/Cta_Box.php:532, ../includes/Elements/Cta_Box.php:745, ../includes/Elements/Cta_Box.php:1168, ../includes/Elements/Data_Table.php:607, ../includes/Elements/Data_Table.php:892, ../includes/Elements/Dual_Color_Header.php:322, ../includes/Elements/Facebook_Feed.php:680, ../includes/Elements/Facebook_Feed.php:706, ../includes/Elements/Facebook_Feed.php:778, ../includes/Elements/Fancy_Text.php:480, ../includes/Elements/Feature_List.php:598, ../includes/Elements/Filterable_Gallery.php:850, ../includes/Elements/Filterable_Gallery.php:927, ../includes/Elements/Filterable_Gallery.php:1109, ../includes/Elements/Filterable_Gallery.php:1199, ../includes/Elements/Filterable_Gallery.php:1543, ../includes/Elements/Filterable_Gallery.php:1754, ../includes/Elements/Filterable_Gallery.php:2617, ../includes/Elements/Flip_Box.php:1006, ../includes/Elements/Flip_Box.php:1120, ../includes/Elements/Flip_Box.php:1356, ../includes/Elements/FluentForm.php:790, ../includes/Elements/FluentForm.php:1158, ../includes/Elements/FluentForm.php:1213, ../includes/Elements/FluentForm.php:1336, ../includes/Elements/FluentForm.php:1421, ../includes/Elements/FluentForm.php:1602, ../includes/Elements/FluentForm.php:2025, ../includes/Elements/FluentForm.php:2191, ../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:766, ../includes/Elements/GravityForms.php:1387, ../includes/Elements/GravityForms.php:1583, ../includes/Elements/GravityForms.php:1702, ../includes/Elements/GravityForms.php:1906, ../includes/Elements/GravityForms.php:2135, ../includes/Elements/GravityForms.php:2312, ../includes/Elements/Image_Accordion.php:329, ../includes/Elements/Image_Accordion.php:441, ../includes/Elements/Info_Box.php:556, ../includes/Elements/Interactive_Circle.php:335, ../includes/Elements/Interactive_Circle.php:720, ../includes/Elements/Login_Register.php:2279, ../includes/Elements/Login_Register.php:2848, ../includes/Elements/Login_Register.php:2987, ../includes/Elements/Login_Register.php:3060, ../includes/Elements/Login_Register.php:3151, ../includes/Elements/Login_Register.php:3253, ../includes/Elements/Login_Register.php:3289, ../includes/Elements/Login_Register.php:3451, ../includes/Elements/Login_Register.php:4230, ../includes/Elements/Login_Register.php:4558, ../includes/Elements/NFT_Gallery.php:746, ../includes/Elements/NFT_Gallery.php:874, ../includes/Elements/NFT_Gallery.php:1077, ../includes/Elements/NFT_Gallery.php:1165, ../includes/Elements/NFT_Gallery.php:1226, ../includes/Elements/NFT_Gallery.php:1289, ../includes/Elements/NFT_Gallery.php:1389, ../includes/Elements/NFT_Gallery.php:1462, ../includes/Elements/NFT_Gallery.php:1538, ../includes/Elements/NFT_Gallery.php:1642, ../includes/Elements/NFT_Gallery.php:1715, ../includes/Elements/NFT_Gallery.php:1791, ../includes/Elements/NFT_Gallery.php:2198, ../includes/Elements/NinjaForms.php:784, ../includes/Elements/NinjaForms.php:1419, ../includes/Elements/Post_Timeline.php:168, ../includes/Elements/Post_Timeline.php:552, ../includes/Elements/Pricing_Table.php:770, ../includes/Elements/Pricing_Table.php:1570, ../includes/Elements/Pricing_Table.php:1878, ../includes/Elements/Product_Grid.php:832, ../includes/Elements/Product_Grid.php:1083, ../includes/Elements/Product_Grid.php:1495, ../includes/Elements/Simple_Menu.php:351, ../includes/Elements/Simple_Menu.php:511, ../includes/Elements/Simple_Menu.php:684, ../includes/Elements/Simple_Menu.php:1148, ../includes/Elements/Team_Member.php:514, ../includes/Elements/Testimonial.php:421, ../includes/Elements/Tooltip.php:352, ../includes/Elements/Tooltip.php:606, ../includes/Elements/Twitter_Feed.php:625, ../includes/Elements/Twitter_Feed.php:684, ../includes/Elements/Twitter_Feed.php:717, ../includes/Elements/Twitter_Feed.php:1289, ../includes/Elements/WeForms.php:676, ../includes/Elements/Woo_Cart.php:1208, ../includes/Elements/Woo_Cart.php:1763, ../includes/Elements/Woo_Cart.php:1910, ../includes/Elements/Woo_Cart.php:2027, ../includes/Elements/Woo_Cart.php:2181, ../includes/Elements/Woo_Cart.php:2283, ../includes/Elements/Woo_Checkout.php:764, ../includes/Elements/Woo_Checkout.php:1356, ../includes/Elements/Woo_Checkout.php:1403, ../includes/Elements/Woo_Checkout.php:1601, ../includes/Elements/Woo_Checkout.php:1750, ../includes/Elements/Woo_Checkout.php:1779, ../includes/Elements/Woo_Checkout.php:1951, ../includes/Elements/Woo_Checkout.php:2166, ../includes/Elements/Woo_Checkout.php:2502, ../includes/Elements/Woo_Checkout.php:2833, ../includes/Elements/Woo_Product_Carousel.php:1041, ../includes/Elements/Woo_Product_Carousel.php:2276, ../includes/Elements/Woo_Product_Gallery.php:603, ../includes/Elements/Woo_Product_Gallery.php:707, ../includes/Elements/Woo_Product_Gallery.php:986, ../includes/Elements/Woo_Product_Gallery.php:1231, ../includes/Elements/Woo_Product_Gallery.php:1293, ../includes/Elements/WpForms.php:752, ../includes/Elements/WpForms.php:1255, ../includes/Extensions/Table_of_Content.php:680, ../includes/Extensions/Table_of_Content.php:868, ../includes/Traits/Controls.php:1760, ../includes/Traits/Controls.php:1805, ../includes/Traits/Controls.php:2306, ../includes/Traits/Woo_Product_Comparable.php:352, ../includes/Traits/Woo_Product_Comparable.php:997, ../includes/Traits/Woo_Product_Comparable.php:1146, ../includes/Traits/Woo_Product_Comparable.php:1615
|
813 |
msgid "Padding"
|
814 |
msgstr ""
|
815 |
|
865 |
msgid "Margin Bottom"
|
866 |
msgstr ""
|
867 |
|
868 |
+
#: ../includes/Elements/Advanced_Data_Table.php:971, ../includes/Elements/Advanced_Data_Table.php:1119, ../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:198, ../includes/Elements/Cta_Box.php:112, ../includes/Elements/Data_Table.php:547, ../includes/Elements/Dual_Color_Header.php:186, ../includes/Elements/Dual_Color_Header.php:650, ../includes/Elements/Event_Calendar.php:1159, ../includes/Elements/Event_Calendar.php:1291, ../includes/Elements/Fancy_Text.php:170, ../includes/Elements/Filterable_Gallery.php:767, ../includes/Elements/FluentForm.php:263, ../includes/Elements/FluentForm.php:604, ../includes/Elements/FluentForm.php:1237, ../includes/Elements/FluentForm.php:1482, ../includes/Elements/Formstack.php:445, ../includes/Elements/Formstack.php:759, ../includes/Elements/Formstack.php:1368, ../includes/Elements/GravityForms.php:480, ../includes/Elements/GravityForms.php:669, ../includes/Elements/GravityForms.php:1946, ../includes/Elements/GravityForms.php:2206, ../includes/Elements/Login_Register.php:4284, ../includes/Elements/Login_Register.php:4633, ../includes/Elements/NFT_Gallery.php:690, ../includes/Elements/NFT_Gallery.php:1858, ../includes/Elements/NinjaForms.php:417, ../includes/Elements/NinjaForms.php:599, ../includes/Elements/NinjaForms.php:1294, ../includes/Elements/Post_Grid.php:483, ../includes/Elements/Post_Grid.php:802, ../includes/Elements/Post_Grid.php:885, ../includes/Elements/Post_Timeline.php:478, ../includes/Elements/Product_Grid.php:717, ../includes/Elements/Product_Grid.php:1035, ../includes/Elements/Product_Grid.php:1709, ../includes/Elements/Product_Grid.php:2194, ../includes/Elements/Progress_Bar.php:317, ../includes/Elements/Progress_Bar.php:528, ../includes/Elements/Simple_Menu.php:372, ../includes/Elements/Simple_Menu.php:779, ../includes/Elements/Simple_Menu.php:805, ../includes/Elements/Simple_Menu.php:830, ../includes/Elements/Simple_Menu.php:1125, ../includes/Elements/Tooltip.php:207, ../includes/Elements/Twitter_Feed.php:457, ../includes/Elements/Woo_Cart.php:267, ../includes/Elements/Woo_Cart.php:492, ../includes/Elements/Woo_Cart.php:584, ../includes/Elements/Woo_Cart.php:655, ../includes/Elements/Woo_Cart.php:733, ../includes/Elements/Woo_Cart.php:845, ../includes/Elements/Woo_Cart.php:1615, ../includes/Elements/Woo_Cart.php:2244, ../includes/Elements/Woo_Product_Carousel.php:827, ../includes/Elements/Woo_Product_Carousel.php:876, ../includes/Elements/Woo_Product_Gallery.php:189, ../includes/Elements/Woo_Product_Gallery.php:219, ../includes/Elements/Woo_Product_Gallery.php:561, ../includes/Elements/Woo_Product_Gallery.php:1528, ../includes/Elements/WpForms.php:384, ../includes/Elements/WpForms.php:568, ../includes/Elements/WpForms.php:1133, ../includes/Traits/Controls.php:1613, ../includes/Traits/Controls.php:2325
|
869 |
msgid "Alignment"
|
870 |
msgstr ""
|
871 |
|
872 |
+
#: ../includes/Elements/Advanced_Data_Table.php:1175, ../includes/Elements/Adv_Accordion.php:456, ../includes/Elements/Adv_Accordion.php:610, ../includes/Elements/Adv_Accordion.php:853, ../includes/Elements/Adv_Tabs.php:395, ../includes/Elements/Adv_Tabs.php:540, ../includes/Elements/Adv_Tabs.php:819, ../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:1172, ../includes/Elements/Cta_Box.php:544, ../includes/Elements/Cta_Box.php:757, ../includes/Elements/Cta_Box.php:1180, ../includes/Elements/Dual_Color_Header.php:334, ../includes/Elements/Dual_Color_Header.php:702, ../includes/Elements/Fancy_Text.php:492, ../includes/Elements/Filterable_Gallery.php:862, ../includes/Elements/Filterable_Gallery.php:939, ../includes/Elements/Filterable_Gallery.php:1121, ../includes/Elements/Filterable_Gallery.php:1766, ../includes/Elements/Filterable_Gallery.php:2215, ../includes/Elements/Filterable_Gallery.php:2658, ../includes/Elements/Flip_Box.php:1344, ../includes/Elements/FluentForm.php:332, ../includes/Elements/FluentForm.php:394, ../includes/Elements/FluentForm.php:1170, ../includes/Elements/FluentForm.php:1225, ../includes/Elements/FluentForm.php:2203, ../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:1116, ../includes/Elements/GravityForms.php:1375, ../includes/Elements/GravityForms.php:1571, ../includes/Elements/GravityForms.php:1920, ../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:983, ../includes/Elements/Info_Box.php:1378, ../includes/Elements/Interactive_Circle.php:346, ../includes/Elements/Interactive_Circle.php:731, ../includes/Elements/Login_Register.php:2264, ../includes/Elements/Login_Register.php:2833, ../includes/Elements/Login_Register.php:2972, ../includes/Elements/Login_Register.php:3045, ../includes/Elements/Login_Register.php:3136, ../includes/Elements/Login_Register.php:3238, ../includes/Elements/Login_Register.php:3274, ../includes/Elements/Login_Register.php:3436, ../includes/Elements/Login_Register.php:4215, ../includes/Elements/Login_Register.php:4462, ../includes/Elements/Login_Register.php:4543, ../includes/Elements/NFT_Gallery.php:734, ../includes/Elements/NFT_Gallery.php:862, ../includes/Elements/NFT_Gallery.php:1063, ../includes/Elements/NFT_Gallery.php:1153, ../includes/Elements/NFT_Gallery.php:1214, ../includes/Elements/NFT_Gallery.php:1276, ../includes/Elements/NFT_Gallery.php:1376, ../includes/Elements/NFT_Gallery.php:1450, ../includes/Elements/NFT_Gallery.php:1526, ../includes/Elements/NFT_Gallery.php:1629, ../includes/Elements/NFT_Gallery.php:1703, ../includes/Elements/NFT_Gallery.php:1779, ../includes/Elements/NFT_Gallery.php:2239, ../includes/Elements/NinjaForms.php:473, ../includes/Elements/NinjaForms.php:523, ../includes/Elements/Post_Grid.php:401, ../includes/Elements/Post_Grid.php:535, ../includes/Elements/Post_Grid.php:550, ../includes/Elements/Post_Grid.php:674, ../includes/Elements/Post_Grid.php:762, ../includes/Elements/Post_Grid.php:838, ../includes/Elements/Pricing_Table.php:782, ../includes/Elements/Pricing_Table.php:1110, ../includes/Elements/Pricing_Table.php:1180, ../includes/Elements/Pricing_Table.php:1890, ../includes/Elements/Team_Member.php:502, ../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:363, ../includes/Elements/Tooltip.php:617, ../includes/Elements/Twitter_Feed.php:1330, ../includes/Elements/WeForms.php:490, ../includes/Elements/WeForms.php:664, ../includes/Elements/Woo_Cart.php:1220, ../includes/Elements/Woo_Cart.php:1775, ../includes/Elements/Woo_Cart.php:1922, ../includes/Elements/Woo_Cart.php:2040, ../includes/Elements/Woo_Cart.php:2195, ../includes/Elements/Woo_Cart.php:2297, ../includes/Elements/Woo_Checkout.php:1422, ../includes/Elements/Woo_Checkout.php:1798, ../includes/Elements/Woo_Product_Carousel.php:935, ../includes/Elements/Woo_Product_Gallery.php:1219, ../includes/Elements/Woo_Product_Gallery.php:1281, ../includes/Elements/WpForms.php:440, ../includes/Elements/WpForms.php:490, ../includes/Elements/WpForms.php:522, ../includes/Traits/Controls.php:1772, ../includes/Traits/Controls.php:1817, ../includes/Traits/Woo_Product_Comparable.php:340, ../includes/Traits/Woo_Product_Comparable.php:1462
|
873 |
msgid "Margin"
|
874 |
msgstr ""
|
875 |
|
876 |
+
#: ../includes/Elements/Advanced_Data_Table.php:1195, ../includes/Elements/Advanced_Data_Table.php:1361, ../includes/Elements/Adv_Accordion.php:621, ../includes/Elements/Adv_Accordion.php:953, ../includes/Elements/Adv_Tabs.php:551, ../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:398, ../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:591, ../includes/Elements/Creative_Button.php:260, ../includes/Elements/Cta_Box.php:806, ../includes/Elements/Cta_Box.php:1199, ../includes/Elements/Data_Table.php:619, ../includes/Elements/Data_Table.php:812, ../includes/Elements/Data_Table.php:984, ../includes/Elements/Data_Table.php:1082, ../includes/Elements/Event_Calendar.php:936, ../includes/Elements/Filterable_Gallery.php:958, ../includes/Elements/Filterable_Gallery.php:1723, ../includes/Elements/Filterable_Gallery.php:2487, ../includes/Elements/Flip_Box.php:1338, ../includes/Elements/FluentForm.php:634, ../includes/Elements/FluentForm.php:969, ../includes/Elements/FluentForm.php:1548, ../includes/Elements/FluentForm.php:1741, ../includes/Elements/FluentForm.php:1958, ../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:697, ../includes/Elements/GravityForms.php:1287, ../includes/Elements/GravityForms.php:1483, ../includes/Elements/GravityForms.php:1642, ../includes/Elements/GravityForms.php:2020, ../includes/Elements/GravityForms.php:2258, ../includes/Elements/Info_Box.php:537, ../includes/Elements/Info_Box.php:765, ../includes/Elements/Info_Box.php:997, ../includes/Elements/Info_Box.php:1231, ../includes/Elements/Info_Box.php:1344, ../includes/Elements/Interactive_Circle.php:474, ../includes/Elements/Login_Register.php:3339, ../includes/Elements/Login_Register.php:4314, ../includes/Elements/Login_Register.php:4489, ../includes/Elements/Login_Register.php:4664, ../includes/Elements/NFT_Gallery.php:777, ../includes/Elements/NFT_Gallery.php:922, ../includes/Elements/NFT_Gallery.php:1488, ../includes/Elements/NFT_Gallery.php:1741, ../includes/Elements/NFT_Gallery.php:1935, ../includes/Elements/NFT_Gallery.php:2068, ../includes/Elements/NinjaForms.php:627, ../includes/Elements/NinjaForms.php:1020, ../includes/Elements/NinjaForms.php:1365, ../includes/Elements/Pricing_Table.php:1943, ../includes/Elements/Product_Grid.php:887, ../includes/Elements/Product_Grid.php:1534, ../includes/Elements/Product_Grid.php:1952, ../includes/Elements/Product_Grid.php:2247, ../includes/Elements/Product_Grid.php:2681, ../includes/Elements/Team_Member.php:744, ../includes/Elements/Tooltip.php:406, ../includes/Elements/Twitter_Feed.php:1159, ../includes/Elements/WeForms.php:687, ../includes/Elements/Woo_Cart.php:1806, ../includes/Elements/Woo_Cart.php:2078, ../includes/Elements/Woo_Checkout.php:1036, ../includes/Elements/Woo_Checkout.php:1079, ../includes/Elements/Woo_Checkout.php:1222, ../includes/Elements/Woo_Checkout.php:1493, ../includes/Elements/Woo_Checkout.php:1843, ../includes/Elements/Woo_Checkout.php:2303, ../includes/Elements/Woo_Checkout.php:2559, ../includes/Elements/Woo_Checkout.php:2713, ../includes/Elements/Woo_Product_Carousel.php:947, ../includes/Elements/Woo_Product_Carousel.php:1385, ../includes/Elements/Woo_Product_Carousel.php:1790, ../includes/Elements/Woo_Product_Carousel.php:2234, ../includes/Elements/Woo_Product_Carousel.php:2656, ../includes/Elements/Woo_Product_Gallery.php:617, ../includes/Elements/Woo_Product_Gallery.php:1021, ../includes/Elements/Woo_Product_Gallery.php:1316, ../includes/Elements/Woo_Product_Gallery.php:1676, ../includes/Elements/Woo_Product_Gallery.php:2029, ../includes/Elements/WpForms.php:596, ../includes/Elements/WpForms.php:974, ../includes/Elements/WpForms.php:1201, ../includes/Extensions/Table_of_Content.php:966, ../includes/Traits/Controls.php:1649, ../includes/Traits/Controls.php:1836, ../includes/Traits/Woo_Product_Comparable.php:838, ../includes/Traits/Woo_Product_Comparable.php:1224, ../includes/Traits/Woo_Product_Comparable.php:1643
|
877 |
msgid "Normal"
|
878 |
msgstr ""
|
879 |
|
880 |
+
#: ../includes/Elements/Advanced_Data_Table.php:1265, ../includes/Elements/Advanced_Data_Table.php:1391, ../includes/Elements/Adv_Accordion.php:680, ../includes/Elements/Adv_Accordion.php:1001, ../includes/Elements/Adv_Tabs.php:618, ../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:482, ../includes/Elements/Caldera_Forms.php:1303, ../includes/Elements/Contact_Form_7.php:1329, ../includes/Elements/Content_Ticker.php:648, ../includes/Elements/Creative_Button.php:353, ../includes/Elements/Cta_Box.php:992, ../includes/Elements/Cta_Box.php:1268, ../includes/Elements/Data_Table.php:659, ../includes/Elements/Data_Table.php:903, ../includes/Elements/Data_Table.php:1001, ../includes/Elements/Data_Table.php:1100, ../includes/Elements/Event_Calendar.php:1003, ../includes/Elements/Filterable_Gallery.php:1861, ../includes/Elements/Filterable_Gallery.php:2682, ../includes/Elements/Flip_Box.php:1445, ../includes/Elements/FluentForm.php:1675, ../includes/Elements/FluentForm.php:2039, ../includes/Elements/Formstack.php:1539, ../includes/Elements/Formstack.php:1849, ../includes/Elements/GravityForms.php:1718, ../includes/Elements/GravityForms.php:2082, ../includes/Elements/GravityForms.php:2345, ../includes/Elements/Info_Box.php:598, ../includes/Elements/Info_Box.php:836, ../includes/Elements/Info_Box.php:1069, ../includes/Elements/Info_Box.php:1278, ../includes/Elements/Info_Box.php:1454, ../includes/Elements/Interactive_Circle.php:272, ../includes/Elements/Interactive_Circle.php:531, ../includes/Elements/Login_Register.php:4351, ../includes/Elements/Login_Register.php:4701, ../includes/Elements/NFT_Gallery.php:810, ../includes/Elements/NFT_Gallery.php:955, ../includes/Elements/NFT_Gallery.php:1505, ../includes/Elements/NFT_Gallery.php:1758, ../includes/Elements/NFT_Gallery.php:1980, ../includes/Elements/NFT_Gallery.php:2263, ../includes/Elements/NinjaForms.php:1452, ../includes/Elements/Pricing_Table.php:424, ../includes/Elements/Pricing_Table.php:2013, ../includes/Elements/Product_Grid.php:937, ../includes/Elements/Product_Grid.php:1610, ../includes/Elements/Product_Grid.php:2061, ../includes/Elements/Product_Grid.php:2285, ../includes/Elements/Product_Grid.php:2732, ../includes/Elements/Simple_Menu.php:433, ../includes/Elements/Simple_Menu.php:559, ../includes/Elements/Simple_Menu.php:1012, ../includes/Elements/Simple_Menu.php:1321, ../includes/Elements/Team_Member.php:822, ../includes/Elements/Tooltip.php:450, ../includes/Elements/Twitter_Feed.php:1354, ../includes/Elements/WeForms.php:737, ../includes/Elements/Woo_Cart.php:1844, ../includes/Elements/Woo_Cart.php:2119, ../includes/Elements/Woo_Checkout.php:1052, ../includes/Elements/Woo_Checkout.php:1096, ../includes/Elements/Woo_Checkout.php:1238, ../includes/Elements/Woo_Checkout.php:1533, ../includes/Elements/Woo_Checkout.php:1883, ../includes/Elements/Woo_Checkout.php:2319, ../includes/Elements/Woo_Checkout.php:2753, ../includes/Elements/Woo_Product_Carousel.php:987, ../includes/Elements/Woo_Product_Carousel.php:1467, ../includes/Elements/Woo_Product_Carousel.php:1842, ../includes/Elements/Woo_Product_Carousel.php:2297, ../includes/Elements/Woo_Product_Carousel.php:2712, ../includes/Elements/Woo_Product_Gallery.php:656, ../includes/Elements/Woo_Product_Gallery.php:1089, ../includes/Elements/Woo_Product_Gallery.php:1350, ../includes/Elements/Woo_Product_Gallery.php:1726, ../includes/Elements/Woo_Product_Gallery.php:2080, ../includes/Elements/WpForms.php:1308, ../includes/Extensions/Table_of_Content.php:989, ../includes/Traits/Controls.php:1704, ../includes/Traits/Controls.php:1898, ../includes/Traits/Woo_Product_Comparable.php:938, ../includes/Traits/Woo_Product_Comparable.php:1305, ../includes/Traits/Woo_Product_Comparable.php:1693
|
881 |
msgid "Hover"
|
882 |
msgstr ""
|
883 |
|
884 |
+
#: ../includes/Elements/Advanced_Data_Table.php:1366, ../includes/Elements/Advanced_Data_Table.php:1396, ../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:246, ../includes/Elements/Betterdocs_Search_Form.php:283, ../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:610, ../includes/Elements/Content_Ticker.php:667, ../includes/Elements/Cta_Box.php:612, ../includes/Elements/Cta_Box.php:653, ../includes/Elements/Cta_Box.php:695, ../includes/Elements/Cta_Box.php:1377, ../includes/Elements/Cta_Box.php:1393, ../includes/Elements/Data_Table.php:624, ../includes/Elements/Data_Table.php:664, ../includes/Elements/Data_Table.php:1175, ../includes/Elements/Dual_Color_Header.php:473, ../includes/Elements/Dual_Color_Header.php:570, ../includes/Elements/Dual_Color_Header.php:713, ../includes/Elements/Event_Calendar.php:903, ../includes/Elements/Event_Calendar.php:943, ../includes/Elements/Event_Calendar.php:1010, ../includes/Elements/Event_Calendar.php:1064, ../includes/Elements/Event_Calendar.php:1147, ../includes/Elements/Event_Calendar.php:1222, ../includes/Elements/Event_Calendar.php:1256, ../includes/Elements/Event_Calendar.php:1365, ../includes/Elements/Event_Calendar.php:1731, ../includes/Elements/Facebook_Feed.php:844, ../includes/Elements/Facebook_Feed.php:882, ../includes/Elements/Facebook_Feed.php:922, ../includes/Elements/Facebook_Feed.php:970, ../includes/Elements/Facebook_Feed.php:1008, ../includes/Elements/Facebook_Feed.php:1046, ../includes/Elements/Facebook_Feed.php:1099, ../includes/Elements/Facebook_Feed.php:1137, ../includes/Elements/Facebook_Feed.php:1175, ../includes/Elements/Facebook_Feed.php:1207, ../includes/Elements/Fancy_Text.php:346, ../includes/Elements/Feature_List.php:542, ../includes/Elements/Feature_List.php:764, ../includes/Elements/Feature_List.php:798, ../includes/Elements/Filterable_Gallery.php:1220, ../includes/Elements/Filterable_Gallery.php:1260, ../includes/Elements/Filterable_Gallery.php:1582, ../includes/Elements/Filterable_Gallery.php:1597, ../includes/Elements/Filterable_Gallery.php:1642, ../includes/Elements/Filterable_Gallery.php:1657, ../includes/Elements/Filterable_Gallery.php:1742, ../includes/Elements/Filterable_Gallery.php:1880, ../includes/Elements/Filterable_Gallery.php:1956, ../includes/Elements/Filterable_Gallery.php:1992, ../includes/Elements/Filterable_Gallery.php:2039, ../includes/Elements/Filterable_Gallery.php:2180, ../includes/Elements/Filterable_Gallery.php:2367, ../includes/Elements/Flip_Box.php:951, ../includes/Elements/Flip_Box.php:1065, ../includes/Elements/Flip_Box.php:1193, ../includes/Elements/Flip_Box.php:1224, ../includes/Elements/Flip_Box.php:1262, ../includes/Elements/Flip_Box.php:1294, ../includes/Elements/Flip_Box.php:1368, ../includes/Elements/Flip_Box.php:1451, ../includes/Elements/FluentForm.php:441, ../includes/Elements/FluentForm.php:979, ../includes/Elements/FluentForm.php:1095, ../includes/Elements/FluentForm.php:1136, ../includes/Elements/FluentForm.php:1191, ../includes/Elements/FluentForm.php:1295, ../includes/Elements/FluentForm.php:1357, ../includes/Elements/FluentForm.php:1973, ../includes/Elements/FluentForm.php:2046, ../includes/Elements/FluentForm.php:2167, ../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:1191, ../includes/Elements/GravityForms.php:1297, ../includes/Elements/GravityForms.php:1411, ../includes/Elements/GravityForms.php:1493, ../includes/Elements/GravityForms.php:1607, ../includes/Elements/GravityForms.php:1800, ../includes/Elements/GravityForms.php:1836, ../includes/Elements/Image_Accordion.php:496, ../includes/Elements/Image_Accordion.php:525, ../includes/Elements/Info_Box.php:1358, ../includes/Elements/Info_Box.php:1434, ../includes/Elements/Interactive_Circle.php:388, ../includes/Elements/Login_Register.php:3075, ../includes/Elements/Login_Register.php:3166, ../includes/Elements/Login_Register.php:3580, ../includes/Elements/Login_Register.php:4038, ../includes/Elements/NinjaForms.php:1030, ../includes/Elements/NinjaForms.php:1148, ../includes/Elements/NinjaForms.php:1567, ../includes/Elements/Post_Grid.php:380, ../includes/Elements/Post_Grid.php:453, ../includes/Elements/Post_Grid.php:864, ../includes/Elements/Pricing_Table.php:907, ../includes/Elements/Pricing_Table.php:971, ../includes/Elements/Pricing_Table.php:1062, ../includes/Elements/Pricing_Table.php:1091, ../includes/Elements/Pricing_Table.php:1132, ../includes/Elements/Pricing_Table.php:1161, ../includes/Elements/Pricing_Table.php:1201, ../includes/Elements/Pricing_Table.php:1236, ../includes/Elements/Pricing_Table.php:1418, ../includes/Elements/Pricing_Table.php:1558, ../includes/Elements/Product_Grid.php:1357, ../includes/Elements/Product_Grid.php:1957, ../includes/Elements/Product_Grid.php:2066, ../includes/Elements/Product_Grid.php:2403, ../includes/Elements/Product_Grid.php:2584, ../includes/Elements/Product_Grid.php:2625, ../includes/Elements/Product_Grid.php:2686, ../includes/Elements/Product_Grid.php:2737, ../includes/Elements/Product_Grid.php:2894, ../includes/Elements/Progress_Bar.php:407, ../includes/Elements/Progress_Bar.php:467, ../includes/Elements/Simple_Menu.php:974, ../includes/Elements/Simple_Menu.php:1068, ../includes/Elements/Simple_Menu.php:1283, ../includes/Elements/Simple_Menu.php:1376, ../includes/Elements/Twitter_Feed.php:876, ../includes/Elements/Twitter_Feed.php:905, ../includes/Elements/Twitter_Feed.php:935, ../includes/Elements/Twitter_Feed.php:1105, ../includes/Elements/Woo_Checkout.php:708, ../includes/Elements/Woo_Checkout.php:882, ../includes/Elements/Woo_Checkout.php:896, ../includes/Elements/Woo_Checkout.php:1004, ../includes/Elements/Woo_Checkout.php:1018, ../includes/Elements/Woo_Checkout.php:1191, ../includes/Elements/Woo_Checkout.php:1227, ../includes/Elements/Woo_Checkout.php:1243, ../includes/Elements/Woo_Checkout.php:1311, ../includes/Elements/Woo_Checkout.php:1462, ../includes/Elements/Woo_Checkout.php:1512, ../includes/Elements/Woo_Checkout.php:1552, ../includes/Elements/Woo_Checkout.php:1649, ../includes/Elements/Woo_Checkout.php:1862, ../includes/Elements/Woo_Checkout.php:1902, ../includes/Elements/Woo_Checkout.php:2020, ../includes/Elements/Woo_Checkout.php:2064, ../includes/Elements/Woo_Checkout.php:2108, ../includes/Elements/Woo_Checkout.php:2214, ../includes/Elements/Woo_Checkout.php:2253, ../includes/Elements/Woo_Checkout.php:2293, ../includes/Elements/Woo_Checkout.php:2566, ../includes/Elements/Woo_Checkout.php:2587, ../includes/Elements/Woo_Checkout.php:2622, ../includes/Elements/Woo_Checkout.php:2643, ../includes/Elements/Woo_Checkout.php:2732, ../includes/Elements/Woo_Checkout.php:2772, ../includes/Elements/Woo_Product_Carousel.php:1195, ../includes/Elements/Woo_Product_Carousel.php:1390, ../includes/Elements/Woo_Product_Carousel.php:1472, ../includes/Elements/Woo_Product_Carousel.php:1692, ../includes/Elements/Woo_Product_Carousel.php:1733, ../includes/Elements/Woo_Product_Carousel.php:1795, ../includes/Elements/Woo_Product_Carousel.php:1847, ../includes/Elements/Woo_Product_Carousel.php:2000, ../includes/Elements/Woo_Product_Carousel.php:2241, ../includes/Elements/Woo_Product_Carousel.php:2304, ../includes/Elements/Woo_Product_Carousel.php:2337, ../includes/Elements/Woo_Product_Carousel.php:2675, ../includes/Elements/Woo_Product_Carousel.php:2731, ../includes/Elements/Woo_Product_Gallery.php:1321, ../includes/Elements/Woo_Product_Gallery.php:1355, ../includes/Elements/Woo_Product_Gallery.php:1393, ../includes/Elements/Woo_Product_Gallery.php:1681, ../includes/Elements/Woo_Product_Gallery.php:1731, ../includes/Elements/Woo_Product_Gallery.php:1932, ../includes/Elements/Woo_Product_Gallery.php:1973, ../includes/Elements/Woo_Product_Gallery.php:2034, ../includes/Elements/Woo_Product_Gallery.php:2085, ../includes/Elements/Woo_Product_Gallery.php:2242, ../includes/Elements/WpForms.php:984, ../includes/Elements/WpForms.php:1100, ../includes/Extensions/Table_of_Content.php:1125, ../includes/Traits/Woo_Product_Comparable.php:107, ../includes/Traits/Woo_Product_Comparable.php:1372, ../includes/Traits/Woo_Product_Comparable.php:1484
|
885 |
msgid "Color"
|
886 |
msgstr ""
|
887 |
|
1041 |
msgid "Accordion Tab Title 3"
|
1042 |
msgstr ""
|
1043 |
|
1044 |
+
#: ../includes/Elements/Adv_Accordion.php:438, ../includes/Elements/Data_Table.php:513, ../includes/Elements/Filterable_Gallery.php:830
|
1045 |
msgid "General Style"
|
1046 |
msgstr ""
|
1047 |
|
1049 |
msgid "Tab Style"
|
1050 |
msgstr ""
|
1051 |
|
1052 |
+
#: ../includes/Elements/Adv_Accordion.php:512, ../includes/Elements/Adv_Accordion.php:893, ../includes/Elements/Adv_Tabs.php:480, ../includes/Elements/Creative_Button.php:502, ../includes/Elements/Cta_Box.php:787, ../includes/Elements/Data_Table.php:711, ../includes/Elements/Data_Table.php:1059, ../includes/Elements/Dual_Color_Header.php:397, ../includes/Elements/Dual_Color_Header.php:608, ../includes/Elements/Event_Calendar.php:1612, ../includes/Elements/Event_Calendar.php:1679, ../includes/Elements/Feature_List.php:576, ../includes/Elements/Filterable_Gallery.php:1778, ../includes/Elements/Filterable_Gallery.php:2140, ../includes/Elements/Filterable_Gallery.php:2577, ../includes/Elements/Flip_Box.php:967, ../includes/Elements/Flip_Box.php:1081, ../includes/Elements/Flip_Box.php:1420, ../includes/Elements/Info_Box.php:936, ../includes/Elements/Info_Box.php:1178, ../includes/Elements/Interactive_Circle.php:451, ../includes/Elements/Login_Register.php:3644, ../includes/Elements/Login_Register.php:3741, ../includes/Elements/NFT_Gallery.php:2158, ../includes/Elements/Pricing_Table.php:1260, ../includes/Elements/Pricing_Table.php:1728, ../includes/Elements/Pricing_Table.php:1902, ../includes/Elements/Product_Grid.php:1307, ../includes/Elements/Product_Grid.php:2842, ../includes/Elements/Simple_Menu.php:320, ../includes/Elements/Simple_Menu.php:944, ../includes/Elements/Simple_Menu.php:1253, ../includes/Elements/Team_Member.php:672, ../includes/Elements/Tooltip.php:114, ../includes/Elements/Twitter_Feed.php:1249, ../includes/Elements/Woo_Cart.php:1403, ../includes/Elements/Woo_Cart.php:1984, ../includes/Elements/Woo_Checkout.php:1672, ../includes/Elements/Woo_Product_Carousel.php:1162, ../includes/Elements/Woo_Product_Carousel.php:1948, ../includes/Elements/Woo_Product_Carousel.php:2596, ../includes/Elements/Woo_Product_Gallery.php:857, ../includes/Elements/Woo_Product_Gallery.php:2190, ../includes/Extensions/Scroll_to_Top.php:360, ../includes/Extensions/Table_of_Content.php:737, ../includes/Traits/Woo_Product_Comparable.php:1345
|
1053 |
msgid "Icon Size"
|
1054 |
msgstr ""
|
1055 |
|
1065 |
msgid "Icon Color"
|
1066 |
msgstr ""
|
1067 |
|
1068 |
+
#: ../includes/Elements/Adv_Accordion.php:741, ../includes/Elements/Adv_Accordion.php:1047, ../includes/Elements/Adv_Tabs.php:685, ../includes/Elements/Event_Calendar.php:1057, ../includes/Elements/Filterable_Gallery.php:1024, ../includes/Elements/Interactive_Circle.php:599, ../includes/Elements/Product_Grid.php:2329, ../includes/Elements/Simple_Menu.php:467, ../includes/Elements/Woo_Product_Carousel.php:2330, ../includes/Elements/Woo_Product_Gallery.php:1388, ../includes/Extensions/Table_of_Content.php:1015
|
1069 |
msgid "Active"
|
1070 |
msgstr ""
|
1071 |
|
1105 |
msgid "Enable Icon"
|
1106 |
msgstr ""
|
1107 |
|
1108 |
+
#: ../includes/Elements/Adv_Tabs.php:102, ../includes/Elements/Betterdocs_Category_Grid.php:1328, ../includes/Elements/Creative_Button.php:143, ../includes/Elements/Data_Table.php:733, ../includes/Elements/Feature_List.php:300, ../includes/Elements/Filterable_Gallery.php:751, ../includes/Elements/Flip_Box.php:714, ../includes/Elements/Info_Box.php:122, ../includes/Elements/Info_Box.php:453, ../includes/Elements/NFT_Gallery.php:674, ../includes/Elements/Pricing_Table.php:557, ../includes/Elements/Twitter_Feed.php:441
|
1109 |
msgid "Icon Position"
|
1110 |
msgstr ""
|
1111 |
|
1125 |
msgid "Set icon position before/after the tab title."
|
1126 |
msgstr ""
|
1127 |
|
1128 |
+
#: ../includes/Elements/Adv_Tabs.php:125, ../includes/Elements/Betterdocs_Category_Grid.php:1332, ../includes/Elements/Creative_Button.php:147, ../includes/Elements/Filterable_Gallery.php:756, ../includes/Elements/Flip_Box.php:719, ../includes/Elements/Info_Box.php:457, ../includes/Elements/NFT_Gallery.php:679, ../includes/Elements/Pricing_Table.php:561, ../includes/Elements/Twitter_Feed.php:446
|
1129 |
msgid "Before"
|
1130 |
msgstr ""
|
1131 |
|
1132 |
+
#: ../includes/Elements/Adv_Tabs.php:129, ../includes/Elements/Betterdocs_Category_Grid.php:1333, ../includes/Elements/Creative_Button.php:148, ../includes/Elements/Filterable_Gallery.php:755, ../includes/Elements/Flip_Box.php:718, ../includes/Elements/Info_Box.php:458, ../includes/Elements/NFT_Gallery.php:678, ../includes/Elements/Pricing_Table.php:562, ../includes/Elements/Twitter_Feed.php:445
|
1133 |
msgid "After"
|
1134 |
msgstr ""
|
1135 |
|
1141 |
msgid "If no tab is selected as default active tab, then we display first tab as active. Turn on/off this default behaviour."
|
1142 |
msgstr ""
|
1143 |
|
1144 |
+
#: ../includes/Elements/Adv_Tabs.php:147, ../includes/Elements/Adv_Tabs.php:935, ../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:87, ../includes/Elements/Data_Table.php:1141, ../includes/Elements/Event_Calendar.php:648, ../includes/Elements/Facebook_Feed.php:462, ../includes/Elements/Filterable_Gallery.php:245, ../includes/Elements/Filterable_Gallery.php:436, ../includes/Elements/Filterable_Gallery.php:485, ../includes/Elements/Filterable_Gallery.php:510, ../includes/Elements/Filterable_Gallery.php:535, ../includes/Elements/Filterable_Gallery.php:595, ../includes/Elements/Filterable_Gallery.php:610, ../includes/Elements/FluentForm.php:151, ../includes/Elements/FluentForm.php:932, ../includes/Elements/Formstack.php:192, ../includes/Elements/Formstack.php:1128, ../includes/Elements/GravityForms.php:149, ../includes/Elements/GravityForms.php:246, ../includes/Elements/GravityForms.php:1250, ../includes/Elements/GravityForms.php:1446, ../includes/Elements/Image_Accordion.php:176, ../includes/Elements/Info_Box.php:359, ../includes/Elements/Info_Box.php:373, ../includes/Elements/Login_Register.php:654, ../includes/Elements/Login_Register.php:687, ../includes/Elements/Login_Register.php:700, ../includes/Elements/Login_Register.php:1415, ../includes/Elements/NinjaForms.php:114, ../includes/Elements/NinjaForms.php:983, ../includes/Elements/Post_Grid.php:133, ../includes/Elements/Post_Grid.php:147, ../includes/Elements/Post_Grid.php:173, ../includes/Elements/Post_Grid.php:187, ../includes/Elements/Post_Grid.php:213, ../includes/Elements/Post_Grid.php:227, ../includes/Elements/Post_Timeline.php:84, ../includes/Elements/Post_Timeline.php:95, ../includes/Elements/Pricing_Table.php:235, ../includes/Elements/Pricing_Table.php:1934, ../includes/Elements/Simple_Menu.php:180, ../includes/Elements/Simple_Menu.php:221, ../includes/Elements/Team_Member.php:735, ../includes/Elements/Twitter_Feed.php:138, ../includes/Elements/Woo_Product_Carousel.php:327, ../includes/Elements/Woo_Product_Carousel.php:577, ../includes/Elements/Woo_Product_Carousel.php:609, ../includes/Elements/Woo_Product_Carousel.php:624, ../includes/Elements/Woo_Product_Carousel.php:659, ../includes/Elements/Woo_Product_Carousel.php:671, ../includes/Elements/Woo_Product_Carousel.php:682, ../includes/Elements/Woo_Product_Carousel.php:2137, ../includes/Elements/Woo_Product_Gallery.php:248, ../includes/Elements/Woo_Product_Gallery.php:274, ../includes/Elements/Woo_Product_Gallery.php:489, ../includes/Elements/WpForms.php:107, ../includes/Elements/WpForms.php:937, ../includes/Extensions/Reading_Progress.php:41, ../includes/Extensions/Reading_Progress.php:77, ../includes/Extensions/Scroll_to_Top.php:42, ../includes/Extensions/Scroll_to_Top.php:78, ../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/Extensions/Table_of_Content.php:303, ../includes/Traits/Controls.php:145, ../includes/Traits/Controls.php:403, ../includes/Traits/Controls.php:746, ../includes/Traits/Controls.php:810, ../includes/Traits/Controls.php:959
|
1145 |
msgid "Yes"
|
1146 |
msgstr ""
|
1147 |
|
1148 |
+
#: ../includes/Elements/Adv_Tabs.php:148, ../includes/Elements/Adv_Tabs.php:936, ../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:779, ../includes/Elements/Data_Table.php:88, ../includes/Elements/Data_Table.php:1142, ../includes/Elements/Event_Calendar.php:649, ../includes/Elements/Facebook_Feed.php:466, ../includes/Elements/Feature_List.php:362, ../includes/Elements/Filterable_Gallery.php:246, ../includes/Elements/Filterable_Gallery.php:437, ../includes/Elements/Filterable_Gallery.php:486, ../includes/Elements/Filterable_Gallery.php:511, ../includes/Elements/Filterable_Gallery.php:536, ../includes/Elements/Filterable_Gallery.php:596, ../includes/Elements/Filterable_Gallery.php:611, ../includes/Elements/FluentForm.php:152, ../includes/Elements/FluentForm.php:933, ../includes/Elements/Formstack.php:193, ../includes/Elements/Formstack.php:1129, ../includes/Elements/GravityForms.php:150, ../includes/Elements/GravityForms.php:247, ../includes/Elements/GravityForms.php:1251, ../includes/Elements/GravityForms.php:1447, ../includes/Elements/Image_Accordion.php:177, ../includes/Elements/Info_Box.php:360, ../includes/Elements/Info_Box.php:374, ../includes/Elements/Login_Register.php:655, ../includes/Elements/Login_Register.php:688, ../includes/Elements/Login_Register.php:701, ../includes/Elements/Login_Register.php:1416, ../includes/Elements/NinjaForms.php:115, ../includes/Elements/NinjaForms.php:984, ../includes/Elements/Post_Grid.php:134, ../includes/Elements/Post_Grid.php:148, ../includes/Elements/Post_Grid.php:174, ../includes/Elements/Post_Grid.php:188, ../includes/Elements/Post_Grid.php:214, ../includes/Elements/Post_Grid.php:228, ../includes/Elements/Post_Timeline.php:85, ../includes/Elements/Post_Timeline.php:96, ../includes/Elements/Pricing_Table.php:236, ../includes/Elements/Pricing_Table.php:1935, ../includes/Elements/Simple_Menu.php:181, ../includes/Elements/Simple_Menu.php:222, ../includes/Elements/Team_Member.php:736, ../includes/Elements/Twitter_Feed.php:139, ../includes/Elements/Woo_Product_Carousel.php:328, ../includes/Elements/Woo_Product_Carousel.php:578, ../includes/Elements/Woo_Product_Carousel.php:610, ../includes/Elements/Woo_Product_Carousel.php:625, ../includes/Elements/Woo_Product_Carousel.php:660, ../includes/Elements/Woo_Product_Carousel.php:672, ../includes/Elements/Woo_Product_Carousel.php:683, ../includes/Elements/Woo_Product_Carousel.php:2138, ../includes/Elements/Woo_Product_Gallery.php:249, ../includes/Elements/Woo_Product_Gallery.php:275, ../includes/Elements/Woo_Product_Gallery.php:490, ../includes/Elements/WpForms.php:108, ../includes/Elements/WpForms.php:938, ../includes/Extensions/Reading_Progress.php:42, ../includes/Extensions/Reading_Progress.php:78, ../includes/Extensions/Scroll_to_Top.php:43, ../includes/Extensions/Scroll_to_Top.php:79, ../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/Extensions/Table_of_Content.php:304, ../includes/Traits/Controls.php:146, ../includes/Traits/Controls.php:404, ../includes/Traits/Controls.php:747, ../includes/Traits/Controls.php:811, ../includes/Traits/Controls.php:960
|
1149 |
msgid "No"
|
1150 |
msgstr ""
|
1151 |
|
1253 |
msgid "Box Padding"
|
1254 |
msgstr ""
|
1255 |
|
1256 |
+
#: ../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:488, ../includes/Elements/Filterable_Gallery.php:1920, ../includes/Elements/Info_Box.php:1484
|
1257 |
msgid "Transition"
|
1258 |
msgstr ""
|
1259 |
|
1261 |
msgid "Area"
|
1262 |
msgstr ""
|
1263 |
|
1264 |
+
#: ../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:257, ../includes/Elements/Caldera_Forms.php:945, ../includes/Elements/Contact_Form_7.php:972, ../includes/Elements/Feature_List.php:556, ../includes/Elements/Filterable_Gallery.php:719, ../includes/Elements/FluentForm.php:941, ../includes/Elements/Formstack.php:1137, ../includes/Elements/Formstack.php:1290, ../includes/Elements/GravityForms.php:1259, ../includes/Elements/GravityForms.php:1455, ../includes/Elements/Login_Register.php:3558, ../includes/Elements/Login_Register.php:4486, ../includes/Elements/NFT_Gallery.php:642, ../includes/Elements/NinjaForms.php:992, ../includes/Elements/Post_Timeline.php:457, ../includes/Elements/Progress_Bar.php:551, ../includes/Elements/Twitter_Feed.php:409, ../includes/Elements/Woo_Product_Carousel.php:2190, ../includes/Elements/WpForms.php:946, ../includes/Traits/Woo_Product_Comparable.php:111, ../includes/Traits/Woo_Product_Comparable.php:1437
|
1265 |
msgid "Size"
|
1266 |
msgstr ""
|
1267 |
|
1268 |
+
#: ../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:657, ../includes/Elements/Filterable_Gallery.php:2423, ../includes/Elements/FluentForm.php:802, ../includes/Elements/FluentForm.php:1800, ../includes/Elements/Formstack.php:605, ../includes/Elements/Formstack.php:1001, ../includes/Elements/GravityForms.php:728, ../includes/Elements/GravityForms.php:1000, ../includes/Elements/Login_Register.php:3225, ../includes/Elements/Login_Register.php:3427, ../includes/Elements/Login_Register.php:4207, ../includes/Elements/Login_Register.php:4535, ../includes/Elements/NinjaForms.php:797, ../includes/Elements/NinjaForms.php:914, ../includes/Elements/NinjaForms.php:1579, ../includes/Elements/Post_Grid.php:910, ../includes/Elements/Post_Timeline.php:220, ../includes/Elements/Woo_Checkout.php:2225, ../includes/Elements/Woo_Product_Carousel.php:2213, ../includes/Elements/WpForms.php:765, ../includes/Elements/WpForms.php:871
|
1269 |
msgid "Spacing"
|
1270 |
msgstr ""
|
1271 |
|
1325 |
msgid "Show Button"
|
1326 |
msgstr ""
|
1327 |
|
1328 |
+
#: ../includes/Elements/Betterdocs_Category_Grid.php:282, ../includes/Elements/Creative_Button.php:80, ../includes/Elements/Filterable_Gallery.php:693, ../includes/Elements/Flip_Box.php:687, ../includes/Elements/Info_Box.php:403, ../includes/Elements/Login_Register.php:868, ../includes/Elements/Login_Register.php:990, ../includes/Elements/Login_Register.php:1139, ../includes/Elements/Login_Register.php:1800, ../includes/Elements/NFT_Gallery.php:616, ../includes/Elements/Pricing_Table.php:595, ../includes/Elements/Twitter_Feed.php:383, ../includes/Elements/Woo_Cart.php:915, ../includes/Elements/Woo_Cart.php:940, ../includes/Elements/Woo_Cart.php:977, ../includes/Elements/Woo_Checkout.php:400, ../includes/Traits/Controls.php:1192
|
1329 |
msgid "Button Text"
|
1330 |
msgstr ""
|
1331 |
|
1349 |
msgid "List"
|
1350 |
msgstr ""
|
1351 |
|
1352 |
+
#: ../includes/Elements/Betterdocs_Category_Grid.php:1017, ../includes/Elements/Filterable_Gallery.php:1232, ../includes/Elements/Filterable_Gallery.php:1612, ../includes/Elements/Filterable_Gallery.php:2378, ../includes/Elements/Login_Register.php:4061, ../includes/Elements/Pricing_Table.php:1829, ../includes/Elements/Product_Grid.php:2822, ../includes/Elements/Twitter_Feed.php:947, ../includes/Elements/Woo_Product_Carousel.php:1928, ../includes/Elements/Woo_Product_Gallery.php:2170
|
1353 |
msgid "Hover Color"
|
1354 |
msgstr ""
|
1355 |
|
1413 |
msgid "Close Icon"
|
1414 |
msgstr ""
|
1415 |
|
1416 |
+
#: ../includes/Elements/Betterdocs_Search_Form.php:294, ../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:680, ../includes/Elements/Countdown.php:868, ../includes/Elements/Countdown.php:940, ../includes/Elements/Countdown.php:1012, ../includes/Elements/Countdown.php:1084, ../includes/Elements/Creative_Button.php:423, ../includes/Elements/Cta_Box.php:1073, ../includes/Elements/Cta_Box.php:1312, ../includes/Elements/Event_Calendar.php:834, ../includes/Elements/Facebook_Feed.php:803, ../includes/Elements/Filterable_Gallery.php:2725, ../includes/Elements/FluentForm.php:1016, ../includes/Elements/FluentForm.php:1706, ../includes/Elements/Formstack.php:1570, ../includes/Elements/GravityForms.php:1101, ../includes/Elements/GravityForms.php:1334, ../includes/Elements/GravityForms.php:1530, ../includes/Elements/GravityForms.php:1753, ../includes/Elements/GravityForms.php:2117, ../includes/Elements/GravityForms.php:2376, ../includes/Elements/Interactive_Circle.php:367, ../includes/Elements/Interactive_Circle.php:577, ../includes/Elements/Interactive_Circle.php:647, ../includes/Elements/NFT_Gallery.php:2306, ../includes/Elements/NinjaForms.php:1067, ../includes/Elements/NinjaForms.php:1483, ../includes/Elements/Pricing_Table.php:2058, ../includes/Elements/Product_Grid.php:802, ../includes/Elements/Product_Grid.php:942, ../includes/Elements/Product_Grid.php:1662, ../includes/Elements/Product_Grid.php:1923, ../includes/Elements/Product_Grid.php:2105, ../includes/Elements/Product_Grid.php:2314, ../includes/Elements/Product_Grid.php:2358, ../includes/Elements/Product_Grid.php:2553, ../includes/Elements/Product_Grid.php:2649, ../includes/Elements/Product_Grid.php:2761, ../includes/Elements/Simple_Menu.php:998, ../includes/Elements/Simple_Menu.php:1094, ../includes/Elements/Simple_Menu.php:1307, ../includes/Elements/Simple_Menu.php:1402, ../includes/Elements/Sticky_Video.php:595, ../includes/Elements/Twitter_Feed.php:823, ../includes/Elements/Twitter_Feed.php:1397, ../includes/Elements/WeForms.php:464, ../includes/Elements/WeForms.php:764, ../includes/Elements/Woo_Cart.php:1232, ../includes/Elements/Woo_Cart.php:1510, ../includes/Elements/Woo_Cart.php:1873, ../includes/Elements/Woo_Cart.php:2150, ../includes/Elements/Woo_Checkout.php:910, ../includes/Elements/Woo_Checkout.php:1117, ../includes/Elements/Woo_Checkout.php:1564, ../includes/Elements/Woo_Checkout.php:1914, ../includes/Elements/Woo_Checkout.php:2031, ../includes/Elements/Woo_Checkout.php:2075, ../includes/Elements/Woo_Checkout.php:2119, ../includes/Elements/Woo_Checkout.php:2308, ../includes/Elements/Woo_Checkout.php:2324, ../includes/Elements/Woo_Checkout.php:2672, ../includes/Elements/Woo_Checkout.php:2784, ../includes/Elements/Woo_Product_Carousel.php:992, ../includes/Elements/Woo_Product_Carousel.php:1370, ../includes/Elements/Woo_Product_Carousel.php:1494, ../includes/Elements/Woo_Product_Carousel.php:1662, ../includes/Elements/Woo_Product_Carousel.php:1757, ../includes/Elements/Woo_Product_Carousel.php:1871, ../includes/Elements/Woo_Product_Carousel.php:2316, ../includes/Elements/Woo_Product_Carousel.php:2743, ../includes/Elements/Woo_Product_Gallery.php:661, ../includes/Elements/Woo_Product_Gallery.php:1135, ../includes/Elements/Woo_Product_Gallery.php:1377, ../includes/Elements/Woo_Product_Gallery.php:1415, ../includes/Elements/Woo_Product_Gallery.php:1901, ../includes/Elements/Woo_Product_Gallery.php:1997, ../includes/Elements/Woo_Product_Gallery.php:2109, ../includes/Elements/WpForms.php:1021, ../includes/Elements/WpForms.php:1339, ../includes/Traits/Controls.php:1927, ../includes/Traits/Woo_Product_Comparable.php:1724
|
1417 |
msgid "Border Color"
|
1418 |
msgstr ""
|
1419 |
|
1629 |
msgid "<strong>Contact Form 7</strong> is not installed/activated on your site. Please install and activate <strong>Contact Form 7</strong> first."
|
1630 |
msgstr ""
|
1631 |
|
1632 |
+
#: ../includes/Elements/Contact_Form_7.php:313, ../includes/Elements/Contact_Form_7.php:1607, ../includes/Elements/Cta_Box.php:872, ../includes/Elements/Cta_Box.php:1061, ../includes/Elements/Cta_Box.php:1234, ../includes/Elements/Cta_Box.php:1303, ../includes/Elements/Dual_Color_Header.php:813, ../includes/Elements/Dual_Color_Header.php:893, ../includes/Elements/Event_Calendar.php:822, ../includes/Elements/Event_Calendar.php:954, ../includes/Elements/Event_Calendar.php:1021, ../includes/Elements/Event_Calendar.php:1075, ../includes/Elements/Event_Calendar.php:1187, ../includes/Elements/Event_Calendar.php:1279, ../includes/Elements/Event_Calendar.php:1377, ../includes/Elements/Event_Calendar.php:1743, ../includes/Elements/Event_Calendar.php:1852, ../includes/Elements/Facebook_Feed.php:562, ../includes/Elements/Facebook_Feed.php:575, ../includes/Elements/Facebook_Feed.php:651, ../includes/Elements/Facebook_Feed.php:664, ../includes/Elements/Facebook_Feed.php:749, ../includes/Elements/Facebook_Feed.php:762, ../includes/Elements/Facebook_Feed.php:833, ../includes/Elements/Facebook_Feed.php:871, ../includes/Elements/Facebook_Feed.php:911, ../includes/Elements/Fancy_Text.php:365, ../includes/Elements/Filterable_Gallery.php:2063, ../includes/Elements/Filterable_Gallery.php:2284, ../includes/Elements/Flip_Box.php:1381, ../includes/Elements/Flip_Box.php:1465, ../includes/Elements/FluentForm.php:1905, ../includes/Elements/FluentForm.php:1930, ../includes/Elements/FluentForm.php:1995, ../includes/Elements/FluentForm.php:2058, ../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:372, ../includes/Elements/Pricing_Table.php:1976, ../includes/Elements/Pricing_Table.php:2046, ../includes/Elements/Product_Grid.php:1555, ../includes/Elements/Product_Grid.php:1570, ../includes/Elements/Product_Grid.php:1630, ../includes/Elements/Product_Grid.php:1644, ../includes/Elements/Product_Grid.php:2905, ../includes/Elements/Product_Grid.php:2962, ../includes/Elements/Progress_Bar.php:345, ../includes/Elements/Team_Member.php:777, ../includes/Elements/Team_Member.php:855, ../includes/Elements/Twitter_Feed.php:583, ../includes/Elements/Twitter_Feed.php:835, ../includes/Elements/Woo_Cart.php:1287, ../includes/Elements/Woo_Cart.php:1469, ../includes/Elements/Woo_Cart.php:1701, ../includes/Elements/Woo_Cart.php:2322, ../includes/Elements/Woo_Cart.php:2404, ../includes/Elements/Woo_Cart.php:2492, ../includes/Elements/Woo_Checkout.php:2009, ../includes/Elements/Woo_Checkout.php:2053, ../includes/Elements/Woo_Checkout.php:2097, ../includes/Elements/Woo_Product_Carousel.php:2011, ../includes/Elements/Woo_Product_Carousel.php:2068, ../includes/Elements/Woo_Product_Gallery.php:1040, ../includes/Elements/Woo_Product_Gallery.php:1053, ../includes/Elements/Woo_Product_Gallery.php:1107, ../includes/Elements/Woo_Product_Gallery.php:1119, ../includes/Elements/Woo_Product_Gallery.php:1165, ../includes/Elements/Woo_Product_Gallery.php:1332, ../includes/Elements/Woo_Product_Gallery.php:1366, ../includes/Elements/Woo_Product_Gallery.php:1404, ../includes/Elements/Woo_Product_Gallery.php:2253, ../includes/Elements/Woo_Product_Gallery.php:2310, ../includes/Traits/Controls.php:1669, ../includes/Traits/Controls.php:1723, ../includes/Traits/Woo_Product_Comparable.php:1383, ../includes/Traits/Woo_Product_Comparable.php:1663, ../includes/Traits/Woo_Product_Comparable.php:1712
|
1633 |
msgid "Background"
|
1634 |
msgstr ""
|
1635 |
|
1953 |
msgid "Position Left"
|
1954 |
msgstr ""
|
1955 |
|
1956 |
+
#: ../includes/Elements/Countdown.php:445, ../includes/Elements/Filterable_Gallery.php:2263
|
1957 |
msgid "Separator Color"
|
1958 |
msgstr ""
|
1959 |
|
2081 |
msgid "Link URL"
|
2082 |
msgstr ""
|
2083 |
|
2084 |
+
#: ../includes/Elements/Creative_Button.php:160, ../includes/Elements/Filterable_Gallery.php:2599, ../includes/Elements/Info_Box.php:470, ../includes/Elements/NFT_Gallery.php:2180, ../includes/Elements/Pricing_Table.php:574, ../includes/Elements/Twitter_Feed.php:1271
|
2085 |
msgid "Icon Spacing"
|
2086 |
msgstr ""
|
2087 |
|
2413 |
msgid "Header Border Radius"
|
2414 |
msgstr ""
|
2415 |
|
2416 |
+
#: ../includes/Elements/Data_Table.php:755, ../includes/Elements/Filterable_Gallery.php:2119
|
2417 |
msgid "Icon Space"
|
2418 |
msgstr ""
|
2419 |
|
2445 |
msgid "Background Color (Even Row)"
|
2446 |
msgstr ""
|
2447 |
|
2448 |
+
#: ../includes/Elements/Data_Table.php:1022, ../includes/Elements/Filterable_Gallery.php:1297, ../includes/Elements/Filterable_Gallery.php:1680, ../includes/Elements/Flip_Box.php:368, ../includes/Elements/Flip_Box.php:599, ../includes/Elements/Info_Box.php:299, ../includes/Elements/Pricing_Table.php:834, ../includes/Elements/Tooltip.php:375
|
2449 |
msgid "Content Alignment"
|
2450 |
msgstr ""
|
2451 |
|
2505 |
msgid "Insert a meaningful line to evaluate the headline."
|
2506 |
msgstr ""
|
2507 |
|
2508 |
+
#: ../includes/Elements/Dual_Color_Header.php:245, ../includes/Elements/Dual_Color_Header.php:597, ../includes/Elements/Filterable_Gallery.php:2235, ../includes/Extensions/Table_of_Content.php:1098
|
2509 |
msgid "Separator"
|
2510 |
msgstr ""
|
2511 |
|
2677 |
msgid "Get Events"
|
2678 |
msgstr ""
|
2679 |
|
2680 |
+
#: ../includes/Elements/Event_Calendar.php:393, ../includes/Elements/Filterable_Gallery.php:341, ../includes/Elements/Filterable_Gallery.php:2799, ../includes/Elements/Woo_Product_Gallery.php:261, ../includes/Extensions/Table_of_Content.php:287
|
2681 |
msgid "All"
|
2682 |
msgstr ""
|
2683 |
|
2961 |
msgid "4"
|
2962 |
msgstr ""
|
2963 |
|
2964 |
+
#: ../includes/Elements/Facebook_Feed.php:274, ../includes/Elements/Filterable_Gallery.php:522, ../includes/Elements/NFT_Gallery.php:269, ../includes/Elements/Product_Grid.php:294, ../includes/Elements/Testimonial.php:199, ../includes/Elements/Woo_Product_Carousel.php:468, ../includes/Elements/Woo_Product_Gallery.php:346, ../includes/Traits/Controls.php:549
|
2965 |
msgid "5"
|
2966 |
msgstr ""
|
2967 |
|
3025 |
msgid "Label"
|
3026 |
msgstr ""
|
3027 |
|
3028 |
+
#: ../includes/Elements/Facebook_Feed.php:480, ../includes/Elements/Filterable_Gallery.php:696, ../includes/Elements/NFT_Gallery.php:619, ../includes/Elements/Product_Grid.php:662, ../includes/Elements/Product_Grid.php:695, ../includes/Elements/Twitter_Feed.php:386, ../includes/Elements/Woo_Product_Gallery.php:524, ../includes/Elements/Woo_Product_Gallery.php:540, ../includes/Traits/Controls.php:705
|
3029 |
msgid "Load More"
|
3030 |
msgstr ""
|
3031 |
|
3037 |
msgid "Space Between Items"
|
3038 |
msgstr ""
|
3039 |
|
3040 |
+
#: ../includes/Elements/Facebook_Feed.php:600, ../includes/Elements/Filterable_Gallery.php:1326, ../includes/Elements/Post_Grid.php:336
|
3041 |
msgid "Thumbnail Style"
|
3042 |
msgstr ""
|
3043 |
|
3453 |
msgid "List Item"
|
3454 |
msgstr ""
|
3455 |
|
3456 |
+
#: ../includes/Elements/Filterable_Gallery.php:399
|
3457 |
msgid "Gallery Item"
|
3458 |
msgstr ""
|
3459 |
|
3460 |
+
#: ../includes/Elements/Filterable_Gallery.php:414
|
|
|
|
|
|
|
|
|
3461 |
msgid "Gallery Items"
|
3462 |
msgstr ""
|
3463 |
|
3464 |
+
#: ../includes/Elements/Filterable_Gallery.php:421
|
3465 |
msgid "Enable Photo Gallery"
|
3466 |
msgstr ""
|
3467 |
|
3468 |
+
#: ../includes/Elements/Filterable_Gallery.php:433
|
3469 |
msgid "Video Gallery?"
|
3470 |
msgstr ""
|
3471 |
|
3472 |
+
#: ../includes/Elements/Filterable_Gallery.php:445
|
3473 |
msgid "Video Link"
|
3474 |
msgstr ""
|
3475 |
|
3476 |
+
#: ../includes/Elements/Filterable_Gallery.php:458
|
3477 |
msgid "Control Name"
|
3478 |
msgstr ""
|
3479 |
|
3480 |
+
#: ../includes/Elements/Filterable_Gallery.php:463
|
3481 |
msgid "Use the gallery control name from Control Settings. Separate multiple items with comma (e.g. <strong>Gallery Item, Gallery Item 2</strong>)"
|
3482 |
msgstr ""
|
3483 |
|
3484 |
+
#: ../includes/Elements/Filterable_Gallery.php:470
|
3485 |
msgid "Item Name"
|
3486 |
msgstr ""
|
3487 |
|
3488 |
+
#: ../includes/Elements/Filterable_Gallery.php:474
|
3489 |
msgid "Gallery item name"
|
3490 |
msgstr ""
|
3491 |
|
3492 |
+
#: ../includes/Elements/Filterable_Gallery.php:482
|
3493 |
msgid "Enable Price ?"
|
3494 |
msgstr ""
|
3495 |
|
3496 |
+
#: ../includes/Elements/Filterable_Gallery.php:494
|
3497 |
msgid "Item Price"
|
3498 |
msgstr ""
|
3499 |
|
3500 |
+
#: ../includes/Elements/Filterable_Gallery.php:497
|
3501 |
msgid "$20.00"
|
3502 |
msgstr ""
|
3503 |
|
3504 |
+
#: ../includes/Elements/Filterable_Gallery.php:507
|
3505 |
msgid "Enable Ratings ?"
|
3506 |
msgstr ""
|
3507 |
|
3508 |
+
#: ../includes/Elements/Filterable_Gallery.php:519
|
3509 |
msgid "Item Ratings"
|
3510 |
msgstr ""
|
3511 |
|
3512 |
+
#: ../includes/Elements/Filterable_Gallery.php:532
|
3513 |
msgid "Enable Category ?"
|
3514 |
msgstr ""
|
3515 |
|
3516 |
+
#: ../includes/Elements/Filterable_Gallery.php:544
|
3517 |
msgid "Item Category"
|
3518 |
msgstr ""
|
3519 |
|
3520 |
+
#: ../includes/Elements/Filterable_Gallery.php:547, ../includes/Traits/Elements.php:38
|
3521 |
msgid "Essential Addons"
|
3522 |
msgstr ""
|
3523 |
|
3524 |
+
#: ../includes/Elements/Filterable_Gallery.php:557
|
3525 |
msgid "Item Content"
|
3526 |
msgstr ""
|
3527 |
|
3528 |
+
#: ../includes/Elements/Filterable_Gallery.php:560
|
3529 |
msgid "Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quidem, provident."
|
3530 |
msgstr ""
|
3531 |
|
3532 |
+
#: ../includes/Elements/Filterable_Gallery.php:578
|
3533 |
msgid "Video play icon"
|
3534 |
msgstr ""
|
3535 |
|
3536 |
+
#: ../includes/Elements/Filterable_Gallery.php:592
|
3537 |
msgid "Gallery Lightbox Button?"
|
3538 |
msgstr ""
|
3539 |
|
3540 |
+
#: ../includes/Elements/Filterable_Gallery.php:607
|
3541 |
msgid "Gallery Link Button?"
|
3542 |
msgstr ""
|
3543 |
|
3544 |
+
#: ../includes/Elements/Filterable_Gallery.php:663, ../includes/Elements/Filterable_Gallery.php:670, ../includes/Elements/Filterable_Gallery.php:2454, ../includes/Elements/NFT_Gallery.php:586, ../includes/Elements/NFT_Gallery.php:2035, ../includes/Elements/Twitter_Feed.php:353, ../includes/Elements/Twitter_Feed.php:1126, ../includes/Traits/Controls.php:1794
|
3545 |
msgid "Load More Button"
|
3546 |
msgstr ""
|
3547 |
|
3548 |
+
#: ../includes/Elements/Filterable_Gallery.php:680
|
3549 |
msgid "Images Per Page"
|
3550 |
msgstr ""
|
3551 |
|
3552 |
+
#: ../includes/Elements/Filterable_Gallery.php:706, ../includes/Elements/NFT_Gallery.php:629, ../includes/Elements/Twitter_Feed.php:396
|
3553 |
msgid "No More Items Text"
|
3554 |
msgstr ""
|
3555 |
|
3556 |
+
#: ../includes/Elements/Filterable_Gallery.php:709, ../includes/Elements/NFT_Gallery.php:632, ../includes/Elements/Twitter_Feed.php:399
|
3557 |
msgid "No more items!"
|
3558 |
msgstr ""
|
3559 |
|
3560 |
+
#: ../includes/Elements/Filterable_Gallery.php:723, ../includes/Elements/NFT_Gallery.php:646, ../includes/Elements/Twitter_Feed.php:413
|
3561 |
msgid "Extra Small"
|
3562 |
msgstr ""
|
3563 |
|
3564 |
+
#: ../includes/Elements/Filterable_Gallery.php:724, ../includes/Elements/NFT_Gallery.php:647, ../includes/Elements/Twitter_Feed.php:414
|
3565 |
msgid "Small"
|
3566 |
msgstr ""
|
3567 |
|
3568 |
+
#: ../includes/Elements/Filterable_Gallery.php:725, ../includes/Elements/NFT_Gallery.php:648, ../includes/Elements/Twitter_Feed.php:415
|
3569 |
msgid "Medium"
|
3570 |
msgstr ""
|
3571 |
|
3572 |
+
#: ../includes/Elements/Filterable_Gallery.php:726, ../includes/Elements/NFT_Gallery.php:649, ../includes/Elements/Twitter_Feed.php:416
|
3573 |
msgid "Large"
|
3574 |
msgstr ""
|
3575 |
|
3576 |
+
#: ../includes/Elements/Filterable_Gallery.php:727, ../includes/Elements/NFT_Gallery.php:650, ../includes/Elements/Twitter_Feed.php:417
|
3577 |
msgid "Extra Large"
|
3578 |
msgstr ""
|
3579 |
|
3580 |
+
#: ../includes/Elements/Filterable_Gallery.php:739, ../includes/Elements/Filterable_Gallery.php:2645, ../includes/Elements/Flip_Box.php:702, ../includes/Elements/NFT_Gallery.php:662, ../includes/Elements/NFT_Gallery.php:2226, ../includes/Elements/Pricing_Table.php:545, ../includes/Elements/Twitter_Feed.php:429, ../includes/Elements/Twitter_Feed.php:1317, ../includes/Elements/Woo_Cart.php:989
|
3581 |
msgid "Button Icon"
|
3582 |
msgstr ""
|
3583 |
|
3584 |
+
#: ../includes/Elements/Filterable_Gallery.php:917
|
3585 |
msgid "Control Style"
|
3586 |
msgstr ""
|
3587 |
|
3588 |
+
#: ../includes/Elements/Filterable_Gallery.php:1101
|
3589 |
msgid "Item Style"
|
3590 |
msgstr ""
|
3591 |
|
3592 |
+
#: ../includes/Elements/Filterable_Gallery.php:1176, ../includes/Elements/Filterable_Gallery.php:1366
|
3593 |
msgid "Item Hover Style"
|
3594 |
msgstr ""
|
3595 |
|
3596 |
+
#: ../includes/Elements/Filterable_Gallery.php:1211, ../includes/Elements/Filterable_Gallery.php:1573, ../includes/Elements/Login_Register.php:3121, ../includes/Elements/Post_Timeline.php:339
|
3597 |
msgid "Title Typography"
|
3598 |
msgstr ""
|
3599 |
|
3600 |
+
#: ../includes/Elements/Filterable_Gallery.php:1251, ../includes/Elements/Filterable_Gallery.php:1633
|
3601 |
msgid "Content Typography"
|
3602 |
msgstr ""
|
3603 |
|
3604 |
+
#: ../includes/Elements/Filterable_Gallery.php:1396
|
3605 |
msgid "Video item hover"
|
3606 |
msgstr ""
|
3607 |
|
3608 |
+
#: ../includes/Elements/Filterable_Gallery.php:1419
|
3609 |
msgid "Background transition"
|
3610 |
msgstr ""
|
3611 |
|
3612 |
+
#: ../includes/Elements/Filterable_Gallery.php:1439
|
3613 |
msgid "Icon size"
|
3614 |
msgstr ""
|
3615 |
|
3616 |
+
#: ../includes/Elements/Filterable_Gallery.php:1462
|
3617 |
msgid "Hover icon scale"
|
3618 |
msgstr ""
|
3619 |
|
3620 |
+
#: ../includes/Elements/Filterable_Gallery.php:1474
|
3621 |
msgid "Icon transition"
|
3622 |
msgstr ""
|
3623 |
|
3624 |
+
#: ../includes/Elements/Filterable_Gallery.php:1501
|
3625 |
msgid "Item Card Style"
|
3626 |
msgstr ""
|
3627 |
|
3628 |
+
#: ../includes/Elements/Filterable_Gallery.php:1713
|
3629 |
msgid "Icons Style"
|
3630 |
msgstr ""
|
3631 |
|
3632 |
+
#: ../includes/Elements/Filterable_Gallery.php:1804
|
3633 |
msgid "Icon Font Size"
|
3634 |
msgstr ""
|
3635 |
|
3636 |
+
#: ../includes/Elements/Filterable_Gallery.php:1945, ../includes/Traits/Woo_Product_Comparable.php:1501
|
3637 |
msgid "Price Style"
|
3638 |
msgstr ""
|
3639 |
|
3640 |
+
#: ../includes/Elements/Filterable_Gallery.php:1981
|
3641 |
msgid "Ratings Style"
|
3642 |
msgstr ""
|
3643 |
|
3644 |
+
#: ../includes/Elements/Filterable_Gallery.php:2003
|
3645 |
msgid "Star Color"
|
3646 |
msgstr ""
|
3647 |
|
3648 |
+
#: ../includes/Elements/Filterable_Gallery.php:2028
|
3649 |
msgid "Category Style"
|
3650 |
msgstr ""
|
3651 |
|
3652 |
+
#: ../includes/Elements/Filterable_Gallery.php:2087
|
3653 |
msgid "Search Form Style"
|
3654 |
msgstr ""
|
3655 |
|
3656 |
+
#: ../includes/Elements/Filterable_Gallery.php:2098, ../includes/Elements/Login_Register.php:379, ../includes/Elements/Login_Register.php:596
|
3657 |
msgid "Controls"
|
3658 |
msgstr ""
|
3659 |
|
3660 |
+
#: ../includes/Elements/Filterable_Gallery.php:2192
|
3661 |
msgid "Controls Background"
|
3662 |
msgstr ""
|
3663 |
|
3664 |
+
#: ../includes/Elements/Filterable_Gallery.php:2244
|
3665 |
msgid "Separator Size"
|
3666 |
msgstr ""
|
3667 |
|
3668 |
+
#: ../includes/Elements/Filterable_Gallery.php:2275, ../includes/Elements/Login_Register.php:2338, ../includes/Elements/Woo_Checkout.php:1395, ../includes/Elements/Woo_Checkout.php:1771
|
3669 |
msgid "Form"
|
3670 |
msgstr ""
|
3671 |
|
3672 |
+
#: ../includes/Elements/Filterable_Gallery.php:2297
|
3673 |
msgid "Search Gallery Item..."
|
3674 |
msgstr ""
|
3675 |
|
3676 |
+
#: ../includes/Elements/Filterable_Gallery.php:2304, ../includes/Elements/Login_Register.php:3349, ../includes/Elements/Login_Register.php:3387, ../includes/Elements/Woo_Cart.php:1724
|
3677 |
msgid "Placeholder Color"
|
3678 |
msgstr ""
|
3679 |
|
3680 |
+
#: ../includes/Elements/Filterable_Gallery.php:2358
|
3681 |
msgid "Dropdown"
|
3682 |
msgstr ""
|
3683 |
|
3684 |
+
#: ../includes/Elements/Filterable_Gallery.php:2466, ../includes/Elements/NFT_Gallery.php:2047, ../includes/Elements/Product_Grid.php:2043, ../includes/Elements/Product_Grid.php:2220, ../includes/Elements/Twitter_Feed.php:1138, ../includes/Elements/Woo_Checkout.php:837, ../includes/Elements/Woo_Checkout.php:1150, ../includes/Elements/Woo_Checkout.php:1259, ../includes/Elements/Woo_Checkout.php:2855, ../includes/Elements/Woo_Product_Carousel.php:1448
|
3685 |
msgid "Top Spacing"
|
3686 |
msgstr ""
|
3687 |
|
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: 6.1
|
6 |
Requires PHP: 7.0
|
7 |
-
Stable tag: 5.5.
|
8 |
License: GPLv3
|
9 |
License URI: https://opensource.org/licenses/GPL-3.0
|
10 |
|
@@ -243,6 +243,11 @@ Your existing elements/content will work with premium version. So you won't lose
|
|
243 |
|
244 |
== Changelog ==
|
245 |
|
|
|
|
|
|
|
|
|
|
|
246 |
= 5.5.0 - 06/12/2022 =
|
247 |
|
248 |
- Added: New Widget | EA NFT Gallery
|
4 |
Requires at least: 5.0
|
5 |
Tested up to: 6.1
|
6 |
Requires PHP: 7.0
|
7 |
+
Stable tag: 5.5.1
|
8 |
License: GPLv3
|
9 |
License URI: https://opensource.org/licenses/GPL-3.0
|
10 |
|
243 |
|
244 |
== Changelog ==
|
245 |
|
246 |
+
= 5.5.1 - 11/12/2022 =
|
247 |
+
|
248 |
+
- Fixed: EA Filterable Gallery | Gallery Item name showing default value
|
249 |
+
- Few minor bug fixes & improvements
|
250 |
+
|
251 |
= 5.5.0 - 06/12/2022 =
|
252 |
|
253 |
- Added: New Widget | EA NFT Gallery
|