Elementor Essential Addons - Version 4.7.2

Version Description

  • 15/06/2021 =

  • Improved: WPML Compatibility

  • Fixed: EA Filterable Gallery | Hover overlay color not working in Card view

  • Few minor bug fix and improvements

Download this release

Release Info

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

Code changes from version 4.7.1 to 4.7.2

assets/front-end/js/view/filterable-gallery.js CHANGED
@@ -93,7 +93,7 @@
93
  /*! no static exports found */
94
  /***/ (function(module, exports) {
95
 
96
- eval("function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }\n\nfunction _nonIterableRest() { throw new TypeError(\"Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\"); }\n\nfunction _iterableToArrayLimit(arr, i) { if (typeof Symbol === \"undefined\" || !(Symbol.iterator in Object(arr))) return; var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i[\"return\"] != null) _i[\"return\"](); } finally { if (_d) throw _e; } } return _arr; }\n\nfunction _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }\n\nfunction _createForOfIteratorHelper(o, allowArrayLike) { var it; if (typeof Symbol === \"undefined\" || o[Symbol.iterator] == null) { if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === \"number\") { if (it) o = it; var i = 0; var F = function F() {}; return { s: F, n: function n() { if (i >= o.length) return { done: true }; return { done: false, value: o[i++] }; }, e: function e(_e2) { throw _e2; }, f: F }; } throw new TypeError(\"Invalid attempt to iterate non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\"); } var normalCompletion = true, didErr = false, err; return { s: function s() { it = o[Symbol.iterator](); }, n: function n() { var step = it.next(); normalCompletion = step.done; return step; }, e: function e(_e3) { didErr = true; err = _e3; }, f: function f() { try { if (!normalCompletion && it[\"return\"] != null) it[\"return\"](); } finally { if (didErr) throw err; } } }; }\n\nfunction _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === \"string\") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === \"Object\" && o.constructor) n = o.constructor.name; if (n === \"Map\" || n === \"Set\") return Array.from(o); if (n === \"Arguments\" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }\n\nfunction _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }\n\njQuery(window).on(\"elementor/frontend/init\", function () {\n var filterableGalleryHandler = function filterableGalleryHandler($scope, $) {\n var filterControls = $scope.find(\".fg-layout-3-filter-controls\").eq(0),\n filterTrigger = $scope.find(\"#fg-filter-trigger\"),\n form = $scope.find(\".fg-layout-3-search-box\"),\n input = $scope.find(\"#fg-search-box-input\"),\n searchRegex,\n buttonFilter,\n timer;\n\n if (form.length) {\n form.on(\"submit\", function (e) {\n e.preventDefault();\n });\n }\n\n filterTrigger.on(\"click\", function () {\n filterControls.toggleClass(\"open-filters\");\n });\n filterTrigger.on(\"blur\", function () {\n filterControls.removeClass(\"open-filters\");\n });\n\n if (!isEditMode) {\n var $gallery = $(\".eael-filter-gallery-container\", $scope),\n $settings = $gallery.data(\"settings\"),\n fg_items = $gallery_items = $gallery.data(\"gallery-items\"),\n $layout_mode = $settings.grid_style === \"masonry\" ? \"masonry\" : \"fitRows\",\n $gallery_enabled = $settings.gallery_enabled === \"yes\",\n $init_show_setting = $gallery.data(\"init-show\");\n fg_items.splice(0, $init_show_setting); // init isotope\n\n var gwrap = $(\".eael-filter-gallery-wrapper\");\n var layoutMode = gwrap.data(\"layout-mode\");\n var mfpCaption = gwrap.data(\"mfp_caption\");\n var $isotope_gallery = $gallery.isotope({\n itemSelector: \".eael-filterable-gallery-item-wrap\",\n layoutMode: $layout_mode,\n percentPosition: true,\n stagger: 30,\n transitionDuration: $settings.duration + \"ms\",\n filter: function filter() {\n var $this = $(this);\n var $result = searchRegex ? $this.text().match(searchRegex) : true;\n\n if (buttonFilter === undefined) {\n if (layoutMode !== \"layout_3\") {\n buttonFilter = $scope.find(\".eael-filter-gallery-control ul li\").first().data(\"filter\");\n } else {\n buttonFilter = $scope.find(\".fg-layout-3-filter-controls li\").first().data(\"filter\");\n }\n }\n\n var buttonResult = buttonFilter ? $this.is(buttonFilter) : true;\n return $result && buttonResult;\n }\n }); // Popup\n\n $($scope).magnificPopup({\n delegate: \".eael-magnific-link\",\n type: \"image\",\n gallery: {\n enabled: $gallery_enabled\n },\n image: {\n titleSrc: function titleSrc(item) {\n if (mfpCaption === \"yes\") {\n return item.el.parents('.gallery-item-caption-over').find('.fg-item-title').html() || item.el.parents('.gallery-item-caption-wrap').find('.fg-item-title').html() || item.el.parents('.eael-filterable-gallery-item-wrap').find('.fg-item-title').html();\n }\n }\n }\n }); // filter\n\n $scope.on(\"click\", \".control\", function () {\n var $this = $(this);\n buttonFilter = $(this).attr(\"data-filter\");\n var $tspan = $scope.find(\"#fg-filter-trigger > span\");\n\n if ($tspan.length) {\n $tspan.text($this.text());\n }\n\n var LoadMoreShow = $(this).data(\"load-more-status\"),\n loadMore = $(\".eael-gallery-load-more\", $scope); //hide load more button if selected control have no item to show\n\n if (LoadMoreShow || fg_items.length < 1) {\n loadMore.hide();\n } else {\n loadMore.show();\n }\n\n $this.siblings().removeClass(\"active\");\n $this.addClass(\"active\");\n $isotope_gallery.isotope();\n }); //quick search\n\n input.on(\"input\", function () {\n var $this = $(this);\n clearTimeout(timer);\n timer = setTimeout(function () {\n searchRegex = new RegExp($this.val(), \"gi\");\n $isotope_gallery.isotope();\n }, 600);\n }); // layout gal, while images are loading\n\n $isotope_gallery.imagesLoaded().progress(function () {\n $isotope_gallery.isotope(\"layout\");\n }); // layout gal, on click tabs\n\n $isotope_gallery.on(\"arrangeComplete\", function () {\n $isotope_gallery.isotope(\"layout\");\n }); // layout gal, after window loaded\n\n $(window).on(\"load\", function () {\n $isotope_gallery.isotope(\"layout\");\n }); // Load more button\n\n $scope.on(\"click\", \".eael-gallery-load-more\", function (e) {\n e.preventDefault();\n var $this = $(this),\n $init_show = $(\".eael-filter-gallery-container\", $scope).children(\".eael-filterable-gallery-item-wrap\").length,\n $total_items = $gallery.data(\"total-gallery-items\"),\n $images_per_page = $gallery.data(\"images-per-page\"),\n $nomore_text = $gallery.data(\"nomore-item-text\"),\n filter_enable = $(\".eael-filter-gallery-control\", $scope).length,\n $items = [];\n var filter_name = $(\".eael-filter-gallery-control li.active\", $scope).data('filter');\n\n if (filterControls.length > 0) {\n filter_name = $(\".fg-layout-3-filter-controls li.active\", $scope).data('filter');\n }\n\n var item_found = 0;\n var index_list = [];\n\n var _iterator = _createForOfIteratorHelper(fg_items.entries()),\n _step;\n\n try {\n for (_iterator.s(); !(_step = _iterator.n()).done;) {\n var _step$value = _slicedToArray(_step.value, 2),\n index = _step$value[0],\n item = _step$value[1];\n\n if (filter_name !== '' && filter_name !== '*' && filter_enable) {\n var element = $($(item)[0]);\n\n if (element.is(filter_name)) {\n ++item_found;\n $items.push($(item)[0]);\n index_list.push(index);\n }\n\n if (fg_items.length - 1 === index) {\n $(\".eael-filter-gallery-control li.active\", $scope).data('load-more-status', 1);\n $this.hide();\n }\n } else {\n ++item_found;\n $items.push($(item)[0]);\n index_list.push(index);\n }\n\n if (item_found === $images_per_page) {\n break;\n }\n }\n } catch (err) {\n _iterator.e(err);\n } finally {\n _iterator.f();\n }\n\n if (index_list.length > 0) {\n fg_items = fg_items.filter(function (item, index) {\n return !index_list.includes(index);\n });\n }\n\n if (fg_items.length < 1) {\n $this.html('<div class=\"no-more-items-text\">' + $nomore_text + \"</div>\");\n setTimeout(function () {\n $this.fadeOut(\"slow\");\n }, 600);\n } // append items\n\n\n $gallery.append($items);\n $isotope_gallery.isotope(\"appended\", $items);\n $isotope_gallery.imagesLoaded().progress(function () {\n $isotope_gallery.isotope(\"layout\");\n });\n }); // Fix issue on Safari: hide filter menu\n\n $(document).on('mouseup', function (e) {\n if (!filterTrigger.is(e.target) && filterTrigger.has(e.target).length === 0) {\n filterControls.removeClass(\"open-filters\");\n }\n });\n }\n };\n\n elementorFrontend.hooks.addAction(\"frontend/element_ready/eael-filterable-gallery.default\", filterableGalleryHandler);\n});\n\n//# sourceURL=webpack:///./src/js/view/filterable-gallery.js?");
97
 
98
  /***/ })
99
 
93
  /*! no static exports found */
94
  /***/ (function(module, exports) {
95
 
96
+ eval("function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }\n\nfunction _nonIterableRest() { throw new TypeError(\"Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\"); }\n\nfunction _iterableToArrayLimit(arr, i) { var _i = arr && (typeof Symbol !== \"undefined\" && arr[Symbol.iterator] || arr[\"@@iterator\"]); if (_i == null) return; var _arr = []; var _n = true; var _d = false; var _s, _e; try { for (_i = _i.call(arr); !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i[\"return\"] != null) _i[\"return\"](); } finally { if (_d) throw _e; } } return _arr; }\n\nfunction _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }\n\nfunction _createForOfIteratorHelper(o, allowArrayLike) { var it = typeof Symbol !== \"undefined\" && o[Symbol.iterator] || o[\"@@iterator\"]; if (!it) { if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === \"number\") { if (it) o = it; var i = 0; var F = function F() {}; return { s: F, n: function n() { if (i >= o.length) return { done: true }; return { done: false, value: o[i++] }; }, e: function e(_e2) { throw _e2; }, f: F }; } throw new TypeError(\"Invalid attempt to iterate non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\"); } var normalCompletion = true, didErr = false, err; return { s: function s() { it = it.call(o); }, n: function n() { var step = it.next(); normalCompletion = step.done; return step; }, e: function e(_e3) { didErr = true; err = _e3; }, f: function f() { try { if (!normalCompletion && it[\"return\"] != null) it[\"return\"](); } finally { if (didErr) throw err; } } }; }\n\nfunction _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === \"string\") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === \"Object\" && o.constructor) n = o.constructor.name; if (n === \"Map\" || n === \"Set\") return Array.from(o); if (n === \"Arguments\" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }\n\nfunction _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }\n\njQuery(window).on(\"elementor/frontend/init\", function () {\n var filterableGalleryHandler = function filterableGalleryHandler($scope, $) {\n var filterControls = $scope.find(\".fg-layout-3-filter-controls\").eq(0),\n filterTrigger = $scope.find(\"#fg-filter-trigger\"),\n form = $scope.find(\".fg-layout-3-search-box\"),\n input = $scope.find(\"#fg-search-box-input\"),\n searchRegex,\n buttonFilter,\n timer;\n\n if (form.length) {\n form.on(\"submit\", function (e) {\n e.preventDefault();\n });\n }\n\n filterTrigger.on(\"click\", function () {\n filterControls.toggleClass(\"open-filters\");\n });\n filterTrigger.on(\"blur\", function () {\n filterControls.removeClass(\"open-filters\");\n });\n\n if (!isEditMode) {\n var $gallery = $(\".eael-filter-gallery-container\", $scope),\n $settings = $gallery.data(\"settings\"),\n fg_items = $gallery_items = $gallery.data(\"gallery-items\"),\n $layout_mode = $settings.grid_style === \"masonry\" ? \"masonry\" : \"fitRows\",\n $gallery_enabled = $settings.gallery_enabled === \"yes\",\n $init_show_setting = $gallery.data(\"init-show\");\n fg_items.splice(0, $init_show_setting); // init isotope\n\n var gwrap = $(\".eael-filter-gallery-wrapper\");\n var layoutMode = gwrap.data(\"layout-mode\");\n var mfpCaption = gwrap.data(\"mfp_caption\");\n var $isotope_gallery = $gallery.isotope({\n itemSelector: \".eael-filterable-gallery-item-wrap\",\n layoutMode: $layout_mode,\n percentPosition: true,\n stagger: 30,\n transitionDuration: $settings.duration + \"ms\",\n filter: function filter() {\n var $this = $(this);\n var $result = searchRegex ? $this.text().match(searchRegex) : true;\n\n if (buttonFilter === undefined) {\n if (layoutMode !== \"layout_3\") {\n buttonFilter = $scope.find(\".eael-filter-gallery-control ul li\").first().data(\"filter\");\n } else {\n buttonFilter = $scope.find(\".fg-layout-3-filter-controls li\").first().data(\"filter\");\n }\n }\n\n var buttonResult = buttonFilter ? $this.is(buttonFilter) : true;\n return $result && buttonResult;\n }\n }); // Popup\n\n $($scope).magnificPopup({\n delegate: \".eael-magnific-link\",\n type: \"image\",\n gallery: {\n enabled: $gallery_enabled\n },\n image: {\n titleSrc: function titleSrc(item) {\n if (mfpCaption === \"yes\") {\n return item.el.parents('.gallery-item-caption-over').find('.fg-item-title').html() || item.el.parents('.gallery-item-caption-wrap').find('.fg-item-title').html() || item.el.parents('.eael-filterable-gallery-item-wrap').find('.fg-item-title').html();\n }\n }\n }\n }); // filter\n\n $scope.on(\"click\", \".control\", function () {\n var $this = $(this);\n buttonFilter = $(this).attr(\"data-filter\");\n var $tspan = $scope.find(\"#fg-filter-trigger > span\");\n\n if ($tspan.length) {\n $tspan.text($this.text());\n }\n\n var LoadMoreShow = $(this).data(\"load-more-status\"),\n loadMore = $(\".eael-gallery-load-more\", $scope); //hide load more button if selected control have no item to show\n\n if (LoadMoreShow || fg_items.length < 1) {\n loadMore.hide();\n } else {\n loadMore.show();\n }\n\n $this.siblings().removeClass(\"active\");\n $this.addClass(\"active\");\n $isotope_gallery.isotope();\n }); //quick search\n\n input.on(\"input\", function () {\n var $this = $(this);\n clearTimeout(timer);\n timer = setTimeout(function () {\n searchRegex = new RegExp($this.val(), \"gi\");\n $isotope_gallery.isotope();\n }, 600);\n }); // layout gal, while images are loading\n\n $isotope_gallery.imagesLoaded().progress(function () {\n $isotope_gallery.isotope(\"layout\");\n }); // layout gal, on click tabs\n\n $isotope_gallery.on(\"arrangeComplete\", function () {\n $isotope_gallery.isotope(\"layout\");\n }); // layout gal, after window loaded\n\n $(window).on(\"load\", function () {\n $isotope_gallery.isotope(\"layout\");\n }); // Load more button\n\n $scope.on(\"click\", \".eael-gallery-load-more\", function (e) {\n e.preventDefault();\n var $this = $(this),\n $init_show = $(\".eael-filter-gallery-container\", $scope).children(\".eael-filterable-gallery-item-wrap\").length,\n $total_items = $gallery.data(\"total-gallery-items\"),\n $images_per_page = $gallery.data(\"images-per-page\"),\n $nomore_text = $gallery.data(\"nomore-item-text\"),\n filter_enable = $(\".eael-filter-gallery-control\", $scope).length,\n $items = [];\n var filter_name = $(\".eael-filter-gallery-control li.active\", $scope).data('filter');\n\n if (filterControls.length > 0) {\n filter_name = $(\".fg-layout-3-filter-controls li.active\", $scope).data('filter');\n }\n\n var item_found = 0;\n var index_list = [];\n\n var _iterator = _createForOfIteratorHelper(fg_items.entries()),\n _step;\n\n try {\n for (_iterator.s(); !(_step = _iterator.n()).done;) {\n var _step$value = _slicedToArray(_step.value, 2),\n index = _step$value[0],\n item = _step$value[1];\n\n if (filter_name !== '' && filter_name !== '*' && filter_enable) {\n var element = $($(item)[0]);\n\n if (element.is(filter_name)) {\n ++item_found;\n $items.push($(item)[0]);\n index_list.push(index);\n }\n\n if (fg_items.length - 1 === index) {\n $(\".eael-filter-gallery-control li.active\", $scope).data('load-more-status', 1);\n $this.hide();\n }\n } else {\n ++item_found;\n $items.push($(item)[0]);\n index_list.push(index);\n }\n\n if (item_found === $images_per_page) {\n break;\n }\n }\n } catch (err) {\n _iterator.e(err);\n } finally {\n _iterator.f();\n }\n\n if (index_list.length > 0) {\n fg_items = fg_items.filter(function (item, index) {\n return !index_list.includes(index);\n });\n }\n\n if (fg_items.length < 1) {\n $this.html('<div class=\"no-more-items-text\">' + $nomore_text + \"</div>\");\n setTimeout(function () {\n $this.fadeOut(\"slow\");\n }, 600);\n } // append items\n\n\n $gallery.append($items);\n $isotope_gallery.isotope(\"appended\", $items);\n $isotope_gallery.imagesLoaded().progress(function () {\n $isotope_gallery.isotope(\"layout\");\n });\n }); // Fix issue on Safari: hide filter menu\n\n $(document).on('mouseup', function (e) {\n if (!filterTrigger.is(e.target) && filterTrigger.has(e.target).length === 0) {\n filterControls.removeClass(\"open-filters\");\n }\n });\n }\n };\n\n elementorFrontend.hooks.addAction(\"frontend/element_ready/eael-filterable-gallery.default\", filterableGalleryHandler);\n});\n\n//# sourceURL=webpack:///./src/js/view/filterable-gallery.js?");
97
 
98
  /***/ })
99
 
assets/front-end/js/view/filterable-gallery.min.js CHANGED
@@ -1 +1 @@
1
- !function(e){var t={};function r(n){if(t[n])return t[n].exports;var o=t[n]={i:n,l:!1,exports:{}};return e[n].call(o.exports,o,o.exports,r),o.l=!0,o.exports}r.m=e,r.c=t,r.d=function(e,t,n){r.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},r.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},r.t=function(e,t){if(1&t&&(e=r(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(r.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)r.d(n,o,function(t){return e[t]}.bind(null,o));return n},r.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return r.d(t,"a",t),t},r.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},r.p="",r(r.s=10)}({10:function(e,t){function r(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){if("undefined"==typeof Symbol||!(Symbol.iterator in Object(e)))return;var r=[],n=!0,o=!1,i=void 0;try{for(var a,l=e[Symbol.iterator]();!(n=(a=l.next()).done)&&(r.push(a.value),!t||r.length!==t);n=!0);}catch(e){o=!0,i=e}finally{try{n||null==l.return||l.return()}finally{if(o)throw i}}return r}(e,t)||n(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function n(e,t){if(e){if("string"==typeof e)return o(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);return"Object"===r&&e.constructor&&(r=e.constructor.name),"Map"===r||"Set"===r?Array.from(e):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?o(e,t):void 0}}function o(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);r<t;r++)n[r]=e[r];return n}jQuery(window).on("elementor/frontend/init",(function(){elementorFrontend.hooks.addAction("frontend/element_ready/eael-filterable-gallery.default",(function(e,t){var o,i,a,l=e.find(".fg-layout-3-filter-controls").eq(0),f=e.find("#fg-filter-trigger"),u=e.find(".fg-layout-3-search-box"),s=e.find("#fg-search-box-input");if(u.length&&u.on("submit",(function(e){e.preventDefault()})),f.on("click",(function(){l.toggleClass("open-filters")})),f.on("blur",(function(){l.removeClass("open-filters")})),!isEditMode){var c=t(".eael-filter-gallery-container",e),d=c.data("settings"),y=$gallery_items=c.data("gallery-items"),g="masonry"===d.grid_style?"masonry":"fitRows",p="yes"===d.gallery_enabled,m=c.data("init-show");y.splice(0,m);var h=t(".eael-filter-gallery-wrapper"),v=h.data("layout-mode"),b=h.data("mfp_caption"),w=c.isotope({itemSelector:".eael-filterable-gallery-item-wrap",layoutMode:g,percentPosition:!0,stagger:30,transitionDuration:d.duration+"ms",filter:function(){var r=t(this),n=!o||r.text().match(o);void 0===i&&(i="layout_3"!==v?e.find(".eael-filter-gallery-control ul li").first().data("filter"):e.find(".fg-layout-3-filter-controls li").first().data("filter"));var a=!i||r.is(i);return n&&a}});t(e).magnificPopup({delegate:".eael-magnific-link",type:"image",gallery:{enabled:p},image:{titleSrc:function(e){if("yes"===b)return e.el.parents(".gallery-item-caption-over").find(".fg-item-title").html()||e.el.parents(".gallery-item-caption-wrap").find(".fg-item-title").html()||e.el.parents(".eael-filterable-gallery-item-wrap").find(".fg-item-title").html()}}}),e.on("click",".control",(function(){var r=t(this);i=t(this).attr("data-filter");var n=e.find("#fg-filter-trigger > span");n.length&&n.text(r.text());var o=t(this).data("load-more-status"),a=t(".eael-gallery-load-more",e);o||y.length<1?a.hide():a.show(),r.siblings().removeClass("active"),r.addClass("active"),w.isotope()})),s.on("input",(function(){var e=t(this);clearTimeout(a),a=setTimeout((function(){o=new RegExp(e.val(),"gi"),w.isotope()}),600)})),w.imagesLoaded().progress((function(){w.isotope("layout")})),w.on("arrangeComplete",(function(){w.isotope("layout")})),t(window).on("load",(function(){w.isotope("layout")})),e.on("click",".eael-gallery-load-more",(function(o){o.preventDefault();var i=t(this),a=(t(".eael-filter-gallery-container",e).children(".eael-filterable-gallery-item-wrap").length,c.data("total-gallery-items"),c.data("images-per-page")),f=c.data("nomore-item-text"),u=t(".eael-filter-gallery-control",e).length,s=[],d=t(".eael-filter-gallery-control li.active",e).data("filter");l.length>0&&(d=t(".fg-layout-3-filter-controls li.active",e).data("filter"));var g,p=0,m=[],h=function(e,t){var r;if("undefined"==typeof Symbol||null==e[Symbol.iterator]){if(Array.isArray(e)||(r=n(e))||t&&e&&"number"==typeof e.length){r&&(e=r);var o=0,i=function(){};return{s:i,n:function(){return o>=e.length?{done:!0}:{done:!1,value:e[o++]}},e:function(e){throw e},f:i}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var a,l=!0,f=!1;return{s:function(){r=e[Symbol.iterator]()},n:function(){var e=r.next();return l=e.done,e},e:function(e){f=!0,a=e},f:function(){try{l||null==r.return||r.return()}finally{if(f)throw a}}}}(y.entries());try{for(h.s();!(g=h.n()).done;){var v=r(g.value,2),b=v[0],S=v[1];if(""!==d&&"*"!==d&&u)t(t(S)[0]).is(d)&&(++p,s.push(t(S)[0]),m.push(b)),y.length-1===b&&(t(".eael-filter-gallery-control li.active",e).data("load-more-status",1),i.hide());else++p,s.push(t(S)[0]),m.push(b);if(p===a)break}}catch(e){h.e(e)}finally{h.f()}m.length>0&&(y=y.filter((function(e,t){return!m.includes(t)}))),y.length<1&&(i.html('<div class="no-more-items-text">'+f+"</div>"),setTimeout((function(){i.fadeOut("slow")}),600)),c.append(s),w.isotope("appended",s),w.imagesLoaded().progress((function(){w.isotope("layout")}))})),t(document).on("mouseup",(function(e){f.is(e.target)||0!==f.has(e.target).length||l.removeClass("open-filters")}))}}))}))}});
1
+ !function(e){var t={};function r(n){if(t[n])return t[n].exports;var o=t[n]={i:n,l:!1,exports:{}};return e[n].call(o.exports,o,o.exports,r),o.l=!0,o.exports}r.m=e,r.c=t,r.d=function(e,t,n){r.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},r.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},r.t=function(e,t){if(1&t&&(e=r(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(r.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)r.d(n,o,function(t){return e[t]}.bind(null,o));return n},r.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return r.d(t,"a",t),t},r.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},r.p="",r(r.s=10)}({10:function(e,t){function r(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var r=e&&("undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"]);if(null==r)return;var n,o,a=[],i=!0,l=!1;try{for(r=r.call(e);!(i=(n=r.next()).done)&&(a.push(n.value),!t||a.length!==t);i=!0);}catch(e){l=!0,o=e}finally{try{i||null==r.return||r.return()}finally{if(l)throw o}}return a}(e,t)||n(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function n(e,t){if(e){if("string"==typeof e)return o(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);return"Object"===r&&e.constructor&&(r=e.constructor.name),"Map"===r||"Set"===r?Array.from(e):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?o(e,t):void 0}}function o(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);r<t;r++)n[r]=e[r];return n}jQuery(window).on("elementor/frontend/init",(function(){elementorFrontend.hooks.addAction("frontend/element_ready/eael-filterable-gallery.default",(function(e,t){var o,a,i,l=e.find(".fg-layout-3-filter-controls").eq(0),f=e.find("#fg-filter-trigger"),u=e.find(".fg-layout-3-search-box"),s=e.find("#fg-search-box-input");if(u.length&&u.on("submit",(function(e){e.preventDefault()})),f.on("click",(function(){l.toggleClass("open-filters")})),f.on("blur",(function(){l.removeClass("open-filters")})),!isEditMode){var c=t(".eael-filter-gallery-container",e),d=c.data("settings"),g=$gallery_items=c.data("gallery-items"),y="masonry"===d.grid_style?"masonry":"fitRows",p="yes"===d.gallery_enabled,m=c.data("init-show");g.splice(0,m);var h=t(".eael-filter-gallery-wrapper"),v=h.data("layout-mode"),b=h.data("mfp_caption"),w=c.isotope({itemSelector:".eael-filterable-gallery-item-wrap",layoutMode:y,percentPosition:!0,stagger:30,transitionDuration:d.duration+"ms",filter:function(){var r=t(this),n=!o||r.text().match(o);void 0===a&&(a="layout_3"!==v?e.find(".eael-filter-gallery-control ul li").first().data("filter"):e.find(".fg-layout-3-filter-controls li").first().data("filter"));var i=!a||r.is(a);return n&&i}});t(e).magnificPopup({delegate:".eael-magnific-link",type:"image",gallery:{enabled:p},image:{titleSrc:function(e){if("yes"===b)return e.el.parents(".gallery-item-caption-over").find(".fg-item-title").html()||e.el.parents(".gallery-item-caption-wrap").find(".fg-item-title").html()||e.el.parents(".eael-filterable-gallery-item-wrap").find(".fg-item-title").html()}}}),e.on("click",".control",(function(){var r=t(this);a=t(this).attr("data-filter");var n=e.find("#fg-filter-trigger > span");n.length&&n.text(r.text());var o=t(this).data("load-more-status"),i=t(".eael-gallery-load-more",e);o||g.length<1?i.hide():i.show(),r.siblings().removeClass("active"),r.addClass("active"),w.isotope()})),s.on("input",(function(){var e=t(this);clearTimeout(i),i=setTimeout((function(){o=new RegExp(e.val(),"gi"),w.isotope()}),600)})),w.imagesLoaded().progress((function(){w.isotope("layout")})),w.on("arrangeComplete",(function(){w.isotope("layout")})),t(window).on("load",(function(){w.isotope("layout")})),e.on("click",".eael-gallery-load-more",(function(o){o.preventDefault();var a=t(this),i=(t(".eael-filter-gallery-container",e).children(".eael-filterable-gallery-item-wrap").length,c.data("total-gallery-items"),c.data("images-per-page")),f=c.data("nomore-item-text"),u=t(".eael-filter-gallery-control",e).length,s=[],d=t(".eael-filter-gallery-control li.active",e).data("filter");l.length>0&&(d=t(".fg-layout-3-filter-controls li.active",e).data("filter"));var y,p=0,m=[],h=function(e,t){var r="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!r){if(Array.isArray(e)||(r=n(e))||t&&e&&"number"==typeof e.length){r&&(e=r);var o=0,a=function(){};return{s:a,n:function(){return o>=e.length?{done:!0}:{done:!1,value:e[o++]}},e:function(e){throw e},f:a}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,l=!0,f=!1;return{s:function(){r=r.call(e)},n:function(){var e=r.next();return l=e.done,e},e:function(e){f=!0,i=e},f:function(){try{l||null==r.return||r.return()}finally{if(f)throw i}}}}(g.entries());try{for(h.s();!(y=h.n()).done;){var v=r(y.value,2),b=v[0],x=v[1];if(""!==d&&"*"!==d&&u)t(t(x)[0]).is(d)&&(++p,s.push(t(x)[0]),m.push(b)),g.length-1===b&&(t(".eael-filter-gallery-control li.active",e).data("load-more-status",1),a.hide());else++p,s.push(t(x)[0]),m.push(b);if(p===i)break}}catch(e){h.e(e)}finally{h.f()}m.length>0&&(g=g.filter((function(e,t){return!m.includes(t)}))),g.length<1&&(a.html('<div class="no-more-items-text">'+f+"</div>"),setTimeout((function(){a.fadeOut("slow")}),600)),c.append(s),w.isotope("appended",s),w.imagesLoaded().progress((function(){w.isotope("layout")}))})),t(document).on("mouseup",(function(e){f.is(e.target)||0!==f.has(e.target).length||l.removeClass("open-filters")}))}}))}))}});
assets/front-end/js/view/general.js CHANGED
@@ -130,7 +130,7 @@ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) *
130
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
131
 
132
  "use strict";
133
- eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return _iterableToArray; });\nfunction _iterableToArray(iter) {\n if (typeof Symbol !== \"undefined\" && Symbol.iterator in Object(iter)) return Array.from(iter);\n}\n\n//# sourceURL=webpack:///./node_modules/@babel/runtime/helpers/esm/iterableToArray.js?");
134
 
135
  /***/ }),
136
 
130
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
131
 
132
  "use strict";
133
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return _iterableToArray; });\nfunction _iterableToArray(iter) {\n if (typeof Symbol !== \"undefined\" && iter[Symbol.iterator] != null || iter[\"@@iterator\"] != null) return Array.from(iter);\n}\n\n//# sourceURL=webpack:///./node_modules/@babel/runtime/helpers/esm/iterableToArray.js?");
134
 
135
  /***/ }),
136
 
assets/front-end/js/view/product-grid.js CHANGED
@@ -93,7 +93,7 @@
93
  /*! no static exports found */
94
  /***/ (function(module, exports) {
95
 
96
- eval("function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }\n\nfunction _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }\n\nfunction _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }\n\nea.hooks.addAction(\"init\", \"ea\", function () {\n var productGrid = function productGrid($scope, $) {\n var $wrap = $scope.find(\"#eael-product-grid\"); // cache wrapper\n\n var widgetId = $wrap.data(\"widget-id\");\n var pageId = $wrap.data(\"page-id\");\n var nonce = $wrap.data(\"nonce\");\n var overlay = document.createElement(\"div\");\n overlay.classList.add(\"wcpc-overlay\");\n overlay.setAttribute(\"id\", \"wcpc-overlay\");\n var body = document.getElementsByTagName(\"body\")[0];\n body.appendChild(overlay);\n var overlayNode = document.getElementById(\"wcpc-overlay\");\n var $doc = $(document);\n var loader = false;\n var compareBtn = false;\n var hasCompareIcon = false;\n var compareBtnSpan = false;\n var requestType = false; // compare | remove\n\n var iconBeforeCompare = '<i class=\"fas fa-exchange-alt\"></i>';\n var iconAfterCompare = '<i class=\"fas fa-check-circle\"></i>';\n var modalTemplate = \"\\n <div class=\\\"eael-wcpc-modal\\\">\\n <i title=\\\"Close\\\" class=\\\"close-modal far fa-times-circle\\\"></i>\\n <div class=\\\"modal__content\\\" id=\\\"eael_modal_content\\\">\\n </div>\\n </div>\\n \";\n $(body).append(modalTemplate);\n var $modalContentWraper = $(\"#eael_modal_content\");\n var modal = document.getElementsByClassName(\"eael-wcpc-modal\")[0];\n var ajaxData = [{\n name: \"action\",\n value: \"eael_product_grid\"\n }, {\n name: \"widget_id\",\n value: widgetId\n }, {\n name: \"page_id\",\n value: pageId\n }, {\n name: \"nonce\",\n value: nonce\n }];\n\n var sendData = function sendData(ajaxData, successCb, errorCb, beforeCb, completeCb) {\n $.ajax({\n url: localize.ajaxurl,\n type: \"POST\",\n dataType: \"json\",\n data: ajaxData,\n beforeSend: beforeCb,\n success: successCb,\n error: errorCb,\n complete: completeCb\n });\n };\n\n $doc.on(\"click\", \".eael-wc-compare\", function (e) {\n e.preventDefault();\n e.stopImmediatePropagation();\n requestType = \"compare\";\n compareBtn = $(this);\n compareBtnSpan = compareBtn.find(\".eael-wc-compare-text\");\n\n if (!compareBtnSpan.length) {\n hasCompareIcon = compareBtn.hasClass(\"eael-wc-compare-icon\");\n }\n\n if (!hasCompareIcon) {\n loader = compareBtn.find(\".eael-wc-compare-loader\");\n loader.show();\n }\n\n var product_id = compareBtn.data(\"product-id\");\n var oldProductIds = localStorage.getItem('productIds');\n\n if (oldProductIds) {\n oldProductIds = JSON.parse(oldProductIds);\n oldProductIds.push(product_id);\n } else {\n oldProductIds = [product_id];\n }\n\n ajaxData.push({\n name: \"product_id\",\n value: compareBtn.data(\"product-id\")\n });\n ajaxData.push({\n name: \"product_ids\",\n value: JSON.stringify(oldProductIds)\n });\n sendData(ajaxData, handleSuccess, handleError);\n });\n $doc.on(\"click\", \".close-modal\", function (e) {\n modal.style.visibility = \"hidden\";\n modal.style.opacity = \"0\";\n overlayNode.style.visibility = \"hidden\";\n overlayNode.style.opacity = \"0\";\n });\n $doc.on(\"click\", \".eael-wc-remove\", function (e) {\n e.preventDefault();\n e.stopImmediatePropagation();\n var $rBtn = $(this);\n var productId = $rBtn.data(\"product-id\");\n $rBtn.addClass(\"disable\");\n $rBtn.prop(\"disabled\", true); // prevent additional ajax request\n\n var oldProductIds = localStorage.getItem('productIds');\n\n if (oldProductIds) {\n oldProductIds = JSON.parse(oldProductIds);\n oldProductIds.push(productId);\n } else {\n oldProductIds = [productId];\n }\n\n var rmData = Array.from(ajaxData);\n rmData.push({\n name: \"product_id\",\n value: productId\n });\n rmData.push({\n name: \"remove_product\",\n value: 1\n });\n rmData.push({\n name: \"product_ids\",\n value: JSON.stringify(oldProductIds)\n });\n requestType = \"remove\";\n var compareBtn = $('button[data-product-id=\"' + productId + '\"]');\n compareBtnSpan = compareBtn.find(\".eael-wc-compare-text\");\n\n if (!compareBtnSpan.length) {\n hasCompareIcon = compareBtn.hasClass(\"eael-wc-compare-icon\");\n }\n\n sendData(rmData, handleSuccess, handleError);\n });\n\n function handleSuccess(data) {\n var success = data && data.success;\n\n if (success) {\n $modalContentWraper.html(data.data.compare_table);\n modal.style.visibility = \"visible\";\n modal.style.opacity = \"1\";\n overlayNode.style.visibility = \"visible\";\n overlayNode.style.opacity = \"1\";\n localStorage.setItem('productIds', JSON.stringify(data.data.product_ids));\n }\n\n if (loader) {\n loader.hide();\n }\n\n if (\"compare\" === requestType) {\n if (compareBtnSpan && compareBtnSpan.length) {\n compareBtnSpan.text(localize.i18n.added);\n } else if (hasCompareIcon) {\n compareBtn.html(iconAfterCompare);\n }\n }\n\n if (\"remove\" === requestType) {\n if (compareBtnSpan && compareBtnSpan.length) {\n compareBtnSpan.text(localize.i18n.compare);\n } else if (hasCompareIcon) {\n compareBtn.html(iconBeforeCompare);\n }\n }\n }\n\n function handleError(xhr, err) {\n console.log(err.toString());\n } // pagination\n\n\n $(\".eael-woo-pagination\", $scope).on(\"click\", \"a\", function (e) {\n e.preventDefault();\n var $this = $(this),\n nth = $this.data(\"pnumber\"),\n lmt = $this.data(\"plimit\"),\n ajax_url = localize.ajaxurl,\n args = $this.data(\"args\"),\n settings = $this.data(\"settings\"),\n widgetid = $this.data(\"widgetid\"),\n widgetclass = \".elementor-element-\" + widgetid,\n template_info = $this.data(\"template\");\n $.ajax({\n url: ajax_url,\n type: \"post\",\n data: {\n action: \"woo_product_pagination_product\",\n number: nth,\n limit: lmt,\n args: args,\n templateInfo: template_info,\n settings: settings\n },\n beforeSend: function beforeSend() {\n $(widgetclass).addClass(\"eael-product-loader\");\n },\n success: function success(response) {\n $(widgetclass + \" .eael-product-grid .products\").html(response);\n $(widgetclass + \" .woocommerce-product-gallery\").each(function () {\n $(this).wc_product_gallery();\n });\n $('html, body').animate({\n scrollTop: $(widgetclass + \" .eael-product-grid\").offset().top - 50\n }, 500);\n },\n complete: function complete() {\n $(widgetclass).removeClass(\"eael-product-loader\");\n }\n });\n $.ajax({\n url: ajax_url,\n type: \"post\",\n data: {\n action: \"woo_product_pagination\",\n number: nth,\n limit: lmt,\n args: args,\n settings: settings\n },\n // beforeSend\t: function(){\n // \t$(widgetclass+\" .eael-product-grid .products\").html(\"<li style='text-align:center;'>Loading please \" +\n // \t\t\"wait...!</li>\");\n // },\n success: function success(response) {\n $(widgetclass + \" .eael-product-grid .eael-woo-pagination\").html(response);\n $('html, body').animate({\n scrollTop: $(widgetclass + \" .eael-product-grid\").offset().top - 50\n }, 500);\n }\n });\n });\n $scope.on(\"click\", \".eael-product-grid-open-popup\", function (e) {\n e.preventDefault();\n e.stopPropagation();\n var $this = $(this);\n var quickview_setting = $this.data('quickview-setting');\n var popup_view = $(\".eael-woocommerce-popup-view\");\n popup_view.find(\".eael-popup-details-render\").html('<div class=\"eael-preloader\"></div>');\n popup_view.addClass(\"eael-product-popup-ready\").removeClass(\"eael-product-modal-removing\");\n popup_view.show();\n $.ajax({\n url: localize.ajaxurl,\n type: \"post\",\n data: _objectSpread(_objectSpread({\n action: \"eael_product_quickview_popup\"\n }, quickview_setting), {}, {\n security: localize.nonce\n }),\n success: function success(response) {\n if (response.success) {\n var product_preview = $(response.data);\n var popup_details = product_preview.children(\".eael-product-popup-details\");\n popup_details.find(\".variations_form\").wc_variation_form();\n var popup_view_render = popup_view.find(\".eael-popup-details-render\");\n popup_view.find(\".eael-popup-details-render\").html(popup_details);\n var product_gallery = popup_view.find(\".woocommerce-product-gallery\");\n product_gallery.css(\"opacity\", 1);\n popup_view_render.addClass(\"elementor-\" + quickview_setting.page_id);\n popup_view_render.children().addClass(\"elementor-element elementor-element-\" + quickview_setting.widget_id);\n\n if (popup_details.height() > 400) {\n popup_details.css(\"height\", \"75vh\");\n } else {\n popup_details.css(\"height\", \"auto\");\n }\n\n setTimeout(function () {\n product_gallery.wc_product_gallery();\n }, 1000);\n }\n }\n });\n });\n $(document).on(\"keypress\", \".eael-product-details-wrap input[type=number]\", function (e) {\n var keyValue = e.keyCode || e.which;\n var regex = /^[0-9]+$/;\n var isValid = regex.test(String.fromCharCode(keyValue));\n\n if (!isValid) {\n return false;\n }\n\n return isValid;\n }); // handle add to cart for quick view\n\n $(document).on(\"click\", \".eael-woo-slider-popup .single_add_to_cart_button\", function (e) {\n e.preventDefault();\n e.stopImmediatePropagation();\n var $this = $(this),\n product_id = $(this).val(),\n variation_id = $this.closest(\"form.cart\").find('input[name=\"variation_id\"]').val() || \"\",\n quantity = $this.closest(\"form.cart\").find('input[name=\"quantity\"]').val(),\n items = $this.closest(\"form.cart.grouped_form\"),\n form = $this.closest(\"form.cart\"),\n product_data = [];\n items = items.serializeArray();\n\n if (form.hasClass(\"variations_form\")) {\n product_id = form.find('input[name=\"product_id\"]').val();\n }\n\n if (items.length > 0) {\n items.forEach(function (item, index) {\n var p_id = parseInt(item.name.replace(/[^\\d.]/g, \"\"), 10);\n\n if (item.name.indexOf(\"quantity[\") >= 0 && item.value != \"\" && p_id > 0) {\n product_data[product_data.length] = {\n product_id: p_id,\n quantity: item.value,\n variation_id: 0\n };\n }\n });\n } else {\n product_data[0] = {\n product_id: product_id,\n quantity: quantity,\n variation_id: variation_id\n };\n }\n\n $this.removeClass(\"eael-addtocart-added\");\n $this.addClass(\"eael-addtocart-loading\");\n $.ajax({\n url: localize.ajaxurl,\n type: \"post\",\n data: {\n action: \"eael_product_add_to_cart\",\n product_data: product_data,\n eael_add_to_cart_nonce: localize.nonce,\n cart_item_data: form.serializeArray()\n },\n success: function success(response) {\n if (response.success) {\n $(document.body).trigger(\"wc_fragment_refresh\");\n $this.removeClass(\"eael-addtocart-loading\");\n $this.addClass(\"eael-addtocart-added\");\n }\n }\n });\n });\n $(document).on(\"click\", \".eael-product-popup-close\", function (event) {\n event.stopPropagation();\n $(\".eael-product-popup\").addClass(\"eael-product-modal-removing\").removeClass(\"eael-product-popup-ready\");\n });\n $(document).on(\"click\", function (event) {\n if (event.target.closest(\".eael-product-popup-details\")) return;\n $(\".eael-product-popup.eael-product-zoom-in.eael-product-popup-ready\").addClass(\"eael-product-modal-removing\").removeClass(\"eael-product-popup-ready\");\n });\n\n if (isEditMode) {\n $(\".eael-product-image-wrap .woocommerce-product-gallery\").css(\"opacity\", \"1\");\n }\n };\n\n elementorFrontend.hooks.addAction(\"frontend/element_ready/eicon-woocommerce.default\", productGrid);\n});\n\n//# sourceURL=webpack:///./src/js/view/product-grid.js?");
97
 
98
  /***/ })
99
 
93
  /*! no static exports found */
94
  /***/ (function(module, exports) {
95
 
96
+ eval("function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) { symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); } keys.push.apply(keys, symbols); } return keys; }\n\nfunction _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }\n\nfunction _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }\n\nea.hooks.addAction(\"init\", \"ea\", function () {\n var productGrid = function productGrid($scope, $) {\n var $wrap = $scope.find(\"#eael-product-grid\"); // cache wrapper\n\n var widgetId = $wrap.data(\"widget-id\");\n var pageId = $wrap.data(\"page-id\");\n var nonce = $wrap.data(\"nonce\");\n var overlay = document.createElement(\"div\");\n overlay.classList.add(\"wcpc-overlay\");\n overlay.setAttribute(\"id\", \"wcpc-overlay\");\n var body = document.getElementsByTagName(\"body\")[0];\n body.appendChild(overlay);\n var overlayNode = document.getElementById(\"wcpc-overlay\");\n var $doc = $(document);\n var loader = false;\n var compareBtn = false;\n var hasCompareIcon = false;\n var compareBtnSpan = false;\n var requestType = false; // compare | remove\n\n var iconBeforeCompare = '<i class=\"fas fa-exchange-alt\"></i>';\n var iconAfterCompare = '<i class=\"fas fa-check-circle\"></i>';\n var modalTemplate = \"\\n <div class=\\\"eael-wcpc-modal\\\">\\n <i title=\\\"Close\\\" class=\\\"close-modal far fa-times-circle\\\"></i>\\n <div class=\\\"modal__content\\\" id=\\\"eael_modal_content\\\">\\n </div>\\n </div>\\n \";\n $(body).append(modalTemplate);\n var $modalContentWraper = $(\"#eael_modal_content\");\n var modal = document.getElementsByClassName(\"eael-wcpc-modal\")[0];\n var ajaxData = [{\n name: \"action\",\n value: \"eael_product_grid\"\n }, {\n name: \"widget_id\",\n value: widgetId\n }, {\n name: \"page_id\",\n value: pageId\n }, {\n name: \"nonce\",\n value: nonce\n }];\n\n var sendData = function sendData(ajaxData, successCb, errorCb, beforeCb, completeCb) {\n $.ajax({\n url: localize.ajaxurl,\n type: \"POST\",\n dataType: \"json\",\n data: ajaxData,\n beforeSend: beforeCb,\n success: successCb,\n error: errorCb,\n complete: completeCb\n });\n };\n\n $doc.on(\"click\", \".eael-wc-compare\", function (e) {\n e.preventDefault();\n e.stopImmediatePropagation();\n requestType = \"compare\";\n compareBtn = $(this);\n compareBtnSpan = compareBtn.find(\".eael-wc-compare-text\");\n\n if (!compareBtnSpan.length) {\n hasCompareIcon = compareBtn.hasClass(\"eael-wc-compare-icon\");\n }\n\n if (!hasCompareIcon) {\n loader = compareBtn.find(\".eael-wc-compare-loader\");\n loader.show();\n }\n\n var product_id = compareBtn.data(\"product-id\");\n var oldProductIds = localStorage.getItem('productIds');\n\n if (oldProductIds) {\n oldProductIds = JSON.parse(oldProductIds);\n oldProductIds.push(product_id);\n } else {\n oldProductIds = [product_id];\n }\n\n ajaxData.push({\n name: \"product_id\",\n value: compareBtn.data(\"product-id\")\n });\n ajaxData.push({\n name: \"product_ids\",\n value: JSON.stringify(oldProductIds)\n });\n sendData(ajaxData, handleSuccess, handleError);\n });\n $doc.on(\"click\", \".close-modal\", function (e) {\n modal.style.visibility = \"hidden\";\n modal.style.opacity = \"0\";\n overlayNode.style.visibility = \"hidden\";\n overlayNode.style.opacity = \"0\";\n });\n $doc.on(\"click\", \".eael-wc-remove\", function (e) {\n e.preventDefault();\n e.stopImmediatePropagation();\n var $rBtn = $(this);\n var productId = $rBtn.data(\"product-id\");\n $rBtn.addClass(\"disable\");\n $rBtn.prop(\"disabled\", true); // prevent additional ajax request\n\n var oldProductIds = localStorage.getItem('productIds');\n\n if (oldProductIds) {\n oldProductIds = JSON.parse(oldProductIds);\n oldProductIds.push(productId);\n } else {\n oldProductIds = [productId];\n }\n\n var rmData = Array.from(ajaxData);\n rmData.push({\n name: \"product_id\",\n value: productId\n });\n rmData.push({\n name: \"remove_product\",\n value: 1\n });\n rmData.push({\n name: \"product_ids\",\n value: JSON.stringify(oldProductIds)\n });\n requestType = \"remove\";\n var compareBtn = $('button[data-product-id=\"' + productId + '\"]');\n compareBtnSpan = compareBtn.find(\".eael-wc-compare-text\");\n\n if (!compareBtnSpan.length) {\n hasCompareIcon = compareBtn.hasClass(\"eael-wc-compare-icon\");\n }\n\n sendData(rmData, handleSuccess, handleError);\n });\n\n function handleSuccess(data) {\n var success = data && data.success;\n\n if (success) {\n $modalContentWraper.html(data.data.compare_table);\n modal.style.visibility = \"visible\";\n modal.style.opacity = \"1\";\n overlayNode.style.visibility = \"visible\";\n overlayNode.style.opacity = \"1\";\n localStorage.setItem('productIds', JSON.stringify(data.data.product_ids));\n }\n\n if (loader) {\n loader.hide();\n }\n\n if (\"compare\" === requestType) {\n if (compareBtnSpan && compareBtnSpan.length) {\n compareBtnSpan.text(localize.i18n.added);\n } else if (hasCompareIcon) {\n compareBtn.html(iconAfterCompare);\n }\n }\n\n if (\"remove\" === requestType) {\n if (compareBtnSpan && compareBtnSpan.length) {\n compareBtnSpan.text(localize.i18n.compare);\n } else if (hasCompareIcon) {\n compareBtn.html(iconBeforeCompare);\n }\n }\n }\n\n function handleError(xhr, err) {\n console.log(err.toString());\n } // pagination\n\n\n $(\".eael-woo-pagination\", $scope).on(\"click\", \"a\", function (e) {\n e.preventDefault();\n var $this = $(this),\n nth = $this.data(\"pnumber\"),\n lmt = $this.data(\"plimit\"),\n ajax_url = localize.ajaxurl,\n args = $this.data(\"args\"),\n settings = $this.data(\"settings\"),\n widgetid = $this.data(\"widgetid\"),\n widgetclass = \".elementor-element-\" + widgetid,\n template_info = $this.data(\"template\");\n $.ajax({\n url: ajax_url,\n type: \"post\",\n data: {\n action: \"woo_product_pagination_product\",\n number: nth,\n limit: lmt,\n args: args,\n templateInfo: template_info,\n settings: settings\n },\n beforeSend: function beforeSend() {\n $(widgetclass).addClass(\"eael-product-loader\");\n },\n success: function success(response) {\n $(widgetclass + \" .eael-product-grid .products\").html(response);\n $(widgetclass + \" .woocommerce-product-gallery\").each(function () {\n $(this).wc_product_gallery();\n });\n $('html, body').animate({\n scrollTop: $(widgetclass + \" .eael-product-grid\").offset().top - 50\n }, 500);\n },\n complete: function complete() {\n $(widgetclass).removeClass(\"eael-product-loader\");\n }\n });\n $.ajax({\n url: ajax_url,\n type: \"post\",\n data: {\n action: \"woo_product_pagination\",\n number: nth,\n limit: lmt,\n args: args,\n settings: settings\n },\n // beforeSend\t: function(){\n // \t$(widgetclass+\" .eael-product-grid .products\").html(\"<li style='text-align:center;'>Loading please \" +\n // \t\t\"wait...!</li>\");\n // },\n success: function success(response) {\n $(widgetclass + \" .eael-product-grid .eael-woo-pagination\").html(response);\n $('html, body').animate({\n scrollTop: $(widgetclass + \" .eael-product-grid\").offset().top - 50\n }, 500);\n }\n });\n });\n $scope.on(\"click\", \".eael-product-grid-open-popup\", function (e) {\n e.preventDefault();\n e.stopPropagation();\n var $this = $(this);\n var quickview_setting = $this.data('quickview-setting');\n var popup_view = $(\".eael-woocommerce-popup-view\");\n popup_view.find(\".eael-popup-details-render\").html('<div class=\"eael-preloader\"></div>');\n popup_view.addClass(\"eael-product-popup-ready\").removeClass(\"eael-product-modal-removing\");\n popup_view.show();\n $.ajax({\n url: localize.ajaxurl,\n type: \"post\",\n data: _objectSpread(_objectSpread({\n action: \"eael_product_quickview_popup\"\n }, quickview_setting), {}, {\n security: localize.nonce\n }),\n success: function success(response) {\n if (response.success) {\n var product_preview = $(response.data);\n var popup_details = product_preview.children(\".eael-product-popup-details\");\n popup_details.find(\".variations_form\").wc_variation_form();\n var popup_view_render = popup_view.find(\".eael-popup-details-render\");\n popup_view.find(\".eael-popup-details-render\").html(popup_details);\n var product_gallery = popup_view.find(\".woocommerce-product-gallery\");\n product_gallery.css(\"opacity\", 1);\n popup_view_render.addClass(\"elementor-\" + quickview_setting.page_id);\n popup_view_render.children().addClass(\"elementor-element elementor-element-\" + quickview_setting.widget_id);\n\n if (popup_details.height() > 400) {\n popup_details.css(\"height\", \"75vh\");\n } else {\n popup_details.css(\"height\", \"auto\");\n }\n\n setTimeout(function () {\n product_gallery.wc_product_gallery();\n }, 1000);\n }\n }\n });\n });\n $(document).on(\"keypress\", \".eael-product-details-wrap input[type=number]\", function (e) {\n var keyValue = e.keyCode || e.which;\n var regex = /^[0-9]+$/;\n var isValid = regex.test(String.fromCharCode(keyValue));\n\n if (!isValid) {\n return false;\n }\n\n return isValid;\n }); // handle add to cart for quick view\n\n $(document).on(\"click\", \".eael-woo-slider-popup .single_add_to_cart_button\", function (e) {\n e.preventDefault();\n e.stopImmediatePropagation();\n var $this = $(this),\n product_id = $(this).val(),\n variation_id = $this.closest(\"form.cart\").find('input[name=\"variation_id\"]').val() || \"\",\n quantity = $this.closest(\"form.cart\").find('input[name=\"quantity\"]').val(),\n items = $this.closest(\"form.cart.grouped_form\"),\n form = $this.closest(\"form.cart\"),\n product_data = [];\n items = items.serializeArray();\n\n if (form.hasClass(\"variations_form\")) {\n product_id = form.find('input[name=\"product_id\"]').val();\n }\n\n if (items.length > 0) {\n items.forEach(function (item, index) {\n var p_id = parseInt(item.name.replace(/[^\\d.]/g, \"\"), 10);\n\n if (item.name.indexOf(\"quantity[\") >= 0 && item.value != \"\" && p_id > 0) {\n product_data[product_data.length] = {\n product_id: p_id,\n quantity: item.value,\n variation_id: 0\n };\n }\n });\n } else {\n product_data[0] = {\n product_id: product_id,\n quantity: quantity,\n variation_id: variation_id\n };\n }\n\n $this.removeClass(\"eael-addtocart-added\");\n $this.addClass(\"eael-addtocart-loading\");\n $.ajax({\n url: localize.ajaxurl,\n type: \"post\",\n data: {\n action: \"eael_product_add_to_cart\",\n product_data: product_data,\n eael_add_to_cart_nonce: localize.nonce,\n cart_item_data: form.serializeArray()\n },\n success: function success(response) {\n if (response.success) {\n $(document.body).trigger(\"wc_fragment_refresh\");\n $this.removeClass(\"eael-addtocart-loading\");\n $this.addClass(\"eael-addtocart-added\");\n }\n }\n });\n });\n $(document).on(\"click\", \".eael-product-popup-close\", function (event) {\n event.stopPropagation();\n $(\".eael-product-popup\").addClass(\"eael-product-modal-removing\").removeClass(\"eael-product-popup-ready\");\n });\n $(document).on(\"click\", function (event) {\n if (event.target.closest(\".eael-product-popup-details\")) return;\n $(\".eael-product-popup.eael-product-zoom-in.eael-product-popup-ready\").addClass(\"eael-product-modal-removing\").removeClass(\"eael-product-popup-ready\");\n });\n\n if (isEditMode) {\n $(\".eael-product-image-wrap .woocommerce-product-gallery\").css(\"opacity\", \"1\");\n }\n };\n\n elementorFrontend.hooks.addAction(\"frontend/element_ready/eicon-woocommerce.default\", productGrid);\n});\n\n//# sourceURL=webpack:///./src/js/view/product-grid.js?");
97
 
98
  /***/ })
99
 
assets/front-end/js/view/table-of-content.js CHANGED
@@ -93,7 +93,7 @@
93
  /*! no static exports found */
94
  /***/ (function(module, exports) {
95
 
96
- eval("function _toConsumableArray(arr) { return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread(); }\n\nfunction _nonIterableSpread() { throw new TypeError(\"Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\"); }\n\nfunction _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === \"string\") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === \"Object\" && o.constructor) n = o.constructor.name; if (n === \"Map\" || n === \"Set\") return Array.from(o); if (n === \"Arguments\" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }\n\nfunction _iterableToArray(iter) { if (typeof Symbol !== \"undefined\" && Symbol.iterator in Object(iter)) return Array.from(iter); }\n\nfunction _arrayWithoutHoles(arr) { if (Array.isArray(arr)) return _arrayLikeToArray(arr); }\n\nfunction _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }\n\n(function ($) {\n jQuery(document).ready(function () {\n /**\n * add ID in main content heading tag\n * @param selector\n * @param supportTag\n */\n var headerHeight = $(\"header\").height();\n var page_offset = $(\"#eael-toc\").data(\"page_offset\");\n var page_offset = page_offset !== 0 && page_offset !== undefined ? page_offset : null;\n var offsetSpan = page_offset !== null ? page_offset : headerHeight !== undefined && headerHeight !== 0 ? headerHeight + 10 : 120;\n\n function eael_toc_content(selector, supportTag) {\n var listId = document.getElementById(\"eael-toc-list\");\n\n if (selector === null || supportTag === undefined || !listId) {\n return null;\n }\n\n var eaelToc = document.getElementById(\"eael-toc\");\n var titleUrl = typeof eaelToc.dataset.titleurl !== \"undefined\" ? eaelToc.dataset.titleurl : \"false\";\n var excludeArr = typeof eaelToc.dataset.excludeSelector !== \"undefined\" ? eaelToc.dataset.excludeSelector.replace(/^,|,$/g, \"\") : \"\";\n var allSupportTag = [];\n var mainSelector = document.querySelectorAll(selector),\n listIndex = 0;\n\n for (var j = 0; j < mainSelector.length; j++) {\n allSupportTag = [].concat(_toConsumableArray(allSupportTag), _toConsumableArray(mainSelector[j].querySelectorAll(supportTag)));\n }\n\n allSupportTag = Array.from(new Set(allSupportTag));\n allSupportTag.forEach(function (el) {\n if (eaelTocExclude(excludeArr, el)) {\n return;\n }\n\n el.id = listIndex + \"-\" + eael_build_id(titleUrl, el.textContent);\n el.classList.add(\"eael-heading-content\");\n listIndex++;\n }); //build toc list hierarchy\n\n eael_list_hierarchy(selector, supportTag, allSupportTag);\n var firstChild = $(\"ul.eael-toc-list > li\");\n\n if (firstChild.length < 1) {\n document.getElementById(\"eael-toc\").classList.add(\"eael-toc-disable\");\n }\n\n firstChild.each(function () {\n this.classList.add(\"eael-first-child\");\n });\n }\n /**\n * Make toc list\n * @param selector\n * @param supportTag\n */\n\n\n function eael_list_hierarchy(selector, supportTag, allSupportTagList) {\n var tagList = supportTag;\n var allHeadings = allSupportTagList;\n var eaelToc = document.getElementById(\"eael-toc\");\n var titleUrl = typeof eaelToc.dataset.titleurl !== \"undefined\" ? eaelToc.dataset.titleurl : \"false\";\n var listId = document.getElementById(\"eael-toc-list\");\n var excludeArr = typeof eaelToc.dataset.excludeselector !== \"undefined\" ? eaelToc.dataset.excludeselector.replace(/^,|,$/g, \"\") : \"\";\n var parentLevel = \"\",\n baseTag = parentLevel = tagList.trim().split(\",\")[0].substr(1, 1),\n ListNode = listId;\n listId.innerHTML = \"\";\n\n if (allHeadings.length > 0) {\n document.getElementById(\"eael-toc\").classList.remove(\"eael-toc-disable\");\n }\n\n for (var i = 0, len = allHeadings.length; i < len; ++i) {\n var currentHeading = allHeadings[i];\n\n if (eaelTocExclude(excludeArr, currentHeading)) {\n continue;\n }\n\n var latestLavel = parseInt(currentHeading.tagName.substr(1, 1));\n var diff = latestLavel - parentLevel;\n\n if (diff > 0) {\n var containerLiNode = ListNode.lastChild;\n\n if (containerLiNode) {\n var createUlNode = document.createElement(\"UL\");\n containerLiNode.appendChild(createUlNode);\n ListNode = createUlNode;\n parentLevel = latestLavel;\n }\n }\n\n var sequenceParent = false;\n\n if (diff < 0) {\n while (0 !== diff++) {\n if (ListNode.parentNode.parentNode) {\n ListNode = ListNode.parentNode.parentNode;\n }\n }\n\n parentLevel = latestLavel;\n sequenceParent = true;\n }\n\n if (ListNode.tagName !== \"UL\") {\n ListNode = listId;\n }\n\n if (currentHeading.textContent.trim() === \"\") {\n continue;\n }\n\n var liNode = document.createElement(\"LI\");\n var anchorTag = document.createElement(\"A\");\n var spanTag = document.createElement(\"SPAN\");\n\n if (baseTag === parentLevel || sequenceParent) {\n liNode.setAttribute(\"itemscope\", \"\");\n liNode.setAttribute(\"itemtype\", \"http://schema.org/ListItem\");\n liNode.setAttribute(\"itemprop\", \"itemListElement\");\n }\n\n var Linkid = \"#\" + i + \"-\" + eael_build_id(titleUrl, currentHeading.textContent);\n anchorTag.className = \"eael-toc-link\";\n anchorTag.setAttribute(\"itemprop\", \"item\");\n anchorTag.setAttribute(\"href\", Linkid);\n spanTag.appendChild(document.createTextNode(currentHeading.textContent));\n anchorTag.appendChild(spanTag);\n liNode.appendChild(anchorTag);\n ListNode.appendChild(liNode);\n }\n } // expand collapse\n\n\n $(document).on(\"click\", \"ul.eael-toc-list a\", function (e) {\n e.preventDefault();\n $(document).off(\"scroll\");\n var target = this.hash;\n history.pushState(\"\", document.title, window.location.pathname + window.location.search);\n var parentLi = $(this).parent();\n\n if (parentLi.is(\".eael-highlight-parent.eael-highlight-active\")) {\n $('html, body').animate({\n scrollTop: $(target).offset().top - offsetSpan\n }, 0);\n return false;\n }\n\n $(\".eael-highlight-active, .eael-highlight-parent\").removeClass(\"eael-highlight-active eael-highlight-parent\");\n $(this).closest(\".eael-first-child\").addClass(\"eael-highlight-parent\");\n $(this).parent().addClass(\"eael-highlight-active\");\n $('html, body').animate({\n scrollTop: $(target).offset().top - offsetSpan\n }, 0);\n }); //some site not working with **window.onscroll**\n\n window.addEventListener(\"scroll\", function (e) {\n eaelTocSticky();\n });\n var stickyScroll = $(\"#eael-toc\").data(\"stickyscroll\");\n /**\n * Check selector in array\n *\n * @param arr\n * @param el\n * @returns boolean\n */\n\n function eaelTocExclude(excludes, el) {\n return $(el).closest(excludes).length;\n }\n /**\n * check sticky\n */\n\n\n function eaelTocSticky() {\n var eaelToc = document.getElementById(\"eael-toc\");\n\n if (!eaelToc) {\n return;\n }\n\n stickyScroll = stickyScroll !== undefined ? stickyScroll : 200;\n\n if (window.pageYOffset >= stickyScroll && !eaelToc.classList.contains(\"eael-toc-disable\")) {\n eaelToc.classList.add(\"eael-sticky\");\n } else {\n eaelToc.classList.remove(\"eael-sticky\");\n }\n }\n /**\n *\n * @param content\n * @returns {string}\n */\n\n\n function eael_build_id(showTitle, title) {\n if (showTitle == \"true\" && title != \"\") {\n //create slug from Heading text\n return title.toString().toLowerCase().normalize(\"NFD\").trim().replace(/[^a-z0-9 -]/g, \"\").replace(/\\s+/g, \"-\").replace(/^-+/, \"\").replace(/-+$/, \"\").replace(/-+/g, \"-\");\n } else {\n return \"eael-table-of-content\";\n }\n }\n /**\n *\n * @returns {null|selector}\n */\n\n\n function eael_toc_check_content() {\n var eaelToc = document.getElementById(\"eael-toc\");\n\n if (eaelToc && eaelToc.dataset.contentselector) {\n return eaelToc.dataset.contentselector;\n }\n\n var contentSelectro = \".site-content\";\n\n if ($(\".site-content\")[0]) {\n contentSelectro = \".site-content\";\n } else if ($(\".elementor-inner\")[0]) {\n contentSelectro = \".elementor-inner\";\n } else if ($(\"#site-content\")[0]) {\n contentSelectro = \"#site-content\";\n } else if ($(\".site-main\")) {\n contentSelectro = \".site-main\";\n }\n\n return contentSelectro;\n } //toc auto collapse\n\n\n $(\"body\").click(function (e) {\n var target = $(e.target);\n var eaToc = $(\"#eael-toc\");\n\n if (eaToc.hasClass(\"eael-toc-auto-collapse\") && eaToc.hasClass(\"eael-sticky\") && !eaToc.hasClass(\"collapsed\") && $(target).closest(\"#eael-toc\").length === 0) {\n eaToc.toggleClass(\"collapsed\");\n }\n });\n $(document).on(\"click\", \".eael-toc-close ,.eael-toc-button\", function (event) {\n event.stopPropagation();\n $(\".eael-toc\").toggleClass(\"collapsed\");\n });\n\n function eael_build_toc($settings) {\n var pageSetting = $settings.settings,\n title = pageSetting.eael_ext_toc_title,\n toc_style_class = \"eael-toc-list eael-toc-list-\" + pageSetting.eael_ext_table_of_content_list_style,\n icon = pageSetting.eael_ext_table_of_content_header_icon.value,\n el_class = pageSetting.eael_ext_toc_position === \"right\" ? \" eael-toc-right\" : \" \";\n toc_style_class += pageSetting.eael_ext_toc_collapse_sub_heading === \"yes\" ? \" eael-toc-collapse\" : \" \";\n toc_style_class += pageSetting.eael_ext_toc_list_icon === \"number\" ? \" eael-toc-number\" : \" eael-toc-bullet\";\n return '<div id=\"eael-toc\" class=\"eael-toc eael-toc-disable ' + el_class + '\">' + '<div class=\"eael-toc-header\"><span class=\"eael-toc-close\">×</span><h2 class=\"eael-toc-title\">' + title + \"</h2></div>\" + '<div class=\"eael-toc-body\"><ul id=\"eael-toc-list\" class=\"' + toc_style_class + '\"></ul></div>' + '<button class=\"eael-toc-button\"><i class=\"' + icon + '\"></i><span>' + title + \"</span></button>\" + \"</div>\";\n }\n\n if (typeof ea !== 'undefined' && ea.isEditMode) {\n elementorFrontend.hooks.addAction(\"frontend/element_ready/widget\", function ($scope, jQuery) {\n var tocLoad = jQuery(\"#eael-toc #eael-toc-list\");\n var TocList = tocLoad.find(\"li.eael-first-child\");\n\n if (TocList.length < 1 && tocLoad.length >= 1) {\n var tagList = jQuery(\"#eael-toc\").data(\"eaeltoctag\");\n\n if (tagList) {\n eael_toc_content(eael_toc_check_content(), tagList);\n }\n }\n });\n }\n\n var editMode = typeof isEditMode !== 'undefined' ? isEditMode : false;\n var intSupportTag = $(\"#eael-toc\").data(\"eaeltoctag\");\n\n if (intSupportTag !== \"\" && !editMode) {\n eael_toc_content(eael_toc_check_content(), intSupportTag);\n }\n });\n})(jQuery);\n\n//# sourceURL=webpack:///./src/js/view/table-of-content.js?");
97
 
98
  /***/ })
99
 
93
  /*! no static exports found */
94
  /***/ (function(module, exports) {
95
 
96
+ eval("function _toConsumableArray(arr) { return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread(); }\n\nfunction _nonIterableSpread() { throw new TypeError(\"Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\"); }\n\nfunction _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === \"string\") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === \"Object\" && o.constructor) n = o.constructor.name; if (n === \"Map\" || n === \"Set\") return Array.from(o); if (n === \"Arguments\" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }\n\nfunction _iterableToArray(iter) { if (typeof Symbol !== \"undefined\" && iter[Symbol.iterator] != null || iter[\"@@iterator\"] != null) return Array.from(iter); }\n\nfunction _arrayWithoutHoles(arr) { if (Array.isArray(arr)) return _arrayLikeToArray(arr); }\n\nfunction _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }\n\n(function ($) {\n jQuery(document).ready(function () {\n /**\n * add ID in main content heading tag\n * @param selector\n * @param supportTag\n */\n var headerHeight = $(\"header\").height();\n var page_offset = $(\"#eael-toc\").data(\"page_offset\");\n var page_offset = page_offset !== 0 && page_offset !== undefined ? page_offset : null;\n var offsetSpan = page_offset !== null ? page_offset : headerHeight !== undefined && headerHeight !== 0 ? headerHeight + 10 : 120;\n\n function eael_toc_content(selector, supportTag) {\n var listId = document.getElementById(\"eael-toc-list\");\n\n if (selector === null || supportTag === undefined || !listId) {\n return null;\n }\n\n var eaelToc = document.getElementById(\"eael-toc\");\n var titleUrl = typeof eaelToc.dataset.titleurl !== \"undefined\" ? eaelToc.dataset.titleurl : \"false\";\n var excludeArr = typeof eaelToc.dataset.excludeSelector !== \"undefined\" ? eaelToc.dataset.excludeSelector.replace(/^,|,$/g, \"\") : \"\";\n var allSupportTag = [];\n var mainSelector = document.querySelectorAll(selector),\n listIndex = 0;\n\n for (var j = 0; j < mainSelector.length; j++) {\n allSupportTag = [].concat(_toConsumableArray(allSupportTag), _toConsumableArray(mainSelector[j].querySelectorAll(supportTag)));\n }\n\n allSupportTag = Array.from(new Set(allSupportTag));\n allSupportTag.forEach(function (el) {\n if (eaelTocExclude(excludeArr, el)) {\n return;\n }\n\n el.id = listIndex + \"-\" + eael_build_id(titleUrl, el.textContent);\n el.classList.add(\"eael-heading-content\");\n listIndex++;\n }); //build toc list hierarchy\n\n eael_list_hierarchy(selector, supportTag, allSupportTag);\n var firstChild = $(\"ul.eael-toc-list > li\");\n\n if (firstChild.length < 1) {\n document.getElementById(\"eael-toc\").classList.add(\"eael-toc-disable\");\n }\n\n firstChild.each(function () {\n this.classList.add(\"eael-first-child\");\n });\n }\n /**\n * Make toc list\n * @param selector\n * @param supportTag\n */\n\n\n function eael_list_hierarchy(selector, supportTag, allSupportTagList) {\n var tagList = supportTag;\n var allHeadings = allSupportTagList;\n var eaelToc = document.getElementById(\"eael-toc\");\n var titleUrl = typeof eaelToc.dataset.titleurl !== \"undefined\" ? eaelToc.dataset.titleurl : \"false\";\n var listId = document.getElementById(\"eael-toc-list\");\n var excludeArr = typeof eaelToc.dataset.excludeselector !== \"undefined\" ? eaelToc.dataset.excludeselector.replace(/^,|,$/g, \"\") : \"\";\n var parentLevel = \"\",\n baseTag = parentLevel = tagList.trim().split(\",\")[0].substr(1, 1),\n ListNode = listId;\n listId.innerHTML = \"\";\n\n if (allHeadings.length > 0) {\n document.getElementById(\"eael-toc\").classList.remove(\"eael-toc-disable\");\n }\n\n for (var i = 0, len = allHeadings.length; i < len; ++i) {\n var currentHeading = allHeadings[i];\n\n if (eaelTocExclude(excludeArr, currentHeading)) {\n continue;\n }\n\n var latestLavel = parseInt(currentHeading.tagName.substr(1, 1));\n var diff = latestLavel - parentLevel;\n\n if (diff > 0) {\n var containerLiNode = ListNode.lastChild;\n\n if (containerLiNode) {\n var createUlNode = document.createElement(\"UL\");\n containerLiNode.appendChild(createUlNode);\n ListNode = createUlNode;\n parentLevel = latestLavel;\n }\n }\n\n var sequenceParent = false;\n\n if (diff < 0) {\n while (0 !== diff++) {\n if (ListNode.parentNode.parentNode) {\n ListNode = ListNode.parentNode.parentNode;\n }\n }\n\n parentLevel = latestLavel;\n sequenceParent = true;\n }\n\n if (ListNode.tagName !== \"UL\") {\n ListNode = listId;\n }\n\n if (currentHeading.textContent.trim() === \"\") {\n continue;\n }\n\n var liNode = document.createElement(\"LI\");\n var anchorTag = document.createElement(\"A\");\n var spanTag = document.createElement(\"SPAN\");\n\n if (baseTag === parentLevel || sequenceParent) {\n liNode.setAttribute(\"itemscope\", \"\");\n liNode.setAttribute(\"itemtype\", \"http://schema.org/ListItem\");\n liNode.setAttribute(\"itemprop\", \"itemListElement\");\n }\n\n var Linkid = \"#\" + i + \"-\" + eael_build_id(titleUrl, currentHeading.textContent);\n anchorTag.className = \"eael-toc-link\";\n anchorTag.setAttribute(\"itemprop\", \"item\");\n anchorTag.setAttribute(\"href\", Linkid);\n spanTag.appendChild(document.createTextNode(currentHeading.textContent));\n anchorTag.appendChild(spanTag);\n liNode.appendChild(anchorTag);\n ListNode.appendChild(liNode);\n }\n } // expand collapse\n\n\n $(document).on(\"click\", \"ul.eael-toc-list a\", function (e) {\n e.preventDefault();\n $(document).off(\"scroll\");\n var target = this.hash;\n history.pushState(\"\", document.title, window.location.pathname + window.location.search);\n var parentLi = $(this).parent();\n\n if (parentLi.is(\".eael-highlight-parent.eael-highlight-active\")) {\n $('html, body').animate({\n scrollTop: $(target).offset().top - offsetSpan\n }, 0);\n return false;\n }\n\n $(\".eael-highlight-active, .eael-highlight-parent\").removeClass(\"eael-highlight-active eael-highlight-parent\");\n $(this).closest(\".eael-first-child\").addClass(\"eael-highlight-parent\");\n $(this).parent().addClass(\"eael-highlight-active\");\n $('html, body').animate({\n scrollTop: $(target).offset().top - offsetSpan\n }, 0);\n }); //some site not working with **window.onscroll**\n\n window.addEventListener(\"scroll\", function (e) {\n eaelTocSticky();\n });\n var stickyScroll = $(\"#eael-toc\").data(\"stickyscroll\");\n /**\n * Check selector in array\n *\n * @param arr\n * @param el\n * @returns boolean\n */\n\n function eaelTocExclude(excludes, el) {\n return $(el).closest(excludes).length;\n }\n /**\n * check sticky\n */\n\n\n function eaelTocSticky() {\n var eaelToc = document.getElementById(\"eael-toc\");\n\n if (!eaelToc) {\n return;\n }\n\n stickyScroll = stickyScroll !== undefined ? stickyScroll : 200;\n\n if (window.pageYOffset >= stickyScroll && !eaelToc.classList.contains(\"eael-toc-disable\")) {\n eaelToc.classList.add(\"eael-sticky\");\n } else {\n eaelToc.classList.remove(\"eael-sticky\");\n }\n }\n /**\n *\n * @param content\n * @returns {string}\n */\n\n\n function eael_build_id(showTitle, title) {\n if (showTitle == \"true\" && title != \"\") {\n //create slug from Heading text\n return title.toString().toLowerCase().normalize(\"NFD\").trim().replace(/[^a-z0-9 -]/g, \"\").replace(/\\s+/g, \"-\").replace(/^-+/, \"\").replace(/-+$/, \"\").replace(/-+/g, \"-\");\n } else {\n return \"eael-table-of-content\";\n }\n }\n /**\n *\n * @returns {null|selector}\n */\n\n\n function eael_toc_check_content() {\n var eaelToc = document.getElementById(\"eael-toc\");\n\n if (eaelToc && eaelToc.dataset.contentselector) {\n return eaelToc.dataset.contentselector;\n }\n\n var contentSelectro = \".site-content\";\n\n if ($(\".site-content\")[0]) {\n contentSelectro = \".site-content\";\n } else if ($(\".elementor-inner\")[0]) {\n contentSelectro = \".elementor-inner\";\n } else if ($(\"#site-content\")[0]) {\n contentSelectro = \"#site-content\";\n } else if ($(\".site-main\")) {\n contentSelectro = \".site-main\";\n }\n\n return contentSelectro;\n } //toc auto collapse\n\n\n $(\"body\").click(function (e) {\n var target = $(e.target);\n var eaToc = $(\"#eael-toc\");\n\n if (eaToc.hasClass(\"eael-toc-auto-collapse\") && eaToc.hasClass(\"eael-sticky\") && !eaToc.hasClass(\"collapsed\") && $(target).closest(\"#eael-toc\").length === 0) {\n eaToc.toggleClass(\"collapsed\");\n }\n });\n $(document).on(\"click\", \".eael-toc-close ,.eael-toc-button\", function (event) {\n event.stopPropagation();\n $(\".eael-toc\").toggleClass(\"collapsed\");\n });\n\n function eael_build_toc($settings) {\n var pageSetting = $settings.settings,\n title = pageSetting.eael_ext_toc_title,\n toc_style_class = \"eael-toc-list eael-toc-list-\" + pageSetting.eael_ext_table_of_content_list_style,\n icon = pageSetting.eael_ext_table_of_content_header_icon.value,\n el_class = pageSetting.eael_ext_toc_position === \"right\" ? \" eael-toc-right\" : \" \";\n toc_style_class += pageSetting.eael_ext_toc_collapse_sub_heading === \"yes\" ? \" eael-toc-collapse\" : \" \";\n toc_style_class += pageSetting.eael_ext_toc_list_icon === \"number\" ? \" eael-toc-number\" : \" eael-toc-bullet\";\n return '<div id=\"eael-toc\" class=\"eael-toc eael-toc-disable ' + el_class + '\">' + '<div class=\"eael-toc-header\"><span class=\"eael-toc-close\">×</span><h2 class=\"eael-toc-title\">' + title + \"</h2></div>\" + '<div class=\"eael-toc-body\"><ul id=\"eael-toc-list\" class=\"' + toc_style_class + '\"></ul></div>' + '<button class=\"eael-toc-button\"><i class=\"' + icon + '\"></i><span>' + title + \"</span></button>\" + \"</div>\";\n }\n\n if (typeof ea !== 'undefined' && ea.isEditMode) {\n elementorFrontend.hooks.addAction(\"frontend/element_ready/widget\", function ($scope, jQuery) {\n var tocLoad = jQuery(\"#eael-toc #eael-toc-list\");\n var TocList = tocLoad.find(\"li.eael-first-child\");\n\n if (TocList.length < 1 && tocLoad.length >= 1) {\n var tagList = jQuery(\"#eael-toc\").data(\"eaeltoctag\");\n\n if (tagList) {\n eael_toc_content(eael_toc_check_content(), tagList);\n }\n }\n });\n }\n\n var editMode = typeof isEditMode !== 'undefined' ? isEditMode : false;\n var intSupportTag = $(\"#eael-toc\").data(\"eaeltoctag\");\n\n if (intSupportTag !== \"\" && !editMode) {\n eael_toc_content(eael_toc_check_content(), intSupportTag);\n }\n });\n})(jQuery);\n\n//# sourceURL=webpack:///./src/js/view/table-of-content.js?");
97
 
98
  /***/ })
99
 
assets/front-end/js/view/table-of-content.min.js CHANGED
@@ -1 +1 @@
1
- !function(e){var t={};function n(a){if(t[a])return t[a].exports;var o=t[a]={i:a,l:!1,exports:{}};return e[a].call(o.exports,o,o.exports,n),o.l=!0,o.exports}n.m=e,n.c=t,n.d=function(e,t,a){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:a})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var a=Object.create(null);if(n.r(a),Object.defineProperty(a,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)n.d(a,o,function(t){return e[t]}.bind(null,o));return a},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=21)}({21:function(e,t){function n(e){return function(e){if(Array.isArray(e))return a(e)}(e)||function(e){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(e))return Array.from(e)}(e)||function(e,t){if(!e)return;if("string"==typeof e)return a(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return a(e,t)}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function a(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,a=new Array(t);n<t;n++)a[n]=e[n];return a}var o;o=jQuery,jQuery(document).ready((function(){var e,t=o("header").height(),a=null!==(e=0!==(e=o("#eael-toc").data("page_offset"))&&void 0!==e?e:null)?e:void 0!==t&&0!==t?t+10:120;function r(e,t){var a=document.getElementById("eael-toc-list");if(null===e||void 0===t||!a)return null;for(var r=document.getElementById("eael-toc"),l=void 0!==r.dataset.titleurl?r.dataset.titleurl:"false",s=void 0!==r.dataset.excludeSelector?r.dataset.excludeSelector.replace(/^,|,$/g,""):"",d=[],u=document.querySelectorAll(e),f=0,m=0;m<u.length;m++)d=[].concat(n(d),n(u[m].querySelectorAll(t)));(d=Array.from(new Set(d))).forEach((function(e){i(s,e)||(e.id=f+"-"+c(l,e.textContent),e.classList.add("eael-heading-content"),f++)})),function(e,t,n){var a=t,o=n,r=document.getElementById("eael-toc"),l=void 0!==r.dataset.titleurl?r.dataset.titleurl:"false",s=document.getElementById("eael-toc-list"),d=void 0!==r.dataset.excludeselector?r.dataset.excludeselector.replace(/^,|,$/g,""):"",u="",f=u=a.trim().split(",")[0].substr(1,1),m=s;s.innerHTML="",o.length>0&&document.getElementById("eael-toc").classList.remove("eael-toc-disable");for(var p=0,h=o.length;p<h;++p){var g=o[p];if(!i(d,g)){var v=parseInt(g.tagName.substr(1,1)),y=v-u;if(y>0){var b=m.lastChild;if(b){var C=document.createElement("UL");b.appendChild(C),m=C,u=v}}var E=!1;if(y<0){for(;0!=y++;)m.parentNode.parentNode&&(m=m.parentNode.parentNode);u=v,E=!0}if("UL"!==m.tagName&&(m=s),""!==g.textContent.trim()){var A=document.createElement("LI"),S=document.createElement("A"),w=document.createElement("SPAN");(f===u||E)&&(A.setAttribute("itemscope",""),A.setAttribute("itemtype","http://schema.org/ListItem"),A.setAttribute("itemprop","itemListElement"));var L="#"+p+"-"+c(l,g.textContent);S.className="eael-toc-link",S.setAttribute("itemprop","item"),S.setAttribute("href",L),w.appendChild(document.createTextNode(g.textContent)),S.appendChild(w),A.appendChild(S),m.appendChild(A)}}}}(0,t,d);var p=o("ul.eael-toc-list > li");p.length<1&&document.getElementById("eael-toc").classList.add("eael-toc-disable"),p.each((function(){this.classList.add("eael-first-child")}))}o(document).on("click","ul.eael-toc-list a",(function(e){e.preventDefault(),o(document).off("scroll");var t=this.hash;if(history.pushState("",document.title,window.location.pathname+window.location.search),o(this).parent().is(".eael-highlight-parent.eael-highlight-active"))return o("html, body").animate({scrollTop:o(t).offset().top-a},0),!1;o(".eael-highlight-active, .eael-highlight-parent").removeClass("eael-highlight-active eael-highlight-parent"),o(this).closest(".eael-first-child").addClass("eael-highlight-parent"),o(this).parent().addClass("eael-highlight-active"),o("html, body").animate({scrollTop:o(t).offset().top-a},0)})),window.addEventListener("scroll",(function(e){var t;(t=document.getElementById("eael-toc"))&&(l=void 0!==l?l:200,window.pageYOffset>=l&&!t.classList.contains("eael-toc-disable")?t.classList.add("eael-sticky"):t.classList.remove("eael-sticky"))}));var l=o("#eael-toc").data("stickyscroll");function i(e,t){return o(t).closest(e).length}function c(e,t){return"true"==e&&""!=t?t.toString().toLowerCase().normalize("NFD").trim().replace(/[^a-z0-9 -]/g,"").replace(/\s+/g,"-").replace(/^-+/,"").replace(/-+$/,"").replace(/-+/g,"-"):"eael-table-of-content"}function s(){var e=document.getElementById("eael-toc");if(e&&e.dataset.contentselector)return e.dataset.contentselector;var t=".site-content";return o(".site-content")[0]?t=".site-content":o(".elementor-inner")[0]?t=".elementor-inner":o("#site-content")[0]?t="#site-content":o(".site-main")&&(t=".site-main"),t}o("body").click((function(e){var t=o(e.target),n=o("#eael-toc");n.hasClass("eael-toc-auto-collapse")&&n.hasClass("eael-sticky")&&!n.hasClass("collapsed")&&0===o(t).closest("#eael-toc").length&&n.toggleClass("collapsed")})),o(document).on("click",".eael-toc-close ,.eael-toc-button",(function(e){e.stopPropagation(),o(".eael-toc").toggleClass("collapsed")})),"undefined"!=typeof ea&&ea.isEditMode&&elementorFrontend.hooks.addAction("frontend/element_ready/widget",(function(e,t){var n=t("#eael-toc #eael-toc-list");if(n.find("li.eael-first-child").length<1&&n.length>=1){var a=t("#eael-toc").data("eaeltoctag");a&&r(s(),a)}}));var d="undefined"!=typeof isEditMode&&isEditMode,u=o("#eael-toc").data("eaeltoctag");""===u||d||r(s(),u)}))}});
1
+ !function(e){var t={};function n(a){if(t[a])return t[a].exports;var o=t[a]={i:a,l:!1,exports:{}};return e[a].call(o.exports,o,o.exports,n),o.l=!0,o.exports}n.m=e,n.c=t,n.d=function(e,t,a){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:a})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var a=Object.create(null);if(n.r(a),Object.defineProperty(a,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var o in e)n.d(a,o,function(t){return e[t]}.bind(null,o));return a},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=21)}({21:function(e,t){function n(e){return function(e){if(Array.isArray(e))return a(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||function(e,t){if(!e)return;if("string"==typeof e)return a(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return a(e,t)}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function a(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,a=new Array(t);n<t;n++)a[n]=e[n];return a}var o;o=jQuery,jQuery(document).ready((function(){var e,t=o("header").height(),a=null!==(e=0!==(e=o("#eael-toc").data("page_offset"))&&void 0!==e?e:null)?e:void 0!==t&&0!==t?t+10:120;function l(e,t){var a=document.getElementById("eael-toc-list");if(null===e||void 0===t||!a)return null;for(var l=document.getElementById("eael-toc"),r=void 0!==l.dataset.titleurl?l.dataset.titleurl:"false",s=void 0!==l.dataset.excludeSelector?l.dataset.excludeSelector.replace(/^,|,$/g,""):"",d=[],u=document.querySelectorAll(e),f=0,m=0;m<u.length;m++)d=[].concat(n(d),n(u[m].querySelectorAll(t)));(d=Array.from(new Set(d))).forEach((function(e){i(s,e)||(e.id=f+"-"+c(r,e.textContent),e.classList.add("eael-heading-content"),f++)})),function(e,t,n){var a=t,o=n,l=document.getElementById("eael-toc"),r=void 0!==l.dataset.titleurl?l.dataset.titleurl:"false",s=document.getElementById("eael-toc-list"),d=void 0!==l.dataset.excludeselector?l.dataset.excludeselector.replace(/^,|,$/g,""):"",u="",f=u=a.trim().split(",")[0].substr(1,1),m=s;s.innerHTML="",o.length>0&&document.getElementById("eael-toc").classList.remove("eael-toc-disable");for(var p=0,h=o.length;p<h;++p){var g=o[p];if(!i(d,g)){var v=parseInt(g.tagName.substr(1,1)),y=v-u;if(y>0){var b=m.lastChild;if(b){var C=document.createElement("UL");b.appendChild(C),m=C,u=v}}var E=!1;if(y<0){for(;0!=y++;)m.parentNode.parentNode&&(m=m.parentNode.parentNode);u=v,E=!0}if("UL"!==m.tagName&&(m=s),""!==g.textContent.trim()){var A=document.createElement("LI"),S=document.createElement("A"),w=document.createElement("SPAN");(f===u||E)&&(A.setAttribute("itemscope",""),A.setAttribute("itemtype","http://schema.org/ListItem"),A.setAttribute("itemprop","itemListElement"));var L="#"+p+"-"+c(r,g.textContent);S.className="eael-toc-link",S.setAttribute("itemprop","item"),S.setAttribute("href",L),w.appendChild(document.createTextNode(g.textContent)),S.appendChild(w),A.appendChild(S),m.appendChild(A)}}}}(0,t,d);var p=o("ul.eael-toc-list > li");p.length<1&&document.getElementById("eael-toc").classList.add("eael-toc-disable"),p.each((function(){this.classList.add("eael-first-child")}))}o(document).on("click","ul.eael-toc-list a",(function(e){e.preventDefault(),o(document).off("scroll");var t=this.hash;if(history.pushState("",document.title,window.location.pathname+window.location.search),o(this).parent().is(".eael-highlight-parent.eael-highlight-active"))return o("html, body").animate({scrollTop:o(t).offset().top-a},0),!1;o(".eael-highlight-active, .eael-highlight-parent").removeClass("eael-highlight-active eael-highlight-parent"),o(this).closest(".eael-first-child").addClass("eael-highlight-parent"),o(this).parent().addClass("eael-highlight-active"),o("html, body").animate({scrollTop:o(t).offset().top-a},0)})),window.addEventListener("scroll",(function(e){var t;(t=document.getElementById("eael-toc"))&&(r=void 0!==r?r:200,window.pageYOffset>=r&&!t.classList.contains("eael-toc-disable")?t.classList.add("eael-sticky"):t.classList.remove("eael-sticky"))}));var r=o("#eael-toc").data("stickyscroll");function i(e,t){return o(t).closest(e).length}function c(e,t){return"true"==e&&""!=t?t.toString().toLowerCase().normalize("NFD").trim().replace(/[^a-z0-9 -]/g,"").replace(/\s+/g,"-").replace(/^-+/,"").replace(/-+$/,"").replace(/-+/g,"-"):"eael-table-of-content"}function s(){var e=document.getElementById("eael-toc");if(e&&e.dataset.contentselector)return e.dataset.contentselector;var t=".site-content";return o(".site-content")[0]?t=".site-content":o(".elementor-inner")[0]?t=".elementor-inner":o("#site-content")[0]?t="#site-content":o(".site-main")&&(t=".site-main"),t}o("body").click((function(e){var t=o(e.target),n=o("#eael-toc");n.hasClass("eael-toc-auto-collapse")&&n.hasClass("eael-sticky")&&!n.hasClass("collapsed")&&0===o(t).closest("#eael-toc").length&&n.toggleClass("collapsed")})),o(document).on("click",".eael-toc-close ,.eael-toc-button",(function(e){e.stopPropagation(),o(".eael-toc").toggleClass("collapsed")})),"undefined"!=typeof ea&&ea.isEditMode&&elementorFrontend.hooks.addAction("frontend/element_ready/widget",(function(e,t){var n=t("#eael-toc #eael-toc-list");if(n.find("li.eael-first-child").length<1&&n.length>=1){var a=t("#eael-toc").data("eaeltoctag");a&&l(s(),a)}}));var d="undefined"!=typeof isEditMode&&isEditMode,u=o("#eael-toc").data("eaeltoctag");""===u||d||l(s(),u)}))}});
assets/front-end/js/view/woo-product-carousel.js CHANGED
@@ -93,7 +93,7 @@
93
  /*! no static exports found */
94
  /***/ (function(module, exports) {
95
 
96
- eval("function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }\n\nfunction _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }\n\nfunction _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }\n\nea.hooks.addAction(\"init\", \"ea\", function () {\n var wooProductCarousel = function wooProductCarousel($scope, $) {\n var $wooProductCarousel = $scope.find(\".eael-woo-product-carousel\").eq(0),\n $type = $wooProductCarousel.data(\"type\"),\n $autoplay = $wooProductCarousel.data(\"autoplay\") !== undefined ? $wooProductCarousel.data(\"autoplay\") : 999999,\n $pagination = $wooProductCarousel.data(\"pagination\") !== undefined ? $wooProductCarousel.data(\"pagination\") : \".swiper-pagination\",\n $arrow_next = $wooProductCarousel.data(\"arrow-next\") !== undefined ? $wooProductCarousel.data(\"arrow-next\") : \".swiper-button-next\",\n $arrow_prev = $wooProductCarousel.data(\"arrow-prev\") !== undefined ? $wooProductCarousel.data(\"arrow-prev\") : \".swiper-button-prev\",\n $items = $wooProductCarousel.data(\"items\") !== undefined ? $wooProductCarousel.data(\"items\") : 3,\n $items_tablet = $wooProductCarousel.data(\"items-tablet\") !== undefined ? $wooProductCarousel.data(\"items-tablet\") : 3,\n $items_mobile = $wooProductCarousel.data(\"items-mobile\") !== undefined ? $wooProductCarousel.data(\"items-mobile\") : 3,\n $margin = $wooProductCarousel.data(\"margin\") !== undefined ? $wooProductCarousel.data(\"margin\") : 10,\n $margin_tablet = $wooProductCarousel.data(\"margin-tablet\") !== undefined ? $wooProductCarousel.data(\"margin-tablet\") : 10,\n $margin_mobile = $wooProductCarousel.data(\"margin-mobile\") !== undefined ? $wooProductCarousel.data(\"margin-mobile\") : 0,\n $effect = $wooProductCarousel.data(\"effect\") !== undefined ? $wooProductCarousel.data(\"effect\") : \"slide\",\n $speed = $wooProductCarousel.data(\"speed\") !== undefined ? $wooProductCarousel.data(\"speed\") : 400,\n $loop = $wooProductCarousel.data(\"loop\") !== undefined ? $wooProductCarousel.data(\"loop\") : 0,\n $grab_cursor = $wooProductCarousel.data(\"grab-cursor\") !== undefined ? $wooProductCarousel.data(\"grab-cursor\") : 0,\n $pause_on_hover = $wooProductCarousel.data(\"pause-on-hover\") !== undefined ? $wooProductCarousel.data(\"pause-on-hover\") : \"\",\n $centeredSlides = $effect == \"coverflow\" ? true : false,\n $depth = $wooProductCarousel.data(\"depth\") !== undefined ? $wooProductCarousel.data(\"depth\") : 100,\n $rotate = $wooProductCarousel.data(\"rotate\") !== undefined ? $wooProductCarousel.data(\"rotate\") : 50,\n $stretch = $wooProductCarousel.data(\"stretch\") !== undefined ? $wooProductCarousel.data(\"stretch\") : 10;\n var $carouselOptions = {\n direction: \"horizontal\",\n speed: $speed,\n effect: $effect,\n centeredSlides: $centeredSlides,\n grabCursor: $grab_cursor,\n autoHeight: true,\n loop: $loop,\n slidesPerGroup: 1,\n autoplay: {\n delay: $autoplay,\n disableOnInteraction: false\n },\n pagination: {\n el: $pagination,\n clickable: true\n },\n navigation: {\n nextEl: $arrow_next,\n prevEl: $arrow_prev\n },\n slidesPerView: $items\n };\n\n if ($effect === 'slide') {\n $carouselOptions.breakpoints = {\n 1024: {\n slidesPerView: $items,\n spaceBetween: $margin\n },\n 768: {\n slidesPerView: $items_tablet,\n spaceBetween: $margin_tablet\n },\n 320: {\n slidesPerView: $items_mobile,\n spaceBetween: $margin_mobile\n }\n };\n }\n\n if ($effect === 'coverflow') {\n // $carouselOptions.slidesPerView = 'auto';\n $carouselOptions.coverflowEffect = {\n rotate: $rotate,\n stretch: $stretch,\n depth: $depth,\n modifier: 1,\n slideShadows: false\n };\n }\n\n swiperLoader($wooProductCarousel, $carouselOptions).then(function (eaelWooProductCarousel) {\n if ($autoplay === 0) {\n eaelWooProductCarousel.autoplay.stop();\n }\n\n if ($pause_on_hover && $autoplay !== 0) {\n $wooProductCarousel.on(\"mouseenter\", function () {\n eaelWooProductCarousel.autoplay.stop();\n });\n $wooProductCarousel.on(\"mouseleave\", function () {\n eaelWooProductCarousel.autoplay.start();\n });\n } //gallery pagination\n\n\n var $paginationGallerySelector = $scope.find('.eael-woo-product-carousel-container .eael-woo-product-carousel-gallary-pagination').eq(0);\n\n if ($paginationGallerySelector.length > 0) {\n swiperLoader($paginationGallerySelector, {\n spaceBetween: 20,\n centeredSlides: $centeredSlides,\n touchRatio: 0.2,\n slideToClickedSlide: true,\n loop: $loop,\n slidesPerGroup: 1,\n // loopedSlides: $items,\n slidesPerView: 3\n }).then(function ($paginationGallerySlider) {\n eaelWooProductCarousel.controller.control = $paginationGallerySlider;\n $paginationGallerySlider.controller.control = eaelWooProductCarousel;\n });\n }\n }); // Quick view\n\n $scope.on(\"click\", \".open-popup-link\", function (e) {\n e.preventDefault();\n e.stopPropagation();\n var $this = $(this);\n var quickview_setting = $this.data('quickview-setting');\n var popup_view = $(\".eael-woocommerce-popup-view\");\n popup_view.find(\".eael-popup-details-render\").html('<div class=\"eael-preloader\"></div>');\n popup_view.addClass(\"eael-product-popup-ready\").removeClass(\"eael-product-modal-removing\");\n popup_view.show();\n $.ajax({\n url: localize.ajaxurl,\n type: \"post\",\n data: _objectSpread(_objectSpread({\n action: \"eael_product_quickview_popup\"\n }, quickview_setting), {}, {\n security: localize.nonce\n }),\n success: function success(response) {\n if (response.success) {\n var product_preview = $(response.data);\n var popup_details = product_preview.children(\".eael-product-popup-details\");\n popup_details.find(\".variations_form\").wc_variation_form();\n var popup_view_render = popup_view.find(\".eael-popup-details-render\");\n popup_view.find(\".eael-popup-details-render\").html(popup_details);\n var product_gallery = popup_view.find(\".woocommerce-product-gallery\");\n product_gallery.css(\"opacity\", 1);\n popup_view_render.addClass(\"elementor-\" + quickview_setting.page_id);\n popup_view_render.children().addClass(\"elementor-element elementor-element-\" + quickview_setting.widget_id);\n\n if (popup_details.height() > 400) {\n popup_details.css(\"height\", \"75vh\");\n } else {\n popup_details.css(\"height\", \"auto\");\n }\n\n setTimeout(function () {\n product_gallery.wc_product_gallery();\n }, 1000);\n }\n }\n });\n });\n $(document).on(\"keypress\", \".eael-product-details-wrap input[type=number]\", function (e) {\n var keyValue = e.keyCode || e.which;\n var regex = /^[0-9]+$/;\n var isValid = regex.test(String.fromCharCode(keyValue));\n\n if (!isValid) {\n return false;\n }\n\n return isValid;\n }); // handle add to cart for quick view\n\n $(document).on(\"click\", \".eael-woo-slider-popup .single_add_to_cart_button\", function (e) {\n e.preventDefault();\n e.stopImmediatePropagation();\n var $this = $(this),\n product_id = $(this).val(),\n variation_id = $this.closest(\"form.cart\").find('input[name=\"variation_id\"]').val() || \"\",\n quantity = $this.closest(\"form.cart\").find('input[name=\"quantity\"]').val(),\n items = $this.closest(\"form.cart.grouped_form\"),\n form = $this.closest(\"form.cart\"),\n product_data = [];\n items = items.serializeArray();\n\n if (form.hasClass(\"variations_form\")) {\n product_id = form.find('input[name=\"product_id\"]').val();\n }\n\n if (items.length > 0) {\n items.forEach(function (item, index) {\n var p_id = parseInt(item.name.replace(/[^\\d.]/g, \"\"), 10);\n\n if (item.name.indexOf(\"quantity[\") >= 0 && item.value != \"\" && p_id > 0) {\n product_data[product_data.length] = {\n product_id: p_id,\n quantity: item.value,\n variation_id: 0\n };\n }\n });\n } else {\n product_data[0] = {\n product_id: product_id,\n quantity: quantity,\n variation_id: variation_id\n };\n }\n\n $this.removeClass(\"eael-addtocart-added\");\n $this.addClass(\"eael-addtocart-loading\");\n $.ajax({\n url: localize.ajaxurl,\n type: \"post\",\n data: {\n action: \"eael_product_add_to_cart\",\n product_data: product_data,\n eael_add_to_cart_nonce: localize.nonce,\n cart_item_data: form.serializeArray()\n },\n success: function success(response) {\n if (response.success) {\n $(document.body).trigger(\"wc_fragment_refresh\");\n $this.removeClass(\"eael-addtocart-loading\");\n $this.addClass(\"eael-addtocart-added\");\n }\n }\n });\n });\n $(document).on(\"click\", \".eael-product-popup-close\", function (event) {\n event.stopPropagation();\n $(\".eael-product-popup\").addClass(\"eael-product-modal-removing\").removeClass(\"eael-product-popup-ready\");\n });\n $(document).on(\"click\", function (event) {\n if (event.target.closest(\".eael-product-popup-details\")) return;\n $(\".eael-product-popup.eael-product-zoom-in.eael-product-popup-ready\").addClass(\"eael-product-modal-removing\").removeClass(\"eael-product-popup-ready\"); //\n });\n\n if (isEditMode) {\n $(\".eael-product-image-wrap .woocommerce-product-gallery\").css(\"opacity\", \"1\");\n }\n };\n\n var swiperLoader = function swiperLoader(swiperElement, swiperConfig) {\n if ('undefined' === typeof Swiper) {\n var asyncSwiper = elementorFrontend.utils.swiper;\n return new asyncSwiper(swiperElement, swiperConfig).then(function (newSwiperInstance) {\n return newSwiperInstance;\n });\n } else {\n return swiperPromise(swiperElement, swiperConfig);\n }\n };\n\n var swiperPromise = function swiperPromise(swiperElement, swiperConfig) {\n return new Promise(function (resolve, reject) {\n var swiperInstance = new Swiper(swiperElement, swiperConfig);\n resolve(swiperInstance);\n });\n };\n\n elementorFrontend.hooks.addAction(\"frontend/element_ready/eael-woo-product-carousel.default\", wooProductCarousel);\n});\n\n//# sourceURL=webpack:///./src/js/view/woo-product-carousel.js?");
97
 
98
  /***/ })
99
 
93
  /*! no static exports found */
94
  /***/ (function(module, exports) {
95
 
96
+ eval("function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) { symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); } keys.push.apply(keys, symbols); } return keys; }\n\nfunction _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }\n\nfunction _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }\n\nea.hooks.addAction(\"init\", \"ea\", function () {\n var wooProductCarousel = function wooProductCarousel($scope, $) {\n var $wooProductCarousel = $scope.find(\".eael-woo-product-carousel\").eq(0),\n $type = $wooProductCarousel.data(\"type\"),\n $autoplay = $wooProductCarousel.data(\"autoplay\") !== undefined ? $wooProductCarousel.data(\"autoplay\") : 999999,\n $pagination = $wooProductCarousel.data(\"pagination\") !== undefined ? $wooProductCarousel.data(\"pagination\") : \".swiper-pagination\",\n $arrow_next = $wooProductCarousel.data(\"arrow-next\") !== undefined ? $wooProductCarousel.data(\"arrow-next\") : \".swiper-button-next\",\n $arrow_prev = $wooProductCarousel.data(\"arrow-prev\") !== undefined ? $wooProductCarousel.data(\"arrow-prev\") : \".swiper-button-prev\",\n $items = $wooProductCarousel.data(\"items\") !== undefined ? $wooProductCarousel.data(\"items\") : 3,\n $items_tablet = $wooProductCarousel.data(\"items-tablet\") !== undefined ? $wooProductCarousel.data(\"items-tablet\") : 3,\n $items_mobile = $wooProductCarousel.data(\"items-mobile\") !== undefined ? $wooProductCarousel.data(\"items-mobile\") : 3,\n $margin = $wooProductCarousel.data(\"margin\") !== undefined ? $wooProductCarousel.data(\"margin\") : 10,\n $margin_tablet = $wooProductCarousel.data(\"margin-tablet\") !== undefined ? $wooProductCarousel.data(\"margin-tablet\") : 10,\n $margin_mobile = $wooProductCarousel.data(\"margin-mobile\") !== undefined ? $wooProductCarousel.data(\"margin-mobile\") : 0,\n $effect = $wooProductCarousel.data(\"effect\") !== undefined ? $wooProductCarousel.data(\"effect\") : \"slide\",\n $speed = $wooProductCarousel.data(\"speed\") !== undefined ? $wooProductCarousel.data(\"speed\") : 400,\n $loop = $wooProductCarousel.data(\"loop\") !== undefined ? $wooProductCarousel.data(\"loop\") : 0,\n $grab_cursor = $wooProductCarousel.data(\"grab-cursor\") !== undefined ? $wooProductCarousel.data(\"grab-cursor\") : 0,\n $pause_on_hover = $wooProductCarousel.data(\"pause-on-hover\") !== undefined ? $wooProductCarousel.data(\"pause-on-hover\") : \"\",\n $centeredSlides = $effect == \"coverflow\" ? true : false,\n $depth = $wooProductCarousel.data(\"depth\") !== undefined ? $wooProductCarousel.data(\"depth\") : 100,\n $rotate = $wooProductCarousel.data(\"rotate\") !== undefined ? $wooProductCarousel.data(\"rotate\") : 50,\n $stretch = $wooProductCarousel.data(\"stretch\") !== undefined ? $wooProductCarousel.data(\"stretch\") : 10;\n var $carouselOptions = {\n direction: \"horizontal\",\n speed: $speed,\n effect: $effect,\n centeredSlides: $centeredSlides,\n grabCursor: $grab_cursor,\n autoHeight: true,\n loop: $loop,\n slidesPerGroup: 1,\n autoplay: {\n delay: $autoplay,\n disableOnInteraction: false\n },\n pagination: {\n el: $pagination,\n clickable: true\n },\n navigation: {\n nextEl: $arrow_next,\n prevEl: $arrow_prev\n },\n slidesPerView: $items\n };\n\n if ($effect === 'slide') {\n $carouselOptions.breakpoints = {\n 1024: {\n slidesPerView: $items,\n spaceBetween: $margin\n },\n 768: {\n slidesPerView: $items_tablet,\n spaceBetween: $margin_tablet\n },\n 320: {\n slidesPerView: $items_mobile,\n spaceBetween: $margin_mobile\n }\n };\n }\n\n if ($effect === 'coverflow') {\n // $carouselOptions.slidesPerView = 'auto';\n $carouselOptions.coverflowEffect = {\n rotate: $rotate,\n stretch: $stretch,\n depth: $depth,\n modifier: 1,\n slideShadows: false\n };\n }\n\n swiperLoader($wooProductCarousel, $carouselOptions).then(function (eaelWooProductCarousel) {\n if ($autoplay === 0) {\n eaelWooProductCarousel.autoplay.stop();\n }\n\n if ($pause_on_hover && $autoplay !== 0) {\n $wooProductCarousel.on(\"mouseenter\", function () {\n eaelWooProductCarousel.autoplay.stop();\n });\n $wooProductCarousel.on(\"mouseleave\", function () {\n eaelWooProductCarousel.autoplay.start();\n });\n } //gallery pagination\n\n\n var $paginationGallerySelector = $scope.find('.eael-woo-product-carousel-container .eael-woo-product-carousel-gallary-pagination').eq(0);\n\n if ($paginationGallerySelector.length > 0) {\n swiperLoader($paginationGallerySelector, {\n spaceBetween: 20,\n centeredSlides: $centeredSlides,\n touchRatio: 0.2,\n slideToClickedSlide: true,\n loop: $loop,\n slidesPerGroup: 1,\n // loopedSlides: $items,\n slidesPerView: 3\n }).then(function ($paginationGallerySlider) {\n eaelWooProductCarousel.controller.control = $paginationGallerySlider;\n $paginationGallerySlider.controller.control = eaelWooProductCarousel;\n });\n }\n }); // Quick view\n\n $scope.on(\"click\", \".open-popup-link\", function (e) {\n e.preventDefault();\n e.stopPropagation();\n var $this = $(this);\n var quickview_setting = $this.data('quickview-setting');\n var popup_view = $(\".eael-woocommerce-popup-view\");\n popup_view.find(\".eael-popup-details-render\").html('<div class=\"eael-preloader\"></div>');\n popup_view.addClass(\"eael-product-popup-ready\").removeClass(\"eael-product-modal-removing\");\n popup_view.show();\n $.ajax({\n url: localize.ajaxurl,\n type: \"post\",\n data: _objectSpread(_objectSpread({\n action: \"eael_product_quickview_popup\"\n }, quickview_setting), {}, {\n security: localize.nonce\n }),\n success: function success(response) {\n if (response.success) {\n var product_preview = $(response.data);\n var popup_details = product_preview.children(\".eael-product-popup-details\");\n popup_details.find(\".variations_form\").wc_variation_form();\n var popup_view_render = popup_view.find(\".eael-popup-details-render\");\n popup_view.find(\".eael-popup-details-render\").html(popup_details);\n var product_gallery = popup_view.find(\".woocommerce-product-gallery\");\n product_gallery.css(\"opacity\", 1);\n popup_view_render.addClass(\"elementor-\" + quickview_setting.page_id);\n popup_view_render.children().addClass(\"elementor-element elementor-element-\" + quickview_setting.widget_id);\n\n if (popup_details.height() > 400) {\n popup_details.css(\"height\", \"75vh\");\n } else {\n popup_details.css(\"height\", \"auto\");\n }\n\n setTimeout(function () {\n product_gallery.wc_product_gallery();\n }, 1000);\n }\n }\n });\n });\n $(document).on(\"keypress\", \".eael-product-details-wrap input[type=number]\", function (e) {\n var keyValue = e.keyCode || e.which;\n var regex = /^[0-9]+$/;\n var isValid = regex.test(String.fromCharCode(keyValue));\n\n if (!isValid) {\n return false;\n }\n\n return isValid;\n }); // handle add to cart for quick view\n\n $(document).on(\"click\", \".eael-woo-slider-popup .single_add_to_cart_button\", function (e) {\n e.preventDefault();\n e.stopImmediatePropagation();\n var $this = $(this),\n product_id = $(this).val(),\n variation_id = $this.closest(\"form.cart\").find('input[name=\"variation_id\"]').val() || \"\",\n quantity = $this.closest(\"form.cart\").find('input[name=\"quantity\"]').val(),\n items = $this.closest(\"form.cart.grouped_form\"),\n form = $this.closest(\"form.cart\"),\n product_data = [];\n items = items.serializeArray();\n\n if (form.hasClass(\"variations_form\")) {\n product_id = form.find('input[name=\"product_id\"]').val();\n }\n\n if (items.length > 0) {\n items.forEach(function (item, index) {\n var p_id = parseInt(item.name.replace(/[^\\d.]/g, \"\"), 10);\n\n if (item.name.indexOf(\"quantity[\") >= 0 && item.value != \"\" && p_id > 0) {\n product_data[product_data.length] = {\n product_id: p_id,\n quantity: item.value,\n variation_id: 0\n };\n }\n });\n } else {\n product_data[0] = {\n product_id: product_id,\n quantity: quantity,\n variation_id: variation_id\n };\n }\n\n $this.removeClass(\"eael-addtocart-added\");\n $this.addClass(\"eael-addtocart-loading\");\n $.ajax({\n url: localize.ajaxurl,\n type: \"post\",\n data: {\n action: \"eael_product_add_to_cart\",\n product_data: product_data,\n eael_add_to_cart_nonce: localize.nonce,\n cart_item_data: form.serializeArray()\n },\n success: function success(response) {\n if (response.success) {\n $(document.body).trigger(\"wc_fragment_refresh\");\n $this.removeClass(\"eael-addtocart-loading\");\n $this.addClass(\"eael-addtocart-added\");\n }\n }\n });\n });\n $(document).on(\"click\", \".eael-product-popup-close\", function (event) {\n event.stopPropagation();\n $(\".eael-product-popup\").addClass(\"eael-product-modal-removing\").removeClass(\"eael-product-popup-ready\");\n });\n $(document).on(\"click\", function (event) {\n if (event.target.closest(\".eael-product-popup-details\")) return;\n $(\".eael-product-popup.eael-product-zoom-in.eael-product-popup-ready\").addClass(\"eael-product-modal-removing\").removeClass(\"eael-product-popup-ready\"); //\n });\n\n if (isEditMode) {\n $(\".eael-product-image-wrap .woocommerce-product-gallery\").css(\"opacity\", \"1\");\n }\n };\n\n var swiperLoader = function swiperLoader(swiperElement, swiperConfig) {\n if ('undefined' === typeof Swiper) {\n var asyncSwiper = elementorFrontend.utils.swiper;\n return new asyncSwiper(swiperElement, swiperConfig).then(function (newSwiperInstance) {\n return newSwiperInstance;\n });\n } else {\n return swiperPromise(swiperElement, swiperConfig);\n }\n };\n\n var swiperPromise = function swiperPromise(swiperElement, swiperConfig) {\n return new Promise(function (resolve, reject) {\n var swiperInstance = new Swiper(swiperElement, swiperConfig);\n resolve(swiperInstance);\n });\n };\n\n elementorFrontend.hooks.addAction(\"frontend/element_ready/eael-woo-product-carousel.default\", wooProductCarousel);\n});\n\n//# sourceURL=webpack:///./src/js/view/woo-product-carousel.js?");
97
 
98
  /***/ })
99
 
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: 4.7.1
8
  * Author URI: https://wpdeveloper.net/
9
  * Text Domain: essential-addons-for-elementor-lite
10
  * Domain Path: /languages
11
  *
12
- * WC tested up to: 5.3.0
13
  * Elementor tested up to: 3.2.4
14
- * Elementor Pro tested up to: 3.2.2
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', '4.7.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
  /**
4
  * Description: The Essential plugin you install after Elementor! Packed with 40+ stunning free elements including Advanced Data Table, Event Calendar, Filterable Gallery, WooCommerce, and many more.
5
  * Plugin URI: https://essential-addons.com/elementor/
6
  * Author: WPDeveloper
7
+ * Version: 4.7.2
8
  * Author URI: https://wpdeveloper.net/
9
  * Text Domain: essential-addons-for-elementor-lite
10
  * Domain Path: /languages
11
  *
12
+ * WC tested up to: 5.4.1
13
  * Elementor tested up to: 3.2.4
14
+ * Elementor Pro tested up to: 3.3.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', '4.7.2');
31
  define('EAEL_ASSET_PATH', wp_upload_dir()['basedir'] . '/essential-addons-elementor');
32
  define('EAEL_ASSET_URL', wp_upload_dir()['baseurl'] . '/essential-addons-elementor');
33
  /**
includes/Classes/Bootstrap.php CHANGED
@@ -6,7 +6,6 @@ if (!defined('ABSPATH')) {
6
  exit;
7
  } // Exit if accessed directly
8
 
9
- use Essential_Addons_Elementor\Classes\WPML\Eael_WPML;
10
  use Essential_Addons_Elementor\Traits\Admin;
11
  use Essential_Addons_Elementor\Traits\Core;
12
  use Essential_Addons_Elementor\Traits\Elements;
@@ -29,7 +28,6 @@ class Bootstrap
29
  use Enqueue;
30
  use Admin;
31
  use Elements;
32
- use Eael_WPML;
33
  use Login_Registration;
34
  use Woo_Product_Comparable;
35
  use Controls;
@@ -131,7 +129,6 @@ class Bootstrap
131
  add_filter('eael/active_plugins', [$this, 'is_plugin_active'], 10, 1);
132
 
133
  add_filter('eael/is_plugin_active', [$this, 'is_plugin_active'], 10, 1);
134
- add_filter('wpml_elementor_widgets_to_translate', [$this, 'translatable_widgets']);
135
  add_action('elementor/editor/after_save', array($this, 'save_global_values'), 10, 2);
136
 
137
  // Enqueue
6
  exit;
7
  } // Exit if accessed directly
8
 
 
9
  use Essential_Addons_Elementor\Traits\Admin;
10
  use Essential_Addons_Elementor\Traits\Core;
11
  use Essential_Addons_Elementor\Traits\Elements;
28
  use Enqueue;
29
  use Admin;
30
  use Elements;
 
31
  use Login_Registration;
32
  use Woo_Product_Comparable;
33
  use Controls;
129
  add_filter('eael/active_plugins', [$this, 'is_plugin_active'], 10, 1);
130
 
131
  add_filter('eael/is_plugin_active', [$this, 'is_plugin_active'], 10, 1);
 
132
  add_action('elementor/editor/after_save', array($this, 'save_global_values'), 10, 2);
133
 
134
  // Enqueue
includes/Classes/WPML/Eael_WPML.php DELETED
@@ -1,476 +0,0 @@
1
- <?php
2
-
3
- namespace Essential_Addons_Elementor\Classes\WPML;
4
-
5
- if (!defined('ABSPATH')) {
6
- exit;
7
- } // Exit if accessed directly
8
-
9
- trait Eael_WPML
10
- {
11
-
12
- public function translatable_widgets($widgets)
13
- {
14
- $widgets['eael-adv-accordion'] = [
15
- 'conditions' => ['widgetType' => 'eael-adv-accordion'],
16
- 'integration-class' => '\Essential_Addons_Elementor\Classes\WPML\Widgets\Accordion',
17
- ];
18
-
19
- $widgets['eael-adv-tabs'] = [
20
- 'conditions' => ['widgetType' => 'eael-adv-tabs'],
21
- 'integration-class' => '\Essential_Addons_Elementor\Classes\WPML\Widgets\Advance_Tab',
22
- ];
23
-
24
- $widgets['eael-creative-button'] = [
25
- 'conditions' => ['widgetType' => 'eael-creative-button'],
26
- 'fields' => [
27
- [
28
- 'field' => 'creative_button_text',
29
- 'type' => __('Creative Button: Text', 'essential-addons-for-elementor-lite'),
30
- 'editor_type' => 'LINE',
31
- ],
32
- [
33
- 'field' => 'creative_button_secondary_text',
34
- 'type' => __('Creative Button: Secondary Text', 'essential-addons-for-elementor-lite'),
35
- 'editor_type' => 'LINE',
36
- ],
37
- 'creative_button_link_url' => [
38
- 'field' => 'url',
39
- 'type' => __('Creative Button: Link', 'essential-addons-for-elementor-lite'),
40
- 'editor_type' => 'LINK',
41
- ],
42
- ],
43
- 'integration-class' => '\Essential_Addons_Elementor\Classes\WPML\Widgets\Creative_Button',
44
- ];
45
-
46
- $widgets['eael-cta-box'] = [
47
- 'conditions' => ['widgetType' => 'eael-cta-box'],
48
- 'fields' => [
49
- [
50
- 'field' => 'eael_cta_title',
51
- 'type' => __('Call to Action: Title', 'essential-addons-for-elementor-lite'),
52
- 'editor_type' => 'LINE',
53
- ],
54
- [
55
- 'field' => 'eael_cta_content',
56
- 'type' => __('Call to Action: Content', 'essential-addons-for-elementor-lite'),
57
- 'editor_type' => 'VISUAL',
58
- ],
59
- [
60
- 'field' => 'eael_cta_btn_text',
61
- 'type' => __('Call to Action: Button Text', 'essential-addons-for-elementor-lite'),
62
- 'editor_type' => 'LINE',
63
- ],
64
- ],
65
- ];
66
-
67
- //Doesn't work properly
68
- $widgets['eael-data-table'] = [
69
- 'conditions' => ['widgetType' => 'eael-data-table'],
70
- 'integration-class' => ['\Essential_Addons_Elementor\Classes\WPML\Widgets\Data_Table', '\Essential_Addons_Elementor\Classes\WPML\Widgets\Data_Table_Body'],
71
- ];
72
-
73
- $widgets['eicon-animated-headline'] = [
74
- 'conditions' => ['widgetType' => 'eael-dual-color-header'],
75
- 'fields' => [
76
- [
77
- 'field' => 'eael_dch_first_title',
78
- 'type' => __('Dual Color Heading: Title ( First Part )', 'essential-addons-for-elementor-lite'),
79
- 'editor_type' => 'LINE',
80
- ],
81
- [
82
- 'field' => 'eael_dch_last_title',
83
- 'type' => __('Dual Color Heading: Title ( Last Part )', 'essential-addons-for-elementor-lite'),
84
- 'editor_type' => 'LINE',
85
- ],
86
- [
87
- 'field' => 'eael_dch_subtext',
88
- 'type' => __('Dual Color Heading: Sub Text', 'essential-addons-for-elementor-lite'),
89
- 'editor_type' => 'VISUAL',
90
- ],
91
- ],
92
- ];
93
-
94
- $widgets['eael-fancy-text'] = [
95
- 'conditions' => ['widgetType' => 'eael-fancy-text'],
96
- 'integration-class' => '\Essential_Addons_Elementor\Classes\WPML\Widgets\Fancy_Text',
97
- 'fields' => [
98
- [
99
- 'field' => 'eael_fancy_text_prefix',
100
- 'type' => __('Fancy Text: Prefix Text', 'essential-addons-for-elementor-lite'),
101
- 'editor_type' => 'LINE',
102
- ],
103
- [
104
- 'field' => 'eael_fancy_text_suffix',
105
- 'type' => __('Fancy Text: Suffix Text', 'essential-addons-for-elementor-lite'),
106
- 'editor_type' => 'LINE',
107
- ],
108
- ],
109
- ];
110
-
111
- // $widgets['eael-filterable-gallery'] = [
112
- // 'conditions' => ['widgetType' => 'eael-filterable-gallery'],
113
- // 'fields' => [
114
- // [
115
- // 'field' => 'eael_fg_all_label_text',
116
- // 'type' => __('Gallery All Label', 'essential-addons-for-elementor-lite'),
117
- // 'editor_type' => 'LINE',
118
- // ],
119
- // [
120
- // 'field' => 'eael_fg_control',
121
- // 'type' => __('List Item', 'essential-addons-for-elementor-lite'),
122
- // 'editor_type' => 'LINE',
123
- // ],
124
- // [
125
- // 'field' => 'eael_fg_gallery_item_name',
126
- // 'type' => __('Item Name', 'essential-addons-for-elementor-lite'),
127
- // 'editor_type' => 'LINE',
128
- // ],
129
- // [
130
- // 'field' => 'eael_fg_gallery_item_content',
131
- // 'type' => __('Item Content', 'essential-addons-for-elementor-lite'),
132
- // 'editor_type' => 'AREA',
133
- // ]
134
- // ],
135
- // ];
136
-
137
- $widgets['eael-image-accordion'] = [
138
- 'conditions' => ['widgetType' => 'eael-image-accordion'],
139
- 'integration-class' => '\Essential_Addons_Elementor\Classes\WPML\Widgets\Image_Accordion',
140
- ];
141
-
142
- // have to work on this later.
143
- // $widgets['eael-flip-box'] = [
144
- // 'conditions' => ['widgetType' => 'eael-flip-box'],
145
- // 'fields' => [
146
- // [
147
- // 'field' => 'eael_flipbox_front_title',
148
- // 'type' => __('Flip Box: Front Title', 'essential-addons-for-elementor-lite'),
149
- // 'editor_type' => 'LINE',
150
- // ],
151
- // [
152
- // 'field' => 'eael_flipbox_front_text',
153
- // 'type' => __('Flip Box: Front Text', 'essential-addons-for-elementor-lite'),
154
- // 'editor_type' => 'AREA',
155
- // ],
156
- // [
157
- // 'field' => 'eael_flipbox_back_title',
158
- // 'type' => __('Flip Box: Back Title', 'essential-addons-for-elementor-lite'),
159
- // 'editor_type' => 'LINE',
160
- // ],
161
- // [
162
- // 'field' => 'eael_flipbox_back_text',
163
- // 'type' => __('Flip Box: Back Text', 'essential-addons-for-elementor-lite'),
164
- // 'editor_type' => 'AREA',
165
- // ]
166
- // ],
167
- // ];
168
-
169
- $widgets['eael-info-box'] = [
170
- 'conditions' => ['widgetType' => 'eael-info-box'],
171
- 'fields' => [
172
- [
173
- 'field' => 'eael_infobox_title',
174
- 'type' => __('Infobox: Title', 'essential-addons-for-elementor-lite'),
175
- 'editor_type' => 'LINE',
176
- ],
177
- [
178
- 'field' => 'eael_infobox_text',
179
- 'type' => __('Infobox Content', 'essential-addons-for-elementor-lite'),
180
- 'editor_type' => 'VISUAL',
181
- ],
182
- ],
183
- ];
184
-
185
- $widgets['eael-post-grid'] = [
186
- 'conditions' => ['widgetType' => 'eael-post-grid'],
187
- 'fields' => [
188
- [
189
- 'field' => 'show_load_more_text',
190
- 'type' => __('Post Grid: Load More Button', 'essential-addons-for-elementor-lite'),
191
- 'editor_type' => 'LINE',
192
- ],
193
- [
194
- 'field' => 'read_more_button_text',
195
- 'type' => __('Post Grid: Read More Button', 'essential-addons-for-elementor-lite'),
196
- 'editor_type' => 'LINE',
197
- ],
198
- ],
199
- ];
200
-
201
- $widgets['eael-post-timeline'] = [
202
- 'conditions' => ['widgetType' => 'eael-post-timeline'],
203
- 'fields' => [
204
- [
205
- 'field' => 'show_load_more_text',
206
- 'type' => __('Post Timeline: Load More Button', 'essential-addons-for-elementor-lite'),
207
- 'editor_type' => 'LINE',
208
- ],
209
- ],
210
- ];
211
-
212
- $widgets['eael-pricing-table'] = [
213
- 'conditions' => ['widgetType' => 'eael-pricing-table'],
214
- 'integration-class' => '\Essential_Addons_Elementor\Classes\WPML\Widgets\Pricing_Table',
215
- 'fields' => [
216
- [
217
- 'field' => 'eael_pricing_table_title',
218
- 'type' => __('Pricing Table: Title', 'essential-addons-for-elementor-lite'),
219
- 'editor_type' => 'LINE',
220
- ],
221
- [
222
- 'field' => 'eael_pricing_table_sub_title',
223
- 'type' => __('Pricing Table: Sub Title', 'essential-addons-for-elementor-lite'),
224
- 'editor_type' => 'LINE',
225
- ],
226
- [
227
- 'field' => 'eael_pricing_table_price',
228
- 'type' => __('Pricing Table: Price', 'essential-addons-for-elementor-lite'),
229
- 'editor_type' => 'LINE',
230
- ],
231
- [
232
- 'field' => 'eael_pricing_table_price_cur',
233
- 'type' => __('Pricing Table: Currency Placement', 'essential-addons-for-elementor-lite'),
234
- 'editor_type' => 'LINE',
235
- ],
236
- [
237
- 'field' => 'eael_pricing_table_price_period',
238
- 'type' => __('Pricing Table: Price Period (per)', 'essential-addons-for-elementor-lite'),
239
- 'editor_type' => 'LINE',
240
- ],
241
- [
242
- 'field' => 'eael_pricing_table_btn',
243
- 'type' => __('Pricing Table: Button Text', 'essential-addons-for-elementor-lite'),
244
- 'editor_type' => 'LINE',
245
- ],
246
- [
247
- 'field' => 'eael_pricing_table_btn',
248
- 'type' => __('Pricing Table: Button Text', 'essential-addons-for-elementor-lite'),
249
- 'editor_type' => 'LINE',
250
- ],
251
- [
252
- 'field' => 'eael_pricing_table_featured_tag_text',
253
- 'type' => __('Pricing Table: Featured Tag Text', 'essential-addons-for-elementor-lite'),
254
- 'editor_type' => 'LINE',
255
- ],
256
- ],
257
- ];
258
-
259
- $widgets['eael-progress-bar'] = [
260
- 'conditions' => ['widgetType' => 'eael-progress-bar'],
261
- 'fields' => [
262
- [
263
- 'field' => 'progress_bar_title',
264
- 'type' => __('Progressbar: Title', 'essential-addons-for-elementor-lite'),
265
- 'editor_type' => 'LINE',
266
- ],
267
- ],
268
- ];
269
-
270
- $widgets['eael-team-member'] = [
271
- 'conditions' => ['widgetType' => 'eael-team-member'],
272
- 'fields' => [
273
- [
274
- 'field' => 'eael_team_member_name',
275
- 'type' => __('Team Member: Name', 'essential-addons-for-elementor-lite'),
276
- 'editor_type' => 'LINE',
277
- ],
278
- [
279
- 'field' => 'eael_team_member_job_title',
280
- 'type' => __('Team Member: Job Position', 'essential-addons-for-elementor-lite'),
281
- 'editor_type' => 'LINE',
282
- ],
283
- [
284
- 'field' => 'eael_team_member_description',
285
- 'type' => __('Team Member: Description', 'essential-addons-for-elementor-lite'),
286
- 'editor_type' => 'AREA',
287
- ],
288
- ],
289
- ];
290
-
291
- $widgets['eael-testimonial'] = [
292
- 'conditions' => ['widgetType' => 'eael-testimonial'],
293
- 'integration-class' => '\Essential_Addons_Elementor\Classes\WPML\Widgets\Team_Member',
294
- 'fields' => [
295
- [
296
- 'field' => 'eael_testimonial_name',
297
- 'type' => __('Testimonial: User Name', 'essential-addons-for-elementor-lite'),
298
- 'editor_type' => 'LINE',
299
- ],
300
- [
301
- 'field' => 'eael_testimonial_company_title',
302
- 'type' => __('Testimonial: Company Name', 'essential-addons-for-elementor-lite'),
303
- 'editor_type' => 'LINE',
304
- ],
305
- [
306
- 'field' => 'eael_testimonial_description',
307
- 'type' => __('Testimonial: Testimonial Description', 'essential-addons-for-elementor-lite'),
308
- 'editor_type' => 'VISUAL',
309
- ],
310
- ],
311
- ];
312
-
313
- $widgets['eael-tooltip'] = [
314
- 'conditions' => ['widgetType' => 'eael-tooltip'],
315
- 'fields' => [
316
- [
317
- 'field' => 'eael_tooltip_content',
318
- 'type' => __('Tooltip: Content', 'essential-addons-for-elementor-lite'),
319
- 'editor_type' => 'LINE',
320
- ],
321
- [
322
- 'field' => 'eael_tooltip_hover_content',
323
- 'type' => __('Tooltip: Content', 'essential-addons-for-elementor-lite'),
324
- 'editor_type' => 'VISUAL',
325
- ],
326
- ],
327
- ];
328
-
329
- $widgets['eael-feature-list'] = [
330
- 'conditions' => ['widgetType' => 'eael-feature-list'],
331
- 'integration-class' => '\Essential_Addons_Elementor\Classes\WPML\Widgets\Feature_List',
332
- 'fields' => [
333
- [
334
- 'field' => 'eael_feature_list_title',
335
- 'type' => __('Feature List: Title', 'essential-addons-for-elementor-lite'),
336
- 'editor_type' => 'LINE',
337
- ],
338
- [
339
- 'field' => 'eael_feature_list_content',
340
- 'type' => __('Feature List: Content', 'essential-addons-for-elementor-lite'),
341
- 'editor_type' => 'AREA',
342
- ],
343
- ],
344
- ];
345
-
346
- $widgets['eael-caldera-form'] = [
347
- 'conditions' => ['widgetType' => 'eael-caldera-form'],
348
- 'fields' => [
349
- [
350
- 'field' => 'form_title_custom',
351
- 'type' => __('Caldera Form: Title', 'essential-addons-for-elementor-lite'),
352
- 'editor_type' => 'LINE',
353
- ],
354
- [
355
- 'field' => 'form_description_custom',
356
- 'type' => __('Caldera Form: Description', 'essential-addons-for-elementor-lite'),
357
- 'editor_type' => 'AREA',
358
- ],
359
- ],
360
- ];
361
-
362
- $widgets['eael-contact-form-7'] = [
363
- 'conditions' => ['widgetType' => 'eael-contact-form-7'],
364
- 'fields' => [
365
- [
366
- 'field' => 'form_title_text',
367
- 'type' => __('Contact Form-7: Title', 'essential-addons-for-elementor-lite'),
368
- 'editor_type' => 'LINE',
369
- ],
370
- [
371
- 'field' => 'form_description_text',
372
- 'type' => __('Contact Form-7: Description', 'essential-addons-for-elementor-lite'),
373
- 'editor_type' => 'AREA',
374
- ],
375
- ],
376
- ];
377
-
378
- $widgets['eael-gravity-form'] = [
379
- 'conditions' => ['widgetType' => 'eael-gravity-form'],
380
- 'fields' => [
381
- [
382
- 'field' => 'form_title_custom',
383
- 'type' => __('Gravity Form: Title', 'essential-addons-for-elementor-lite'),
384
- 'editor_type' => 'LINE',
385
- ],
386
- [
387
- 'field' => 'form_description_custom',
388
- 'type' => __('Gravity Form: Description', 'essential-addons-for-elementor-lite'),
389
- 'editor_type' => 'AREA',
390
- ],
391
- ],
392
- ];
393
-
394
- $widgets['eael-wpforms'] = [
395
- 'conditions' => ['widgetType' => 'eael-wpforms'],
396
- 'fields' => [
397
- [
398
- 'field' => 'form_title_custom',
399
- 'type' => __('WPForms: Title', 'essential-addons-for-elementor-lite'),
400
- 'editor_type' => 'LINE',
401
- ],
402
- [
403
- 'field' => 'form_description_custom',
404
- 'type' => __('WPForms: Description', 'essential-addons-for-elementor-lite'),
405
- 'editor_type' => 'AREA',
406
- ],
407
- ],
408
- ];
409
-
410
- $widgets['eael-ninja'] = [
411
- 'conditions' => ['widgetType' => 'eael-ninja'],
412
- 'fields' => [
413
- [
414
- 'field' => 'form_title_custom',
415
- 'type' => __('NinjaForm: Title', 'essential-addons-for-elementor-lite'),
416
- 'editor_type' => 'LINE',
417
- ],
418
- [
419
- 'field' => 'form_description_custom',
420
- 'type' => __('NinjaForm: Description', 'essential-addons-for-elementor-lite'),
421
- 'editor_type' => 'AREA',
422
- ],
423
- ],
424
- ];
425
-
426
- $widgets['eael-event-calendar'] = [
427
- 'conditions' => ['widgetType' => 'eael-event-calendar'],
428
- 'integration-class' => '\Essential_Addons_Elementor\Classes\WPML\Widgets\Event_Calendar',
429
- ];
430
-
431
- $widgets['eael-advanced-data-table'] = [
432
- 'conditions' => ['widgetType' => 'eael-advanced-data-table'],
433
- 'fields' => [
434
- [
435
- 'field' => 'ea_adv_data_table_search_placeholder',
436
- 'type' => __('Adv Data Table: Search Placeholder', 'essential-addons-for-elementor-lite'),
437
- 'editor_type' => 'LINE',
438
- ],
439
- ],
440
- ];
441
-
442
- $widgets['eael-formstack'] = [
443
- 'conditions' => ['widgetType' => 'eael-formstack'],
444
- 'fields' => [
445
- [
446
- 'field' => 'eael_formstack_form_title_custom',
447
- 'type' => __('Formstack: Custom Title', 'essential-addons-for-elementor-lite'),
448
- 'editor_type' => 'LINE',
449
- ],
450
- [
451
- 'field' => 'eael_formstack_form_description_custom',
452
- 'type' => __('Formstack: Custom Description', 'essential-addons-for-elementor-lite'),
453
- 'editor_type' => 'VISUAL',
454
- ],
455
- ],
456
- ];
457
-
458
- $widgets['eael-fluentform'] = [
459
- 'conditions' => ['widgetType' => 'eael-fluentform'],
460
- 'fields' => [
461
- [
462
- 'field' => 'form_title_custom',
463
- 'type' => __('Fluent Form: Title', 'essential-addons-for-elementor-lite'),
464
- 'editor_type' => 'LINE',
465
- ],
466
- [
467
- 'field' => 'form_description_custom',
468
- 'type' => __('Fluent Form: Description', 'essential-addons-for-elementor-lite'),
469
- 'editor_type' => 'VISUAL',
470
- ],
471
- ],
472
- ];
473
-
474
- return $widgets;
475
- }
476
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
includes/Classes/WPML/Widgets/Accordion.php DELETED
@@ -1,79 +0,0 @@
1
- <?php
2
-
3
- namespace Essential_Addons_Elementor\Classes\WPML\Widgets;
4
-
5
- use WPML_Elementor_Module_With_Items;
6
-
7
- if ( ! defined('ABSPATH') ) exit; // No access of directly access
8
-
9
- /**
10
- * Carousel
11
- *
12
- * Registers translatable widget with items.
13
- *
14
- * @since 3.2.4
15
- */
16
- class Accordion extends WPML_Elementor_Module_With_Items {
17
-
18
- /**
19
- * Get widget field name.
20
- *
21
- * @return string
22
- */
23
- public function get_items_field() {
24
- return 'eael_adv_accordion_tab';
25
- }
26
-
27
- /**
28
- * Get the fields inside the repeater.
29
- *
30
- * @return array
31
- */
32
- public function get_fields() {
33
- return array(
34
- 'eael_adv_accordion_tab_title',
35
- 'eael_adv_accordion_tab_content'
36
- );
37
- }
38
-
39
- /**
40
- * @param string $field
41
- *
42
- * Get the field title string
43
- *
44
- * @return string
45
- */
46
- protected function get_title( $field ) {
47
- switch($field) {
48
- case 'eael_adv_accordion_tab_title':
49
- return __( 'Advance Accordion: Title', 'essential-addons-for-elementor-lite');
50
-
51
- case 'eael_adv_accordion_tab_content':
52
- return __( 'Advance Accordion: Content', 'essential-addons-for-elementor-lite');
53
-
54
- default:
55
- return '';
56
- }
57
- }
58
-
59
- /**
60
- * @param string $field
61
- *
62
- * Get perspective field types.
63
- *
64
- * @return string
65
- */
66
- protected function get_editor_type( $field ) {
67
- switch($field) {
68
- case 'eael_adv_accordion_tab_title':
69
- return 'LINE';
70
-
71
- case 'eael_adv_accordion_tab_content':
72
- return 'VISUAL';
73
-
74
- default:
75
- return '';
76
- }
77
- }
78
-
79
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
includes/Classes/WPML/Widgets/Advance_Tab.php DELETED
@@ -1,79 +0,0 @@
1
- <?php
2
-
3
- namespace Essential_Addons_Elementor\Classes\WPML\Widgets;
4
-
5
- use WPML_Elementor_Module_With_Items;
6
-
7
- if ( ! defined('ABSPATH') ) exit; // No access of directly access
8
-
9
- /**
10
- * Carousel
11
- *
12
- * Registers translatable widget with items.
13
- *
14
- * @since 3.2.4
15
- */
16
- class Advance_Tab extends WPML_Elementor_Module_With_Items {
17
-
18
- /**
19
- * Get widget field name.
20
- *
21
- * @return string
22
- */
23
- public function get_items_field() {
24
- return 'eael_adv_tabs_tab';
25
- }
26
-
27
- /**
28
- * Get the fields inside the repeater.
29
- *
30
- * @return array
31
- */
32
- public function get_fields() {
33
- return array(
34
- 'eael_adv_tabs_tab_title',
35
- 'eael_adv_tabs_tab_content'
36
- );
37
- }
38
-
39
- /**
40
- * @param string $field
41
- *
42
- * Get the field title string
43
- *
44
- * @return string
45
- */
46
- protected function get_title( $field ) {
47
- switch($field) {
48
- case 'eael_adv_tabs_tab_title':
49
- return __( 'Advance Tab: Title', 'essential-addons-for-elementor-lite');
50
-
51
- case 'eael_adv_tabs_tab_content':
52
- return __( 'Advance Tab: Content', 'essential-addons-for-elementor-lite');
53
-
54
- default:
55
- return '';
56
- }
57
- }
58
-
59
- /**
60
- * @param string $field
61
- *
62
- * Get perspective field types.
63
- *
64
- * @return string
65
- */
66
- protected function get_editor_type( $field ) {
67
- switch($field) {
68
- case 'eael_adv_tabs_tab_title':
69
- return 'LINE';
70
-
71
- case 'eael_adv_tabs_tab_content':
72
- return 'VISUAL';
73
-
74
- default:
75
- return '';
76
- }
77
- }
78
-
79
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
includes/Classes/WPML/Widgets/Creative_Button.php DELETED
@@ -1,80 +0,0 @@
1
- <?php
2
-
3
- namespace Essential_Addons_Elementor\Classes\WPML\Widgets;
4
-
5
- use WPML_Elementor_Module_With_Items;
6
-
7
- if (!defined('ABSPATH')) {
8
- exit;
9
- }
10
- // No access of directly access
11
-
12
- /**
13
- * Creative Button
14
- *
15
- * Registers translatable widget with items.
16
- *
17
- * @since 3.2.4
18
- */
19
- class Creative_Button extends WPML_Elementor_Module_With_Items
20
- {
21
-
22
- /**
23
- * Get widget field name.
24
- *
25
- * @return string
26
- */
27
- public function get_items_field()
28
- {
29
- return 'creative_button_link_url';
30
- }
31
-
32
- /**
33
- * Get the fields inside the repeater.
34
- *
35
- * @return array
36
- */
37
- public function get_fields()
38
- {
39
- return [
40
- 'url',
41
- ];
42
- }
43
-
44
- /**
45
- * @param string $field
46
- *
47
- * Get the field title string
48
- *
49
- * @return string
50
- */
51
- protected function get_title($field)
52
- {
53
- switch ($field) {
54
- case 'url':
55
- return __('Creative Button: Link URL', 'essential-addons-for-elementor-lite');
56
-
57
- default:
58
- return '';
59
- }
60
- }
61
-
62
- /**
63
- * @param string $field
64
- *
65
- * Get perspective field types.
66
- *
67
- * @return string
68
- */
69
- protected function get_editor_type($field)
70
- {
71
- switch ($field) {
72
- case 'url':
73
- return 'LINE';
74
-
75
- default:
76
- return '';
77
- }
78
- }
79
-
80
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
includes/Classes/WPML/Widgets/Data_Table.php DELETED
@@ -1,76 +0,0 @@
1
- <?php
2
-
3
- namespace Essential_Addons_Elementor\Classes\WPML\Widgets;
4
-
5
- use WPML_Elementor_Module_With_Items;
6
-
7
- if (!defined('ABSPATH')) {
8
- exit;
9
- }
10
- // No access of directly access
11
-
12
- /**
13
- * Creative Button
14
- *
15
- * Registers translatable widget with items.
16
- *
17
- * @since 3.2.4
18
- */
19
- class Data_Table extends WPML_Elementor_Module_With_Items
20
- {
21
-
22
- /**
23
- * Get widget field name.
24
- *
25
- * @return string
26
- */
27
- public function get_items_field() {
28
- return 'eael_data_table_header_cols_data';
29
- }
30
-
31
- /**
32
- * Get the fields inside the repeater.
33
- *
34
- * @return array
35
- */
36
- public function get_fields() {
37
- return array(
38
- 'eael_data_table_header_col'
39
- );
40
- }
41
-
42
- /**
43
- * @param string $field
44
- *
45
- * Get the field title string
46
- *
47
- * @return string
48
- */
49
- protected function get_title( $field ) {
50
- switch($field) {
51
- case 'eael_data_table_header_col':
52
- return __( 'Data Table: Header', 'essential-addons-for-elementor-lite' );
53
-
54
- default:
55
- return '';
56
- }
57
- }
58
-
59
- /**
60
- * @param string $field
61
- *
62
- * Get perspective field types.
63
- *
64
- * @return string
65
- */
66
- protected function get_editor_type( $field ) {
67
- switch($field) {
68
- case 'eael_data_table_header_col':
69
- return 'LINE';
70
-
71
- default:
72
- return '';
73
- }
74
- }
75
-
76
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
includes/Classes/WPML/Widgets/Data_Table_Body.php DELETED
@@ -1,76 +0,0 @@
1
- <?php
2
-
3
- namespace Essential_Addons_Elementor\Classes\WPML\Widgets;
4
-
5
- use WPML_Elementor_Module_With_Items;
6
-
7
- if (!defined('ABSPATH')) {
8
- exit;
9
- }
10
- // No access of directly access
11
-
12
- /**
13
- * Creative Button
14
- *
15
- * Registers translatable widget with items.
16
- *
17
- * @since 3.2.4
18
- */
19
- class Data_Table_Body extends WPML_Elementor_Module_With_Items
20
- {
21
-
22
- /**
23
- * Get widget field name.
24
- *
25
- * @return string
26
- */
27
- public function get_items_field() {
28
- return 'eael_data_table_content_rows';
29
- }
30
-
31
- /**
32
- * Get the fields inside the repeater.
33
- *
34
- * @return array
35
- */
36
- public function get_fields() {
37
- return array(
38
- 'eael_data_table_content_row_title'
39
- );
40
- }
41
-
42
- /**
43
- * @param string $field
44
- *
45
- * Get the field title string
46
- *
47
- * @return string
48
- */
49
- protected function get_title( $field ) {
50
- switch($field) {
51
- case 'eael_data_table_content_row_title':
52
- return __( 'Data Table: Cell Text', 'essential-addons-for-elementor-lite' );
53
-
54
- default:
55
- return '';
56
- }
57
- }
58
-
59
- /**
60
- * @param string $field
61
- *
62
- * Get perspective field types.
63
- *
64
- * @return string
65
- */
66
- protected function get_editor_type( $field ) {
67
- switch($field) {
68
- case 'eael_data_table_content_row_title':
69
- return 'LINE';
70
-
71
- default:
72
- return '';
73
- }
74
- }
75
-
76
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
includes/Classes/WPML/Widgets/Event_Calendar.php DELETED
@@ -1,90 +0,0 @@
1
- <?php
2
-
3
- namespace Essential_Addons_Elementor\Classes\WPML\Widgets;
4
-
5
- use WPML_Elementor_Module_With_Items;
6
-
7
- if (!defined('ABSPATH')) {
8
- exit;
9
- }
10
- // No access of directly access
11
-
12
- /**
13
- * Creative Button
14
- *
15
- * Registers translatable widget with items.
16
- *
17
- * @since 3.2.4
18
- */
19
- class Event_Calendar extends WPML_Elementor_Module_With_Items
20
- {
21
-
22
- /**
23
- * Get widget field name.
24
- *
25
- * @return string
26
- */
27
- public function get_items_field() {
28
- return 'eael_event_items';
29
- }
30
-
31
- /**
32
- * Get the fields inside the repeater.
33
- *
34
- * @return array
35
- */
36
- public function get_fields() {
37
- return array(
38
- 'eael_event_title',
39
- 'eael_event_link',
40
- 'eael_event_description'
41
- );
42
- }
43
-
44
- /**
45
- * @param string $field
46
- *
47
- * Get the field title string
48
- *
49
- * @return string
50
- */
51
- protected function get_title( $field ) {
52
- switch($field) {
53
- case 'eael_event_title':
54
- return __( 'Event: Title', 'essential-addons-for-elementor-lite' );
55
-
56
- case 'eael_event_link':
57
- return __( 'Event: Content', 'essential-addons-for-elementor-lite' );
58
-
59
- case 'eael_event_description':
60
- return __( 'Event : Description', 'essential-addons-for-elementor-lite' );
61
-
62
- default:
63
- return '';
64
- }
65
- }
66
-
67
- /**
68
- * @param string $field
69
- *
70
- * Get perspective field types.
71
- *
72
- * @return string
73
- */
74
- protected function get_editor_type( $field ) {
75
- switch($field) {
76
- case 'eael_event_title':
77
- return 'LINE';
78
-
79
- case 'eael_event_link':
80
- return 'LINE';
81
-
82
- case 'eael_event_description':
83
- return 'VISUAL';
84
-
85
- default:
86
- return '';
87
- }
88
- }
89
-
90
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
includes/Classes/WPML/Widgets/Fancy_Text.php DELETED
@@ -1,60 +0,0 @@
1
- <?php
2
-
3
- namespace Essential_Addons_Elementor\Classes\WPML\Widgets;
4
-
5
- use WPML_Elementor_Module_With_Items;
6
-
7
- if ( ! defined('ABSPATH') ) exit; // No access of directly access
8
-
9
- /**
10
- * Carousel
11
- *
12
- * Registers translatable widget with items.
13
- *
14
- * @since 3.2.4
15
- */
16
- class Fancy_Text extends WPML_Elementor_Module_With_Items {
17
-
18
- /**
19
- * Get widget field name.
20
- *
21
- * @return string
22
- */
23
- public function get_items_field() {
24
- return 'eael_fancy_text_strings';
25
- }
26
-
27
- /**
28
- * Get the fields inside the repeater.
29
- *
30
- * @return array
31
- */
32
- public function get_fields() {
33
- return array(
34
- 'eael_fancy_text_strings_text_field'
35
- );
36
- }
37
-
38
- /**
39
- * @param string $field
40
- *
41
- * Get the field title string
42
- *
43
- * @return string
44
- */
45
- protected function get_title( $field ) {
46
- return __( 'Fancy Text: String', 'essential-addons-for-elementor-lite');
47
- }
48
-
49
- /**
50
- * @param string $field
51
- *
52
- * Get perspective field types.
53
- *
54
- * @return string
55
- */
56
- protected function get_editor_type( $field ) {
57
- return 'LINE';
58
- }
59
-
60
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
includes/Classes/WPML/Widgets/Feature_List.php DELETED
@@ -1,79 +0,0 @@
1
- <?php
2
-
3
- namespace Essential_Addons_Elementor\Classes\WPML\Widgets;
4
-
5
- use WPML_Elementor_Module_With_Items;
6
-
7
- if ( ! defined('ABSPATH') ) exit; // No access of directly access
8
-
9
- /**
10
- * Carousel
11
- *
12
- * Registers translatable widget with items.
13
- *
14
- * @since 3.2.4
15
- */
16
- class Feature_List extends WPML_Elementor_Module_With_Items {
17
-
18
- /**
19
- * Get widget field name.
20
- *
21
- * @return string
22
- */
23
- public function get_items_field() {
24
- return 'eael_feature_list';
25
- }
26
-
27
- /**
28
- * Get the fields inside the repeater.
29
- *
30
- * @return array
31
- */
32
- public function get_fields() {
33
- return array(
34
- 'eael_feature_list_title',
35
- 'eael_feature_list_content'
36
- );
37
- }
38
-
39
- /**
40
- * @param string $field
41
- *
42
- * Get the field title string
43
- *
44
- * @return string
45
- */
46
- protected function get_title( $field ) {
47
- switch($field) {
48
- case 'eael_feature_list_title':
49
- return __( 'Feature List: Title', 'essential-addons-for-elementor-lite');
50
-
51
- case 'eael_feature_list_content':
52
- return __( 'Feature List: Content', 'essential-addons-for-elementor-lite');
53
-
54
- default:
55
- return '';
56
- }
57
- }
58
-
59
- /**
60
- * @param string $field
61
- *
62
- * Get perspective field types.
63
- *
64
- * @return string
65
- */
66
- protected function get_editor_type( $field ) {
67
- switch($field) {
68
- case 'eael_feature_list_title':
69
- return 'LINE';
70
-
71
- case 'eael_feature_list_content':
72
- return 'AREA';
73
-
74
- default:
75
- return '';
76
- }
77
- }
78
-
79
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
includes/Classes/WPML/Widgets/Image_Accordion.php DELETED
@@ -1,79 +0,0 @@
1
- <?php
2
-
3
- namespace Essential_Addons_Elementor\Classes\WPML\Widgets;
4
-
5
- use WPML_Elementor_Module_With_Items;
6
-
7
- if ( ! defined('ABSPATH') ) exit; // No access of directly access
8
-
9
- /**
10
- * Carousel
11
- *
12
- * Registers translatable widget with items.
13
- *
14
- * @since 3.2.4
15
- */
16
- class Image_Accordion extends WPML_Elementor_Module_With_Items {
17
-
18
- /**
19
- * Get widget field name.
20
- *
21
- * @return string
22
- */
23
- public function get_items_field() {
24
- return 'eael_img_accordions';
25
- }
26
-
27
- /**
28
- * Get the fields inside the repeater.
29
- *
30
- * @return array
31
- */
32
- public function get_fields() {
33
- return array(
34
- 'eael_accordion_tittle',
35
- 'eael_accordion_content'
36
- );
37
- }
38
-
39
- /**
40
- * @param string $field
41
- *
42
- * Get the field title string
43
- *
44
- * @return string
45
- */
46
- protected function get_title( $field ) {
47
- switch($field) {
48
- case 'eael_accordion_tittle':
49
- return __( 'Image Accordion: Title', 'essential-addons-for-elementor-lite');
50
-
51
- case 'eael_accordion_content':
52
- return __( 'Image Accordion: Content', 'essential-addons-for-elementor-lite');
53
-
54
- default:
55
- return '';
56
- }
57
- }
58
-
59
- /**
60
- * @param string $field
61
- *
62
- * Get perspective field types.
63
- *
64
- * @return string
65
- */
66
- protected function get_editor_type( $field ) {
67
- switch($field) {
68
- case 'eael_accordion_tittle':
69
- return 'LINE';
70
-
71
- case 'eael_accordion_content':
72
- return 'VISUAL';
73
-
74
- default:
75
- return '';
76
- }
77
- }
78
-
79
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
includes/Classes/WPML/Widgets/Pricing_Table.php DELETED
@@ -1,79 +0,0 @@
1
- <?php
2
-
3
- namespace Essential_Addons_Elementor\Classes\WPML\Widgets;
4
-
5
- use WPML_Elementor_Module_With_Items;
6
-
7
- if ( ! defined('ABSPATH') ) exit; // No access of directly access
8
-
9
- /**
10
- * Carousel
11
- *
12
- * Registers translatable widget with items.
13
- *
14
- * @since 3.2.4
15
- */
16
- class Pricing_Table extends WPML_Elementor_Module_With_Items {
17
-
18
- /**
19
- * Get widget field name.
20
- *
21
- * @return string
22
- */
23
- public function get_items_field() {
24
- return 'eael_pricing_table_items';
25
- }
26
-
27
- /**
28
- * Get the fields inside the repeater.
29
- *
30
- * @return array
31
- */
32
- public function get_fields() {
33
- return array(
34
- 'eael_pricing_table_item',
35
- 'eael_pricing_item_tooltip_content'
36
- );
37
- }
38
-
39
- /**
40
- * @param string $field
41
- *
42
- * Get the field title string
43
- *
44
- * @return string
45
- */
46
- protected function get_title( $field ) {
47
- switch($field) {
48
- case 'eael_pricing_table_item':
49
- return __( 'Pricing Table: Feature', 'essential-addons-for-elementor-lite');
50
-
51
- case 'eael_pricing_item_tooltip_content':
52
- return __( 'Pricing Table: Feature Tooltip', 'essential-addons-for-elementor-lite');
53
-
54
- default:
55
- return '';
56
- }
57
- }
58
-
59
- /**
60
- * @param string $field
61
- *
62
- * Get perspective field types.
63
- *
64
- * @return string
65
- */
66
- protected function get_editor_type( $field ) {
67
- switch($field) {
68
- case 'eael_pricing_table_item':
69
- return 'LINE';
70
-
71
- case 'eael_pricing_item_tooltip_content':
72
- return 'LINE';
73
-
74
- default:
75
- return '';
76
- }
77
- }
78
-
79
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
includes/Classes/WPML/Widgets/Team_Member.php DELETED
@@ -1,73 +0,0 @@
1
- <?php
2
-
3
- namespace Essential_Addons_Elementor\Classes\WPML\Widgets;
4
-
5
- use WPML_Elementor_Module_With_Items;
6
- use Essential_Addons_Elementor\Classes\WPML\Eael_WPML;
7
-
8
- if ( ! defined('ABSPATH') ) exit; // No access of directly access
9
-
10
- /**
11
- * Carousel
12
- *
13
- * Registers translatable widget with items.
14
- *
15
- * @since 3.2.4
16
- */
17
- class Team_Member extends WPML_Elementor_Module_With_Items {
18
-
19
- /**
20
- * Get widget field name.
21
- *
22
- * @return string
23
- */
24
- public function get_items_field() {
25
- return 'eael_team_member_social_profile_links';
26
- }
27
-
28
- /**
29
- * Get the fields inside the repeater.
30
- *
31
- * @return array
32
- */
33
- public function get_fields() {
34
- return array(
35
- 'link'
36
- );
37
- }
38
-
39
- /**
40
- * @param string $field
41
- *
42
- * Get the field title string
43
- *
44
- * @return string
45
- */
46
- protected function get_title( $field ) {
47
- switch($field) {
48
- case 'link':
49
- return __( 'Team Member: Profile Link', 'essential-addons-for-elementor-lite');
50
-
51
- default:
52
- return '';
53
- }
54
- }
55
-
56
- /**
57
- * @param string $field
58
- *
59
- * Get perspective field types.
60
- *
61
- * @return string
62
- */
63
- protected function get_editor_type( $field ) {
64
- switch($field) {
65
- case 'link':
66
- return 'LINE';
67
-
68
- default:
69
- return '';
70
- }
71
- }
72
-
73
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
includes/Elements/Facebook_Feed.php CHANGED
@@ -91,7 +91,7 @@ class Facebook_Feed extends Widget_Base
91
  'dynamic' => ['active' => true],
92
  'label_block' => true,
93
  'default' => '',
94
- 'description' => __('<a href="https://findmyfbid.com/" class="eael-btn" target="_blank">Find Your Page ID</a>', 'essential-addons-for-elementor-lite'),
95
  ]
96
  );
97
 
91
  'dynamic' => ['active' => true],
92
  'label_block' => true,
93
  'default' => '',
94
+ 'description' => __('<a href="https://findidfb.com/" class="eael-btn" target="_blank">Find Your Page ID</a>', 'essential-addons-for-elementor-lite'),
95
  ]
96
  );
97
 
includes/Elements/Filterable_Gallery.php CHANGED
@@ -334,7 +334,7 @@ class Filterable_Gallery extends Widget_Base
334
  'label' => esc_html__('Gallery All Label', 'essential-addons-for-elementor-lite'),
335
  'type' => Controls_Manager::TEXT,
336
  'dynamic' => [ 'active' => true ],
337
- 'default' => 'All',
338
  'condition' => [
339
  'filter_enable' => 'yes',
340
  ],
@@ -3136,6 +3136,8 @@ class Filterable_Gallery extends Widget_Base
3136
  $html .= '<div class="gallery-item-caption-wrap card-hover-bg caption-style-hoverer ' . $settings['eael_fg_grid_hover_style'] . '">
3137
  ' . $this->render_fg_buttons($settings, $item) . '
3138
  </div>';
 
 
3139
  }
3140
  }
3141
 
@@ -3263,9 +3265,9 @@ class Filterable_Gallery extends Widget_Base
3263
 
3264
  $this->add_render_attribute('gallery-items-wrap', 'data-settings', wp_json_encode($gallery_settings));
3265
  if ('layout_3' == $settings['eael_fg_caption_style']) {
3266
- $this->add_render_attribute('gallery-items-wrap', 'data-gallery-items', wp_json_encode($this->render_layout_3_gallery_items()));
3267
  } else {
3268
- $this->add_render_attribute('gallery-items-wrap', 'data-gallery-items', wp_json_encode($this->render_gallery_items()));
3269
  }
3270
  $this->add_render_attribute('gallery-items-wrap', 'data-init-show', esc_attr($settings['eael_fg_items_to_show']));
3271
  ?>
334
  'label' => esc_html__('Gallery All Label', 'essential-addons-for-elementor-lite'),
335
  'type' => Controls_Manager::TEXT,
336
  'dynamic' => [ 'active' => true ],
337
+ 'default' => esc_html__('All', 'essential-addons-for-elementor-lite'),
338
  'condition' => [
339
  'filter_enable' => 'yes',
340
  ],
3136
  $html .= '<div class="gallery-item-caption-wrap card-hover-bg caption-style-hoverer ' . $settings['eael_fg_grid_hover_style'] . '">
3137
  ' . $this->render_fg_buttons($settings, $item) . '
3138
  </div>';
3139
+ } elseif ( $settings['eael_fg_show_popup'] === 'media' && $settings['eael_fg_caption_style'] === 'card' ) {
3140
+ $html .= '<div class="gallery-item-caption-wrap card-hover-bg caption-style-hoverer ' . $settings['eael_fg_grid_hover_style'] . '"></div>';
3141
  }
3142
  }
3143
 
3265
 
3266
  $this->add_render_attribute('gallery-items-wrap', 'data-settings', wp_json_encode($gallery_settings));
3267
  if ('layout_3' == $settings['eael_fg_caption_style']) {
3268
+ $this->add_render_attribute( 'gallery-items-wrap', 'data-gallery-items', wp_json_encode( $this->render_layout_3_gallery_items(), JSON_HEX_TAG | JSON_HEX_APOS | JSON_HEX_QUOT | JSON_HEX_AMP | JSON_UNESCAPED_UNICODE ) );
3269
  } else {
3270
+ $this->add_render_attribute( 'gallery-items-wrap', 'data-gallery-items', wp_json_encode( $this->render_gallery_items(), JSON_HEX_TAG | JSON_HEX_APOS | JSON_HEX_QUOT | JSON_HEX_AMP | JSON_UNESCAPED_UNICODE ) );
3271
  }
3272
  $this->add_render_attribute('gallery-items-wrap', 'data-init-show', esc_attr($settings['eael_fg_items_to_show']));
3273
  ?>
includes/Elements/Flip_Box.php CHANGED
@@ -1604,7 +1604,7 @@ class Flip_Box extends Widget_Base
1604
  <?php if ('before' == $settings['button_icon_position']) {
1605
  $this->render_icon($settings, 'button');
1606
  } ?>
1607
- <?php echo esc_attr($settings['flipbox_button_text']); ?>
1608
  <?php if ('after' == $settings['button_icon_position']) {
1609
  $this->render_icon($settings, 'button');
1610
  } ?>
1604
  <?php if ('before' == $settings['button_icon_position']) {
1605
  $this->render_icon($settings, 'button');
1606
  } ?>
1607
+ <?php echo Helper::eael_wp_kses($settings['flipbox_button_text']); ?>
1608
  <?php if ('after' == $settings['button_icon_position']) {
1609
  $this->render_icon($settings, 'button');
1610
  } ?>
includes/Elements/Pricing_Table.php CHANGED
@@ -203,9 +203,6 @@ class Pricing_Table extends Widget_Base
203
  'type' => Controls_Manager::TEXT,
204
  'dynamic' => [
205
  'active' => true,
206
- 'categories' => [
207
- TagsModule::NUMBER_CATEGORY,
208
- ],
209
  ],
210
  'label_block' => false,
211
  'default' => esc_html__('99', 'essential-addons-for-elementor-lite'),
@@ -229,9 +226,6 @@ class Pricing_Table extends Widget_Base
229
  'type' => Controls_Manager::TEXT,
230
  'dynamic' => [
231
  'active' => true,
232
- 'categories' => [
233
- TagsModule::NUMBER_CATEGORY,
234
- ],
235
  ],
236
  'label_block' => false,
237
  'default' => esc_html__('89', 'essential-addons-for-elementor-lite'),
203
  'type' => Controls_Manager::TEXT,
204
  'dynamic' => [
205
  'active' => true,
 
 
 
206
  ],
207
  'label_block' => false,
208
  'default' => esc_html__('99', 'essential-addons-for-elementor-lite'),
226
  'type' => Controls_Manager::TEXT,
227
  'dynamic' => [
228
  'active' => true,
 
 
 
229
  ],
230
  'label_block' => false,
231
  'default' => esc_html__('89', 'essential-addons-for-elementor-lite'),
languages/essential-addons-for-elementor-lite.pot CHANGED
@@ -13,11 +13,11 @@ msgstr ""
13
  "X-Poedit-SourceCharset: UTF-8\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
 
16
- #: ../includes/Classes/Helper.php:190, ../includes/Elements/Adv_Accordion.php:313, ../includes/Elements/Adv_Tabs.php:262, ../includes/Elements/Contact_Form_7.php:270, ../includes/Elements/Content_Ticker.php:306, ../includes/Elements/Countdown.php:467, ../includes/Elements/Creative_Button.php:188, ../includes/Elements/Cta_Box.php:346, ../includes/Elements/Data_Table.php:471, ../includes/Elements/Dual_Color_Header.php:214, ../includes/Elements/Fancy_Text.php:269, ../includes/Elements/Filterable_Gallery.php:795, ../includes/Elements/Flip_Box.php:727, ../includes/Elements/Info_Box.php:492, ../includes/Elements/Pricing_Table.php:703, ../includes/Elements/Progress_Bar.php:271, ../includes/Elements/Team_Member.php:237, ../includes/Elements/Testimonial.php:214, ../includes/Elements/Tooltip.php:513, ../includes/Elements/Twitter_Feed.php:295, ../includes/Elements/WeForms.php:110
17
  msgid "Go Premium for More Features"
18
  msgstr ""
19
 
20
- #: ../includes/Classes/Helper.php:197, ../includes/Elements/Adv_Accordion.php:320, ../includes/Elements/Adv_Tabs.php:269, ../includes/Elements/Contact_Form_7.php:277, ../includes/Elements/Content_Ticker.php:313, ../includes/Elements/Countdown.php:474, ../includes/Elements/Creative_Button.php:195, ../includes/Elements/Cta_Box.php:353, ../includes/Elements/Data_Table.php:478, ../includes/Elements/Dual_Color_Header.php:221, ../includes/Elements/Fancy_Text.php:276, ../includes/Elements/Filterable_Gallery.php:802, ../includes/Elements/Flip_Box.php:734, ../includes/Elements/Info_Box.php:499, ../includes/Elements/Pricing_Table.php:710, ../includes/Elements/Progress_Bar.php:278, ../includes/Elements/Team_Member.php:244, ../includes/Elements/Testimonial.php:221, ../includes/Elements/Tooltip.php:520, ../includes/Elements/Twitter_Feed.php:302, ../includes/Elements/WeForms.php:117
21
  msgid "Unlock more possibilities"
22
  msgstr ""
23
 
@@ -267,7 +267,7 @@ msgstr ""
267
  msgid "Dual Color Heading"
268
  msgstr ""
269
 
270
- #: ../includes/Classes/WPDeveloper_Setup_Wizard.php:583, ../includes/Elements/Pricing_Table.php:1469, ../includes/Elements/Tooltip.php:25, ../includes/templates/admin/elements.php:45
271
  msgid "Tooltip"
272
  msgstr ""
273
 
@@ -279,7 +279,7 @@ msgstr ""
279
  msgid "Advanced Tabs"
280
  msgstr ""
281
 
282
- #: ../includes/Classes/WPDeveloper_Setup_Wizard.php:598, ../includes/Elements/Feature_List.php:28, ../includes/Elements/Pricing_Table.php:1210, ../includes/templates/admin/elements.php:63
283
  msgid "Feature List"
284
  msgstr ""
285
 
@@ -519,7 +519,7 @@ msgstr ""
519
  msgid "Pagination Type"
520
  msgstr ""
521
 
522
- #: ../includes/Elements/Advanced_Data_Table.php:180, ../includes/Elements/Advanced_Data_Table.php:1332, ../includes/Elements/Betterdocs_Category_Grid.php:1290, ../includes/Elements/Event_Calendar.php:747, ../includes/Elements/Flip_Box.php:651, ../includes/Elements/FluentForm.php:1913, ../includes/Elements/Formstack.php:1773, ../includes/Elements/Info_Box.php:349, ../includes/Elements/Pricing_Table.php:507, ../includes/Elements/Pricing_Table.php:1816, ../includes/Elements/Product_Grid.php:1806, ../includes/Elements/Woo_Checkout.php:1287, ../includes/Elements/Woo_Checkout.php:1585, ../includes/Elements/Woo_Checkout.php:2358, ../includes/Elements/Woo_Product_Carousel.php:1308, ../includes/Traits/Woo_Product_Comparable.php:1201, ../includes/Traits/Woo_Product_Comparable.php:1251
523
  msgid "Button"
524
  msgstr ""
525
 
@@ -571,11 +571,11 @@ msgstr ""
571
  msgid "Width"
572
  msgstr ""
573
 
574
- #: ../includes/Elements/Advanced_Data_Table.php:348, ../includes/Elements/Advanced_Data_Table.php:1016, ../includes/Elements/Advanced_Data_Table.php:1214, ../includes/Elements/Advanced_Data_Table.php:1286, ../includes/Elements/Advanced_Data_Table.php:1414, ../includes/Elements/Adv_Accordion.php:372, ../includes/Elements/Adv_Accordion.php:561, ../includes/Elements/Adv_Accordion.php:621, ../includes/Elements/Adv_Accordion.php:682, ../includes/Elements/Adv_Accordion.php:765, ../includes/Elements/Adv_Accordion.php:887, ../includes/Elements/Adv_Accordion.php:933, ../includes/Elements/Adv_Accordion.php:979, ../includes/Elements/Adv_Tabs.php:324, ../includes/Elements/Adv_Tabs.php:516, ../includes/Elements/Adv_Tabs.php:583, ../includes/Elements/Adv_Tabs.php:654, ../includes/Elements/Adv_Tabs.php:749, ../includes/Elements/Betterdocs_Category_Box.php:300, ../includes/Elements/Betterdocs_Category_Box.php:368, ../includes/Elements/Betterdocs_Category_Box.php:489, ../includes/Elements/Betterdocs_Category_Box.php:565, ../includes/Elements/Betterdocs_Category_Box.php:885, ../includes/Elements/Betterdocs_Category_Box.php:990, ../includes/Elements/Betterdocs_Category_Grid.php:341, ../includes/Elements/Betterdocs_Category_Grid.php:389, ../includes/Elements/Betterdocs_Category_Grid.php:474, ../includes/Elements/Betterdocs_Category_Grid.php:515, ../includes/Elements/Betterdocs_Category_Grid.php:640, ../includes/Elements/Betterdocs_Category_Grid.php:694, ../includes/Elements/Betterdocs_Category_Grid.php:844, ../includes/Elements/Betterdocs_Category_Grid.php:941, ../includes/Elements/Betterdocs_Category_Grid.php:1186, ../includes/Elements/Betterdocs_Category_Grid.php:1386, ../includes/Elements/Betterdocs_Category_Grid.php:1485, ../includes/Elements/Betterdocs_Search_Form.php:210, ../includes/Elements/Betterdocs_Search_Form.php:365, ../includes/Elements/Betterdocs_Search_Form.php:423, ../includes/Elements/Betterdocs_Search_Form.php:533, ../includes/Elements/Caldera_Forms.php:617, ../includes/Elements/Caldera_Forms.php:813, ../includes/Elements/Caldera_Forms.php:1229, ../includes/Elements/Caldera_Forms.php:1387, ../includes/Elements/Contact_Form_7.php:711, ../includes/Elements/Contact_Form_7.php:776, ../includes/Elements/Contact_Form_7.php:1255, ../includes/Elements/Contact_Form_7.php:1457, ../includes/Elements/Contact_Form_7.php:1551, ../includes/Elements/Contact_Form_7.php:1618, ../includes/Elements/Content_Ticker.php:622, ../includes/Elements/Countdown.php:619, ../includes/Elements/Cta_Box.php:463, ../includes/Elements/Cta_Box.php:740, ../includes/Elements/Cta_Box.php:927, ../includes/Elements/Data_Table.php:641, ../includes/Elements/Data_Table.php:680, ../includes/Elements/Data_Table.php:872, ../includes/Elements/Data_Table.php:1206, ../includes/Elements/Dual_Color_Header.php:347, ../includes/Elements/Event_Calendar.php:798, ../includes/Elements/Event_Calendar.php:865, ../includes/Elements/Event_Calendar.php:919, ../includes/Elements/Event_Calendar.php:1591, ../includes/Elements/Event_Calendar.php:1662, ../includes/Elements/Facebook_Feed.php:451, ../includes/Elements/Filterable_Gallery.php:871, ../includes/Elements/Filterable_Gallery.php:984, ../includes/Elements/Filterable_Gallery.php:1050, ../includes/Elements/Filterable_Gallery.php:1130, ../includes/Elements/Filterable_Gallery.php:1277, ../includes/Elements/Filterable_Gallery.php:1334, ../includes/Elements/Filterable_Gallery.php:1553, ../includes/Elements/Filterable_Gallery.php:1828, ../includes/Elements/Filterable_Gallery.php:1889, ../includes/Elements/Filterable_Gallery.php:2410, ../includes/Elements/Filterable_Gallery.php:2527, ../includes/Elements/Flip_Box.php:988, ../includes/Elements/Flip_Box.php:1101, ../includes/Elements/FluentForm.php:636, ../includes/Elements/FluentForm.php:832, ../includes/Elements/FluentForm.php:1549, ../includes/Elements/FluentForm.php:1826, ../includes/Elements/FluentForm.php:1953, ../includes/Elements/FluentForm.php:2071, ../includes/Elements/Formstack.php:865, ../includes/Elements/Formstack.php:1061, ../includes/Elements/Formstack.php:1465, ../includes/Elements/Formstack.php:1686, ../includes/Elements/Formstack.php:1815, ../includes/Elements/GravityForms.php:835, ../includes/Elements/GravityForms.php:899, ../includes/Elements/GravityForms.php:1655, ../includes/Elements/GravityForms.php:1824, ../includes/Elements/GravityForms.php:2051, ../includes/Elements/Image_Accordion.php:354, ../includes/Elements/Image_Accordion.php:464, ../includes/Elements/Info_Box.php:568, ../includes/Elements/Info_Box.php:623, ../includes/Elements/Info_Box.php:817, ../includes/Elements/Info_Box.php:897, ../includes/Elements/Info_Box.php:1048, ../includes/Elements/Info_Box.php:1128, ../includes/Elements/Login_Register.php:2689, ../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:1767, ../includes/Elements/Pricing_Table.php:1933, ../includes/Elements/Product_Grid.php:2247, ../includes/Elements/Simple_Menu.php:321, ../includes/Elements/Simple_Menu.php:394, ../includes/Elements/Team_Member.php:413, ../includes/Elements/Team_Member.php:501, ../includes/Elements/Testimonial.php:435, ../includes/Elements/Tooltip.php:439, ../includes/Elements/Tooltip.php:482, ../includes/Elements/Twitter_Feed.php:448, ../includes/Elements/Twitter_Feed.php:538, ../includes/Elements/Twitter_Feed.php:855, ../includes/Elements/Woo_Checkout.php:1507, ../includes/Elements/Woo_Checkout.php:1753, ../includes/Elements/Woo_Product_Carousel.php: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:521, ../includes/Traits/Controls.php:1255, ../includes/Traits/Controls.php:1309, ../includes/Traits/Controls.php:1439
575
  msgid "Border"
576
  msgstr ""
577
 
578
- #: ../includes/Elements/Advanced_Data_Table.php:374, ../includes/Elements/Advanced_Data_Table.php:1042, ../includes/Elements/Advanced_Data_Table.php:1240, ../includes/Elements/Advanced_Data_Table.php:1312, ../includes/Elements/Advanced_Data_Table.php:1436, ../includes/Elements/Adv_Accordion.php:379, ../includes/Elements/Adv_Accordion.php:568, ../includes/Elements/Adv_Accordion.php:628, ../includes/Elements/Adv_Accordion.php:689, ../includes/Elements/Adv_Tabs.php:332, ../includes/Elements/Adv_Tabs.php:523, ../includes/Elements/Adv_Tabs.php:590, ../includes/Elements/Adv_Tabs.php:661, ../includes/Elements/Adv_Tabs.php:756, ../includes/Elements/Betterdocs_Category_Box.php:308, ../includes/Elements/Betterdocs_Category_Box.php:376, ../includes/Elements/Betterdocs_Category_Box.php:497, ../includes/Elements/Betterdocs_Category_Box.php:574, ../includes/Elements/Betterdocs_Category_Box.php:896, ../includes/Elements/Betterdocs_Category_Box.php:1001, ../includes/Elements/Betterdocs_Category_Grid.php:349, ../includes/Elements/Betterdocs_Category_Grid.php:397, ../includes/Elements/Betterdocs_Category_Grid.php:482, ../includes/Elements/Betterdocs_Category_Grid.php:523, ../includes/Elements/Betterdocs_Category_Grid.php:648, ../includes/Elements/Betterdocs_Category_Grid.php:702, ../includes/Elements/Betterdocs_Category_Grid.php:855, ../includes/Elements/Betterdocs_Category_Grid.php:952, ../includes/Elements/Betterdocs_Category_Grid.php:1394, ../includes/Elements/Betterdocs_Category_Grid.php:1493, ../includes/Elements/Betterdocs_Search_Form.php:197, ../includes/Elements/Caldera_Forms.php:480, ../includes/Elements/Caldera_Forms.php:628, ../includes/Elements/Caldera_Forms.php:1046, ../includes/Elements/Caldera_Forms.php:1072, ../includes/Elements/Caldera_Forms.php:1239, ../includes/Elements/Contact_Form_7.php:396, ../includes/Elements/Contact_Form_7.php:722, ../includes/Elements/Contact_Form_7.php:1073, ../includes/Elements/Contact_Form_7.php:1099, ../includes/Elements/Contact_Form_7.php:1264, ../includes/Elements/Content_Ticker.php:401, ../includes/Elements/Content_Ticker.php:475, ../includes/Elements/Content_Ticker.php:632, ../includes/Elements/Countdown.php:627, ../includes/Elements/Creative_Button.php:336, ../includes/Elements/Cta_Box.php:471, ../includes/Elements/Cta_Box.php:748, ../includes/Elements/Cta_Box.php:935, ../includes/Elements/Dual_Color_Header.php:355, ../includes/Elements/Event_Calendar.php:806, ../includes/Elements/Event_Calendar.php:873, ../includes/Elements/Event_Calendar.php:927, ../includes/Elements/Event_Calendar.php:1163, ../includes/Elements/Event_Calendar.php:1331, ../includes/Elements/Event_Calendar.php:1599, ../includes/Elements/Event_Calendar.php:1670, ../includes/Elements/Facebook_Feed.php:476, ../includes/Elements/Facebook_Feed.php:536, ../includes/Elements/Fancy_Text.php:515, ../includes/Elements/Feature_List.php:642, ../includes/Elements/Filterable_Gallery.php:879, ../includes/Elements/Filterable_Gallery.php:992, ../includes/Elements/Filterable_Gallery.php:1058, ../includes/Elements/Filterable_Gallery.php:1138, ../includes/Elements/Filterable_Gallery.php:1342, ../includes/Elements/Filterable_Gallery.php:1836, ../includes/Elements/Filterable_Gallery.php:1897, ../includes/Elements/Filterable_Gallery.php:2068, ../includes/Elements/Filterable_Gallery.php:2199, ../includes/Elements/Filterable_Gallery.php:2334, ../includes/Elements/Filterable_Gallery.php:2432, ../includes/Elements/Filterable_Gallery.php:2541, ../includes/Elements/Flip_Box.php:826, ../includes/Elements/Flip_Box.php:887, ../includes/Elements/Flip_Box.php:1011, ../includes/Elements/Flip_Box.php:1124, ../includes/Elements/Flip_Box.php:1385, ../includes/Elements/FluentForm.php:499, ../includes/Elements/FluentForm.php:647, ../includes/Elements/FluentForm.php:1012, ../includes/Elements/FluentForm.php:1038, ../includes/Elements/FluentForm.php:1559, ../includes/Elements/FluentForm.php:1837, ../includes/Elements/FluentForm.php:1961, ../includes/Elements/FluentForm.php:2015, ../includes/Elements/Formstack.php:399, ../includes/Elements/Formstack.php:876, ../includes/Elements/Formstack.php:1202, ../includes/Elements/Formstack.php:1228, ../includes/Elements/Formstack.php:1475, ../includes/Elements/Formstack.php:1697, ../includes/Elements/Formstack.php:1823, ../includes/Elements/Formstack.php:1879, ../includes/Elements/GravityForms.php:436, ../includes/Elements/GravityForms.php:846, ../includes/Elements/GravityForms.php:1316, ../includes/Elements/GravityForms.php:1512, ../includes/Elements/GravityForms.php:1665, ../includes/Elements/GravityForms.php:1834, ../includes/Elements/GravityForms.php:2061, ../includes/Elements/Image_Accordion.php:362, ../includes/Elements/Image_Accordion.php:452, ../includes/Elements/Info_Box.php:1210, ../includes/Elements/Login_Register.php:1490, ../includes/Elements/Login_Register.php:1725, ../includes/Elements/Login_Register.php:1899, ../includes/Elements/Login_Register.php:2055, ../includes/Elements/Login_Register.php:2195, ../includes/Elements/Login_Register.php:2289, ../includes/Elements/Login_Register.php:2380, ../includes/Elements/Login_Register.php:2554, ../includes/Elements/Login_Register.php:2591, ../includes/Elements/Login_Register.php:2705, ../includes/Elements/Login_Register.php:3215, ../includes/Elements/Login_Register.php:3252, ../includes/Elements/Login_Register.php:3536, ../includes/Elements/Login_Register.php:3573, ../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/Pricing_Table.php:787, ../includes/Elements/Pricing_Table.php:1541, ../includes/Elements/Pricing_Table.php:1790, ../includes/Elements/Pricing_Table.php:1941, ../includes/Elements/Product_Grid.php:951, ../includes/Elements/Product_Grid.php:1991, ../includes/Elements/Product_Grid.php:2347, ../includes/Elements/Product_Grid.php:2686, ../includes/Elements/Product_Grid.php:2885, ../includes/Elements/Product_Grid.php:2917, ../includes/Elements/Simple_Menu.php:329, ../includes/Elements/Sticky_Video.php:591, ../includes/Elements/Team_Member.php:421, ../includes/Elements/Team_Member.php:520, ../includes/Elements/Team_Member.php:767, ../includes/Elements/Testimonial.php:454, ../includes/Elements/Tooltip.php:499, ../includes/Elements/Twitter_Feed.php:456, ../includes/Elements/Twitter_Feed.php:549, ../includes/Elements/TypeForm.php:310, ../includes/Elements/WeForms.php:253, ../includes/Elements/WeForms.php:394, ../includes/Elements/WeForms.php:722, ../includes/Elements/Woo_Checkout.php:647, ../includes/Elements/Woo_Checkout.php:796, ../includes/Elements/Woo_Checkout.php:992, ../includes/Elements/Woo_Checkout.php:1240, ../includes/Elements/Woo_Checkout.php:1393, ../includes/Elements/Woo_Checkout.php:1516, ../includes/Elements/Woo_Checkout.php:1691, ../includes/Elements/Woo_Checkout.php:1899, ../includes/Elements/Woo_Checkout.php:2101, ../includes/Elements/Woo_Checkout.php:2195, ../includes/Elements/Woo_Checkout.php:2475, ../includes/Elements/Woo_Product_Carousel.php:1021, ../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/WpForms.php:338, ../includes/Elements/WpForms.php:639, ../includes/Elements/WpForms.php:1047, ../includes/Elements/WpForms.php:1073, ../includes/Elements/WpForms.php:1243, ../includes/Extensions/Table_of_Content.php:544, ../includes/Extensions/Table_of_Content.php:759, ../includes/Traits/Controls.php:1263, ../includes/Traits/Controls.php:1317, ../includes/Traits/Controls.php:1447, ../includes/Traits/Woo_Product_Comparable.php:358, ../includes/Traits/Woo_Product_Comparable.php:503, ../includes/Traits/Woo_Product_Comparable.php:1384
579
  msgid "Border Radius"
580
  msgstr ""
581
 
@@ -595,23 +595,23 @@ msgstr ""
595
  msgid "Text Alignment"
596
  msgstr ""
597
 
598
- #: ../includes/Elements/Advanced_Data_Table.php:418, ../includes/Elements/Advanced_Data_Table.php:537, ../includes/Elements/Advanced_Data_Table.php:963, ../includes/Elements/Advanced_Data_Table.php:1110, ../includes/Elements/Adv_Accordion.php:154, ../includes/Elements/Betterdocs_Category_Box.php:767, ../includes/Elements/Betterdocs_Category_Grid.php:1513, ../includes/Elements/Betterdocs_Category_Grid.php:1538, ../includes/Elements/Caldera_Forms.php:233, ../includes/Elements/Caldera_Forms.php:415, ../includes/Elements/Caldera_Forms.php:561, ../includes/Elements/Caldera_Forms.php:1136, ../includes/Elements/Contact_Form_7.php:331, ../includes/Elements/Contact_Form_7.php:443, ../includes/Elements/Contact_Form_7.php:1163, ../includes/Elements/Content_Ticker.php:290, ../includes/Elements/Countdown.php:118, ../includes/Elements/Countdown.php:1030, ../includes/Elements/Creative_Button.php:445, ../includes/Elements/Cta_Box.php:102, ../includes/Elements/Data_Table.php:542, ../includes/Elements/Data_Table.php:767, ../includes/Elements/Data_Table.php:1016, ../includes/Elements/Dual_Color_Header.php:191, ../includes/Elements/Event_Calendar.php:995, ../includes/Elements/Event_Calendar.php:1127, ../includes/Elements/Fancy_Text.php:174, ../includes/Elements/Feature_List.php:305, ../includes/Elements/Filterable_Gallery.php:767, ../includes/Elements/Filterable_Gallery.php:1299, ../includes/Elements/Filterable_Gallery.php:1682, ../includes/Elements/Flip_Box.php:369, ../includes/Elements/Flip_Box.php:598, ../includes/Elements/FluentForm.php:239, ../includes/Elements/FluentForm.php:434, ../includes/Elements/FluentForm.php:580, ../includes/Elements/FluentForm.php:1211, ../includes/Elements/FluentForm.php:1456, ../includes/Elements/Formstack.php:334, ../includes/Elements/Formstack.php:449, ../includes/Elements/Formstack.php:763, ../includes/Elements/Formstack.php:1372, ../includes/Elements/GravityForms.php:347, ../includes/Elements/GravityForms.php:484, ../includes/Elements/GravityForms.php:629, ../includes/Elements/GravityForms.php:1721, ../includes/Elements/GravityForms.php:1971, ../includes/Elements/Image_Accordion.php:109, ../includes/Elements/Info_Box.php:303, ../includes/Elements/Login_Register.php:674, ../includes/Elements/Login_Register.php:707, ../includes/Elements/Login_Register.php:2498, ../includes/Elements/Login_Register.php:3166, ../includes/Elements/Login_Register.php:3486, ../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:469, ../includes/Elements/Post_Grid.php:624, ../includes/Elements/Post_Grid.php:692, ../includes/Elements/Post_Grid.php:787, ../includes/Elements/Post_Grid.php:870, ../includes/Elements/Post_Timeline.php:357, ../includes/Elements/Post_Timeline.php:415, ../includes/Elements/Pricing_Table.php:262, ../includes/Elements/Pricing_Table.php:379, ../includes/Elements/Pricing_Table.php:681, ../includes/Elements/Pricing_Table.php:821, ../includes/Elements/Pricing_Table.php:846, ../includes/Elements/Product_Grid.php:703, ../includes/Elements/Product_Grid.php:1021, ../includes/Elements/Product_Grid.php:1702, ../includes/Elements/Product_Grid.php:2168, ../includes/Elements/Progress_Bar.php:321, ../includes/Elements/Progress_Bar.php:532, ../includes/Elements/Simple_Menu.php:188, ../includes/Elements/Simple_Menu.php:452, ../includes/Elements/Simple_Menu.php:478, ../includes/Elements/Simple_Menu.php:503, ../includes/Elements/Simple_Menu.php:798, ../includes/Elements/Team_Member.php:380, ../includes/Elements/Testimonial.php:314, ../includes/Elements/Tooltip.php:209, ../includes/Elements/Tooltip.php:288, ../includes/Elements/Tooltip.php:377, ../includes/Elements/TypeForm.php:200, ../includes/Elements/WeForms.php:165, ../includes/Elements/WeForms.php:635, ../includes/Elements/Woo_Product_Carousel.php:717, ../includes/Elements/Woo_Product_Carousel.php:833, ../includes/Elements/Woo_Product_Carousel.php:882, ../includes/Elements/WpForms.php:271, ../includes/Elements/WpForms.php:388, ../includes/Elements/WpForms.php:572, ../includes/Elements/WpForms.php:1137, ../includes/Extensions/Table_of_Content.php:438, ../includes/Traits/Controls.php:599, ../includes/Traits/Controls.php:1528, ../includes/Traits/Controls.php:1579, ../includes/Traits/Controls.php:1580, ../includes/Traits/Controls.php:1902
599
  msgid "Left"
600
  msgstr ""
601
 
602
- #: ../includes/Elements/Advanced_Data_Table.php:422, ../includes/Elements/Advanced_Data_Table.php:541, ../includes/Elements/Advanced_Data_Table.php:967, ../includes/Elements/Advanced_Data_Table.php:1114, ../includes/Elements/Betterdocs_Category_Box.php:771, ../includes/Elements/Betterdocs_Category_Grid.php:1517, ../includes/Elements/Betterdocs_Category_Grid.php:1542, ../includes/Elements/Caldera_Forms.php:237, ../includes/Elements/Caldera_Forms.php:419, ../includes/Elements/Caldera_Forms.php:565, ../includes/Elements/Caldera_Forms.php:1140, ../includes/Elements/Contact_Form_7.php:335, ../includes/Elements/Contact_Form_7.php:447, ../includes/Elements/Contact_Form_7.php:1167, ../includes/Elements/Countdown.php:122, ../includes/Elements/Countdown.php:1034, ../includes/Elements/Creative_Button.php:449, ../includes/Elements/Cta_Box.php:103, ../includes/Elements/Data_Table.php:546, ../includes/Elements/Data_Table.php:771, ../includes/Elements/Data_Table.php:1020, ../includes/Elements/Dual_Color_Header.php:195, ../includes/Elements/Dual_Color_Header.php:658, ../includes/Elements/Event_Calendar.php:999, ../includes/Elements/Event_Calendar.php:1131, ../includes/Elements/Fancy_Text.php:178, ../includes/Elements/Filterable_Gallery.php:771, ../includes/Elements/Filterable_Gallery.php:1303, ../includes/Elements/Filterable_Gallery.php:1686, ../includes/Elements/Flip_Box.php:373, ../includes/Elements/Flip_Box.php:602, ../includes/Elements/FluentForm.php:243, ../includes/Elements/FluentForm.php:438, ../includes/Elements/FluentForm.php:584, ../includes/Elements/FluentForm.php:1215, ../includes/Elements/FluentForm.php:1460, ../includes/Elements/Formstack.php:338, ../includes/Elements/Formstack.php:453, ../includes/Elements/Formstack.php:767, ../includes/Elements/Formstack.php:1376, ../includes/Elements/GravityForms.php:351, ../includes/Elements/GravityForms.php:488, ../includes/Elements/GravityForms.php:633, ../includes/Elements/GravityForms.php:1725, ../includes/Elements/GravityForms.php:1975, ../includes/Elements/Image_Accordion.php:113, ../includes/Elements/Image_Accordion.php:136, ../includes/Elements/Info_Box.php:307, ../includes/Elements/Login_Register.php:2502, ../includes/Elements/Login_Register.php:3148, ../includes/Elements/Login_Register.php:3170, ../includes/Elements/Login_Register.php:3447, ../includes/Elements/Login_Register.php:3467, ../includes/Elements/Login_Register.php:3490, ../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:473, ../includes/Elements/Post_Grid.php:628, ../includes/Elements/Post_Grid.php:696, ../includes/Elements/Post_Grid.php:791, ../includes/Elements/Post_Grid.php:874, ../includes/Elements/Post_Timeline.php:361, ../includes/Elements/Post_Timeline.php:419, ../includes/Elements/Pricing_Table.php:825, ../includes/Elements/Pricing_Table.php:850, ../includes/Elements/Product_Grid.php:707, ../includes/Elements/Product_Grid.php:1025, ../includes/Elements/Product_Grid.php:2172, ../includes/Elements/Progress_Bar.php:325, ../includes/Elements/Progress_Bar.php:536, ../includes/Elements/Simple_Menu.php:192, ../includes/Elements/Simple_Menu.php:456, ../includes/Elements/Simple_Menu.php:482, ../includes/Elements/Simple_Menu.php:507, ../includes/Elements/Simple_Menu.php:802, ../includes/Elements/Team_Member.php:384, ../includes/Elements/Testimonial.php:318, ../includes/Elements/Tooltip.php:213, ../includes/Elements/Tooltip.php:381, ../includes/Elements/TypeForm.php:204, ../includes/Elements/WeForms.php:169, ../includes/Elements/WeForms.php:639, ../includes/Elements/Woo_Product_Carousel.php:886, ../includes/Elements/WpForms.php:275, ../includes/Elements/WpForms.php:392, ../includes/Elements/WpForms.php:576, ../includes/Elements/WpForms.php:1141, ../includes/Traits/Controls.php:598, ../includes/Traits/Controls.php:1532, ../includes/Traits/Controls.php:1906
603
  msgid "Center"
604
  msgstr ""
605
 
606
- #: ../includes/Elements/Advanced_Data_Table.php:426, ../includes/Elements/Advanced_Data_Table.php:545, ../includes/Elements/Advanced_Data_Table.php:971, ../includes/Elements/Advanced_Data_Table.php:1118, ../includes/Elements/Adv_Accordion.php:153, ../includes/Elements/Betterdocs_Category_Box.php:775, ../includes/Elements/Betterdocs_Category_Grid.php:1521, ../includes/Elements/Betterdocs_Category_Grid.php:1546, ../includes/Elements/Caldera_Forms.php:241, ../includes/Elements/Caldera_Forms.php:423, ../includes/Elements/Caldera_Forms.php:569, ../includes/Elements/Caldera_Forms.php:1144, ../includes/Elements/Contact_Form_7.php:339, ../includes/Elements/Contact_Form_7.php:451, ../includes/Elements/Contact_Form_7.php:1171, ../includes/Elements/Content_Ticker.php:291, ../includes/Elements/Countdown.php:126, ../includes/Elements/Countdown.php:1038, ../includes/Elements/Creative_Button.php:453, ../includes/Elements/Cta_Box.php:104, ../includes/Elements/Data_Table.php:550, ../includes/Elements/Data_Table.php:775, ../includes/Elements/Data_Table.php:1024, ../includes/Elements/Dual_Color_Header.php:199, ../includes/Elements/Event_Calendar.php:1003, ../includes/Elements/Event_Calendar.php:1135, ../includes/Elements/Fancy_Text.php:182, ../includes/Elements/Feature_List.php:313, ../includes/Elements/Filterable_Gallery.php:775, ../includes/Elements/Filterable_Gallery.php:1307, ../includes/Elements/Filterable_Gallery.php:1690, ../includes/Elements/Flip_Box.php:377, ../includes/Elements/Flip_Box.php:606, ../includes/Elements/FluentForm.php:247, ../includes/Elements/FluentForm.php:442, ../includes/Elements/FluentForm.php:588, ../includes/Elements/FluentForm.php:1219, ../includes/Elements/FluentForm.php:1464, ../includes/Elements/Formstack.php:342, ../includes/Elements/Formstack.php:457, ../includes/Elements/Formstack.php:771, ../includes/Elements/Formstack.php:1380, ../includes/Elements/GravityForms.php:355, ../includes/Elements/GravityForms.php:492, ../includes/Elements/GravityForms.php:637, ../includes/Elements/GravityForms.php:1729, ../includes/Elements/GravityForms.php:1979, ../includes/Elements/Image_Accordion.php:117, ../includes/Elements/Info_Box.php:311, ../includes/Elements/Login_Register.php:678, ../includes/Elements/Login_Register.php:2506, ../includes/Elements/Login_Register.php:3174, ../includes/Elements/Login_Register.php:3494, ../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:477, ../includes/Elements/Post_Grid.php:632, ../includes/Elements/Post_Grid.php:700, ../includes/Elements/Post_Grid.php:795, ../includes/Elements/Post_Grid.php:878, ../includes/Elements/Post_Timeline.php:365, ../includes/Elements/Post_Timeline.php:423, ../includes/Elements/Pricing_Table.php:263, ../includes/Elements/Pricing_Table.php:387, ../includes/Elements/Pricing_Table.php:685, ../includes/Elements/Pricing_Table.php:829, ../includes/Elements/Pricing_Table.php:854, ../includes/Elements/Product_Grid.php:711, ../includes/Elements/Product_Grid.php:1029, ../includes/Elements/Product_Grid.php:1706, ../includes/Elements/Product_Grid.php:2176, ../includes/Elements/Progress_Bar.php:329, ../includes/Elements/Progress_Bar.php:540, ../includes/Elements/Simple_Menu.php:196, ../includes/Elements/Simple_Menu.php:460, ../includes/Elements/Simple_Menu.php:486, ../includes/Elements/Simple_Menu.php:511, ../includes/Elements/Simple_Menu.php:806, ../includes/Elements/Team_Member.php:388, ../includes/Elements/Testimonial.php:322, ../includes/Elements/Tooltip.php:217, ../includes/Elements/Tooltip.php:289, ../includes/Elements/Tooltip.php:385, ../includes/Elements/TypeForm.php:208, ../includes/Elements/WeForms.php:173, ../includes/Elements/WeForms.php:643, ../includes/Elements/Woo_Product_Carousel.php:718, ../includes/Elements/Woo_Product_Carousel.php:837, ../includes/Elements/Woo_Product_Carousel.php:890, ../includes/Elements/WpForms.php:279, ../includes/Elements/WpForms.php:396, ../includes/Elements/WpForms.php:580, ../includes/Elements/WpForms.php:1145, ../includes/Extensions/Table_of_Content.php:439, ../includes/Traits/Controls.php:597, ../includes/Traits/Controls.php:1536, ../includes/Traits/Controls.php:1579, ../includes/Traits/Controls.php:1580, ../includes/Traits/Controls.php:1910
607
  msgid "Right"
608
  msgstr ""
609
 
610
- #: ../includes/Elements/Advanced_Data_Table.php:441, ../includes/Elements/Advanced_Data_Table.php:560, ../includes/Elements/Advanced_Data_Table.php:654, ../includes/Elements/Advanced_Data_Table.php:685, ../includes/Elements/Advanced_Data_Table.php:716, ../includes/Elements/Advanced_Data_Table.php:747, ../includes/Elements/Advanced_Data_Table.php:778, ../includes/Elements/Advanced_Data_Table.php:809, ../includes/Elements/Advanced_Data_Table.php:991, ../includes/Elements/Advanced_Data_Table.php:1187, ../includes/Elements/Advanced_Data_Table.php:1257, ../includes/Elements/Adv_Accordion.php:537, ../includes/Elements/Adv_Accordion.php:597, ../includes/Elements/Adv_Accordion.php:657, ../includes/Elements/Adv_Accordion.php:724, ../includes/Elements/Adv_Tabs.php:489, ../includes/Elements/Adv_Tabs.php:556, ../includes/Elements/Adv_Tabs.php:624, ../includes/Elements/Adv_Tabs.php:708, ../includes/Elements/Caldera_Forms.php:270, ../includes/Elements/Caldera_Forms.php:331, ../includes/Elements/Caldera_Forms.php:523, ../includes/Elements/Caldera_Forms.php:604, ../includes/Elements/Caldera_Forms.php:850, ../includes/Elements/Caldera_Forms.php:906, ../includes/Elements/Caldera_Forms.php:1216, ../includes/Elements/Caldera_Forms.php:1322, ../includes/Elements/Caldera_Forms.php:1375, ../includes/Elements/Contact_Form_7.php:474, ../includes/Elements/Contact_Form_7.php:505, ../includes/Elements/Contact_Form_7.php:562, ../includes/Elements/Contact_Form_7.php:845, ../includes/Elements/Contact_Form_7.php:920, ../includes/Elements/Contact_Form_7.php:1242, ../includes/Elements/Contact_Form_7.php:1348, ../includes/Elements/Contact_Form_7.php:1412, ../includes/Elements/Contact_Form_7.php:1535, ../includes/Elements/Contact_Form_7.php:1592, ../includes/Elements/Content_Ticker.php:357, ../includes/Elements/Content_Ticker.php:433, ../includes/Elements/Countdown.php:1109, ../includes/Elements/Creative_Button.php:277, ../includes/Elements/Creative_Button.php:370, ../includes/Elements/Cta_Box.php:698, ../includes/Elements/Cta_Box.php:769, ../includes/Elements/Cta_Box.php:904, ../includes/Elements/Cta_Box.php:956, ../includes/Elements/Data_Table.php:978, ../includes/Elements/Data_Table.php:995, ../includes/Elements/Event_Calendar.php:1241, ../includes/Elements/Event_Calendar.php:1274, ../includes/Elements/Filterable_Gallery.php:959, ../includes/Elements/Filterable_Gallery.php:1025, ../includes/Elements/Filterable_Gallery.php:2510, ../includes/Elements/Filterable_Gallery.php:2705, ../includes/Elements/FluentForm.php:277, ../includes/Elements/FluentForm.php:338, ../includes/Elements/FluentForm.php:542, ../includes/Elements/FluentForm.php:623, ../includes/Elements/FluentForm.php:872, ../includes/Elements/FluentForm.php:1536, ../includes/Elements/FluentForm.php:1642, ../includes/Elements/FluentForm.php:2059, ../includes/Elements/Formstack.php:481, ../includes/Elements/Formstack.php:530, ../includes/Elements/Formstack.php:585, ../includes/Elements/Formstack.php:797, ../includes/Elements/Formstack.php:852, ../includes/Elements/Formstack.php:1101, ../includes/Elements/Formstack.php:1452, ../includes/Elements/Formstack.php:1558, ../includes/Elements/Formstack.php:1781, ../includes/Elements/Formstack.php:2020, ../includes/Elements/GravityForms.php:515, ../includes/Elements/GravityForms.php:546, ../includes/Elements/GravityForms.php:585, ../includes/Elements/GravityForms.php:672, ../includes/Elements/GravityForms.php:936, ../includes/Elements/GravityForms.php:989, ../includes/Elements/GravityForms.php:1176, ../includes/Elements/GravityForms.php:1810, ../includes/Elements/GravityForms.php:1902, ../includes/Elements/GravityForms.php:2038, ../includes/Elements/GravityForms.php:2125, ../includes/Elements/GravityForms.php:2199, ../includes/Elements/GravityForms.php:2334, ../includes/Elements/Info_Box.php:1232, ../includes/Elements/Info_Box.php:1278, ../includes/Elements/Login_Register.php:2527, ../includes/Elements/Login_Register.php:2666, ../includes/Elements/Login_Register.php:3010, ../includes/Elements/Login_Register.php:3195, ../includes/Elements/Login_Register.php:3232, ../includes/Elements/Login_Register.php:3516, ../includes/Elements/Login_Register.php:3553, ../includes/Elements/NinjaForms.php:452, ../includes/Elements/NinjaForms.php:501, ../includes/Elements/NinjaForms.php:559, ../includes/Elements/NinjaForms.php:646, ../includes/Elements/NinjaForms.php:894, ../includes/Elements/NinjaForms.php:950, ../includes/Elements/NinjaForms.php:1384, ../includes/Elements/NinjaForms.php:1471, ../includes/Elements/NinjaForms.php:1533, ../includes/Elements/NinjaForms.php:1633, ../includes/Elements/Pricing_Table.php:1893, ../includes/Elements/Pricing_Table.php:1962, ../includes/Elements/Product_Grid.php:2222, ../includes/Elements/Product_Grid.php:2260, ../includes/Elements/Product_Grid.php:2304, ../includes/Elements/Simple_Menu.php:561, ../includes/Elements/Simple_Menu.php:688, ../includes/Elements/Simple_Menu.php:872, ../includes/Elements/Simple_Menu.php:997, ../includes/Elements/Tooltip.php:418, ../includes/Elements/Tooltip.php:461, ../includes/Elements/Tooltip.php:634, ../includes/Elements/WeForms.php:692, ../includes/Elements/WeForms.php:742, ../includes/Elements/WpForms.php:419, ../includes/Elements/WpForms.php:468, ../includes/Elements/WpForms.php:533, ../includes/Elements/WpForms.php:615, ../includes/Elements/WpForms.php:851, ../includes/Elements/WpForms.php:907, ../includes/Elements/WpForms.php:1220, ../includes/Elements/WpForms.php:1327, ../includes/Elements/WpForms.php:1372, ../includes/Extensions/Table_of_Content.php:602, ../includes/Extensions/Table_of_Content.php:917, ../includes/Extensions/Table_of_Content.php:940, ../includes/Extensions/Table_of_Content.php:966, ../includes/Traits/Controls.php:1229, ../includes/Traits/Controls.php:1284, ../includes/Traits/Controls.php:1414, ../includes/Traits/Controls.php:1476, ../includes/Traits/Controls.php:1859
611
  msgid "Text Color"
612
  msgstr ""
613
 
614
- #: ../includes/Elements/Advanced_Data_Table.php:455, ../includes/Elements/Advanced_Data_Table.php:596, ../includes/Elements/Advanced_Data_Table.php:669, ../includes/Elements/Advanced_Data_Table.php:700, ../includes/Elements/Advanced_Data_Table.php:731, ../includes/Elements/Advanced_Data_Table.php:762, ../includes/Elements/Advanced_Data_Table.php:793, ../includes/Elements/Advanced_Data_Table.php:824, ../includes/Elements/Advanced_Data_Table.php:1003, ../includes/Elements/Advanced_Data_Table.php:1200, ../includes/Elements/Advanced_Data_Table.php:1271, ../includes/Elements/Advanced_Data_Table.php:1366, ../includes/Elements/Advanced_Data_Table.php:1396, ../includes/Elements/Adv_Accordion.php:873, ../includes/Elements/Adv_Accordion.php:919, ../includes/Elements/Adv_Accordion.php:965, ../includes/Elements/Adv_Tabs.php:470, ../includes/Elements/Adv_Tabs.php:689, ../includes/Elements/Caldera_Forms.php:592, ../includes/Elements/Caldera_Forms.php:800, ../includes/Elements/Caldera_Forms.php:1204, ../includes/Elements/Caldera_Forms.php:1310, ../includes/Elements/Caldera_Forms.php:1364, ../includes/Elements/Contact_Form_7.php:550, ../includes/Elements/Contact_Form_7.php:763, ../includes/Elements/Contact_Form_7.php:1230, ../includes/Elements/Contact_Form_7.php:1336, ../includes/Elements/Contact_Form_7.php:1427, ../includes/Elements/Contact_Form_7.php:1520, ../includes/Elements/Content_Ticker.php:345, ../includes/Elements/Content_Ticker.php:422, ../includes/Elements/Content_Ticker.php:597, ../includes/Elements/Content_Ticker.php:653, ../includes/Elements/Countdown.php:733, ../includes/Elements/Countdown.php:745, ../includes/Elements/Countdown.php:805, ../includes/Elements/Countdown.php:817, ../includes/Elements/Countdown.php:877, ../includes/Elements/Countdown.php:889, ../includes/Elements/Countdown.php:949, ../includes/Elements/Countdown.php:961, ../includes/Elements/Creative_Button.php:291, ../includes/Elements/Creative_Button.php:383, ../includes/Elements/Cta_Box.php:122, ../includes/Elements/Cta_Box.php:426, ../includes/Elements/Cta_Box.php:712, ../includes/Elements/Cta_Box.php:781, ../includes/Elements/Data_Table.php:628, ../includes/Elements/Data_Table.php:668, ../includes/Elements/Data_Table.php:1179, ../includes/Elements/Dual_Color_Header.php:310, ../includes/Elements/Event_Calendar.php:1253, ../includes/Elements/Filterable_Gallery.php:834, ../includes/Elements/Filterable_Gallery.php:971, ../includes/Elements/Filterable_Gallery.php:1037, ../includes/Elements/Filterable_Gallery.php:1183, ../includes/Elements/Filterable_Gallery.php:1373, ../includes/Elements/Filterable_Gallery.php:1403, ../includes/Elements/Filterable_Gallery.php:1508, ../includes/Elements/Filterable_Gallery.php:1524, ../includes/Elements/Filterable_Gallery.php:1726, ../includes/Elements/Filterable_Gallery.php:1864, ../includes/Elements/Filterable_Gallery.php:2494, ../includes/Elements/Filterable_Gallery.php:2689, ../includes/Elements/FluentForm.php:611, ../includes/Elements/FluentForm.php:819, ../includes/Elements/FluentForm.php:1253, ../includes/Elements/FluentForm.php:1339, ../includes/Elements/FluentForm.php:1524, ../includes/Elements/FluentForm.php:1630, ../includes/Elements/FluentForm.php:2048, ../includes/Elements/Formstack.php:840, ../includes/Elements/Formstack.php:1048, ../includes/Elements/Formstack.php:1440, ../includes/Elements/Formstack.php:1546, ../includes/Elements/GravityForms.php:660, ../includes/Elements/GravityForms.php:886, ../includes/Elements/GravityForms.php:1619, ../includes/Elements/GravityForms.php:1797, ../includes/Elements/GravityForms.php:1889, ../includes/Elements/GravityForms.php:2026, ../includes/Elements/GravityForms.php:2113, ../includes/Elements/Image_Accordion.php:317, ../includes/Elements/Info_Box.php:543, ../includes/Elements/Info_Box.php:784, ../includes/Elements/Info_Box.php:863, ../includes/Elements/Info_Box.php:1032, ../includes/Elements/Info_Box.php:1094, ../includes/Elements/Info_Box.php:1244, ../includes/Elements/Info_Box.php:1290, ../includes/Elements/Login_Register.php:1505, ../includes/Elements/Login_Register.php:1638, ../includes/Elements/Login_Register.php:1740, ../includes/Elements/Login_Register.php:1914, ../includes/Elements/Login_Register.php:2270, ../includes/Elements/Login_Register.php:2361, ../includes/Elements/Login_Register.php:2541, ../includes/Elements/Login_Register.php:2579, ../includes/Elements/Login_Register.php:2676, ../includes/Elements/Login_Register.php:3203, ../includes/Elements/Login_Register.php:3240, ../includes/Elements/Login_Register.php:3524, ../includes/Elements/Login_Register.php:3561, ../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:944, ../includes/Elements/Pricing_Table.php:742, ../includes/Elements/Pricing_Table.php:902, ../includes/Elements/Pricing_Table.php:1408, ../includes/Elements/Pricing_Table.php:1477, ../includes/Elements/Pricing_Table.php:1643, ../includes/Elements/Pricing_Table.php:1905, ../includes/Elements/Pricing_Table.php:1974, ../includes/Elements/Product_Grid.php:1834, ../includes/Elements/Product_Grid.php:1942, ../includes/Elements/Product_Grid.php:2048, ../includes/Elements/Product_Grid.php:2234, ../includes/Elements/Product_Grid.php:2272, ../includes/Elements/Product_Grid.php:2316, ../includes/Elements/Product_Grid.php:2563, ../includes/Elements/Product_Grid.php:2606, ../includes/Elements/Product_Grid.php:2667, ../includes/Elements/Product_Grid.php:2718, ../includes/Elements/Progress_Bar.php:578, ../includes/Elements/Simple_Menu.php:252, ../includes/Elements/Simple_Menu.php:308, ../includes/Elements/Simple_Menu.php:380, ../includes/Elements/Simple_Menu.php:575, ../includes/Elements/Simple_Menu.php:655, ../includes/Elements/Simple_Menu.php:703, ../includes/Elements/Simple_Menu.php:750, ../includes/Elements/Simple_Menu.php:884, ../includes/Elements/Simple_Menu.php:964, ../includes/Elements/Simple_Menu.php:1011, ../includes/Elements/Simple_Menu.php:1058, ../includes/Elements/Team_Member.php:731, ../includes/Elements/Tooltip.php:407, ../includes/Elements/Tooltip.php:450, ../includes/Elements/Tooltip.php:623, ../includes/Elements/Twitter_Feed.php:401, ../includes/Elements/WeForms.php:703, ../includes/Elements/WeForms.php:753, ../includes/Elements/Woo_Checkout.php:617, ../includes/Elements/Woo_Checkout.php:732, ../includes/Elements/Woo_Checkout.php:854, ../includes/Elements/Woo_Checkout.php:1312, ../includes/Elements/Woo_Checkout.php:1352, ../includes/Elements/Woo_Checkout.php:1610, ../includes/Elements/Woo_Checkout.php:1650, ../includes/Elements/Woo_Checkout.php:2154, ../includes/Elements/Woo_Checkout.php:2284, ../includes/Elements/Woo_Checkout.php:2394, ../includes/Elements/Woo_Checkout.php:2434, ../includes/Elements/Woo_Product_Carousel.php:908, ../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/WpForms.php:603, ../includes/Elements/WpForms.php:1208, ../includes/Elements/WpForms.php:1315, ../includes/Extensions/Reading_Progress.php:156, ../includes/Extensions/Table_of_Content.php:589, ../includes/Extensions/Table_of_Content.php:735, ../includes/Extensions/Table_of_Content.php:799, ../includes/Traits/Controls.php:1426, ../includes/Traits/Controls.php:1488, ../includes/Traits/Controls.php:1869, ../includes/Traits/Woo_Product_Comparable.php:370, ../includes/Traits/Woo_Product_Comparable.php:476
615
  msgid "Background Color"
616
  msgstr ""
617
 
@@ -619,7 +619,7 @@ msgstr ""
619
  msgid "Cell Border"
620
  msgstr ""
621
 
622
- #: ../includes/Elements/Advanced_Data_Table.php:494, ../includes/Elements/Advanced_Data_Table.php:839, ../includes/Elements/Advanced_Data_Table.php:923, ../includes/Elements/Advanced_Data_Table.php:1141, ../includes/Elements/Advanced_Data_Table.php:1458, ../includes/Elements/Adv_Accordion.php:349, ../includes/Elements/Adv_Accordion.php:502, ../includes/Elements/Adv_Accordion.php:742, ../includes/Elements/Adv_Tabs.php:301, ../includes/Elements/Adv_Tabs.php:444, ../includes/Elements/Adv_Tabs.php:726, ../includes/Elements/Betterdocs_Category_Box.php:512, ../includes/Elements/Betterdocs_Category_Grid.php:558, ../includes/Elements/Betterdocs_Category_Grid.php:722, ../includes/Elements/Betterdocs_Category_Grid.php:1406, ../includes/Elements/Betterdocs_Search_Form.php:123, ../includes/Elements/Betterdocs_Search_Form.php:431, ../includes/Elements/Caldera_Forms.php:741, ../includes/Elements/Caldera_Forms.php:1251, ../includes/Elements/Contact_Form_7.php:598, ../includes/Elements/Contact_Form_7.php:1276, ../includes/Elements/Contact_Form_7.php:1471, ../includes/Elements/Contact_Form_7.php:1668, ../includes/Elements/Content_Ticker.php:389, ../includes/Elements/Content_Ticker.php:452, ../includes/Elements/Content_Ticker.php:693, ../includes/Elements/Countdown.php:606, ../includes/Elements/Countdown.php:1136, ../includes/Elements/Cta_Box.php:438, ../includes/Elements/Cta_Box.php:651, ../includes/Elements/Cta_Box.php:868, ../includes/Elements/Data_Table.php:596, ../includes/Elements/Data_Table.php:881, ../includes/Elements/Dual_Color_Header.php:322, ../includes/Elements/Facebook_Feed.php:605, ../includes/Elements/Facebook_Feed.php:631, ../includes/Elements/Facebook_Feed.php:703, ../includes/Elements/Fancy_Text.php:480, ../includes/Elements/Feature_List.php:599, ../includes/Elements/Filterable_Gallery.php:846, ../includes/Elements/Filterable_Gallery.php:923, ../includes/Elements/Filterable_Gallery.php:1105, ../includes/Elements/Filterable_Gallery.php:1195, ../includes/Elements/Filterable_Gallery.php:1539, ../includes/Elements/Filterable_Gallery.php:1750, ../includes/Elements/Filterable_Gallery.php:2613, ../includes/Elements/Flip_Box.php:999, ../includes/Elements/Flip_Box.php:1112, ../includes/Elements/Flip_Box.php:1348, ../includes/Elements/FluentForm.php:760, ../includes/Elements/FluentForm.php:1128, ../includes/Elements/FluentForm.php:1183, ../includes/Elements/FluentForm.php:1306, ../includes/Elements/FluentForm.php:1391, ../includes/Elements/FluentForm.php:1571, ../includes/Elements/FluentForm.php:1973, ../includes/Elements/FluentForm.php:2139, ../includes/Elements/Formstack.php:680, ../includes/Elements/Formstack.php:735, ../includes/Elements/Formstack.php:989, ../includes/Elements/Formstack.php:1322, ../includes/Elements/Formstack.php:1487, ../includes/Elements/Formstack.php:1835, ../includes/Elements/Formstack.php:1964, ../includes/Elements/GravityForms.php:722, ../includes/Elements/GravityForms.php:1343, ../includes/Elements/GravityForms.php:1539, ../includes/Elements/GravityForms.php:1677, ../includes/Elements/GravityForms.php:1847, ../includes/Elements/GravityForms.php:2073, ../includes/Elements/Image_Accordion.php:329, ../includes/Elements/Image_Accordion.php:441, ../includes/Elements/Info_Box.php:555, ../includes/Elements/Login_Register.php:1468, ../includes/Elements/Login_Register.php:2033, ../includes/Elements/Login_Register.php:2172, ../includes/Elements/Login_Register.php:2245, ../includes/Elements/Login_Register.php:2336, ../includes/Elements/Login_Register.php:2438, ../includes/Elements/Login_Register.php:2474, ../includes/Elements/Login_Register.php:2636, ../includes/Elements/Login_Register.php:3108, ../includes/Elements/Login_Register.php:3407, ../includes/Elements/NinjaForms.php:784, ../includes/Elements/NinjaForms.php:1419, ../includes/Elements/Pricing_Table.php:754, ../includes/Elements/Pricing_Table.php:1519, ../includes/Elements/Pricing_Table.php:1824, ../includes/Elements/Product_Grid.php:814, ../includes/Elements/Product_Grid.php:1065, ../includes/Elements/Product_Grid.php:1473, ../includes/Elements/Simple_Menu.php:341, ../includes/Elements/Simple_Menu.php:817, ../includes/Elements/Team_Member.php:487, ../includes/Elements/Testimonial.php:421, ../includes/Elements/Tooltip.php:349, ../includes/Elements/Tooltip.php:601, ../includes/Elements/Twitter_Feed.php:431, ../includes/Elements/Twitter_Feed.php:490, ../includes/Elements/Twitter_Feed.php:523, ../includes/Elements/WeForms.php:676, ../includes/Elements/Woo_Checkout.php:628, ../includes/Elements/Woo_Checkout.php:1220, ../includes/Elements/Woo_Checkout.php:1413, ../includes/Elements/Woo_Checkout.php:1543, ../includes/Elements/Woo_Checkout.php:1711, ../includes/Elements/Woo_Checkout.php:1926, ../includes/Elements/Woo_Checkout.php:2176, ../includes/Elements/Woo_Checkout.php:2507, ../includes/Elements/Woo_Product_Carousel.php:1043, ../includes/Elements/Woo_Product_Carousel.php:2276, ../includes/Elements/WpForms.php:752, ../includes/Elements/WpForms.php:1255, ../includes/Extensions/Table_of_Content.php:624, ../includes/Extensions/Table_of_Content.php:812, ../includes/Traits/Controls.php:1333, ../includes/Traits/Controls.php:1378, ../includes/Traits/Controls.php:1879, ../includes/Traits/Woo_Product_Comparable.php:342, ../includes/Traits/Woo_Product_Comparable.php:987, ../includes/Traits/Woo_Product_Comparable.php:1136, ../includes/Traits/Woo_Product_Comparable.php:1604
623
  msgid "Padding"
624
  msgstr ""
625
 
@@ -679,19 +679,19 @@ msgstr ""
679
  msgid "Alignment"
680
  msgstr ""
681
 
682
- #: ../includes/Elements/Advanced_Data_Table.php:1162, ../includes/Elements/Adv_Accordion.php:360, ../includes/Elements/Adv_Accordion.php:513, ../includes/Elements/Adv_Accordion.php:753, ../includes/Elements/Adv_Tabs.php:312, ../includes/Elements/Adv_Tabs.php:455, ../includes/Elements/Adv_Tabs.php:737, ../includes/Elements/Betterdocs_Category_Grid.php:570, ../includes/Elements/Betterdocs_Category_Grid.php:736, ../includes/Elements/Caldera_Forms.php:297, ../includes/Elements/Caldera_Forms.php:359, ../includes/Elements/Contact_Form_7.php:372, ../includes/Elements/Contact_Form_7.php:1653, ../includes/Elements/Content_Ticker.php:464, ../includes/Elements/Countdown.php:1088, ../includes/Elements/Cta_Box.php:450, ../includes/Elements/Cta_Box.php:663, ../includes/Elements/Cta_Box.php:880, ../includes/Elements/Dual_Color_Header.php:334, ../includes/Elements/Dual_Color_Header.php:702, ../includes/Elements/Fancy_Text.php:492, ../includes/Elements/Filterable_Gallery.php:858, ../includes/Elements/Filterable_Gallery.php:935, ../includes/Elements/Filterable_Gallery.php:1117, ../includes/Elements/Filterable_Gallery.php:1762, ../includes/Elements/Filterable_Gallery.php:2211, ../includes/Elements/Filterable_Gallery.php:2654, ../includes/Elements/Flip_Box.php:1336, ../includes/Elements/FluentForm.php:304, ../includes/Elements/FluentForm.php:366, ../includes/Elements/FluentForm.php:1140, ../includes/Elements/FluentForm.php:1195, ../includes/Elements/FluentForm.php:2151, ../includes/Elements/Formstack.php:502, ../includes/Elements/Formstack.php:552, ../includes/Elements/Formstack.php:692, ../includes/Elements/Formstack.php:747, ../includes/Elements/Formstack.php:1979, ../includes/Elements/GravityForms.php:1072, ../includes/Elements/GravityForms.php:1331, ../includes/Elements/GravityForms.php:1527, ../includes/Elements/GravityForms.php:1691, ../includes/Elements/Image_Accordion.php:341, ../includes/Elements/Image_Accordion.php:430, ../includes/Elements/Info_Box.php:688, ../includes/Elements/Info_Box.php:750, ../includes/Elements/Info_Box.php:981, ../includes/Elements/Info_Box.php:1371, ../includes/Elements/Login_Register.php:1453, ../includes/Elements/Login_Register.php:2018, ../includes/Elements/Login_Register.php:2157, ../includes/Elements/Login_Register.php:2230, ../includes/Elements/Login_Register.php:2321, ../includes/Elements/Login_Register.php:2423, ../includes/Elements/Login_Register.php:2459, ../includes/Elements/Login_Register.php:2621, ../includes/Elements/Login_Register.php:3093, ../includes/Elements/Login_Register.php:3328, ../includes/Elements/Login_Register.php:3392, ../includes/Elements/NinjaForms.php:473, ../includes/Elements/NinjaForms.php:523, ../includes/Elements/Post_Grid.php:401, ../includes/Elements/Post_Grid.php:516, ../includes/Elements/Post_Grid.php:531, ../includes/Elements/Post_Grid.php:655, ../includes/Elements/Post_Grid.php:743, ../includes/Elements/Post_Grid.php:819, ../includes/Elements/Pricing_Table.php:766, ../includes/Elements/Pricing_Table.php:1092, ../includes/Elements/Pricing_Table.php:1162, ../includes/Elements/Pricing_Table.php:1836, ../includes/Elements/Team_Member.php:475, ../includes/Elements/Testimonial.php:409, ../includes/Elements/Testimonial.php:507, ../includes/Elements/Testimonial.php:548, ../includes/Elements/Testimonial.php:589, ../includes/Elements/Testimonial.php:622, ../includes/Elements/Tooltip.php:360, ../includes/Elements/Tooltip.php:612, ../includes/Elements/WeForms.php:490, ../includes/Elements/WeForms.php:664, ../includes/Elements/Woo_Product_Carousel.php:937, ../includes/Elements/WpForms.php:440, ../includes/Elements/WpForms.php:490, ../includes/Elements/WpForms.php:522, ../includes/Traits/Controls.php:1345, ../includes/Traits/Controls.php:1390, ../includes/Traits/Woo_Product_Comparable.php:330, ../includes/Traits/Woo_Product_Comparable.php:1452
683
  msgid "Margin"
684
  msgstr ""
685
 
686
- #: ../includes/Elements/Advanced_Data_Table.php:1182, ../includes/Elements/Advanced_Data_Table.php:1348, ../includes/Elements/Adv_Accordion.php:524, ../includes/Elements/Adv_Accordion.php:852, ../includes/Elements/Adv_Tabs.php:466, ../includes/Elements/Betterdocs_Category_Box.php:284, ../includes/Elements/Betterdocs_Category_Box.php:452, ../includes/Elements/Betterdocs_Category_Box.php:677, ../includes/Elements/Betterdocs_Category_Box.php:846, ../includes/Elements/Betterdocs_Category_Grid.php:315, ../includes/Elements/Betterdocs_Category_Grid.php:455, ../includes/Elements/Betterdocs_Category_Grid.php:610, ../includes/Elements/Betterdocs_Category_Grid.php:800, ../includes/Elements/Betterdocs_Category_Grid.php:1348, ../includes/Elements/Betterdocs_Search_Form.php:389, ../includes/Elements/Caldera_Forms.php:585, ../includes/Elements/Caldera_Forms.php:973, ../includes/Elements/Caldera_Forms.php:1197, ../includes/Elements/Contact_Form_7.php:543, ../includes/Elements/Contact_Form_7.php:1000, ../includes/Elements/Contact_Form_7.php:1223, ../includes/Elements/Content_Ticker.php:590, ../includes/Elements/Creative_Button.php:260, ../includes/Elements/Cta_Box.php:693, ../includes/Elements/Cta_Box.php:899, ../includes/Elements/Data_Table.php:608, ../includes/Elements/Data_Table.php:801, ../includes/Elements/Data_Table.php:973, ../includes/Elements/Data_Table.php:1071, ../includes/Elements/Event_Calendar.php:768, ../includes/Elements/Filterable_Gallery.php:954, ../includes/Elements/Filterable_Gallery.php:1719, ../includes/Elements/Filterable_Gallery.php:2483, ../includes/Elements/Flip_Box.php:1330, ../includes/Elements/FluentForm.php:604, ../includes/Elements/FluentForm.php:939, ../includes/Elements/FluentForm.php:1517, ../includes/Elements/FluentForm.php:1689, ../includes/Elements/FluentForm.php:1906, ../includes/Elements/Formstack.php:833, ../includes/Elements/Formstack.php:1165, ../includes/Elements/Formstack.php:1433, ../includes/Elements/Formstack.php:1603, ../includes/Elements/Formstack.php:1766, ../includes/Elements/GravityForms.php:653, ../includes/Elements/GravityForms.php:1243, ../includes/Elements/GravityForms.php:1439, ../includes/Elements/GravityForms.php:1790, ../includes/Elements/GravityForms.php:2019, ../includes/Elements/Info_Box.php:536, ../includes/Elements/Info_Box.php:764, ../includes/Elements/Info_Box.php:995, ../includes/Elements/Info_Box.php:1226, ../includes/Elements/Info_Box.php:1337, ../includes/Elements/Login_Register.php:2524, ../includes/Elements/Login_Register.php:3192, ../includes/Elements/Login_Register.php:3355, ../includes/Elements/Login_Register.php:3513, ../includes/Elements/NinjaForms.php:627, ../includes/Elements/NinjaForms.php:1020, ../includes/Elements/NinjaForms.php:1365, ../includes/Elements/Pricing_Table.php:1888, ../includes/Elements/Product_Grid.php:869, ../includes/Elements/Product_Grid.php:1510, ../includes/Elements/Product_Grid.php:1924, ../includes/Elements/Product_Grid.php:2217, ../includes/Elements/Product_Grid.php:2650, ../includes/Elements/Team_Member.php:714, ../includes/Elements/Tooltip.php:403, ../includes/Elements/WeForms.php:687, ../includes/Elements/Woo_Checkout.php:900, ../includes/Elements/Woo_Checkout.php:943, ../includes/Elements/Woo_Checkout.php:1086, ../includes/Elements/Woo_Checkout.php:1305, ../includes/Elements/Woo_Checkout.php:1603, ../includes/Elements/Woo_Checkout.php:2063, ../includes/Elements/Woo_Checkout.php:2233, ../includes/Elements/Woo_Checkout.php:2387, ../includes/Elements/Woo_Product_Carousel.php:949, ../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/WpForms.php:596, ../includes/Elements/WpForms.php:974, ../includes/Elements/WpForms.php:1201, ../includes/Extensions/Table_of_Content.php:910, ../includes/Traits/Controls.php:1222, ../includes/Traits/Controls.php:1409, ../includes/Traits/Woo_Product_Comparable.php:828, ../includes/Traits/Woo_Product_Comparable.php:1214, ../includes/Traits/Woo_Product_Comparable.php:1632
687
  msgid "Normal"
688
  msgstr ""
689
 
690
- #: ../includes/Elements/Advanced_Data_Table.php:1252, ../includes/Elements/Advanced_Data_Table.php:1378, ../includes/Elements/Adv_Accordion.php:582, ../includes/Elements/Adv_Accordion.php:899, ../includes/Elements/Adv_Tabs.php:533, ../includes/Elements/Betterdocs_Category_Box.php:330, ../includes/Elements/Betterdocs_Category_Box.php:548, ../includes/Elements/Betterdocs_Category_Box.php:710, ../includes/Elements/Betterdocs_Category_Box.php:959, ../includes/Elements/Betterdocs_Category_Grid.php:363, ../includes/Elements/Betterdocs_Category_Grid.php:496, ../includes/Elements/Betterdocs_Category_Grid.php:664, ../includes/Elements/Betterdocs_Category_Grid.php:872, ../includes/Elements/Betterdocs_Category_Grid.php:1432, ../includes/Elements/Betterdocs_Search_Form.php:473, ../includes/Elements/Caldera_Forms.php:1303, ../includes/Elements/Contact_Form_7.php:1329, ../includes/Elements/Content_Ticker.php:646, ../includes/Elements/Creative_Button.php:353, ../includes/Elements/Cta_Box.php:764, ../includes/Elements/Cta_Box.php:951, ../includes/Elements/Data_Table.php:648, ../includes/Elements/Data_Table.php:892, ../includes/Elements/Data_Table.php:990, ../includes/Elements/Data_Table.php:1089, ../includes/Elements/Event_Calendar.php:835, ../includes/Elements/Filterable_Gallery.php:1857, ../includes/Elements/Filterable_Gallery.php:2678, ../includes/Elements/Flip_Box.php:1413, ../includes/Elements/FluentForm.php:1623, ../includes/Elements/FluentForm.php:1987, ../includes/Elements/Formstack.php:1539, ../includes/Elements/Formstack.php:1849, ../includes/Elements/GravityForms.php:1882, ../includes/Elements/GravityForms.php:2106, ../includes/Elements/Info_Box.php:597, ../includes/Elements/Info_Box.php:835, ../includes/Elements/Info_Box.php:1066, ../includes/Elements/Info_Box.php:1272, ../includes/Elements/Info_Box.php:1447, ../includes/Elements/Login_Register.php:3229, ../includes/Elements/Login_Register.php:3550, ../includes/Elements/NinjaForms.php:1452, ../includes/Elements/Pricing_Table.php:408, ../includes/Elements/Pricing_Table.php:1957, ../includes/Elements/Product_Grid.php:919, ../includes/Elements/Product_Grid.php:1579, ../includes/Elements/Product_Grid.php:2031, ../includes/Elements/Product_Grid.php:2255, ../includes/Elements/Product_Grid.php:2701, ../includes/Elements/Simple_Menu.php:681, ../includes/Elements/Simple_Menu.php:990, ../includes/Elements/Team_Member.php:791, ../includes/Elements/Tooltip.php:446, ../includes/Elements/WeForms.php:737, ../includes/Elements/Woo_Checkout.php:916, ../includes/Elements/Woo_Checkout.php:960, ../includes/Elements/Woo_Checkout.php:1102, ../includes/Elements/Woo_Checkout.php:1345, ../includes/Elements/Woo_Checkout.php:1643, ../includes/Elements/Woo_Checkout.php:2079, ../includes/Elements/Woo_Checkout.php:2427, ../includes/Elements/Woo_Product_Carousel.php:989, ../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/WpForms.php:1308, ../includes/Extensions/Table_of_Content.php:933, ../includes/Traits/Controls.php:1277, ../includes/Traits/Controls.php:1471, ../includes/Traits/Woo_Product_Comparable.php:928, ../includes/Traits/Woo_Product_Comparable.php:1295, ../includes/Traits/Woo_Product_Comparable.php:1682
691
  msgid "Hover"
692
  msgstr ""
693
 
694
- #: ../includes/Elements/Advanced_Data_Table.php:1353, ../includes/Elements/Advanced_Data_Table.php:1383, ../includes/Elements/Betterdocs_Category_Box.php:683, ../includes/Elements/Betterdocs_Category_Box.php:716, ../includes/Elements/Betterdocs_Category_Box.php:860, ../includes/Elements/Betterdocs_Category_Box.php:965, ../includes/Elements/Betterdocs_Category_Grid.php:616, ../includes/Elements/Betterdocs_Category_Grid.php:670, ../includes/Elements/Betterdocs_Category_Grid.php:806, ../includes/Elements/Betterdocs_Category_Grid.php:903, ../includes/Elements/Betterdocs_Category_Grid.php:1006, ../includes/Elements/Betterdocs_Category_Grid.php:1086, ../includes/Elements/Betterdocs_Category_Grid.php:1162, ../includes/Elements/Betterdocs_Category_Grid.php:1239, ../includes/Elements/Betterdocs_Category_Grid.php:1362, ../includes/Elements/Betterdocs_Category_Grid.php:1461, ../includes/Elements/Betterdocs_Search_Form.php:237, ../includes/Elements/Betterdocs_Search_Form.php:274, ../includes/Elements/Caldera_Forms.php:983, ../includes/Elements/Caldera_Forms.php:1099, ../includes/Elements/Caldera_Forms.php:1431, ../includes/Elements/Contact_Form_7.php:1010, ../includes/Elements/Contact_Form_7.php:1126, ../includes/Elements/Content_Ticker.php:609, ../includes/Elements/Content_Ticker.php:665, ../includes/Elements/Cta_Box.php:518, ../includes/Elements/Cta_Box.php:559, ../includes/Elements/Cta_Box.php:601, ../includes/Elements/Cta_Box.php:1042, ../includes/Elements/Data_Table.php:613, ../includes/Elements/Data_Table.php:653, ../includes/Elements/Data_Table.php:1164, ../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:735, ../includes/Elements/Event_Calendar.php:775, ../includes/Elements/Event_Calendar.php:842, ../includes/Elements/Event_Calendar.php:896, ../includes/Elements/Event_Calendar.php:979, ../includes/Elements/Event_Calendar.php:1054, ../includes/Elements/Event_Calendar.php:1088, ../includes/Elements/Event_Calendar.php:1197, ../includes/Elements/Event_Calendar.php:1563, ../includes/Elements/Facebook_Feed.php:769, ../includes/Elements/Facebook_Feed.php:807, ../includes/Elements/Facebook_Feed.php:847, ../includes/Elements/Facebook_Feed.php:895, ../includes/Elements/Facebook_Feed.php:933, ../includes/Elements/Facebook_Feed.php:971, ../includes/Elements/Facebook_Feed.php:1024, ../includes/Elements/Facebook_Feed.php:1062, ../includes/Elements/Facebook_Feed.php:1100, ../includes/Elements/Facebook_Feed.php:1132, ../includes/Elements/Fancy_Text.php:346, ../includes/Elements/Feature_List.php:543, ../includes/Elements/Feature_List.php:765, ../includes/Elements/Feature_List.php:799, ../includes/Elements/Filterable_Gallery.php:1216, ../includes/Elements/Filterable_Gallery.php:1256, ../includes/Elements/Filterable_Gallery.php:1578, ../includes/Elements/Filterable_Gallery.php:1593, ../includes/Elements/Filterable_Gallery.php:1638, ../includes/Elements/Filterable_Gallery.php:1653, ../includes/Elements/Filterable_Gallery.php:1738, ../includes/Elements/Filterable_Gallery.php:1876, ../includes/Elements/Filterable_Gallery.php:1952, ../includes/Elements/Filterable_Gallery.php:1988, ../includes/Elements/Filterable_Gallery.php:2035, ../includes/Elements/Filterable_Gallery.php:2176, ../includes/Elements/Filterable_Gallery.php:2363, ../includes/Elements/Flip_Box.php:945, ../includes/Elements/Flip_Box.php:1058, ../includes/Elements/Flip_Box.php:1185, ../includes/Elements/Flip_Box.php:1216, ../includes/Elements/Flip_Box.php:1254, ../includes/Elements/Flip_Box.php:1286, ../includes/Elements/Flip_Box.php:1360, ../includes/Elements/Flip_Box.php:1419, ../includes/Elements/FluentForm.php:413, ../includes/Elements/FluentForm.php:949, ../includes/Elements/FluentForm.php:1065, ../includes/Elements/FluentForm.php:1106, ../includes/Elements/FluentForm.php:1161, ../includes/Elements/FluentForm.php:1265, ../includes/Elements/FluentForm.php:1327, ../includes/Elements/FluentForm.php:1921, ../includes/Elements/FluentForm.php:1994, ../includes/Elements/FluentForm.php:2115, ../includes/Elements/Formstack.php:658, ../includes/Elements/Formstack.php:713, ../includes/Elements/Formstack.php:1175, ../includes/Elements/Formstack.php:1255, ../includes/Elements/Formstack.php:1309, ../includes/Elements/Formstack.php:1856, ../includes/Elements/Formstack.php:1937, ../includes/Elements/GravityForms.php:1147, ../includes/Elements/GravityForms.php:1253, ../includes/Elements/GravityForms.php:1367, ../includes/Elements/GravityForms.php:1449, ../includes/Elements/GravityForms.php:1563, ../includes/Elements/GravityForms.php:1607, ../includes/Elements/Image_Accordion.php:496, ../includes/Elements/Image_Accordion.php:525, ../includes/Elements/Info_Box.php:1351, ../includes/Elements/Info_Box.php:1427, ../includes/Elements/Login_Register.php:2260, ../includes/Elements/Login_Register.php:2351, ../includes/Elements/Login_Register.php:2765, ../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:845, ../includes/Elements/Pricing_Table.php:889, ../includes/Elements/Pricing_Table.php:953, ../includes/Elements/Pricing_Table.php:1044, ../includes/Elements/Pricing_Table.php:1073, ../includes/Elements/Pricing_Table.php:1114, ../includes/Elements/Pricing_Table.php:1143, ../includes/Elements/Pricing_Table.php:1183, ../includes/Elements/Pricing_Table.php:1218, ../includes/Elements/Pricing_Table.php:1375, ../includes/Elements/Pricing_Table.php:1507, ../includes/Elements/Product_Grid.php:1339, ../includes/Elements/Product_Grid.php:1929, ../includes/Elements/Product_Grid.php:2036, ../includes/Elements/Product_Grid.php:2373, ../includes/Elements/Product_Grid.php:2553, ../includes/Elements/Product_Grid.php:2594, ../includes/Elements/Product_Grid.php:2655, ../includes/Elements/Product_Grid.php:2706, ../includes/Elements/Product_Grid.php:2863, ../includes/Elements/Progress_Bar.php:407, ../includes/Elements/Progress_Bar.php:467, ../includes/Elements/Simple_Menu.php:643, ../includes/Elements/Simple_Menu.php:737, ../includes/Elements/Simple_Menu.php:952, ../includes/Elements/Simple_Menu.php:1045, ../includes/Elements/Twitter_Feed.php:682, ../includes/Elements/Twitter_Feed.php:711, ../includes/Elements/Twitter_Feed.php:741, ../includes/Elements/Twitter_Feed.php:911, ../includes/Elements/Woo_Checkout.php:572, ../includes/Elements/Woo_Checkout.php:746, ../includes/Elements/Woo_Checkout.php:760, ../includes/Elements/Woo_Checkout.php:868, ../includes/Elements/Woo_Checkout.php:882, ../includes/Elements/Woo_Checkout.php:1055, ../includes/Elements/Woo_Checkout.php:1091, ../includes/Elements/Woo_Checkout.php:1107, ../includes/Elements/Woo_Checkout.php:1175, ../includes/Elements/Woo_Checkout.php:1274, ../includes/Elements/Woo_Checkout.php:1324, ../includes/Elements/Woo_Checkout.php:1364, ../includes/Elements/Woo_Checkout.php:1461, ../includes/Elements/Woo_Checkout.php:1622, ../includes/Elements/Woo_Checkout.php:1662, ../includes/Elements/Woo_Checkout.php:1780, ../includes/Elements/Woo_Checkout.php:1824, ../includes/Elements/Woo_Checkout.php:1868, ../includes/Elements/Woo_Checkout.php:1974, ../includes/Elements/Woo_Checkout.php:2013, ../includes/Elements/Woo_Checkout.php:2053, ../includes/Elements/Woo_Checkout.php:2240, ../includes/Elements/Woo_Checkout.php:2261, ../includes/Elements/Woo_Checkout.php:2296, ../includes/Elements/Woo_Checkout.php:2317, ../includes/Elements/Woo_Checkout.php:2406, ../includes/Elements/Woo_Checkout.php:2446, ../includes/Elements/Woo_Product_Carousel.php: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/WpForms.php:984, ../includes/Elements/WpForms.php:1100, ../includes/Extensions/Table_of_Content.php:1069, ../includes/Traits/Woo_Product_Comparable.php:49, ../includes/Traits/Woo_Product_Comparable.php:109, ../includes/Traits/Woo_Product_Comparable.php:1362, ../includes/Traits/Woo_Product_Comparable.php:1474
695
  msgid "Color"
696
  msgstr ""
697
 
@@ -835,7 +835,7 @@ msgstr ""
835
  msgid "Tab Style"
836
  msgstr ""
837
 
838
- #: ../includes/Elements/Adv_Accordion.php:416, ../includes/Elements/Adv_Accordion.php:793, ../includes/Elements/Adv_Tabs.php:397, ../includes/Elements/Creative_Button.php:499, ../includes/Elements/Data_Table.php:700, ../includes/Elements/Data_Table.php:1048, ../includes/Elements/Dual_Color_Header.php:397, ../includes/Elements/Dual_Color_Header.php:608, ../includes/Elements/Event_Calendar.php:1444, ../includes/Elements/Event_Calendar.php:1511, ../includes/Elements/Feature_List.php:577, ../includes/Elements/Filterable_Gallery.php:1774, ../includes/Elements/Filterable_Gallery.php:2136, ../includes/Elements/Filterable_Gallery.php:2573, ../includes/Elements/Flip_Box.php:961, ../includes/Elements/Flip_Box.php:1074, ../includes/Elements/Info_Box.php:935, ../includes/Elements/Info_Box.php:1174, ../includes/Elements/Login_Register.php:2829, ../includes/Elements/Pricing_Table.php:1242, ../includes/Elements/Pricing_Table.php:1677, ../includes/Elements/Pricing_Table.php:1848, ../includes/Elements/Product_Grid.php:1289, ../includes/Elements/Product_Grid.php:2811, ../includes/Elements/Team_Member.php:643, ../includes/Elements/Tooltip.php:113, ../includes/Elements/Woo_Product_Carousel.php:1164, ../includes/Elements/Woo_Product_Carousel.php:1948, ../includes/Elements/Woo_Product_Carousel.php:2596, ../includes/Extensions/Table_of_Content.php:681, ../includes/Traits/Woo_Product_Comparable.php:1335
839
  msgid "Icon Size"
840
  msgstr ""
841
 
@@ -847,7 +847,7 @@ msgstr ""
847
  msgid "Distance"
848
  msgstr ""
849
 
850
- #: ../includes/Elements/Adv_Accordion.php:548, ../includes/Elements/Adv_Accordion.php:608, ../includes/Elements/Adv_Accordion.php:669, ../includes/Elements/Adv_Tabs.php:500, ../includes/Elements/Adv_Tabs.php:567, ../includes/Elements/Adv_Tabs.php:636, ../includes/Elements/Data_Table.php:1076, ../includes/Elements/Data_Table.php:1094, ../includes/Elements/Dual_Color_Header.php:421, ../includes/Elements/Dual_Color_Header.php:634, ../includes/Elements/Event_Calendar.php:1462, ../includes/Elements/Feature_List.php:122, ../includes/Elements/Info_Box.php:771, ../includes/Elements/Info_Box.php:850, ../includes/Elements/Info_Box.php:1002, ../includes/Elements/Info_Box.php:1081, ../includes/Elements/Post_Grid.php:968, ../includes/Elements/Pricing_Table.php:343, ../includes/Elements/Pricing_Table.php:1741, ../includes/Elements/Simple_Menu.php:264, ../includes/Elements/Team_Member.php:719, ../includes/Elements/Twitter_Feed.php:618, ../includes/Elements/Woo_Checkout.php:1186, ../includes/Elements/Woo_Checkout.php:1472
851
  msgid "Icon Color"
852
  msgstr ""
853
 
@@ -891,7 +891,7 @@ msgstr ""
891
  msgid "Enable Icon"
892
  msgstr ""
893
 
894
- #: ../includes/Elements/Adv_Tabs.php:102, ../includes/Elements/Betterdocs_Category_Grid.php:1328, ../includes/Elements/Creative_Button.php:143, ../includes/Elements/Data_Table.php:722, ../includes/Elements/Feature_List.php:301, ../includes/Elements/Filterable_Gallery.php:747, ../includes/Elements/Flip_Box.php:708, ../includes/Elements/Info_Box.php:121, ../includes/Elements/Info_Box.php:452, ../includes/Elements/Pricing_Table.php:541
895
  msgid "Icon Position"
896
  msgstr ""
897
 
@@ -951,11 +951,11 @@ msgstr ""
951
  msgid "Caret Size"
952
  msgstr ""
953
 
954
- #: ../includes/Elements/Adv_Tabs.php:853, ../includes/Elements/Caldera_Forms.php:109, ../includes/Elements/Caldera_Forms.php:936, ../includes/Elements/Contact_Form_7.php:911, ../includes/Elements/Contact_Form_7.php:963, ../includes/Elements/Content_Ticker.php:194, ../includes/Elements/Content_Ticker.php:227, ../includes/Elements/Content_Ticker.php:242, ../includes/Elements/Content_Ticker.php:277, ../includes/Elements/Data_Table.php:1130, ../includes/Elements/Facebook_Feed.php:388, ../includes/Elements/Filterable_Gallery.php:287, ../includes/Elements/Filterable_Gallery.php:432, ../includes/Elements/Filterable_Gallery.php:481, ../includes/Elements/Filterable_Gallery.php:506, ../includes/Elements/Filterable_Gallery.php:531, ../includes/Elements/Filterable_Gallery.php:591, ../includes/Elements/Filterable_Gallery.php:606, ../includes/Elements/FluentForm.php:123, ../includes/Elements/FluentForm.php:902, ../includes/Elements/Formstack.php:192, ../includes/Elements/Formstack.php:1128, ../includes/Elements/GravityForms.php:149, ../includes/Elements/GravityForms.php:246, ../includes/Elements/GravityForms.php:1206, ../includes/Elements/GravityForms.php:1402, ../includes/Elements/Image_Accordion.php:176, ../includes/Elements/Info_Box.php:358, ../includes/Elements/Info_Box.php:372, ../includes/Elements/Login_Register.php:409, ../includes/Elements/Login_Register.php:487, ../includes/Elements/Login_Register.php:791, ../includes/Elements/NinjaForms.php:114, ../includes/Elements/NinjaForms.php:983, ../includes/Elements/Post_Grid.php: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:83, ../includes/Elements/Post_Timeline.php:94, ../includes/Elements/Pricing_Table.php:220, ../includes/Elements/Pricing_Table.php:1879, ../includes/Elements/Simple_Menu.php:173, ../includes/Elements/Simple_Menu.php:214, ../includes/Elements/Team_Member.php:705, ../includes/Elements/Woo_Product_Carousel.php:350, ../includes/Elements/Woo_Product_Carousel.php:579, ../includes/Elements/Woo_Product_Carousel.php:611, ../includes/Elements/Woo_Product_Carousel.php:626, ../includes/Elements/Woo_Product_Carousel.php:661, ../includes/Elements/Woo_Product_Carousel.php:673, ../includes/Elements/Woo_Product_Carousel.php:684, ../includes/Elements/Woo_Product_Carousel.php:2137, ../includes/Elements/WpForms.php:107, ../includes/Elements/WpForms.php:937, ../includes/Extensions/Reading_Progress.php:41, ../includes/Extensions/Reading_Progress.php:77, ../includes/Extensions/Table_of_Content.php:45, ../includes/Extensions/Table_of_Content.php:79, ../includes/Extensions/Table_of_Content.php:211, ../includes/Extensions/Table_of_Content.php:226, ../includes/Extensions/Table_of_Content.php:241, ../includes/Extensions/Table_of_Content.php:256, ../includes/Extensions/Table_of_Content.php:271, ../includes/Traits/Controls.php:376
955
  msgid "Yes"
956
  msgstr ""
957
 
958
- #: ../includes/Elements/Adv_Tabs.php:854, ../includes/Elements/Caldera_Forms.php:110, ../includes/Elements/Caldera_Forms.php:937, ../includes/Elements/Contact_Form_7.php:912, ../includes/Elements/Contact_Form_7.php:964, ../includes/Elements/Content_Ticker.php:195, ../includes/Elements/Content_Ticker.php:228, ../includes/Elements/Content_Ticker.php:243, ../includes/Elements/Content_Ticker.php:278, ../includes/Elements/Cta_Box.php:685, ../includes/Elements/Data_Table.php:1131, ../includes/Elements/Facebook_Feed.php:392, ../includes/Elements/Feature_List.php:363, ../includes/Elements/Filterable_Gallery.php:288, ../includes/Elements/Filterable_Gallery.php:433, ../includes/Elements/Filterable_Gallery.php:482, ../includes/Elements/Filterable_Gallery.php:507, ../includes/Elements/Filterable_Gallery.php:532, ../includes/Elements/Filterable_Gallery.php:592, ../includes/Elements/Filterable_Gallery.php:607, ../includes/Elements/FluentForm.php:124, ../includes/Elements/FluentForm.php:903, ../includes/Elements/Formstack.php:193, ../includes/Elements/Formstack.php:1129, ../includes/Elements/GravityForms.php:150, ../includes/Elements/GravityForms.php:247, ../includes/Elements/GravityForms.php:1207, ../includes/Elements/GravityForms.php:1403, ../includes/Elements/Image_Accordion.php:177, ../includes/Elements/Info_Box.php:359, ../includes/Elements/Info_Box.php:373, ../includes/Elements/Login_Register.php:410, ../includes/Elements/Login_Register.php:488, ../includes/Elements/Login_Register.php:792, ../includes/Elements/NinjaForms.php:115, ../includes/Elements/NinjaForms.php:984, ../includes/Elements/Post_Grid.php: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:84, ../includes/Elements/Post_Timeline.php:95, ../includes/Elements/Pricing_Table.php:221, ../includes/Elements/Pricing_Table.php:1880, ../includes/Elements/Simple_Menu.php:174, ../includes/Elements/Simple_Menu.php:215, ../includes/Elements/Team_Member.php:706, ../includes/Elements/Woo_Product_Carousel.php:351, ../includes/Elements/Woo_Product_Carousel.php:580, ../includes/Elements/Woo_Product_Carousel.php:612, ../includes/Elements/Woo_Product_Carousel.php:627, ../includes/Elements/Woo_Product_Carousel.php:662, ../includes/Elements/Woo_Product_Carousel.php:674, ../includes/Elements/Woo_Product_Carousel.php:685, ../includes/Elements/Woo_Product_Carousel.php:2138, ../includes/Elements/WpForms.php:108, ../includes/Elements/WpForms.php:938, ../includes/Extensions/Reading_Progress.php:42, ../includes/Extensions/Reading_Progress.php:78, ../includes/Extensions/Table_of_Content.php:46, ../includes/Extensions/Table_of_Content.php:80, ../includes/Extensions/Table_of_Content.php:212, ../includes/Extensions/Table_of_Content.php:227, ../includes/Extensions/Table_of_Content.php:242, ../includes/Extensions/Table_of_Content.php:257, ../includes/Extensions/Table_of_Content.php:272, ../includes/Traits/Controls.php:377
959
  msgid "No"
960
  msgstr ""
961
 
@@ -975,11 +975,11 @@ msgstr ""
975
  msgid "Show Icon"
976
  msgstr ""
977
 
978
- #: ../includes/Elements/Betterdocs_Category_Box.php:158, ../includes/Elements/Betterdocs_Category_Box.php:170, ../includes/Elements/Betterdocs_Category_Box.php:205, ../includes/Elements/Betterdocs_Category_Grid.php:177, ../includes/Elements/Betterdocs_Category_Grid.php:190, ../includes/Elements/Betterdocs_Category_Grid.php:205, ../includes/Elements/Betterdocs_Category_Grid.php:244, ../includes/Elements/Betterdocs_Category_Grid.php:260, ../includes/Elements/Betterdocs_Category_Grid.php:272, ../includes/Elements/Betterdocs_Category_Grid.php:1303, ../includes/Elements/Caldera_Forms.php:152, ../includes/Elements/Caldera_Forms.php:165, ../includes/Elements/Caldera_Forms.php:191, ../includes/Elements/Contact_Form_7.php:205, ../includes/Elements/Contact_Form_7.php:231, ../includes/Elements/Contact_Form_7.php:251, ../includes/Elements/Content_Ticker.php:255, ../includes/Elements/Countdown.php:503, ../includes/Elements/Creative_Button.php:252, ../includes/Elements/Cta_Box.php:134, ../includes/Elements/Cta_Box.php:281, ../includes/Elements/Dual_Color_Header.php:95, ../includes/Elements/Dual_Color_Header.php:105, ../includes/Elements/Facebook_Feed.php:306, ../includes/Elements/Facebook_Feed.php:318, ../includes/Elements/Facebook_Feed.php:333, ../includes/Elements/Facebook_Feed.php:348, ../includes/Elements/Facebook_Feed.php:363, ../includes/Elements/Facebook_Feed.php:429, ../includes/Elements/Feature_List.php:362, ../includes/Elements/Filterable_Gallery.php:275, ../includes/Elements/FluentForm.php:166, ../includes/Elements/FluentForm.php:178, ../includes/Elements/FluentForm.php:204, ../includes/Elements/FluentForm.php:1706, ../includes/Elements/FluentForm.php:1774, ../includes/Elements/Formstack.php:235, ../includes/Elements/Formstack.php:247, ../includes/Elements/Formstack.php:273, ../includes/Elements/Formstack.php:286, ../includes/Elements/Formstack.php:1622, ../includes/Elements/GravityForms.php:161, ../includes/Elements/GravityForms.php:176, ../includes/Elements/GravityForms.php:222, ../includes/Elements/GravityForms.php:234, ../includes/Elements/GravityForms.php:272, ../includes/Elements/GravityForms.php:292, ../includes/Elements/Info_Box.php:290, ../includes/Elements/Login_Register.php:331, ../includes/Elements/Login_Register.php:622, ../includes/Elements/NinjaForms.php:126, ../includes/Elements/NinjaForms.php:173, ../includes/Elements/NinjaForms.php:186, ../includes/Elements/NinjaForms.php:212, ../includes/Elements/NinjaForms.php:232, ../includes/Elements/Post_Timeline.php:119, ../includes/Elements/Pricing_Table.php:516, ../includes/Elements/Pricing_Table.php:1631, ../includes/Elements/Product_Grid.php:565, ../includes/Elements/Product_Grid.php:667, ../includes/Elements/Product_Grid.php:1502, ../includes/Elements/Product_Grid.php:2115, ../includes/Elements/Sticky_Video.php:362, ../includes/Elements/Twitter_Feed.php:379, ../includes/Elements/Woo_Product_Carousel.php:244, ../includes/Elements/Woo_Product_Carousel.php:640, ../includes/Elements/Woo_Product_Carousel.php:699, ../includes/Elements/WpForms.php:119, ../includes/Elements/WpForms.php:134, ../includes/Elements/WpForms.php:180, ../includes/Elements/WpForms.php:193, ../includes/Elements/WpForms.php:216, ../includes/Traits/Controls.php:564, ../includes/Traits/Controls.php:626, ../includes/Traits/Controls.php:656, ../includes/Traits/Controls.php:812, ../includes/Traits/Controls.php:860, ../includes/Traits/Controls.php:928, ../includes/Traits/Controls.php:963, ../includes/Traits/Controls.php:990, ../includes/Traits/Controls.php:1041, ../includes/Traits/Controls.php:1069, ../includes/Traits/Controls.php:1085, ../includes/Traits/Controls.php:1100
979
  msgid "Show"
980
  msgstr ""
981
 
982
- #: ../includes/Elements/Betterdocs_Category_Box.php:159, ../includes/Elements/Betterdocs_Category_Box.php:171, ../includes/Elements/Betterdocs_Category_Box.php:206, ../includes/Elements/Betterdocs_Category_Grid.php:178, ../includes/Elements/Betterdocs_Category_Grid.php:191, ../includes/Elements/Betterdocs_Category_Grid.php:206, ../includes/Elements/Betterdocs_Category_Grid.php:245, ../includes/Elements/Betterdocs_Category_Grid.php:261, ../includes/Elements/Betterdocs_Category_Grid.php:273, ../includes/Elements/Betterdocs_Category_Grid.php:1304, ../includes/Elements/Caldera_Forms.php:153, ../includes/Elements/Caldera_Forms.php:166, ../includes/Elements/Caldera_Forms.php:192, ../includes/Elements/Contact_Form_7.php:206, ../includes/Elements/Contact_Form_7.php:232, ../includes/Elements/Contact_Form_7.php:252, ../includes/Elements/Content_Ticker.php:256, ../includes/Elements/Countdown.php:504, ../includes/Elements/Creative_Button.php:253, ../includes/Elements/Cta_Box.php:135, ../includes/Elements/Cta_Box.php:282, ../includes/Elements/Dual_Color_Header.php:96, ../includes/Elements/Dual_Color_Header.php:106, ../includes/Elements/Facebook_Feed.php:307, ../includes/Elements/Facebook_Feed.php:319, ../includes/Elements/Facebook_Feed.php:334, ../includes/Elements/Facebook_Feed.php:349, ../includes/Elements/Facebook_Feed.php:364, ../includes/Elements/Facebook_Feed.php:430, ../includes/Elements/Filterable_Gallery.php:276, ../includes/Elements/FluentForm.php:167, ../includes/Elements/FluentForm.php:179, ../includes/Elements/FluentForm.php:205, ../includes/Elements/FluentForm.php:1707, ../includes/Elements/FluentForm.php:1775, ../includes/Elements/Formstack.php:236, ../includes/Elements/Formstack.php:248, ../includes/Elements/Formstack.php:274, ../includes/Elements/Formstack.php:287, ../includes/Elements/Formstack.php:1623, ../includes/Elements/GravityForms.php:162, ../includes/Elements/GravityForms.php:177, ../includes/Elements/GravityForms.php:223, ../includes/Elements/GravityForms.php:235, ../includes/Elements/GravityForms.php:273, ../includes/Elements/GravityForms.php:293, ../includes/Elements/Info_Box.php:291, ../includes/Elements/Login_Register.php:330, ../includes/Elements/Login_Register.php:530, ../includes/Elements/Login_Register.php:621, ../includes/Elements/NinjaForms.php:127, ../includes/Elements/NinjaForms.php:174, ../includes/Elements/NinjaForms.php:187, ../includes/Elements/NinjaForms.php:213, ../includes/Elements/NinjaForms.php:233, ../includes/Elements/Post_Timeline.php:120, ../includes/Elements/Pricing_Table.php:517, ../includes/Elements/Pricing_Table.php:1632, ../includes/Elements/Product_Grid.php:566, ../includes/Elements/Product_Grid.php:668, ../includes/Elements/Product_Grid.php:1503, ../includes/Elements/Product_Grid.php:2116, ../includes/Elements/Sticky_Video.php:363, ../includes/Elements/Twitter_Feed.php:380, ../includes/Elements/Woo_Product_Carousel.php:245, ../includes/Elements/Woo_Product_Carousel.php:641, ../includes/Elements/Woo_Product_Carousel.php:700, ../includes/Elements/WpForms.php:120, ../includes/Elements/WpForms.php:135, ../includes/Elements/WpForms.php:181, ../includes/Elements/WpForms.php:194, ../includes/Elements/WpForms.php:217, ../includes/Traits/Controls.php:565, ../includes/Traits/Controls.php:627, ../includes/Traits/Controls.php:657, ../includes/Traits/Controls.php:813, ../includes/Traits/Controls.php:861, ../includes/Traits/Controls.php:929, ../includes/Traits/Controls.php:964, ../includes/Traits/Controls.php:991, ../includes/Traits/Controls.php:1042, ../includes/Traits/Controls.php:1070, ../includes/Traits/Controls.php:1086, ../includes/Traits/Controls.php:1101
983
  msgid "Hide"
984
  msgstr ""
985
 
@@ -1095,7 +1095,7 @@ msgstr ""
1095
  msgid "Show Button"
1096
  msgstr ""
1097
 
1098
- #: ../includes/Elements/Betterdocs_Category_Grid.php:282, ../includes/Elements/Creative_Button.php:80, ../includes/Elements/Cta_Box.php:256, ../includes/Elements/Filterable_Gallery.php:689, ../includes/Elements/Flip_Box.php:681, ../includes/Elements/Info_Box.php:402, ../includes/Elements/Login_Register.php:636, ../includes/Elements/Login_Register.php:1111, ../includes/Elements/Pricing_Table.php:579, ../includes/Elements/Woo_Checkout.php:370, ../includes/Traits/Controls.php:973
1099
  msgid "Button Text"
1100
  msgstr ""
1101
 
@@ -1119,7 +1119,7 @@ msgstr ""
1119
  msgid "List"
1120
  msgstr ""
1121
 
1122
- #: ../includes/Elements/Betterdocs_Category_Grid.php:1017, ../includes/Elements/Filterable_Gallery.php:1228, ../includes/Elements/Filterable_Gallery.php:1608, ../includes/Elements/Filterable_Gallery.php:2374, ../includes/Elements/Pricing_Table.php:1775, ../includes/Elements/Product_Grid.php:2791, ../includes/Elements/Twitter_Feed.php:753, ../includes/Elements/Woo_Product_Carousel.php:1928
1123
  msgid "Hover Color"
1124
  msgstr ""
1125
 
@@ -1147,15 +1147,15 @@ msgstr ""
1147
  msgid "Area Spacing"
1148
  msgstr ""
1149
 
1150
- #: ../includes/Elements/Betterdocs_Category_Grid.php:1332, ../includes/Elements/Creative_Button.php:147, ../includes/Elements/Filterable_Gallery.php:752, ../includes/Elements/Flip_Box.php:713, ../includes/Elements/Info_Box.php:456, ../includes/Elements/Pricing_Table.php:545
1151
  msgid "Before"
1152
  msgstr ""
1153
 
1154
- #: ../includes/Elements/Betterdocs_Category_Grid.php:1333, ../includes/Elements/Creative_Button.php:148, ../includes/Elements/Filterable_Gallery.php:751, ../includes/Elements/Flip_Box.php:712, ../includes/Elements/Info_Box.php:457, ../includes/Elements/Pricing_Table.php:546
1155
  msgid "After"
1156
  msgstr ""
1157
 
1158
- #: ../includes/Elements/Betterdocs_Category_Grid.php:1534, ../includes/Elements/Creative_Button.php:440, ../includes/Elements/Pricing_Table.php:841, ../includes/Elements/WeForms.php:626, ../includes/Traits/Controls.php:1524
1159
  msgid "Button Alignment"
1160
  msgstr ""
1161
 
@@ -1179,7 +1179,7 @@ msgstr ""
1179
  msgid "Field Padding"
1180
  msgstr ""
1181
 
1182
- #: ../includes/Elements/Betterdocs_Search_Form.php:219, ../includes/Elements/Facebook_Feed.php:518, ../includes/Elements/Post_Grid.php:413, ../includes/Elements/Pricing_Table.php:472, ../includes/Elements/Pricing_Table.php:1450, ../includes/Elements/Simple_Menu.php:354, ../includes/Elements/Simple_Menu.php:403, ../includes/Elements/Woo_Product_Carousel.php:2400
1183
  msgid "Shadow"
1184
  msgstr ""
1185
 
@@ -1191,7 +1191,7 @@ msgstr ""
1191
  msgid "Close Icon"
1192
  msgstr ""
1193
 
1194
- #: ../includes/Elements/Betterdocs_Search_Form.php:285, ../includes/Elements/Caldera_Forms.php:1020, ../includes/Elements/Caldera_Forms.php:1334, ../includes/Elements/Contact_Form_7.php:1047, ../includes/Elements/Contact_Form_7.php:1360, ../includes/Elements/Content_Ticker.php:677, ../includes/Elements/Countdown.php:784, ../includes/Elements/Countdown.php:856, ../includes/Elements/Countdown.php:928, ../includes/Elements/Countdown.php:1000, ../includes/Elements/Creative_Button.php:420, ../includes/Elements/Cta_Box.php:809, ../includes/Elements/Cta_Box.php:978, ../includes/Elements/Event_Calendar.php:666, ../includes/Elements/Facebook_Feed.php:728, ../includes/Elements/Filterable_Gallery.php:2721, ../includes/Elements/FluentForm.php:986, ../includes/Elements/FluentForm.php:1654, ../includes/Elements/Formstack.php:1570, ../includes/Elements/GravityForms.php:1057, ../includes/Elements/GravityForms.php:1290, ../includes/Elements/GravityForms.php:1486, ../includes/Elements/GravityForms.php:1915, ../includes/Elements/GravityForms.php:2137, ../includes/Elements/NinjaForms.php:1067, ../includes/Elements/NinjaForms.php:1483, ../includes/Elements/Pricing_Table.php:2001, ../includes/Elements/Product_Grid.php:784, ../includes/Elements/Product_Grid.php:924, ../includes/Elements/Product_Grid.php:1628, ../includes/Elements/Product_Grid.php:1895, ../includes/Elements/Product_Grid.php:2075, ../includes/Elements/Product_Grid.php:2284, ../includes/Elements/Product_Grid.php:2328, ../includes/Elements/Product_Grid.php:2522, ../includes/Elements/Product_Grid.php:2618, ../includes/Elements/Product_Grid.php:2730, ../includes/Elements/Simple_Menu.php:667, ../includes/Elements/Simple_Menu.php:763, ../includes/Elements/Simple_Menu.php:976, ../includes/Elements/Simple_Menu.php:1071, ../includes/Elements/Sticky_Video.php:579, ../includes/Elements/Twitter_Feed.php:629, ../includes/Elements/WeForms.php:464, ../includes/Elements/WeForms.php:764, ../includes/Elements/Woo_Checkout.php:774, ../includes/Elements/Woo_Checkout.php:981, ../includes/Elements/Woo_Checkout.php:1376, ../includes/Elements/Woo_Checkout.php:1572, ../includes/Elements/Woo_Checkout.php:1674, ../includes/Elements/Woo_Checkout.php:1791, ../includes/Elements/Woo_Checkout.php:1835, ../includes/Elements/Woo_Checkout.php:1879, ../includes/Elements/Woo_Checkout.php:2068, ../includes/Elements/Woo_Checkout.php:2084, ../includes/Elements/Woo_Checkout.php:2346, ../includes/Elements/Woo_Checkout.php:2458, ../includes/Elements/Woo_Product_Carousel.php:994, ../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/WpForms.php:1021, ../includes/Elements/WpForms.php:1339, ../includes/Traits/Controls.php:1500, ../includes/Traits/Woo_Product_Comparable.php:1713
1195
  msgid "Border Color"
1196
  msgstr ""
1197
 
@@ -1259,7 +1259,7 @@ msgstr ""
1259
  msgid "Form Alignment"
1260
  msgstr ""
1261
 
1262
- #: ../includes/Elements/Caldera_Forms.php:411, ../includes/Elements/Contact_Form_7.php:327, ../includes/Elements/Contact_Form_7.php:828, ../includes/Elements/Creative_Button.php:227, ../includes/Elements/Cta_Box.php:641, ../includes/Elements/Cta_Box.php:858, ../includes/Elements/Dual_Color_Header.php:81, ../includes/Elements/Flip_Box.php:872, ../includes/Elements/FluentForm.php:430, ../includes/Elements/Formstack.php:330, ../includes/Elements/GravityForms.php:343, ../includes/Elements/Login_Register.php:431, ../includes/Elements/Login_Register.php:528, ../includes/Elements/Login_Register.php:1040, ../includes/Elements/Login_Register.php:1403, ../includes/Elements/Login_Register.php:1529, ../includes/Elements/Login_Register.php:1786, ../includes/Elements/Login_Register.php:1930, ../includes/Elements/Login_Register.php:2080, ../includes/Elements/Login_Register.php:2223, ../includes/Elements/Login_Register.php:2314, ../includes/Elements/Login_Register.php:2412, ../includes/Elements/Login_Register.php:2614, ../includes/Elements/Login_Register.php:2659, ../includes/Elements/Login_Register.php:2691, ../includes/Elements/Login_Register.php:2925, ../includes/Elements/Login_Register.php:3087, ../includes/Elements/Login_Register.php:3386, ../includes/Elements/NinjaForms.php:278, ../includes/Elements/Post_Grid.php:254, ../includes/Elements/Pricing_Table.php:86, ../includes/Elements/Pricing_Table.php:468, ../includes/Elements/Product_Grid.php:268, ../includes/Elements/Simple_Menu.php:554, ../includes/Elements/Simple_Menu.php:865, ../includes/Elements/Team_Member.php:376, ../includes/Elements/Testimonial.php:253, ../includes/Elements/Testimonial.php:310, ../includes/Elements/TypeForm.php:196, ../includes/Elements/WeForms.php:161, ../includes/Elements/WeForms.php:631, ../includes/Elements/Woo_Checkout.php:120, ../includes/Elements/WpForms.php:267, ../includes/Traits/Controls.php:553, ../includes/Traits/Controls.php:1570, ../includes/Traits/Login_Registration.php:581, ../includes/Traits/Woo_Product_Comparable.php:409, ../includes/Traits/Woo_Product_Comparable.php:523, ../includes/Traits/Woo_Product_Comparable.php:614, ../includes/Traits/Woo_Product_Comparable.php:683, ../includes/Template/Betterdocs-Category-Box/Layout_Default.php:4, ../includes/Template/Betterdocs-Category-Grid/Layout_Default.php:4, ../includes/Template/Content-Ticker/default.php:3, ../includes/Template/Eicon-Woocommerce/default.php:3, ../includes/Template/Post-Grid/default.php:5, ../includes/Template/Post-Timeline/default.php:3
1263
  msgid "Default"
1264
  msgstr ""
1265
 
@@ -1399,7 +1399,7 @@ msgstr ""
1399
  msgid "<strong>Contact Form 7</strong> is not installed/activated on your site. Please install and activate <strong>Contact Form 7</strong> first."
1400
  msgstr ""
1401
 
1402
- #: ../includes/Elements/Contact_Form_7.php:313, ../includes/Elements/Contact_Form_7.php:1607, ../includes/Elements/Cta_Box.php:727, ../includes/Elements/Cta_Box.php:797, ../includes/Elements/Cta_Box.php:917, ../includes/Elements/Cta_Box.php:969, ../includes/Elements/Dual_Color_Header.php:813, ../includes/Elements/Dual_Color_Header.php:893, ../includes/Elements/Event_Calendar.php:654, ../includes/Elements/Event_Calendar.php:786, ../includes/Elements/Event_Calendar.php:853, ../includes/Elements/Event_Calendar.php:907, ../includes/Elements/Event_Calendar.php:1019, ../includes/Elements/Event_Calendar.php:1111, ../includes/Elements/Event_Calendar.php:1209, ../includes/Elements/Event_Calendar.php:1575, ../includes/Elements/Event_Calendar.php:1684, ../includes/Elements/Facebook_Feed.php:488, ../includes/Elements/Facebook_Feed.php:501, ../includes/Elements/Facebook_Feed.php:576, ../includes/Elements/Facebook_Feed.php:589, ../includes/Elements/Facebook_Feed.php:674, ../includes/Elements/Facebook_Feed.php:687, ../includes/Elements/Facebook_Feed.php:758, ../includes/Elements/Facebook_Feed.php:796, ../includes/Elements/Facebook_Feed.php:836, ../includes/Elements/Fancy_Text.php:365, ../includes/Elements/Filterable_Gallery.php:2059, ../includes/Elements/Filterable_Gallery.php:2280, ../includes/Elements/Flip_Box.php:1373, ../includes/Elements/Flip_Box.php:1433, ../includes/Elements/FluentForm.php:1853, ../includes/Elements/FluentForm.php:1878, ../includes/Elements/FluentForm.php:1943, ../includes/Elements/FluentForm.php:2006, ../includes/Elements/Formstack.php:638, ../includes/Elements/Formstack.php:1713, ../includes/Elements/Formstack.php:1738, ../includes/Elements/Formstack.php:1802, ../includes/Elements/Formstack.php:1867, ../includes/Elements/Formstack.php:1922, ../includes/Elements/Formstack.php:2005, ../includes/Elements/Post_Grid.php:372, ../includes/Elements/Pricing_Table.php:1920, ../includes/Elements/Pricing_Table.php:1989, ../includes/Elements/Product_Grid.php:1530, ../includes/Elements/Product_Grid.php:1544, ../includes/Elements/Product_Grid.php:1598, ../includes/Elements/Product_Grid.php:1611, ../includes/Elements/Product_Grid.php:2874, ../includes/Elements/Product_Grid.php:2931, ../includes/Elements/Progress_Bar.php:345, ../includes/Elements/Team_Member.php:746, ../includes/Elements/Team_Member.php:823, ../includes/Elements/Twitter_Feed.php:389, ../includes/Elements/Twitter_Feed.php:641, ../includes/Elements/Woo_Checkout.php:1769, ../includes/Elements/Woo_Checkout.php:1813, ../includes/Elements/Woo_Checkout.php:1857, ../includes/Elements/Woo_Product_Carousel.php:2011, ../includes/Elements/Woo_Product_Carousel.php:2068, ../includes/Traits/Controls.php:1242, ../includes/Traits/Controls.php:1296, ../includes/Traits/Woo_Product_Comparable.php:1373, ../includes/Traits/Woo_Product_Comparable.php:1652, ../includes/Traits/Woo_Product_Comparable.php:1701
1403
  msgid "Background"
1404
  msgstr ""
1405
 
@@ -1491,11 +1491,11 @@ msgstr ""
1491
  msgid "Sets transition effect"
1492
  msgstr ""
1493
 
1494
- #: ../includes/Elements/Content_Ticker.php:163, ../includes/Elements/Pricing_Table.php:427, ../includes/Elements/Woo_Product_Carousel.php:454
1495
  msgid "Slide"
1496
  msgstr ""
1497
 
1498
- #: ../includes/Elements/Content_Ticker.php:164, ../includes/Elements/Fancy_Text.php:201, ../includes/Elements/Pricing_Table.php:424, ../includes/Elements/Simple_Menu.php:293
1499
  msgid "Fade"
1500
  msgstr ""
1501
 
@@ -1787,7 +1787,7 @@ msgstr ""
1787
  msgid "Expire Message"
1788
  msgstr ""
1789
 
1790
- #: ../includes/Elements/Countdown.php:1052, ../includes/Elements/Cta_Box.php:510, ../includes/Elements/Dual_Color_Header.php:449, ../includes/Elements/Flip_Box.php:1177, ../includes/Elements/Flip_Box.php:1245, ../includes/Elements/Info_Box.php:1343, ../includes/Elements/Post_Grid.php:585, ../includes/Elements/Post_Timeline.php:331, ../includes/Elements/Pricing_Table.php:881, ../includes/Elements/Twitter_Feed.php:674
1791
  msgid "Title Style"
1792
  msgstr ""
1793
 
@@ -1823,7 +1823,7 @@ msgstr ""
1823
  msgid "Link URL"
1824
  msgstr ""
1825
 
1826
- #: ../includes/Elements/Creative_Button.php:160, ../includes/Elements/Filterable_Gallery.php:2595, ../includes/Elements/Info_Box.php:469, ../includes/Elements/Pricing_Table.php:558
1827
  msgid "Icon Spacing"
1828
  msgstr ""
1829
 
@@ -2027,11 +2027,11 @@ msgstr ""
2027
  msgid "Icon Style"
2028
  msgstr ""
2029
 
2030
- #: ../includes/Elements/Cta_Box.php:1022, ../includes/Elements/Pricing_Table.php:1335, ../includes/Elements/Twitter_Feed.php:888
2031
  msgid "Font Size"
2032
  msgstr ""
2033
 
2034
- #: ../includes/Elements/Data_Table.php:75, ../includes/Elements/Event_Calendar.php:1233, ../includes/Elements/Pricing_Table.php:873, ../includes/Traits/Woo_Product_Comparable.php:1078
2035
  msgid "Header"
2036
  msgstr ""
2037
 
@@ -2151,7 +2151,7 @@ msgstr ""
2151
  msgid "Background Color (Even Row)"
2152
  msgstr ""
2153
 
2154
- #: ../includes/Elements/Data_Table.php:1011, ../includes/Elements/Filterable_Gallery.php:1293, ../includes/Elements/Filterable_Gallery.php:1676, ../includes/Elements/Flip_Box.php:364, ../includes/Elements/Flip_Box.php:593, ../includes/Elements/Info_Box.php:298, ../includes/Elements/Pricing_Table.php:816, ../includes/Elements/Tooltip.php:372
2155
  msgid "Content Alignment"
2156
  msgstr ""
2157
 
@@ -2375,7 +2375,7 @@ msgstr ""
2375
  msgid "Get Events"
2376
  msgstr ""
2377
 
2378
- #: ../includes/Elements/Event_Calendar.php:376, ../includes/Elements/Filterable_Gallery.php:2771
2379
  msgid "All"
2380
  msgstr ""
2381
 
@@ -2544,7 +2544,7 @@ msgid "Page ID"
2544
  msgstr ""
2545
 
2546
  #: ../includes/Elements/Facebook_Feed.php:94
2547
- msgid "<a href=\"https://findmyfbid.com/\" class=\"eael-btn\" target=\"_blank\">Find Your Page ID</a>"
2548
  msgstr ""
2549
 
2550
  #: ../includes/Elements/Facebook_Feed.php:101
@@ -2783,7 +2783,7 @@ msgstr ""
2783
  msgid "Fancy Text Settings"
2784
  msgstr ""
2785
 
2786
- #: ../includes/Elements/Fancy_Text.php:139, ../includes/Elements/Pricing_Table.php:637
2787
  msgid "Style 1"
2788
  msgstr ""
2789
 
@@ -2831,7 +2831,7 @@ msgstr ""
2831
  msgid "Bounce"
2832
  msgstr ""
2833
 
2834
- #: ../includes/Elements/Fancy_Text.php:208, ../includes/Elements/Pricing_Table.php:426
2835
  msgid "Swing"
2836
  msgstr ""
2837
 
@@ -2947,7 +2947,7 @@ msgstr ""
2947
  msgid "Framed"
2948
  msgstr ""
2949
 
2950
- #: ../includes/Elements/Feature_List.php:309, ../includes/Elements/Flip_Box.php:334, ../includes/Elements/Flip_Box.php:563, ../includes/Elements/Image_Accordion.php:132, ../includes/Elements/Info_Box.php:129, ../includes/Elements/Login_Register.php:711, ../includes/Elements/Pricing_Table.php:383, ../includes/Elements/Tooltip.php:290, ../includes/Elements/Twitter_Feed.php:352, ../includes/Extensions/Reading_Progress.php:115, ../includes/Traits/Controls.php:1694
2951
  msgid "Top"
2952
  msgstr ""
2953
 
@@ -3099,7 +3099,7 @@ msgstr ""
3099
  msgid "Select Title Tag"
3100
  msgstr ""
3101
 
3102
- #: ../includes/Elements/Filterable_Gallery.php:391, ../includes/Elements/Pricing_Table.php:309
3103
  msgid "List Item"
3104
  msgstr ""
3105
 
@@ -3227,7 +3227,7 @@ msgstr ""
3227
  msgid "Extra Large"
3228
  msgstr ""
3229
 
3230
- #: ../includes/Elements/Filterable_Gallery.php:735, ../includes/Elements/Filterable_Gallery.php:2641, ../includes/Elements/Flip_Box.php:696, ../includes/Elements/Pricing_Table.php:529
3231
  msgid "Button Icon"
3232
  msgstr ""
3233
 
@@ -3403,7 +3403,7 @@ msgstr ""
3403
  msgid "Middle"
3404
  msgstr ""
3405
 
3406
- #: ../includes/Elements/Flip_Box.php:342, ../includes/Elements/Flip_Box.php:571, ../includes/Elements/Image_Accordion.php:140, ../includes/Elements/Info_Box.php:137, ../includes/Elements/Pricing_Table.php:391, ../includes/Elements/Tooltip.php:291, ../includes/Elements/Twitter_Feed.php:360, ../includes/Extensions/Reading_Progress.php:116, ../includes/Traits/Controls.php:1698
3407
  msgid "Bottom"
3408
  msgstr ""
3409
 
@@ -3575,7 +3575,7 @@ msgstr ""
3575
  msgid "Section Field"
3576
  msgstr ""
3577
 
3578
- #: ../includes/Elements/GravityForms.php:1012, ../includes/Elements/Pricing_Table.php:779, ../includes/Elements/Pricing_Table.php:1533, ../includes/Elements/Sticky_Video.php:548
3579
  msgid "Border Type"
3580
  msgstr ""
3581
 
@@ -3739,7 +3739,7 @@ msgstr ""
3739
  msgid "Number"
3740
  msgstr ""
3741
 
3742
- #: ../includes/Elements/Info_Box.php:211, ../includes/Elements/Info_Box.php:272, ../includes/Classes/WPML/Eael_WPML.php:179
3743
  msgid "Infobox Content"
3744
  msgstr ""
3745
 
@@ -4714,7 +4714,7 @@ msgstr ""
4714
  msgid "Theme"
4715
  msgstr ""
4716
 
4717
- #: ../includes/Elements/Login_Register.php:3345, ../includes/Elements/Pricing_Table.php:470
4718
  msgid "Light"
4719
  msgstr ""
4720
 
@@ -5014,7 +5014,7 @@ msgstr ""
5014
  msgid "Pricing Style"
5015
  msgstr ""
5016
 
5017
- #: ../includes/Elements/Pricing_Table.php:126, ../includes/Elements/Pricing_Table.php:320, ../includes/Extensions/Table_of_Content.php:451
5018
  msgid "List Icon"
5019
  msgstr ""
5020
 
@@ -5026,247 +5026,247 @@ msgstr ""
5026
  msgid "A tagline here."
5027
  msgstr ""
5028
 
5029
- #: ../includes/Elements/Pricing_Table.php:211
5030
  msgid "99"
5031
  msgstr ""
5032
 
5033
- #: ../includes/Elements/Pricing_Table.php:217
5034
  msgid "On Sale?"
5035
  msgstr ""
5036
 
5037
- #: ../includes/Elements/Pricing_Table.php:228, ../includes/Elements/Pricing_Table.php:1105
5038
  msgid "Sale Price"
5039
  msgstr ""
5040
 
5041
- #: ../includes/Elements/Pricing_Table.php:237
5042
  msgid "89"
5043
  msgstr ""
5044
 
5045
- #: ../includes/Elements/Pricing_Table.php:246
5046
  msgid "Price Currency"
5047
  msgstr ""
5048
 
5049
- #: ../includes/Elements/Pricing_Table.php:250
5050
  msgid "$"
5051
  msgstr ""
5052
 
5053
- #: ../includes/Elements/Pricing_Table.php:257
5054
  msgid "Currency Placement"
5055
  msgstr ""
5056
 
5057
- #: ../includes/Elements/Pricing_Table.php:273
5058
  msgid "Price Period (per)"
5059
  msgstr ""
5060
 
5061
- #: ../includes/Elements/Pricing_Table.php:277
5062
  msgid "month"
5063
  msgstr ""
5064
 
5065
- #: ../includes/Elements/Pricing_Table.php:284
5066
  msgid "Period Separator"
5067
  msgstr ""
5068
 
5069
- #: ../includes/Elements/Pricing_Table.php:288
5070
  msgid "/"
5071
  msgstr ""
5072
 
5073
- #: ../includes/Elements/Pricing_Table.php:300
5074
  msgid "Feature"
5075
  msgstr ""
5076
 
5077
- #: ../includes/Elements/Pricing_Table.php:313
5078
  msgid "Pricing table list item"
5079
  msgstr ""
5080
 
5081
- #: ../includes/Elements/Pricing_Table.php:333
5082
  msgid "Item Active?"
5083
  msgstr ""
5084
 
5085
- #: ../includes/Elements/Pricing_Table.php:352
5086
  msgid "Enable Tooltip?"
5087
  msgstr ""
5088
 
5089
- #: ../includes/Elements/Pricing_Table.php:362
5090
  msgid "Tooltip Content"
5091
  msgstr ""
5092
 
5093
- #: ../includes/Elements/Pricing_Table.php:365
5094
  msgid "I'm a awesome tooltip!!"
5095
  msgstr ""
5096
 
5097
- #: ../includes/Elements/Pricing_Table.php:375
5098
  msgid "Tooltip Side"
5099
  msgstr ""
5100
 
5101
- #: ../includes/Elements/Pricing_Table.php:405
5102
  msgid "Tooltip Trigger"
5103
  msgstr ""
5104
 
5105
- #: ../includes/Elements/Pricing_Table.php:409
5106
  msgid "Click"
5107
  msgstr ""
5108
 
5109
- #: ../includes/Elements/Pricing_Table.php:421
5110
  msgid "Tooltip Animation"
5111
  msgstr ""
5112
 
5113
- #: ../includes/Elements/Pricing_Table.php:425
5114
  msgid "Grow"
5115
  msgstr ""
5116
 
5117
- #: ../includes/Elements/Pricing_Table.php:428
5118
  msgid "Fall"
5119
  msgstr ""
5120
 
5121
- #: ../includes/Elements/Pricing_Table.php:440, ../includes/Elements/Progress_Bar.php:219
5122
  msgid "Animation Duration"
5123
  msgstr ""
5124
 
5125
- #: ../includes/Elements/Pricing_Table.php:452, ../includes/Elements/Pricing_Table.php:1563
5126
  msgid "Tooltip Arrow"
5127
  msgstr ""
5128
 
5129
- #: ../includes/Elements/Pricing_Table.php:465
5130
  msgid "Tooltip Theme"
5131
  msgstr ""
5132
 
5133
- #: ../includes/Elements/Pricing_Table.php:469
5134
  msgid "Noir"
5135
  msgstr ""
5136
 
5137
- #: ../includes/Elements/Pricing_Table.php:471
5138
  msgid "Punk"
5139
  msgstr ""
5140
 
5141
- #: ../includes/Elements/Pricing_Table.php:473
5142
  msgid "Borderless"
5143
  msgstr ""
5144
 
5145
- #: ../includes/Elements/Pricing_Table.php:514
5146
  msgid "Display Button"
5147
  msgstr ""
5148
 
5149
- #: ../includes/Elements/Pricing_Table.php:583
5150
  msgid "Choose Plan"
5151
  msgstr ""
5152
 
5153
- #: ../includes/Elements/Pricing_Table.php:593, ../includes/Elements/Tooltip.php:245
5154
  msgid "Button Link"
5155
  msgstr ""
5156
 
5157
- #: ../includes/Elements/Pricing_Table.php:616, ../includes/Elements/Pricing_Table.php:1278
5158
  msgid "Ribbon"
5159
  msgstr ""
5160
 
5161
- #: ../includes/Elements/Pricing_Table.php:623
5162
  msgid "Featured?"
5163
  msgstr ""
5164
 
5165
- #: ../includes/Elements/Pricing_Table.php:633
5166
  msgid "Ribbon Style"
5167
  msgstr ""
5168
 
5169
- #: ../includes/Elements/Pricing_Table.php:638
5170
  msgid "Style 2"
5171
  msgstr ""
5172
 
5173
- #: ../includes/Elements/Pricing_Table.php:639
5174
  msgid "Style 3"
5175
  msgstr ""
5176
 
5177
- #: ../includes/Elements/Pricing_Table.php:640
5178
  msgid "Style 4"
5179
  msgstr ""
5180
 
5181
- #: ../includes/Elements/Pricing_Table.php:654
5182
  msgid "Featured Tag Text"
5183
  msgstr ""
5184
 
5185
- #: ../includes/Elements/Pricing_Table.php:658
5186
  msgid "Featured"
5187
  msgstr ""
5188
 
5189
- #: ../includes/Elements/Pricing_Table.php:677
5190
  msgid "Ribbon Alignment"
5191
  msgstr ""
5192
 
5193
- #: ../includes/Elements/Pricing_Table.php:734
5194
  msgid "Pricing Table Style"
5195
  msgstr ""
5196
 
5197
- #: ../includes/Elements/Pricing_Table.php:918, ../includes/Elements/Pricing_Table.php:1286
5198
  msgid "Line Color"
5199
  msgstr ""
5200
 
5201
- #: ../includes/Elements/Pricing_Table.php:941
5202
  msgid "Subtitle Style"
5203
  msgstr ""
5204
 
5205
- #: ../includes/Elements/Pricing_Table.php:1027
5206
  msgid "Pricing"
5207
  msgstr ""
5208
 
5209
- #: ../includes/Elements/Pricing_Table.php:1035
5210
  msgid "Original Price"
5211
  msgstr ""
5212
 
5213
- #: ../includes/Elements/Pricing_Table.php:1064
5214
  msgid "Original Price Currency"
5215
  msgstr ""
5216
 
5217
- #: ../includes/Elements/Pricing_Table.php:1134
5218
  msgid "Sale Price Currency"
5219
  msgstr ""
5220
 
5221
- #: ../includes/Elements/Pricing_Table.php:1174
5222
  msgid "Pricing Period"
5223
  msgstr ""
5224
 
5225
- #: ../includes/Elements/Pricing_Table.php:1230
5226
  msgid "Disable item color"
5227
  msgstr ""
5228
 
5229
- #: ../includes/Elements/Pricing_Table.php:1307, ../includes/Extensions/Table_of_Content.php:717
5230
  msgid "Line Height"
5231
  msgstr ""
5232
 
5233
- #: ../includes/Elements/Pricing_Table.php:1489
5234
  msgid "Arrow Background"
5235
  msgstr ""
5236
 
5237
- #: ../includes/Elements/Pricing_Table.php:1522
5238
  msgid "Refresh your browser after saving the padding value for see changes."
5239
  msgstr ""
5240
 
5241
- #: ../includes/Elements/Pricing_Table.php:1572, ../includes/Elements/Tooltip.php:659
5242
  msgid "Arrow Size"
5243
  msgstr ""
5244
 
5245
- #: ../includes/Elements/Pricing_Table.php:1617
5246
  msgid "Icon Settings"
5247
  msgstr ""
5248
 
5249
- #: ../includes/Elements/Pricing_Table.php:1628
5250
  msgid "Show Background"
5251
  msgstr ""
5252
 
5253
- #: ../includes/Elements/Pricing_Table.php:1661
5254
  msgid "Background Hover Color"
5255
  msgstr ""
5256
 
5257
- #: ../includes/Elements/Pricing_Table.php:1697
5258
  msgid "Icon Area Width"
5259
  msgstr ""
5260
 
5261
- #: ../includes/Elements/Pricing_Table.php:1722
5262
  msgid "Icon Area Height"
5263
  msgstr ""
5264
 
5265
- #: ../includes/Elements/Pricing_Table.php:1753, ../includes/Elements/Team_Member.php:796
5266
  msgid "Icon Hover Color"
5267
  msgstr ""
5268
 
5269
- #: ../includes/Elements/Pricing_Table.php:1877
5270
  msgid "Button Gradient Background"
5271
  msgstr ""
5272
 
@@ -8142,194 +8142,6 @@ msgstr ""
8142
  msgid "Product ID is missing"
8143
  msgstr ""
8144
 
8145
- #: ../includes/Classes/WPML/Eael_WPML.php:29
8146
- msgid "Creative Button: Text"
8147
- msgstr ""
8148
-
8149
- #: ../includes/Classes/WPML/Eael_WPML.php:34
8150
- msgid "Creative Button: Secondary Text"
8151
- msgstr ""
8152
-
8153
- #: ../includes/Classes/WPML/Eael_WPML.php:39
8154
- msgid "Creative Button: Link"
8155
- msgstr ""
8156
-
8157
- #: ../includes/Classes/WPML/Eael_WPML.php:51
8158
- msgid "Call to Action: Title"
8159
- msgstr ""
8160
-
8161
- #: ../includes/Classes/WPML/Eael_WPML.php:56
8162
- msgid "Call to Action: Content"
8163
- msgstr ""
8164
-
8165
- #: ../includes/Classes/WPML/Eael_WPML.php:61
8166
- msgid "Call to Action: Button Text"
8167
- msgstr ""
8168
-
8169
- #: ../includes/Classes/WPML/Eael_WPML.php:78
8170
- msgid "Dual Color Heading: Title ( First Part )"
8171
- msgstr ""
8172
-
8173
- #: ../includes/Classes/WPML/Eael_WPML.php:83
8174
- msgid "Dual Color Heading: Title ( Last Part )"
8175
- msgstr ""
8176
-
8177
- #: ../includes/Classes/WPML/Eael_WPML.php:88
8178
- msgid "Dual Color Heading: Sub Text"
8179
- msgstr ""
8180
-
8181
- #: ../includes/Classes/WPML/Eael_WPML.php:100
8182
- msgid "Fancy Text: Prefix Text"
8183
- msgstr ""
8184
-
8185
- #: ../includes/Classes/WPML/Eael_WPML.php:105
8186
- msgid "Fancy Text: Suffix Text"
8187
- msgstr ""
8188
-
8189
- #: ../includes/Classes/WPML/Eael_WPML.php:174
8190
- msgid "Infobox: Title"
8191
- msgstr ""
8192
-
8193
- #: ../includes/Classes/WPML/Eael_WPML.php:190
8194
- msgid "Post Grid: Load More Button"
8195
- msgstr ""
8196
-
8197
- #: ../includes/Classes/WPML/Eael_WPML.php:195
8198
- msgid "Post Grid: Read More Button"
8199
- msgstr ""
8200
-
8201
- #: ../includes/Classes/WPML/Eael_WPML.php:206
8202
- msgid "Post Timeline: Load More Button"
8203
- msgstr ""
8204
-
8205
- #: ../includes/Classes/WPML/Eael_WPML.php:218
8206
- msgid "Pricing Table: Title"
8207
- msgstr ""
8208
-
8209
- #: ../includes/Classes/WPML/Eael_WPML.php:223
8210
- msgid "Pricing Table: Sub Title"
8211
- msgstr ""
8212
-
8213
- #: ../includes/Classes/WPML/Eael_WPML.php:228
8214
- msgid "Pricing Table: Price"
8215
- msgstr ""
8216
-
8217
- #: ../includes/Classes/WPML/Eael_WPML.php:233
8218
- msgid "Pricing Table: Currency Placement"
8219
- msgstr ""
8220
-
8221
- #: ../includes/Classes/WPML/Eael_WPML.php:238
8222
- msgid "Pricing Table: Price Period (per)"
8223
- msgstr ""
8224
-
8225
- #: ../includes/Classes/WPML/Eael_WPML.php:243, ../includes/Classes/WPML/Eael_WPML.php:248
8226
- msgid "Pricing Table: Button Text"
8227
- msgstr ""
8228
-
8229
- #: ../includes/Classes/WPML/Eael_WPML.php:253
8230
- msgid "Pricing Table: Featured Tag Text"
8231
- msgstr ""
8232
-
8233
- #: ../includes/Classes/WPML/Eael_WPML.php:264
8234
- msgid "Progressbar: Title"
8235
- msgstr ""
8236
-
8237
- #: ../includes/Classes/WPML/Eael_WPML.php:275
8238
- msgid "Team Member: Name"
8239
- msgstr ""
8240
-
8241
- #: ../includes/Classes/WPML/Eael_WPML.php:280
8242
- msgid "Team Member: Job Position"
8243
- msgstr ""
8244
-
8245
- #: ../includes/Classes/WPML/Eael_WPML.php:285
8246
- msgid "Team Member: Description"
8247
- msgstr ""
8248
-
8249
- #: ../includes/Classes/WPML/Eael_WPML.php:297
8250
- msgid "Testimonial: User Name"
8251
- msgstr ""
8252
-
8253
- #: ../includes/Classes/WPML/Eael_WPML.php:302
8254
- msgid "Testimonial: Company Name"
8255
- msgstr ""
8256
-
8257
- #: ../includes/Classes/WPML/Eael_WPML.php:307
8258
- msgid "Testimonial: Testimonial Description"
8259
- msgstr ""
8260
-
8261
- #: ../includes/Classes/WPML/Eael_WPML.php:318, ../includes/Classes/WPML/Eael_WPML.php:323
8262
- msgid "Tooltip: Content"
8263
- msgstr ""
8264
-
8265
- #: ../includes/Classes/WPML/Eael_WPML.php:335, ../includes/Classes/WPML/Widgets/Feature_List.php:49
8266
- msgid "Feature List: Title"
8267
- msgstr ""
8268
-
8269
- #: ../includes/Classes/WPML/Eael_WPML.php:340, ../includes/Classes/WPML/Widgets/Feature_List.php:52
8270
- msgid "Feature List: Content"
8271
- msgstr ""
8272
-
8273
- #: ../includes/Classes/WPML/Eael_WPML.php:351
8274
- msgid "Caldera Form: Title"
8275
- msgstr ""
8276
-
8277
- #: ../includes/Classes/WPML/Eael_WPML.php:356
8278
- msgid "Caldera Form: Description"
8279
- msgstr ""
8280
-
8281
- #: ../includes/Classes/WPML/Eael_WPML.php:367
8282
- msgid "Contact Form-7: Title"
8283
- msgstr ""
8284
-
8285
- #: ../includes/Classes/WPML/Eael_WPML.php:372
8286
- msgid "Contact Form-7: Description"
8287
- msgstr ""
8288
-
8289
- #: ../includes/Classes/WPML/Eael_WPML.php:383
8290
- msgid "Gravity Form: Title"
8291
- msgstr ""
8292
-
8293
- #: ../includes/Classes/WPML/Eael_WPML.php:388
8294
- msgid "Gravity Form: Description"
8295
- msgstr ""
8296
-
8297
- #: ../includes/Classes/WPML/Eael_WPML.php:399
8298
- msgid "WPForms: Title"
8299
- msgstr ""
8300
-
8301
- #: ../includes/Classes/WPML/Eael_WPML.php:404
8302
- msgid "WPForms: Description"
8303
- msgstr ""
8304
-
8305
- #: ../includes/Classes/WPML/Eael_WPML.php:415
8306
- msgid "NinjaForm: Title"
8307
- msgstr ""
8308
-
8309
- #: ../includes/Classes/WPML/Eael_WPML.php:420
8310
- msgid "NinjaForm: Description"
8311
- msgstr ""
8312
-
8313
- #: ../includes/Classes/WPML/Eael_WPML.php:436
8314
- msgid "Adv Data Table: Search Placeholder"
8315
- msgstr ""
8316
-
8317
- #: ../includes/Classes/WPML/Eael_WPML.php:447
8318
- msgid "Formstack: Custom Title"
8319
- msgstr ""
8320
-
8321
- #: ../includes/Classes/WPML/Eael_WPML.php:452
8322
- msgid "Formstack: Custom Description"
8323
- msgstr ""
8324
-
8325
- #: ../includes/Classes/WPML/Eael_WPML.php:463
8326
- msgid "Fluent Form: Title"
8327
- msgstr ""
8328
-
8329
- #: ../includes/Classes/WPML/Eael_WPML.php:468
8330
- msgid "Fluent Form: Description"
8331
- msgstr ""
8332
-
8333
  #: ../includes/Template/Betterdocs-Category-Box/Layout_2.php:4, ../includes/Template/Betterdocs-Category-Grid/Layout_2.php:4
8334
  msgid "Layout 2"
8335
  msgstr ""
@@ -8550,70 +8362,6 @@ msgstr ""
8550
  msgid "Use internal JS that is embedded in the head of the page. For troubleshooting server configuration conflicts and managing development environments."
8551
  msgstr ""
8552
 
8553
- #: ../includes/Classes/WPML/Widgets/Accordion.php:49
8554
- msgid "Advance Accordion: Title"
8555
- msgstr ""
8556
-
8557
- #: ../includes/Classes/WPML/Widgets/Accordion.php:52
8558
- msgid "Advance Accordion: Content"
8559
- msgstr ""
8560
-
8561
- #: ../includes/Classes/WPML/Widgets/Advance_Tab.php:49
8562
- msgid "Advance Tab: Title"
8563
- msgstr ""
8564
-
8565
- #: ../includes/Classes/WPML/Widgets/Advance_Tab.php:52
8566
- msgid "Advance Tab: Content"
8567
- msgstr ""
8568
-
8569
- #: ../includes/Classes/WPML/Widgets/Creative_Button.php:55
8570
- msgid "Creative Button: Link URL"
8571
- msgstr ""
8572
-
8573
- #: ../includes/Classes/WPML/Widgets/Data_Table.php:52
8574
- msgid "Data Table: Header"
8575
- msgstr ""
8576
-
8577
- #: ../includes/Classes/WPML/Widgets/Data_Table_Body.php:52
8578
- msgid "Data Table: Cell Text"
8579
- msgstr ""
8580
-
8581
- #: ../includes/Classes/WPML/Widgets/Event_Calendar.php:54
8582
- msgid "Event: Title"
8583
- msgstr ""
8584
-
8585
- #: ../includes/Classes/WPML/Widgets/Event_Calendar.php:57
8586
- msgid "Event: Content"
8587
- msgstr ""
8588
-
8589
- #: ../includes/Classes/WPML/Widgets/Event_Calendar.php:60
8590
- msgid "Event : Description"
8591
- msgstr ""
8592
-
8593
- #: ../includes/Classes/WPML/Widgets/Fancy_Text.php:46
8594
- msgid "Fancy Text: String"
8595
- msgstr ""
8596
-
8597
- #: ../includes/Classes/WPML/Widgets/Image_Accordion.php:49
8598
- msgid "Image Accordion: Title"
8599
- msgstr ""
8600
-
8601
- #: ../includes/Classes/WPML/Widgets/Image_Accordion.php:52
8602
- msgid "Image Accordion: Content"
8603
- msgstr ""
8604
-
8605
- #: ../includes/Classes/WPML/Widgets/Pricing_Table.php:49
8606
- msgid "Pricing Table: Feature"
8607
- msgstr ""
8608
-
8609
- #: ../includes/Classes/WPML/Widgets/Pricing_Table.php:52
8610
- msgid "Pricing Table: Feature Tooltip"
8611
- msgstr ""
8612
-
8613
- #: ../includes/Classes/WPML/Widgets/Team_Member.php:49
8614
- msgid "Team Member: Profile Link"
8615
- msgstr ""
8616
-
8617
  #: ../includes/Template/Woocommerce/Checkout/Woo_Checkout_Helper.php:54
8618
  msgid "The order totals have been updated. Please confirm your order by pressing the \"Place order\" button at the bottom of the page."
8619
  msgstr ""
13
  "X-Poedit-SourceCharset: UTF-8\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
 
16
+ #: ../includes/Classes/Helper.php:190, ../includes/Elements/Adv_Accordion.php:313, ../includes/Elements/Adv_Tabs.php:262, ../includes/Elements/Contact_Form_7.php:270, ../includes/Elements/Content_Ticker.php:306, ../includes/Elements/Countdown.php:467, ../includes/Elements/Creative_Button.php:188, ../includes/Elements/Cta_Box.php:346, ../includes/Elements/Data_Table.php:471, ../includes/Elements/Dual_Color_Header.php:214, ../includes/Elements/Fancy_Text.php:269, ../includes/Elements/Filterable_Gallery.php:795, ../includes/Elements/Flip_Box.php:727, ../includes/Elements/Info_Box.php:492, ../includes/Elements/Pricing_Table.php:697, ../includes/Elements/Progress_Bar.php:271, ../includes/Elements/Team_Member.php:237, ../includes/Elements/Testimonial.php:214, ../includes/Elements/Tooltip.php:513, ../includes/Elements/Twitter_Feed.php:295, ../includes/Elements/WeForms.php:110
17
  msgid "Go Premium for More Features"
18
  msgstr ""
19
 
20
+ #: ../includes/Classes/Helper.php:197, ../includes/Elements/Adv_Accordion.php:320, ../includes/Elements/Adv_Tabs.php:269, ../includes/Elements/Contact_Form_7.php:277, ../includes/Elements/Content_Ticker.php:313, ../includes/Elements/Countdown.php:474, ../includes/Elements/Creative_Button.php:195, ../includes/Elements/Cta_Box.php:353, ../includes/Elements/Data_Table.php:478, ../includes/Elements/Dual_Color_Header.php:221, ../includes/Elements/Fancy_Text.php:276, ../includes/Elements/Filterable_Gallery.php:802, ../includes/Elements/Flip_Box.php:734, ../includes/Elements/Info_Box.php:499, ../includes/Elements/Pricing_Table.php:704, ../includes/Elements/Progress_Bar.php:278, ../includes/Elements/Team_Member.php:244, ../includes/Elements/Testimonial.php:221, ../includes/Elements/Tooltip.php:520, ../includes/Elements/Twitter_Feed.php:302, ../includes/Elements/WeForms.php:117
21
  msgid "Unlock more possibilities"
22
  msgstr ""
23
 
267
  msgid "Dual Color Heading"
268
  msgstr ""
269
 
270
+ #: ../includes/Classes/WPDeveloper_Setup_Wizard.php:583, ../includes/Elements/Pricing_Table.php:1463, ../includes/Elements/Tooltip.php:25, ../includes/templates/admin/elements.php:45
271
  msgid "Tooltip"
272
  msgstr ""
273
 
279
  msgid "Advanced Tabs"
280
  msgstr ""
281
 
282
+ #: ../includes/Classes/WPDeveloper_Setup_Wizard.php:598, ../includes/Elements/Feature_List.php:28, ../includes/Elements/Pricing_Table.php:1204, ../includes/templates/admin/elements.php:63
283
  msgid "Feature List"
284
  msgstr ""
285
 
519
  msgid "Pagination Type"
520
  msgstr ""
521
 
522
+ #: ../includes/Elements/Advanced_Data_Table.php:180, ../includes/Elements/Advanced_Data_Table.php:1332, ../includes/Elements/Betterdocs_Category_Grid.php:1290, ../includes/Elements/Event_Calendar.php:747, ../includes/Elements/Flip_Box.php:651, ../includes/Elements/FluentForm.php:1913, ../includes/Elements/Formstack.php:1773, ../includes/Elements/Info_Box.php:349, ../includes/Elements/Pricing_Table.php:501, ../includes/Elements/Pricing_Table.php:1810, ../includes/Elements/Product_Grid.php:1806, ../includes/Elements/Woo_Checkout.php:1287, ../includes/Elements/Woo_Checkout.php:1585, ../includes/Elements/Woo_Checkout.php:2358, ../includes/Elements/Woo_Product_Carousel.php:1308, ../includes/Traits/Woo_Product_Comparable.php:1201, ../includes/Traits/Woo_Product_Comparable.php:1251
523
  msgid "Button"
524
  msgstr ""
525
 
571
  msgid "Width"
572
  msgstr ""
573
 
574
+ #: ../includes/Elements/Advanced_Data_Table.php:348, ../includes/Elements/Advanced_Data_Table.php:1016, ../includes/Elements/Advanced_Data_Table.php:1214, ../includes/Elements/Advanced_Data_Table.php:1286, ../includes/Elements/Advanced_Data_Table.php:1414, ../includes/Elements/Adv_Accordion.php:372, ../includes/Elements/Adv_Accordion.php:561, ../includes/Elements/Adv_Accordion.php:621, ../includes/Elements/Adv_Accordion.php:682, ../includes/Elements/Adv_Accordion.php:765, ../includes/Elements/Adv_Accordion.php:887, ../includes/Elements/Adv_Accordion.php:933, ../includes/Elements/Adv_Accordion.php:979, ../includes/Elements/Adv_Tabs.php:324, ../includes/Elements/Adv_Tabs.php:516, ../includes/Elements/Adv_Tabs.php:583, ../includes/Elements/Adv_Tabs.php:654, ../includes/Elements/Adv_Tabs.php:749, ../includes/Elements/Betterdocs_Category_Box.php:300, ../includes/Elements/Betterdocs_Category_Box.php:368, ../includes/Elements/Betterdocs_Category_Box.php:489, ../includes/Elements/Betterdocs_Category_Box.php:565, ../includes/Elements/Betterdocs_Category_Box.php:885, ../includes/Elements/Betterdocs_Category_Box.php:990, ../includes/Elements/Betterdocs_Category_Grid.php:341, ../includes/Elements/Betterdocs_Category_Grid.php:389, ../includes/Elements/Betterdocs_Category_Grid.php:474, ../includes/Elements/Betterdocs_Category_Grid.php:515, ../includes/Elements/Betterdocs_Category_Grid.php:640, ../includes/Elements/Betterdocs_Category_Grid.php:694, ../includes/Elements/Betterdocs_Category_Grid.php:844, ../includes/Elements/Betterdocs_Category_Grid.php:941, ../includes/Elements/Betterdocs_Category_Grid.php:1186, ../includes/Elements/Betterdocs_Category_Grid.php:1386, ../includes/Elements/Betterdocs_Category_Grid.php:1485, ../includes/Elements/Betterdocs_Search_Form.php:210, ../includes/Elements/Betterdocs_Search_Form.php:365, ../includes/Elements/Betterdocs_Search_Form.php:423, ../includes/Elements/Betterdocs_Search_Form.php:533, ../includes/Elements/Caldera_Forms.php:617, ../includes/Elements/Caldera_Forms.php:813, ../includes/Elements/Caldera_Forms.php:1229, ../includes/Elements/Caldera_Forms.php:1387, ../includes/Elements/Contact_Form_7.php:711, ../includes/Elements/Contact_Form_7.php:776, ../includes/Elements/Contact_Form_7.php:1255, ../includes/Elements/Contact_Form_7.php:1457, ../includes/Elements/Contact_Form_7.php:1551, ../includes/Elements/Contact_Form_7.php:1618, ../includes/Elements/Content_Ticker.php:622, ../includes/Elements/Countdown.php:619, ../includes/Elements/Cta_Box.php:463, ../includes/Elements/Cta_Box.php:740, ../includes/Elements/Cta_Box.php:927, ../includes/Elements/Data_Table.php:641, ../includes/Elements/Data_Table.php:680, ../includes/Elements/Data_Table.php:872, ../includes/Elements/Data_Table.php:1206, ../includes/Elements/Dual_Color_Header.php:347, ../includes/Elements/Event_Calendar.php:798, ../includes/Elements/Event_Calendar.php:865, ../includes/Elements/Event_Calendar.php:919, ../includes/Elements/Event_Calendar.php:1591, ../includes/Elements/Event_Calendar.php:1662, ../includes/Elements/Facebook_Feed.php:451, ../includes/Elements/Filterable_Gallery.php:871, ../includes/Elements/Filterable_Gallery.php:984, ../includes/Elements/Filterable_Gallery.php:1050, ../includes/Elements/Filterable_Gallery.php:1130, ../includes/Elements/Filterable_Gallery.php:1277, ../includes/Elements/Filterable_Gallery.php:1334, ../includes/Elements/Filterable_Gallery.php:1553, ../includes/Elements/Filterable_Gallery.php:1828, ../includes/Elements/Filterable_Gallery.php:1889, ../includes/Elements/Filterable_Gallery.php:2410, ../includes/Elements/Filterable_Gallery.php:2527, ../includes/Elements/Flip_Box.php:988, ../includes/Elements/Flip_Box.php:1101, ../includes/Elements/FluentForm.php:636, ../includes/Elements/FluentForm.php:832, ../includes/Elements/FluentForm.php:1549, ../includes/Elements/FluentForm.php:1826, ../includes/Elements/FluentForm.php:1953, ../includes/Elements/FluentForm.php:2071, ../includes/Elements/Formstack.php:865, ../includes/Elements/Formstack.php:1061, ../includes/Elements/Formstack.php:1465, ../includes/Elements/Formstack.php:1686, ../includes/Elements/Formstack.php:1815, ../includes/Elements/GravityForms.php:835, ../includes/Elements/GravityForms.php:899, ../includes/Elements/GravityForms.php:1655, ../includes/Elements/GravityForms.php:1824, ../includes/Elements/GravityForms.php:2051, ../includes/Elements/Image_Accordion.php:354, ../includes/Elements/Image_Accordion.php:464, ../includes/Elements/Info_Box.php:568, ../includes/Elements/Info_Box.php:623, ../includes/Elements/Info_Box.php:817, ../includes/Elements/Info_Box.php:897, ../includes/Elements/Info_Box.php:1048, ../includes/Elements/Info_Box.php:1128, ../includes/Elements/Login_Register.php:2689, ../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:1761, ../includes/Elements/Pricing_Table.php:1927, ../includes/Elements/Product_Grid.php:2247, ../includes/Elements/Simple_Menu.php:321, ../includes/Elements/Simple_Menu.php:394, ../includes/Elements/Team_Member.php:413, ../includes/Elements/Team_Member.php:501, ../includes/Elements/Testimonial.php:435, ../includes/Elements/Tooltip.php:439, ../includes/Elements/Tooltip.php:482, ../includes/Elements/Twitter_Feed.php:448, ../includes/Elements/Twitter_Feed.php:538, ../includes/Elements/Twitter_Feed.php:855, ../includes/Elements/Woo_Checkout.php:1507, ../includes/Elements/Woo_Checkout.php:1753, ../includes/Elements/Woo_Product_Carousel.php: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:521, ../includes/Traits/Controls.php:1255, ../includes/Traits/Controls.php:1309, ../includes/Traits/Controls.php:1439
575
  msgid "Border"
576
  msgstr ""
577
 
578
+ #: ../includes/Elements/Advanced_Data_Table.php:374, ../includes/Elements/Advanced_Data_Table.php:1042, ../includes/Elements/Advanced_Data_Table.php:1240, ../includes/Elements/Advanced_Data_Table.php:1312, ../includes/Elements/Advanced_Data_Table.php:1436, ../includes/Elements/Adv_Accordion.php:379, ../includes/Elements/Adv_Accordion.php:568, ../includes/Elements/Adv_Accordion.php:628, ../includes/Elements/Adv_Accordion.php:689, ../includes/Elements/Adv_Tabs.php:332, ../includes/Elements/Adv_Tabs.php:523, ../includes/Elements/Adv_Tabs.php:590, ../includes/Elements/Adv_Tabs.php:661, ../includes/Elements/Adv_Tabs.php:756, ../includes/Elements/Betterdocs_Category_Box.php:308, ../includes/Elements/Betterdocs_Category_Box.php:376, ../includes/Elements/Betterdocs_Category_Box.php:497, ../includes/Elements/Betterdocs_Category_Box.php:574, ../includes/Elements/Betterdocs_Category_Box.php:896, ../includes/Elements/Betterdocs_Category_Box.php:1001, ../includes/Elements/Betterdocs_Category_Grid.php:349, ../includes/Elements/Betterdocs_Category_Grid.php:397, ../includes/Elements/Betterdocs_Category_Grid.php:482, ../includes/Elements/Betterdocs_Category_Grid.php:523, ../includes/Elements/Betterdocs_Category_Grid.php:648, ../includes/Elements/Betterdocs_Category_Grid.php:702, ../includes/Elements/Betterdocs_Category_Grid.php:855, ../includes/Elements/Betterdocs_Category_Grid.php:952, ../includes/Elements/Betterdocs_Category_Grid.php:1394, ../includes/Elements/Betterdocs_Category_Grid.php:1493, ../includes/Elements/Betterdocs_Search_Form.php:197, ../includes/Elements/Caldera_Forms.php:480, ../includes/Elements/Caldera_Forms.php:628, ../includes/Elements/Caldera_Forms.php:1046, ../includes/Elements/Caldera_Forms.php:1072, ../includes/Elements/Caldera_Forms.php:1239, ../includes/Elements/Contact_Form_7.php:396, ../includes/Elements/Contact_Form_7.php:722, ../includes/Elements/Contact_Form_7.php:1073, ../includes/Elements/Contact_Form_7.php:1099, ../includes/Elements/Contact_Form_7.php:1264, ../includes/Elements/Content_Ticker.php:401, ../includes/Elements/Content_Ticker.php:475, ../includes/Elements/Content_Ticker.php:632, ../includes/Elements/Countdown.php:627, ../includes/Elements/Creative_Button.php:336, ../includes/Elements/Cta_Box.php:471, ../includes/Elements/Cta_Box.php:748, ../includes/Elements/Cta_Box.php:935, ../includes/Elements/Dual_Color_Header.php:355, ../includes/Elements/Event_Calendar.php:806, ../includes/Elements/Event_Calendar.php:873, ../includes/Elements/Event_Calendar.php:927, ../includes/Elements/Event_Calendar.php:1163, ../includes/Elements/Event_Calendar.php:1331, ../includes/Elements/Event_Calendar.php:1599, ../includes/Elements/Event_Calendar.php:1670, ../includes/Elements/Facebook_Feed.php:476, ../includes/Elements/Facebook_Feed.php:536, ../includes/Elements/Fancy_Text.php:515, ../includes/Elements/Feature_List.php:642, ../includes/Elements/Filterable_Gallery.php:879, ../includes/Elements/Filterable_Gallery.php:992, ../includes/Elements/Filterable_Gallery.php:1058, ../includes/Elements/Filterable_Gallery.php:1138, ../includes/Elements/Filterable_Gallery.php:1342, ../includes/Elements/Filterable_Gallery.php:1836, ../includes/Elements/Filterable_Gallery.php:1897, ../includes/Elements/Filterable_Gallery.php:2068, ../includes/Elements/Filterable_Gallery.php:2199, ../includes/Elements/Filterable_Gallery.php:2334, ../includes/Elements/Filterable_Gallery.php:2432, ../includes/Elements/Filterable_Gallery.php:2541, ../includes/Elements/Flip_Box.php:826, ../includes/Elements/Flip_Box.php:887, ../includes/Elements/Flip_Box.php:1011, ../includes/Elements/Flip_Box.php:1124, ../includes/Elements/Flip_Box.php:1385, ../includes/Elements/FluentForm.php:499, ../includes/Elements/FluentForm.php:647, ../includes/Elements/FluentForm.php:1012, ../includes/Elements/FluentForm.php:1038, ../includes/Elements/FluentForm.php:1559, ../includes/Elements/FluentForm.php:1837, ../includes/Elements/FluentForm.php:1961, ../includes/Elements/FluentForm.php:2015, ../includes/Elements/Formstack.php:399, ../includes/Elements/Formstack.php:876, ../includes/Elements/Formstack.php:1202, ../includes/Elements/Formstack.php:1228, ../includes/Elements/Formstack.php:1475, ../includes/Elements/Formstack.php:1697, ../includes/Elements/Formstack.php:1823, ../includes/Elements/Formstack.php:1879, ../includes/Elements/GravityForms.php:436, ../includes/Elements/GravityForms.php:846, ../includes/Elements/GravityForms.php:1316, ../includes/Elements/GravityForms.php:1512, ../includes/Elements/GravityForms.php:1665, ../includes/Elements/GravityForms.php:1834, ../includes/Elements/GravityForms.php:2061, ../includes/Elements/Image_Accordion.php:362, ../includes/Elements/Image_Accordion.php:452, ../includes/Elements/Info_Box.php:1210, ../includes/Elements/Login_Register.php:1490, ../includes/Elements/Login_Register.php:1725, ../includes/Elements/Login_Register.php:1899, ../includes/Elements/Login_Register.php:2055, ../includes/Elements/Login_Register.php:2195, ../includes/Elements/Login_Register.php:2289, ../includes/Elements/Login_Register.php:2380, ../includes/Elements/Login_Register.php:2554, ../includes/Elements/Login_Register.php:2591, ../includes/Elements/Login_Register.php:2705, ../includes/Elements/Login_Register.php:3215, ../includes/Elements/Login_Register.php:3252, ../includes/Elements/Login_Register.php:3536, ../includes/Elements/Login_Register.php:3573, ../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/Pricing_Table.php:781, ../includes/Elements/Pricing_Table.php:1535, ../includes/Elements/Pricing_Table.php:1784, ../includes/Elements/Pricing_Table.php:1935, ../includes/Elements/Product_Grid.php:951, ../includes/Elements/Product_Grid.php:1991, ../includes/Elements/Product_Grid.php:2347, ../includes/Elements/Product_Grid.php:2686, ../includes/Elements/Product_Grid.php:2885, ../includes/Elements/Product_Grid.php:2917, ../includes/Elements/Simple_Menu.php:329, ../includes/Elements/Sticky_Video.php:591, ../includes/Elements/Team_Member.php:421, ../includes/Elements/Team_Member.php:520, ../includes/Elements/Team_Member.php:767, ../includes/Elements/Testimonial.php:454, ../includes/Elements/Tooltip.php:499, ../includes/Elements/Twitter_Feed.php:456, ../includes/Elements/Twitter_Feed.php:549, ../includes/Elements/TypeForm.php:310, ../includes/Elements/WeForms.php:253, ../includes/Elements/WeForms.php:394, ../includes/Elements/WeForms.php:722, ../includes/Elements/Woo_Checkout.php:647, ../includes/Elements/Woo_Checkout.php:796, ../includes/Elements/Woo_Checkout.php:992, ../includes/Elements/Woo_Checkout.php:1240, ../includes/Elements/Woo_Checkout.php:1393, ../includes/Elements/Woo_Checkout.php:1516, ../includes/Elements/Woo_Checkout.php:1691, ../includes/Elements/Woo_Checkout.php:1899, ../includes/Elements/Woo_Checkout.php:2101, ../includes/Elements/Woo_Checkout.php:2195, ../includes/Elements/Woo_Checkout.php:2475, ../includes/Elements/Woo_Product_Carousel.php:1021, ../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/WpForms.php:338, ../includes/Elements/WpForms.php:639, ../includes/Elements/WpForms.php:1047, ../includes/Elements/WpForms.php:1073, ../includes/Elements/WpForms.php:1243, ../includes/Extensions/Table_of_Content.php:544, ../includes/Extensions/Table_of_Content.php:759, ../includes/Traits/Controls.php:1263, ../includes/Traits/Controls.php:1317, ../includes/Traits/Controls.php:1447, ../includes/Traits/Woo_Product_Comparable.php:358, ../includes/Traits/Woo_Product_Comparable.php:503, ../includes/Traits/Woo_Product_Comparable.php:1384
579
  msgid "Border Radius"
580
  msgstr ""
581
 
595
  msgid "Text Alignment"
596
  msgstr ""
597
 
598
+ #: ../includes/Elements/Advanced_Data_Table.php:418, ../includes/Elements/Advanced_Data_Table.php:537, ../includes/Elements/Advanced_Data_Table.php:963, ../includes/Elements/Advanced_Data_Table.php:1110, ../includes/Elements/Adv_Accordion.php:154, ../includes/Elements/Betterdocs_Category_Box.php:767, ../includes/Elements/Betterdocs_Category_Grid.php:1513, ../includes/Elements/Betterdocs_Category_Grid.php:1538, ../includes/Elements/Caldera_Forms.php:233, ../includes/Elements/Caldera_Forms.php:415, ../includes/Elements/Caldera_Forms.php:561, ../includes/Elements/Caldera_Forms.php:1136, ../includes/Elements/Contact_Form_7.php:331, ../includes/Elements/Contact_Form_7.php:443, ../includes/Elements/Contact_Form_7.php:1163, ../includes/Elements/Content_Ticker.php:290, ../includes/Elements/Countdown.php:118, ../includes/Elements/Countdown.php:1030, ../includes/Elements/Creative_Button.php:445, ../includes/Elements/Cta_Box.php:102, ../includes/Elements/Data_Table.php:542, ../includes/Elements/Data_Table.php:767, ../includes/Elements/Data_Table.php:1016, ../includes/Elements/Dual_Color_Header.php:191, ../includes/Elements/Event_Calendar.php:995, ../includes/Elements/Event_Calendar.php:1127, ../includes/Elements/Fancy_Text.php:174, ../includes/Elements/Feature_List.php:305, ../includes/Elements/Filterable_Gallery.php:767, ../includes/Elements/Filterable_Gallery.php:1299, ../includes/Elements/Filterable_Gallery.php:1682, ../includes/Elements/Flip_Box.php:369, ../includes/Elements/Flip_Box.php:598, ../includes/Elements/FluentForm.php:239, ../includes/Elements/FluentForm.php:434, ../includes/Elements/FluentForm.php:580, ../includes/Elements/FluentForm.php:1211, ../includes/Elements/FluentForm.php:1456, ../includes/Elements/Formstack.php:334, ../includes/Elements/Formstack.php:449, ../includes/Elements/Formstack.php:763, ../includes/Elements/Formstack.php:1372, ../includes/Elements/GravityForms.php:347, ../includes/Elements/GravityForms.php:484, ../includes/Elements/GravityForms.php:629, ../includes/Elements/GravityForms.php:1721, ../includes/Elements/GravityForms.php:1971, ../includes/Elements/Image_Accordion.php:109, ../includes/Elements/Info_Box.php:303, ../includes/Elements/Login_Register.php:674, ../includes/Elements/Login_Register.php:707, ../includes/Elements/Login_Register.php:2498, ../includes/Elements/Login_Register.php:3166, ../includes/Elements/Login_Register.php:3486, ../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:469, ../includes/Elements/Post_Grid.php:624, ../includes/Elements/Post_Grid.php:692, ../includes/Elements/Post_Grid.php:787, ../includes/Elements/Post_Grid.php:870, ../includes/Elements/Post_Timeline.php:357, ../includes/Elements/Post_Timeline.php:415, ../includes/Elements/Pricing_Table.php:256, ../includes/Elements/Pricing_Table.php:373, ../includes/Elements/Pricing_Table.php:675, ../includes/Elements/Pricing_Table.php:815, ../includes/Elements/Pricing_Table.php:840, ../includes/Elements/Product_Grid.php:703, ../includes/Elements/Product_Grid.php:1021, ../includes/Elements/Product_Grid.php:1702, ../includes/Elements/Product_Grid.php:2168, ../includes/Elements/Progress_Bar.php:321, ../includes/Elements/Progress_Bar.php:532, ../includes/Elements/Simple_Menu.php:188, ../includes/Elements/Simple_Menu.php:452, ../includes/Elements/Simple_Menu.php:478, ../includes/Elements/Simple_Menu.php:503, ../includes/Elements/Simple_Menu.php:798, ../includes/Elements/Team_Member.php:380, ../includes/Elements/Testimonial.php:314, ../includes/Elements/Tooltip.php:209, ../includes/Elements/Tooltip.php:288, ../includes/Elements/Tooltip.php:377, ../includes/Elements/TypeForm.php:200, ../includes/Elements/WeForms.php:165, ../includes/Elements/WeForms.php:635, ../includes/Elements/Woo_Product_Carousel.php:717, ../includes/Elements/Woo_Product_Carousel.php:833, ../includes/Elements/Woo_Product_Carousel.php:882, ../includes/Elements/WpForms.php:271, ../includes/Elements/WpForms.php:388, ../includes/Elements/WpForms.php:572, ../includes/Elements/WpForms.php:1137, ../includes/Extensions/Table_of_Content.php:438, ../includes/Traits/Controls.php:599, ../includes/Traits/Controls.php:1528, ../includes/Traits/Controls.php:1579, ../includes/Traits/Controls.php:1580, ../includes/Traits/Controls.php:1902
599
  msgid "Left"
600
  msgstr ""
601
 
602
+ #: ../includes/Elements/Advanced_Data_Table.php:422, ../includes/Elements/Advanced_Data_Table.php:541, ../includes/Elements/Advanced_Data_Table.php:967, ../includes/Elements/Advanced_Data_Table.php:1114, ../includes/Elements/Betterdocs_Category_Box.php:771, ../includes/Elements/Betterdocs_Category_Grid.php:1517, ../includes/Elements/Betterdocs_Category_Grid.php:1542, ../includes/Elements/Caldera_Forms.php:237, ../includes/Elements/Caldera_Forms.php:419, ../includes/Elements/Caldera_Forms.php:565, ../includes/Elements/Caldera_Forms.php:1140, ../includes/Elements/Contact_Form_7.php:335, ../includes/Elements/Contact_Form_7.php:447, ../includes/Elements/Contact_Form_7.php:1167, ../includes/Elements/Countdown.php:122, ../includes/Elements/Countdown.php:1034, ../includes/Elements/Creative_Button.php:449, ../includes/Elements/Cta_Box.php:103, ../includes/Elements/Data_Table.php:546, ../includes/Elements/Data_Table.php:771, ../includes/Elements/Data_Table.php:1020, ../includes/Elements/Dual_Color_Header.php:195, ../includes/Elements/Dual_Color_Header.php:658, ../includes/Elements/Event_Calendar.php:999, ../includes/Elements/Event_Calendar.php:1131, ../includes/Elements/Fancy_Text.php:178, ../includes/Elements/Filterable_Gallery.php:771, ../includes/Elements/Filterable_Gallery.php:1303, ../includes/Elements/Filterable_Gallery.php:1686, ../includes/Elements/Flip_Box.php:373, ../includes/Elements/Flip_Box.php:602, ../includes/Elements/FluentForm.php:243, ../includes/Elements/FluentForm.php:438, ../includes/Elements/FluentForm.php:584, ../includes/Elements/FluentForm.php:1215, ../includes/Elements/FluentForm.php:1460, ../includes/Elements/Formstack.php:338, ../includes/Elements/Formstack.php:453, ../includes/Elements/Formstack.php:767, ../includes/Elements/Formstack.php:1376, ../includes/Elements/GravityForms.php:351, ../includes/Elements/GravityForms.php:488, ../includes/Elements/GravityForms.php:633, ../includes/Elements/GravityForms.php:1725, ../includes/Elements/GravityForms.php:1975, ../includes/Elements/Image_Accordion.php:113, ../includes/Elements/Image_Accordion.php:136, ../includes/Elements/Info_Box.php:307, ../includes/Elements/Login_Register.php:2502, ../includes/Elements/Login_Register.php:3148, ../includes/Elements/Login_Register.php:3170, ../includes/Elements/Login_Register.php:3447, ../includes/Elements/Login_Register.php:3467, ../includes/Elements/Login_Register.php:3490, ../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:473, ../includes/Elements/Post_Grid.php:628, ../includes/Elements/Post_Grid.php:696, ../includes/Elements/Post_Grid.php:791, ../includes/Elements/Post_Grid.php:874, ../includes/Elements/Post_Timeline.php:361, ../includes/Elements/Post_Timeline.php:419, ../includes/Elements/Pricing_Table.php:819, ../includes/Elements/Pricing_Table.php:844, ../includes/Elements/Product_Grid.php:707, ../includes/Elements/Product_Grid.php:1025, ../includes/Elements/Product_Grid.php:2172, ../includes/Elements/Progress_Bar.php:325, ../includes/Elements/Progress_Bar.php:536, ../includes/Elements/Simple_Menu.php:192, ../includes/Elements/Simple_Menu.php:456, ../includes/Elements/Simple_Menu.php:482, ../includes/Elements/Simple_Menu.php:507, ../includes/Elements/Simple_Menu.php:802, ../includes/Elements/Team_Member.php:384, ../includes/Elements/Testimonial.php:318, ../includes/Elements/Tooltip.php:213, ../includes/Elements/Tooltip.php:381, ../includes/Elements/TypeForm.php:204, ../includes/Elements/WeForms.php:169, ../includes/Elements/WeForms.php:639, ../includes/Elements/Woo_Product_Carousel.php:886, ../includes/Elements/WpForms.php:275, ../includes/Elements/WpForms.php:392, ../includes/Elements/WpForms.php:576, ../includes/Elements/WpForms.php:1141, ../includes/Traits/Controls.php:598, ../includes/Traits/Controls.php:1532, ../includes/Traits/Controls.php:1906
603
  msgid "Center"
604
  msgstr ""
605
 
606
+ #: ../includes/Elements/Advanced_Data_Table.php:426, ../includes/Elements/Advanced_Data_Table.php:545, ../includes/Elements/Advanced_Data_Table.php:971, ../includes/Elements/Advanced_Data_Table.php:1118, ../includes/Elements/Adv_Accordion.php:153, ../includes/Elements/Betterdocs_Category_Box.php:775, ../includes/Elements/Betterdocs_Category_Grid.php:1521, ../includes/Elements/Betterdocs_Category_Grid.php:1546, ../includes/Elements/Caldera_Forms.php:241, ../includes/Elements/Caldera_Forms.php:423, ../includes/Elements/Caldera_Forms.php:569, ../includes/Elements/Caldera_Forms.php:1144, ../includes/Elements/Contact_Form_7.php:339, ../includes/Elements/Contact_Form_7.php:451, ../includes/Elements/Contact_Form_7.php:1171, ../includes/Elements/Content_Ticker.php:291, ../includes/Elements/Countdown.php:126, ../includes/Elements/Countdown.php:1038, ../includes/Elements/Creative_Button.php:453, ../includes/Elements/Cta_Box.php:104, ../includes/Elements/Data_Table.php:550, ../includes/Elements/Data_Table.php:775, ../includes/Elements/Data_Table.php:1024, ../includes/Elements/Dual_Color_Header.php:199, ../includes/Elements/Event_Calendar.php:1003, ../includes/Elements/Event_Calendar.php:1135, ../includes/Elements/Fancy_Text.php:182, ../includes/Elements/Feature_List.php:313, ../includes/Elements/Filterable_Gallery.php:775, ../includes/Elements/Filterable_Gallery.php:1307, ../includes/Elements/Filterable_Gallery.php:1690, ../includes/Elements/Flip_Box.php:377, ../includes/Elements/Flip_Box.php:606, ../includes/Elements/FluentForm.php:247, ../includes/Elements/FluentForm.php:442, ../includes/Elements/FluentForm.php:588, ../includes/Elements/FluentForm.php:1219, ../includes/Elements/FluentForm.php:1464, ../includes/Elements/Formstack.php:342, ../includes/Elements/Formstack.php:457, ../includes/Elements/Formstack.php:771, ../includes/Elements/Formstack.php:1380, ../includes/Elements/GravityForms.php:355, ../includes/Elements/GravityForms.php:492, ../includes/Elements/GravityForms.php:637, ../includes/Elements/GravityForms.php:1729, ../includes/Elements/GravityForms.php:1979, ../includes/Elements/Image_Accordion.php:117, ../includes/Elements/Info_Box.php:311, ../includes/Elements/Login_Register.php:678, ../includes/Elements/Login_Register.php:2506, ../includes/Elements/Login_Register.php:3174, ../includes/Elements/Login_Register.php:3494, ../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:477, ../includes/Elements/Post_Grid.php:632, ../includes/Elements/Post_Grid.php:700, ../includes/Elements/Post_Grid.php:795, ../includes/Elements/Post_Grid.php:878, ../includes/Elements/Post_Timeline.php:365, ../includes/Elements/Post_Timeline.php:423, ../includes/Elements/Pricing_Table.php:257, ../includes/Elements/Pricing_Table.php:381, ../includes/Elements/Pricing_Table.php:679, ../includes/Elements/Pricing_Table.php:823, ../includes/Elements/Pricing_Table.php:848, ../includes/Elements/Product_Grid.php:711, ../includes/Elements/Product_Grid.php:1029, ../includes/Elements/Product_Grid.php:1706, ../includes/Elements/Product_Grid.php:2176, ../includes/Elements/Progress_Bar.php:329, ../includes/Elements/Progress_Bar.php:540, ../includes/Elements/Simple_Menu.php:196, ../includes/Elements/Simple_Menu.php:460, ../includes/Elements/Simple_Menu.php:486, ../includes/Elements/Simple_Menu.php:511, ../includes/Elements/Simple_Menu.php:806, ../includes/Elements/Team_Member.php:388, ../includes/Elements/Testimonial.php:322, ../includes/Elements/Tooltip.php:217, ../includes/Elements/Tooltip.php:289, ../includes/Elements/Tooltip.php:385, ../includes/Elements/TypeForm.php:208, ../includes/Elements/WeForms.php:173, ../includes/Elements/WeForms.php:643, ../includes/Elements/Woo_Product_Carousel.php:718, ../includes/Elements/Woo_Product_Carousel.php:837, ../includes/Elements/Woo_Product_Carousel.php:890, ../includes/Elements/WpForms.php:279, ../includes/Elements/WpForms.php:396, ../includes/Elements/WpForms.php:580, ../includes/Elements/WpForms.php:1145, ../includes/Extensions/Table_of_Content.php:439, ../includes/Traits/Controls.php:597, ../includes/Traits/Controls.php:1536, ../includes/Traits/Controls.php:1579, ../includes/Traits/Controls.php:1580, ../includes/Traits/Controls.php:1910
607
  msgid "Right"
608
  msgstr ""
609
 
610
+ #: ../includes/Elements/Advanced_Data_Table.php:441, ../includes/Elements/Advanced_Data_Table.php:560, ../includes/Elements/Advanced_Data_Table.php:654, ../includes/Elements/Advanced_Data_Table.php:685, ../includes/Elements/Advanced_Data_Table.php:716, ../includes/Elements/Advanced_Data_Table.php:747, ../includes/Elements/Advanced_Data_Table.php:778, ../includes/Elements/Advanced_Data_Table.php:809, ../includes/Elements/Advanced_Data_Table.php:991, ../includes/Elements/Advanced_Data_Table.php:1187, ../includes/Elements/Advanced_Data_Table.php:1257, ../includes/Elements/Adv_Accordion.php:537, ../includes/Elements/Adv_Accordion.php:597, ../includes/Elements/Adv_Accordion.php:657, ../includes/Elements/Adv_Accordion.php:724, ../includes/Elements/Adv_Tabs.php:489, ../includes/Elements/Adv_Tabs.php:556, ../includes/Elements/Adv_Tabs.php:624, ../includes/Elements/Adv_Tabs.php:708, ../includes/Elements/Caldera_Forms.php:270, ../includes/Elements/Caldera_Forms.php:331, ../includes/Elements/Caldera_Forms.php:523, ../includes/Elements/Caldera_Forms.php:604, ../includes/Elements/Caldera_Forms.php:850, ../includes/Elements/Caldera_Forms.php:906, ../includes/Elements/Caldera_Forms.php:1216, ../includes/Elements/Caldera_Forms.php:1322, ../includes/Elements/Caldera_Forms.php:1375, ../includes/Elements/Contact_Form_7.php:474, ../includes/Elements/Contact_Form_7.php:505, ../includes/Elements/Contact_Form_7.php:562, ../includes/Elements/Contact_Form_7.php:845, ../includes/Elements/Contact_Form_7.php:920, ../includes/Elements/Contact_Form_7.php:1242, ../includes/Elements/Contact_Form_7.php:1348, ../includes/Elements/Contact_Form_7.php:1412, ../includes/Elements/Contact_Form_7.php:1535, ../includes/Elements/Contact_Form_7.php:1592, ../includes/Elements/Content_Ticker.php:357, ../includes/Elements/Content_Ticker.php:433, ../includes/Elements/Countdown.php:1109, ../includes/Elements/Creative_Button.php:277, ../includes/Elements/Creative_Button.php:370, ../includes/Elements/Cta_Box.php:698, ../includes/Elements/Cta_Box.php:769, ../includes/Elements/Cta_Box.php:904, ../includes/Elements/Cta_Box.php:956, ../includes/Elements/Data_Table.php:978, ../includes/Elements/Data_Table.php:995, ../includes/Elements/Event_Calendar.php:1241, ../includes/Elements/Event_Calendar.php:1274, ../includes/Elements/Filterable_Gallery.php:959, ../includes/Elements/Filterable_Gallery.php:1025, ../includes/Elements/Filterable_Gallery.php:2510, ../includes/Elements/Filterable_Gallery.php:2705, ../includes/Elements/FluentForm.php:277, ../includes/Elements/FluentForm.php:338, ../includes/Elements/FluentForm.php:542, ../includes/Elements/FluentForm.php:623, ../includes/Elements/FluentForm.php:872, ../includes/Elements/FluentForm.php:1536, ../includes/Elements/FluentForm.php:1642, ../includes/Elements/FluentForm.php:2059, ../includes/Elements/Formstack.php:481, ../includes/Elements/Formstack.php:530, ../includes/Elements/Formstack.php:585, ../includes/Elements/Formstack.php:797, ../includes/Elements/Formstack.php:852, ../includes/Elements/Formstack.php:1101, ../includes/Elements/Formstack.php:1452, ../includes/Elements/Formstack.php:1558, ../includes/Elements/Formstack.php:1781, ../includes/Elements/Formstack.php:2020, ../includes/Elements/GravityForms.php:515, ../includes/Elements/GravityForms.php:546, ../includes/Elements/GravityForms.php:585, ../includes/Elements/GravityForms.php:672, ../includes/Elements/GravityForms.php:936, ../includes/Elements/GravityForms.php:989, ../includes/Elements/GravityForms.php:1176, ../includes/Elements/GravityForms.php:1810, ../includes/Elements/GravityForms.php:1902, ../includes/Elements/GravityForms.php:2038, ../includes/Elements/GravityForms.php:2125, ../includes/Elements/GravityForms.php:2199, ../includes/Elements/GravityForms.php:2334, ../includes/Elements/Info_Box.php:1232, ../includes/Elements/Info_Box.php:1278, ../includes/Elements/Login_Register.php:2527, ../includes/Elements/Login_Register.php:2666, ../includes/Elements/Login_Register.php:3010, ../includes/Elements/Login_Register.php:3195, ../includes/Elements/Login_Register.php:3232, ../includes/Elements/Login_Register.php:3516, ../includes/Elements/Login_Register.php:3553, ../includes/Elements/NinjaForms.php: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:1887, ../includes/Elements/Pricing_Table.php:1956, ../includes/Elements/Product_Grid.php:2222, ../includes/Elements/Product_Grid.php:2260, ../includes/Elements/Product_Grid.php:2304, ../includes/Elements/Simple_Menu.php:561, ../includes/Elements/Simple_Menu.php:688, ../includes/Elements/Simple_Menu.php:872, ../includes/Elements/Simple_Menu.php:997, ../includes/Elements/Tooltip.php:418, ../includes/Elements/Tooltip.php:461, ../includes/Elements/Tooltip.php:634, ../includes/Elements/WeForms.php:692, ../includes/Elements/WeForms.php:742, ../includes/Elements/WpForms.php:419, ../includes/Elements/WpForms.php:468, ../includes/Elements/WpForms.php:533, ../includes/Elements/WpForms.php:615, ../includes/Elements/WpForms.php:851, ../includes/Elements/WpForms.php:907, ../includes/Elements/WpForms.php:1220, ../includes/Elements/WpForms.php:1327, ../includes/Elements/WpForms.php:1372, ../includes/Extensions/Table_of_Content.php:602, ../includes/Extensions/Table_of_Content.php:917, ../includes/Extensions/Table_of_Content.php:940, ../includes/Extensions/Table_of_Content.php:966, ../includes/Traits/Controls.php:1229, ../includes/Traits/Controls.php:1284, ../includes/Traits/Controls.php:1414, ../includes/Traits/Controls.php:1476, ../includes/Traits/Controls.php:1859
611
  msgid "Text Color"
612
  msgstr ""
613
 
614
+ #: ../includes/Elements/Advanced_Data_Table.php:455, ../includes/Elements/Advanced_Data_Table.php:596, ../includes/Elements/Advanced_Data_Table.php:669, ../includes/Elements/Advanced_Data_Table.php:700, ../includes/Elements/Advanced_Data_Table.php:731, ../includes/Elements/Advanced_Data_Table.php:762, ../includes/Elements/Advanced_Data_Table.php:793, ../includes/Elements/Advanced_Data_Table.php:824, ../includes/Elements/Advanced_Data_Table.php:1003, ../includes/Elements/Advanced_Data_Table.php:1200, ../includes/Elements/Advanced_Data_Table.php:1271, ../includes/Elements/Advanced_Data_Table.php:1366, ../includes/Elements/Advanced_Data_Table.php:1396, ../includes/Elements/Adv_Accordion.php:873, ../includes/Elements/Adv_Accordion.php:919, ../includes/Elements/Adv_Accordion.php:965, ../includes/Elements/Adv_Tabs.php:470, ../includes/Elements/Adv_Tabs.php:689, ../includes/Elements/Caldera_Forms.php:592, ../includes/Elements/Caldera_Forms.php:800, ../includes/Elements/Caldera_Forms.php:1204, ../includes/Elements/Caldera_Forms.php:1310, ../includes/Elements/Caldera_Forms.php:1364, ../includes/Elements/Contact_Form_7.php:550, ../includes/Elements/Contact_Form_7.php:763, ../includes/Elements/Contact_Form_7.php:1230, ../includes/Elements/Contact_Form_7.php:1336, ../includes/Elements/Contact_Form_7.php:1427, ../includes/Elements/Contact_Form_7.php:1520, ../includes/Elements/Content_Ticker.php:345, ../includes/Elements/Content_Ticker.php:422, ../includes/Elements/Content_Ticker.php:597, ../includes/Elements/Content_Ticker.php:653, ../includes/Elements/Countdown.php:733, ../includes/Elements/Countdown.php:745, ../includes/Elements/Countdown.php:805, ../includes/Elements/Countdown.php:817, ../includes/Elements/Countdown.php:877, ../includes/Elements/Countdown.php:889, ../includes/Elements/Countdown.php:949, ../includes/Elements/Countdown.php:961, ../includes/Elements/Creative_Button.php:291, ../includes/Elements/Creative_Button.php:383, ../includes/Elements/Cta_Box.php:122, ../includes/Elements/Cta_Box.php:426, ../includes/Elements/Cta_Box.php:712, ../includes/Elements/Cta_Box.php:781, ../includes/Elements/Data_Table.php:628, ../includes/Elements/Data_Table.php:668, ../includes/Elements/Data_Table.php:1179, ../includes/Elements/Dual_Color_Header.php:310, ../includes/Elements/Event_Calendar.php:1253, ../includes/Elements/Filterable_Gallery.php:834, ../includes/Elements/Filterable_Gallery.php:971, ../includes/Elements/Filterable_Gallery.php:1037, ../includes/Elements/Filterable_Gallery.php:1183, ../includes/Elements/Filterable_Gallery.php:1373, ../includes/Elements/Filterable_Gallery.php:1403, ../includes/Elements/Filterable_Gallery.php:1508, ../includes/Elements/Filterable_Gallery.php:1524, ../includes/Elements/Filterable_Gallery.php:1726, ../includes/Elements/Filterable_Gallery.php:1864, ../includes/Elements/Filterable_Gallery.php:2494, ../includes/Elements/Filterable_Gallery.php:2689, ../includes/Elements/FluentForm.php:611, ../includes/Elements/FluentForm.php:819, ../includes/Elements/FluentForm.php:1253, ../includes/Elements/FluentForm.php:1339, ../includes/Elements/FluentForm.php:1524, ../includes/Elements/FluentForm.php:1630, ../includes/Elements/FluentForm.php:2048, ../includes/Elements/Formstack.php:840, ../includes/Elements/Formstack.php:1048, ../includes/Elements/Formstack.php:1440, ../includes/Elements/Formstack.php:1546, ../includes/Elements/GravityForms.php:660, ../includes/Elements/GravityForms.php:886, ../includes/Elements/GravityForms.php:1619, ../includes/Elements/GravityForms.php:1797, ../includes/Elements/GravityForms.php:1889, ../includes/Elements/GravityForms.php:2026, ../includes/Elements/GravityForms.php:2113, ../includes/Elements/Image_Accordion.php:317, ../includes/Elements/Info_Box.php:543, ../includes/Elements/Info_Box.php:784, ../includes/Elements/Info_Box.php:863, ../includes/Elements/Info_Box.php:1032, ../includes/Elements/Info_Box.php:1094, ../includes/Elements/Info_Box.php:1244, ../includes/Elements/Info_Box.php:1290, ../includes/Elements/Login_Register.php:1505, ../includes/Elements/Login_Register.php:1638, ../includes/Elements/Login_Register.php:1740, ../includes/Elements/Login_Register.php:1914, ../includes/Elements/Login_Register.php:2270, ../includes/Elements/Login_Register.php:2361, ../includes/Elements/Login_Register.php:2541, ../includes/Elements/Login_Register.php:2579, ../includes/Elements/Login_Register.php:2676, ../includes/Elements/Login_Register.php:3203, ../includes/Elements/Login_Register.php:3240, ../includes/Elements/Login_Register.php:3524, ../includes/Elements/Login_Register.php:3561, ../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:944, ../includes/Elements/Pricing_Table.php:736, ../includes/Elements/Pricing_Table.php:896, ../includes/Elements/Pricing_Table.php:1402, ../includes/Elements/Pricing_Table.php:1471, ../includes/Elements/Pricing_Table.php:1637, ../includes/Elements/Pricing_Table.php:1899, ../includes/Elements/Pricing_Table.php:1968, ../includes/Elements/Product_Grid.php:1834, ../includes/Elements/Product_Grid.php:1942, ../includes/Elements/Product_Grid.php:2048, ../includes/Elements/Product_Grid.php:2234, ../includes/Elements/Product_Grid.php:2272, ../includes/Elements/Product_Grid.php:2316, ../includes/Elements/Product_Grid.php:2563, ../includes/Elements/Product_Grid.php:2606, ../includes/Elements/Product_Grid.php:2667, ../includes/Elements/Product_Grid.php:2718, ../includes/Elements/Progress_Bar.php:578, ../includes/Elements/Simple_Menu.php:252, ../includes/Elements/Simple_Menu.php:308, ../includes/Elements/Simple_Menu.php:380, ../includes/Elements/Simple_Menu.php:575, ../includes/Elements/Simple_Menu.php:655, ../includes/Elements/Simple_Menu.php:703, ../includes/Elements/Simple_Menu.php:750, ../includes/Elements/Simple_Menu.php:884, ../includes/Elements/Simple_Menu.php:964, ../includes/Elements/Simple_Menu.php:1011, ../includes/Elements/Simple_Menu.php:1058, ../includes/Elements/Team_Member.php:731, ../includes/Elements/Tooltip.php:407, ../includes/Elements/Tooltip.php:450, ../includes/Elements/Tooltip.php:623, ../includes/Elements/Twitter_Feed.php:401, ../includes/Elements/WeForms.php:703, ../includes/Elements/WeForms.php:753, ../includes/Elements/Woo_Checkout.php:617, ../includes/Elements/Woo_Checkout.php:732, ../includes/Elements/Woo_Checkout.php:854, ../includes/Elements/Woo_Checkout.php:1312, ../includes/Elements/Woo_Checkout.php:1352, ../includes/Elements/Woo_Checkout.php:1610, ../includes/Elements/Woo_Checkout.php:1650, ../includes/Elements/Woo_Checkout.php:2154, ../includes/Elements/Woo_Checkout.php:2284, ../includes/Elements/Woo_Checkout.php:2394, ../includes/Elements/Woo_Checkout.php:2434, ../includes/Elements/Woo_Product_Carousel.php:908, ../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/WpForms.php:603, ../includes/Elements/WpForms.php:1208, ../includes/Elements/WpForms.php:1315, ../includes/Extensions/Reading_Progress.php:156, ../includes/Extensions/Table_of_Content.php:589, ../includes/Extensions/Table_of_Content.php:735, ../includes/Extensions/Table_of_Content.php:799, ../includes/Traits/Controls.php:1426, ../includes/Traits/Controls.php:1488, ../includes/Traits/Controls.php:1869, ../includes/Traits/Woo_Product_Comparable.php:370, ../includes/Traits/Woo_Product_Comparable.php:476
615
  msgid "Background Color"
616
  msgstr ""
617
 
619
  msgid "Cell Border"
620
  msgstr ""
621
 
622
+ #: ../includes/Elements/Advanced_Data_Table.php:494, ../includes/Elements/Advanced_Data_Table.php:839, ../includes/Elements/Advanced_Data_Table.php:923, ../includes/Elements/Advanced_Data_Table.php:1141, ../includes/Elements/Advanced_Data_Table.php:1458, ../includes/Elements/Adv_Accordion.php:349, ../includes/Elements/Adv_Accordion.php:502, ../includes/Elements/Adv_Accordion.php:742, ../includes/Elements/Adv_Tabs.php:301, ../includes/Elements/Adv_Tabs.php:444, ../includes/Elements/Adv_Tabs.php:726, ../includes/Elements/Betterdocs_Category_Box.php:512, ../includes/Elements/Betterdocs_Category_Grid.php:558, ../includes/Elements/Betterdocs_Category_Grid.php:722, ../includes/Elements/Betterdocs_Category_Grid.php:1406, ../includes/Elements/Betterdocs_Search_Form.php:123, ../includes/Elements/Betterdocs_Search_Form.php:431, ../includes/Elements/Caldera_Forms.php:741, ../includes/Elements/Caldera_Forms.php:1251, ../includes/Elements/Contact_Form_7.php:598, ../includes/Elements/Contact_Form_7.php:1276, ../includes/Elements/Contact_Form_7.php:1471, ../includes/Elements/Contact_Form_7.php:1668, ../includes/Elements/Content_Ticker.php:389, ../includes/Elements/Content_Ticker.php:452, ../includes/Elements/Content_Ticker.php:693, ../includes/Elements/Countdown.php:606, ../includes/Elements/Countdown.php:1136, ../includes/Elements/Cta_Box.php:438, ../includes/Elements/Cta_Box.php:651, ../includes/Elements/Cta_Box.php:868, ../includes/Elements/Data_Table.php:596, ../includes/Elements/Data_Table.php:881, ../includes/Elements/Dual_Color_Header.php:322, ../includes/Elements/Facebook_Feed.php:605, ../includes/Elements/Facebook_Feed.php:631, ../includes/Elements/Facebook_Feed.php:703, ../includes/Elements/Fancy_Text.php:480, ../includes/Elements/Feature_List.php:599, ../includes/Elements/Filterable_Gallery.php:846, ../includes/Elements/Filterable_Gallery.php:923, ../includes/Elements/Filterable_Gallery.php:1105, ../includes/Elements/Filterable_Gallery.php:1195, ../includes/Elements/Filterable_Gallery.php:1539, ../includes/Elements/Filterable_Gallery.php:1750, ../includes/Elements/Filterable_Gallery.php:2613, ../includes/Elements/Flip_Box.php:999, ../includes/Elements/Flip_Box.php:1112, ../includes/Elements/Flip_Box.php:1348, ../includes/Elements/FluentForm.php:760, ../includes/Elements/FluentForm.php:1128, ../includes/Elements/FluentForm.php:1183, ../includes/Elements/FluentForm.php:1306, ../includes/Elements/FluentForm.php:1391, ../includes/Elements/FluentForm.php:1571, ../includes/Elements/FluentForm.php:1973, ../includes/Elements/FluentForm.php:2139, ../includes/Elements/Formstack.php:680, ../includes/Elements/Formstack.php:735, ../includes/Elements/Formstack.php:989, ../includes/Elements/Formstack.php:1322, ../includes/Elements/Formstack.php:1487, ../includes/Elements/Formstack.php:1835, ../includes/Elements/Formstack.php:1964, ../includes/Elements/GravityForms.php:722, ../includes/Elements/GravityForms.php:1343, ../includes/Elements/GravityForms.php:1539, ../includes/Elements/GravityForms.php:1677, ../includes/Elements/GravityForms.php:1847, ../includes/Elements/GravityForms.php:2073, ../includes/Elements/Image_Accordion.php:329, ../includes/Elements/Image_Accordion.php:441, ../includes/Elements/Info_Box.php:555, ../includes/Elements/Login_Register.php:1468, ../includes/Elements/Login_Register.php:2033, ../includes/Elements/Login_Register.php:2172, ../includes/Elements/Login_Register.php:2245, ../includes/Elements/Login_Register.php:2336, ../includes/Elements/Login_Register.php:2438, ../includes/Elements/Login_Register.php:2474, ../includes/Elements/Login_Register.php:2636, ../includes/Elements/Login_Register.php:3108, ../includes/Elements/Login_Register.php:3407, ../includes/Elements/NinjaForms.php:784, ../includes/Elements/NinjaForms.php:1419, ../includes/Elements/Pricing_Table.php:748, ../includes/Elements/Pricing_Table.php:1513, ../includes/Elements/Pricing_Table.php:1818, ../includes/Elements/Product_Grid.php:814, ../includes/Elements/Product_Grid.php:1065, ../includes/Elements/Product_Grid.php:1473, ../includes/Elements/Simple_Menu.php:341, ../includes/Elements/Simple_Menu.php:817, ../includes/Elements/Team_Member.php:487, ../includes/Elements/Testimonial.php:421, ../includes/Elements/Tooltip.php:349, ../includes/Elements/Tooltip.php:601, ../includes/Elements/Twitter_Feed.php:431, ../includes/Elements/Twitter_Feed.php:490, ../includes/Elements/Twitter_Feed.php:523, ../includes/Elements/WeForms.php:676, ../includes/Elements/Woo_Checkout.php:628, ../includes/Elements/Woo_Checkout.php:1220, ../includes/Elements/Woo_Checkout.php:1413, ../includes/Elements/Woo_Checkout.php:1543, ../includes/Elements/Woo_Checkout.php:1711, ../includes/Elements/Woo_Checkout.php:1926, ../includes/Elements/Woo_Checkout.php:2176, ../includes/Elements/Woo_Checkout.php:2507, ../includes/Elements/Woo_Product_Carousel.php:1043, ../includes/Elements/Woo_Product_Carousel.php:2276, ../includes/Elements/WpForms.php:752, ../includes/Elements/WpForms.php:1255, ../includes/Extensions/Table_of_Content.php:624, ../includes/Extensions/Table_of_Content.php:812, ../includes/Traits/Controls.php:1333, ../includes/Traits/Controls.php:1378, ../includes/Traits/Controls.php:1879, ../includes/Traits/Woo_Product_Comparable.php:342, ../includes/Traits/Woo_Product_Comparable.php:987, ../includes/Traits/Woo_Product_Comparable.php:1136, ../includes/Traits/Woo_Product_Comparable.php:1604
623
  msgid "Padding"
624
  msgstr ""
625
 
679
  msgid "Alignment"
680
  msgstr ""
681
 
682
+ #: ../includes/Elements/Advanced_Data_Table.php:1162, ../includes/Elements/Adv_Accordion.php:360, ../includes/Elements/Adv_Accordion.php:513, ../includes/Elements/Adv_Accordion.php:753, ../includes/Elements/Adv_Tabs.php:312, ../includes/Elements/Adv_Tabs.php:455, ../includes/Elements/Adv_Tabs.php:737, ../includes/Elements/Betterdocs_Category_Grid.php:570, ../includes/Elements/Betterdocs_Category_Grid.php:736, ../includes/Elements/Caldera_Forms.php:297, ../includes/Elements/Caldera_Forms.php:359, ../includes/Elements/Contact_Form_7.php:372, ../includes/Elements/Contact_Form_7.php:1653, ../includes/Elements/Content_Ticker.php:464, ../includes/Elements/Countdown.php:1088, ../includes/Elements/Cta_Box.php:450, ../includes/Elements/Cta_Box.php:663, ../includes/Elements/Cta_Box.php:880, ../includes/Elements/Dual_Color_Header.php:334, ../includes/Elements/Dual_Color_Header.php:702, ../includes/Elements/Fancy_Text.php:492, ../includes/Elements/Filterable_Gallery.php:858, ../includes/Elements/Filterable_Gallery.php:935, ../includes/Elements/Filterable_Gallery.php:1117, ../includes/Elements/Filterable_Gallery.php:1762, ../includes/Elements/Filterable_Gallery.php:2211, ../includes/Elements/Filterable_Gallery.php:2654, ../includes/Elements/Flip_Box.php:1336, ../includes/Elements/FluentForm.php:304, ../includes/Elements/FluentForm.php:366, ../includes/Elements/FluentForm.php:1140, ../includes/Elements/FluentForm.php:1195, ../includes/Elements/FluentForm.php:2151, ../includes/Elements/Formstack.php:502, ../includes/Elements/Formstack.php:552, ../includes/Elements/Formstack.php:692, ../includes/Elements/Formstack.php:747, ../includes/Elements/Formstack.php:1979, ../includes/Elements/GravityForms.php:1072, ../includes/Elements/GravityForms.php:1331, ../includes/Elements/GravityForms.php:1527, ../includes/Elements/GravityForms.php:1691, ../includes/Elements/Image_Accordion.php:341, ../includes/Elements/Image_Accordion.php:430, ../includes/Elements/Info_Box.php:688, ../includes/Elements/Info_Box.php:750, ../includes/Elements/Info_Box.php:981, ../includes/Elements/Info_Box.php:1371, ../includes/Elements/Login_Register.php:1453, ../includes/Elements/Login_Register.php:2018, ../includes/Elements/Login_Register.php:2157, ../includes/Elements/Login_Register.php:2230, ../includes/Elements/Login_Register.php:2321, ../includes/Elements/Login_Register.php:2423, ../includes/Elements/Login_Register.php:2459, ../includes/Elements/Login_Register.php:2621, ../includes/Elements/Login_Register.php:3093, ../includes/Elements/Login_Register.php:3328, ../includes/Elements/Login_Register.php:3392, ../includes/Elements/NinjaForms.php:473, ../includes/Elements/NinjaForms.php:523, ../includes/Elements/Post_Grid.php:401, ../includes/Elements/Post_Grid.php:516, ../includes/Elements/Post_Grid.php:531, ../includes/Elements/Post_Grid.php:655, ../includes/Elements/Post_Grid.php:743, ../includes/Elements/Post_Grid.php:819, ../includes/Elements/Pricing_Table.php:760, ../includes/Elements/Pricing_Table.php:1086, ../includes/Elements/Pricing_Table.php:1156, ../includes/Elements/Pricing_Table.php:1830, ../includes/Elements/Team_Member.php:475, ../includes/Elements/Testimonial.php:409, ../includes/Elements/Testimonial.php:507, ../includes/Elements/Testimonial.php:548, ../includes/Elements/Testimonial.php:589, ../includes/Elements/Testimonial.php:622, ../includes/Elements/Tooltip.php:360, ../includes/Elements/Tooltip.php:612, ../includes/Elements/WeForms.php:490, ../includes/Elements/WeForms.php:664, ../includes/Elements/Woo_Product_Carousel.php:937, ../includes/Elements/WpForms.php:440, ../includes/Elements/WpForms.php:490, ../includes/Elements/WpForms.php:522, ../includes/Traits/Controls.php:1345, ../includes/Traits/Controls.php:1390, ../includes/Traits/Woo_Product_Comparable.php:330, ../includes/Traits/Woo_Product_Comparable.php:1452
683
  msgid "Margin"
684
  msgstr ""
685
 
686
+ #: ../includes/Elements/Advanced_Data_Table.php:1182, ../includes/Elements/Advanced_Data_Table.php:1348, ../includes/Elements/Adv_Accordion.php:524, ../includes/Elements/Adv_Accordion.php:852, ../includes/Elements/Adv_Tabs.php:466, ../includes/Elements/Betterdocs_Category_Box.php:284, ../includes/Elements/Betterdocs_Category_Box.php:452, ../includes/Elements/Betterdocs_Category_Box.php:677, ../includes/Elements/Betterdocs_Category_Box.php:846, ../includes/Elements/Betterdocs_Category_Grid.php:315, ../includes/Elements/Betterdocs_Category_Grid.php:455, ../includes/Elements/Betterdocs_Category_Grid.php:610, ../includes/Elements/Betterdocs_Category_Grid.php:800, ../includes/Elements/Betterdocs_Category_Grid.php:1348, ../includes/Elements/Betterdocs_Search_Form.php:389, ../includes/Elements/Caldera_Forms.php:585, ../includes/Elements/Caldera_Forms.php:973, ../includes/Elements/Caldera_Forms.php:1197, ../includes/Elements/Contact_Form_7.php:543, ../includes/Elements/Contact_Form_7.php:1000, ../includes/Elements/Contact_Form_7.php:1223, ../includes/Elements/Content_Ticker.php:590, ../includes/Elements/Creative_Button.php:260, ../includes/Elements/Cta_Box.php:693, ../includes/Elements/Cta_Box.php:899, ../includes/Elements/Data_Table.php:608, ../includes/Elements/Data_Table.php:801, ../includes/Elements/Data_Table.php:973, ../includes/Elements/Data_Table.php:1071, ../includes/Elements/Event_Calendar.php:768, ../includes/Elements/Filterable_Gallery.php:954, ../includes/Elements/Filterable_Gallery.php:1719, ../includes/Elements/Filterable_Gallery.php:2483, ../includes/Elements/Flip_Box.php:1330, ../includes/Elements/FluentForm.php:604, ../includes/Elements/FluentForm.php:939, ../includes/Elements/FluentForm.php:1517, ../includes/Elements/FluentForm.php:1689, ../includes/Elements/FluentForm.php:1906, ../includes/Elements/Formstack.php:833, ../includes/Elements/Formstack.php:1165, ../includes/Elements/Formstack.php:1433, ../includes/Elements/Formstack.php:1603, ../includes/Elements/Formstack.php:1766, ../includes/Elements/GravityForms.php:653, ../includes/Elements/GravityForms.php:1243, ../includes/Elements/GravityForms.php:1439, ../includes/Elements/GravityForms.php:1790, ../includes/Elements/GravityForms.php:2019, ../includes/Elements/Info_Box.php:536, ../includes/Elements/Info_Box.php:764, ../includes/Elements/Info_Box.php:995, ../includes/Elements/Info_Box.php:1226, ../includes/Elements/Info_Box.php:1337, ../includes/Elements/Login_Register.php:2524, ../includes/Elements/Login_Register.php:3192, ../includes/Elements/Login_Register.php:3355, ../includes/Elements/Login_Register.php:3513, ../includes/Elements/NinjaForms.php:627, ../includes/Elements/NinjaForms.php:1020, ../includes/Elements/NinjaForms.php:1365, ../includes/Elements/Pricing_Table.php:1882, ../includes/Elements/Product_Grid.php:869, ../includes/Elements/Product_Grid.php:1510, ../includes/Elements/Product_Grid.php:1924, ../includes/Elements/Product_Grid.php:2217, ../includes/Elements/Product_Grid.php:2650, ../includes/Elements/Team_Member.php:714, ../includes/Elements/Tooltip.php:403, ../includes/Elements/WeForms.php:687, ../includes/Elements/Woo_Checkout.php:900, ../includes/Elements/Woo_Checkout.php:943, ../includes/Elements/Woo_Checkout.php:1086, ../includes/Elements/Woo_Checkout.php:1305, ../includes/Elements/Woo_Checkout.php:1603, ../includes/Elements/Woo_Checkout.php:2063, ../includes/Elements/Woo_Checkout.php:2233, ../includes/Elements/Woo_Checkout.php:2387, ../includes/Elements/Woo_Product_Carousel.php:949, ../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/WpForms.php:596, ../includes/Elements/WpForms.php:974, ../includes/Elements/WpForms.php:1201, ../includes/Extensions/Table_of_Content.php:910, ../includes/Traits/Controls.php:1222, ../includes/Traits/Controls.php:1409, ../includes/Traits/Woo_Product_Comparable.php:828, ../includes/Traits/Woo_Product_Comparable.php:1214, ../includes/Traits/Woo_Product_Comparable.php:1632
687
  msgid "Normal"
688
  msgstr ""
689
 
690
+ #: ../includes/Elements/Advanced_Data_Table.php:1252, ../includes/Elements/Advanced_Data_Table.php:1378, ../includes/Elements/Adv_Accordion.php:582, ../includes/Elements/Adv_Accordion.php:899, ../includes/Elements/Adv_Tabs.php:533, ../includes/Elements/Betterdocs_Category_Box.php:330, ../includes/Elements/Betterdocs_Category_Box.php:548, ../includes/Elements/Betterdocs_Category_Box.php:710, ../includes/Elements/Betterdocs_Category_Box.php:959, ../includes/Elements/Betterdocs_Category_Grid.php:363, ../includes/Elements/Betterdocs_Category_Grid.php:496, ../includes/Elements/Betterdocs_Category_Grid.php:664, ../includes/Elements/Betterdocs_Category_Grid.php:872, ../includes/Elements/Betterdocs_Category_Grid.php:1432, ../includes/Elements/Betterdocs_Search_Form.php:473, ../includes/Elements/Caldera_Forms.php:1303, ../includes/Elements/Contact_Form_7.php:1329, ../includes/Elements/Content_Ticker.php:646, ../includes/Elements/Creative_Button.php:353, ../includes/Elements/Cta_Box.php:764, ../includes/Elements/Cta_Box.php:951, ../includes/Elements/Data_Table.php:648, ../includes/Elements/Data_Table.php:892, ../includes/Elements/Data_Table.php:990, ../includes/Elements/Data_Table.php:1089, ../includes/Elements/Event_Calendar.php:835, ../includes/Elements/Filterable_Gallery.php:1857, ../includes/Elements/Filterable_Gallery.php:2678, ../includes/Elements/Flip_Box.php:1413, ../includes/Elements/FluentForm.php:1623, ../includes/Elements/FluentForm.php:1987, ../includes/Elements/Formstack.php:1539, ../includes/Elements/Formstack.php:1849, ../includes/Elements/GravityForms.php:1882, ../includes/Elements/GravityForms.php:2106, ../includes/Elements/Info_Box.php:597, ../includes/Elements/Info_Box.php:835, ../includes/Elements/Info_Box.php:1066, ../includes/Elements/Info_Box.php:1272, ../includes/Elements/Info_Box.php:1447, ../includes/Elements/Login_Register.php:3229, ../includes/Elements/Login_Register.php:3550, ../includes/Elements/NinjaForms.php:1452, ../includes/Elements/Pricing_Table.php:402, ../includes/Elements/Pricing_Table.php:1951, ../includes/Elements/Product_Grid.php:919, ../includes/Elements/Product_Grid.php:1579, ../includes/Elements/Product_Grid.php:2031, ../includes/Elements/Product_Grid.php:2255, ../includes/Elements/Product_Grid.php:2701, ../includes/Elements/Simple_Menu.php:681, ../includes/Elements/Simple_Menu.php:990, ../includes/Elements/Team_Member.php:791, ../includes/Elements/Tooltip.php:446, ../includes/Elements/WeForms.php:737, ../includes/Elements/Woo_Checkout.php:916, ../includes/Elements/Woo_Checkout.php:960, ../includes/Elements/Woo_Checkout.php:1102, ../includes/Elements/Woo_Checkout.php:1345, ../includes/Elements/Woo_Checkout.php:1643, ../includes/Elements/Woo_Checkout.php:2079, ../includes/Elements/Woo_Checkout.php:2427, ../includes/Elements/Woo_Product_Carousel.php:989, ../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/WpForms.php:1308, ../includes/Extensions/Table_of_Content.php:933, ../includes/Traits/Controls.php:1277, ../includes/Traits/Controls.php:1471, ../includes/Traits/Woo_Product_Comparable.php:928, ../includes/Traits/Woo_Product_Comparable.php:1295, ../includes/Traits/Woo_Product_Comparable.php:1682
691
  msgid "Hover"
692
  msgstr ""
693
 
694
+ #: ../includes/Elements/Advanced_Data_Table.php:1353, ../includes/Elements/Advanced_Data_Table.php:1383, ../includes/Elements/Betterdocs_Category_Box.php:683, ../includes/Elements/Betterdocs_Category_Box.php:716, ../includes/Elements/Betterdocs_Category_Box.php:860, ../includes/Elements/Betterdocs_Category_Box.php:965, ../includes/Elements/Betterdocs_Category_Grid.php:616, ../includes/Elements/Betterdocs_Category_Grid.php:670, ../includes/Elements/Betterdocs_Category_Grid.php:806, ../includes/Elements/Betterdocs_Category_Grid.php:903, ../includes/Elements/Betterdocs_Category_Grid.php:1006, ../includes/Elements/Betterdocs_Category_Grid.php:1086, ../includes/Elements/Betterdocs_Category_Grid.php:1162, ../includes/Elements/Betterdocs_Category_Grid.php:1239, ../includes/Elements/Betterdocs_Category_Grid.php:1362, ../includes/Elements/Betterdocs_Category_Grid.php:1461, ../includes/Elements/Betterdocs_Search_Form.php:237, ../includes/Elements/Betterdocs_Search_Form.php:274, ../includes/Elements/Caldera_Forms.php:983, ../includes/Elements/Caldera_Forms.php:1099, ../includes/Elements/Caldera_Forms.php:1431, ../includes/Elements/Contact_Form_7.php:1010, ../includes/Elements/Contact_Form_7.php:1126, ../includes/Elements/Content_Ticker.php:609, ../includes/Elements/Content_Ticker.php:665, ../includes/Elements/Cta_Box.php:518, ../includes/Elements/Cta_Box.php:559, ../includes/Elements/Cta_Box.php:601, ../includes/Elements/Cta_Box.php:1042, ../includes/Elements/Data_Table.php:613, ../includes/Elements/Data_Table.php:653, ../includes/Elements/Data_Table.php:1164, ../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:735, ../includes/Elements/Event_Calendar.php:775, ../includes/Elements/Event_Calendar.php:842, ../includes/Elements/Event_Calendar.php:896, ../includes/Elements/Event_Calendar.php:979, ../includes/Elements/Event_Calendar.php:1054, ../includes/Elements/Event_Calendar.php:1088, ../includes/Elements/Event_Calendar.php:1197, ../includes/Elements/Event_Calendar.php:1563, ../includes/Elements/Facebook_Feed.php:769, ../includes/Elements/Facebook_Feed.php:807, ../includes/Elements/Facebook_Feed.php:847, ../includes/Elements/Facebook_Feed.php:895, ../includes/Elements/Facebook_Feed.php:933, ../includes/Elements/Facebook_Feed.php:971, ../includes/Elements/Facebook_Feed.php:1024, ../includes/Elements/Facebook_Feed.php:1062, ../includes/Elements/Facebook_Feed.php:1100, ../includes/Elements/Facebook_Feed.php:1132, ../includes/Elements/Fancy_Text.php:346, ../includes/Elements/Feature_List.php:543, ../includes/Elements/Feature_List.php:765, ../includes/Elements/Feature_List.php:799, ../includes/Elements/Filterable_Gallery.php:1216, ../includes/Elements/Filterable_Gallery.php:1256, ../includes/Elements/Filterable_Gallery.php:1578, ../includes/Elements/Filterable_Gallery.php:1593, ../includes/Elements/Filterable_Gallery.php:1638, ../includes/Elements/Filterable_Gallery.php:1653, ../includes/Elements/Filterable_Gallery.php:1738, ../includes/Elements/Filterable_Gallery.php:1876, ../includes/Elements/Filterable_Gallery.php:1952, ../includes/Elements/Filterable_Gallery.php:1988, ../includes/Elements/Filterable_Gallery.php:2035, ../includes/Elements/Filterable_Gallery.php:2176, ../includes/Elements/Filterable_Gallery.php:2363, ../includes/Elements/Flip_Box.php:945, ../includes/Elements/Flip_Box.php:1058, ../includes/Elements/Flip_Box.php:1185, ../includes/Elements/Flip_Box.php:1216, ../includes/Elements/Flip_Box.php:1254, ../includes/Elements/Flip_Box.php:1286, ../includes/Elements/Flip_Box.php:1360, ../includes/Elements/Flip_Box.php:1419, ../includes/Elements/FluentForm.php:413, ../includes/Elements/FluentForm.php:949, ../includes/Elements/FluentForm.php:1065, ../includes/Elements/FluentForm.php:1106, ../includes/Elements/FluentForm.php:1161, ../includes/Elements/FluentForm.php:1265, ../includes/Elements/FluentForm.php:1327, ../includes/Elements/FluentForm.php:1921, ../includes/Elements/FluentForm.php:1994, ../includes/Elements/FluentForm.php:2115, ../includes/Elements/Formstack.php:658, ../includes/Elements/Formstack.php:713, ../includes/Elements/Formstack.php:1175, ../includes/Elements/Formstack.php:1255, ../includes/Elements/Formstack.php:1309, ../includes/Elements/Formstack.php:1856, ../includes/Elements/Formstack.php:1937, ../includes/Elements/GravityForms.php:1147, ../includes/Elements/GravityForms.php:1253, ../includes/Elements/GravityForms.php:1367, ../includes/Elements/GravityForms.php:1449, ../includes/Elements/GravityForms.php:1563, ../includes/Elements/GravityForms.php:1607, ../includes/Elements/Image_Accordion.php:496, ../includes/Elements/Image_Accordion.php:525, ../includes/Elements/Info_Box.php:1351, ../includes/Elements/Info_Box.php:1427, ../includes/Elements/Login_Register.php:2260, ../includes/Elements/Login_Register.php:2351, ../includes/Elements/Login_Register.php:2765, ../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:845, ../includes/Elements/Pricing_Table.php:883, ../includes/Elements/Pricing_Table.php:947, ../includes/Elements/Pricing_Table.php:1038, ../includes/Elements/Pricing_Table.php:1067, ../includes/Elements/Pricing_Table.php:1108, ../includes/Elements/Pricing_Table.php:1137, ../includes/Elements/Pricing_Table.php:1177, ../includes/Elements/Pricing_Table.php:1212, ../includes/Elements/Pricing_Table.php:1369, ../includes/Elements/Pricing_Table.php:1501, ../includes/Elements/Product_Grid.php:1339, ../includes/Elements/Product_Grid.php:1929, ../includes/Elements/Product_Grid.php:2036, ../includes/Elements/Product_Grid.php:2373, ../includes/Elements/Product_Grid.php:2553, ../includes/Elements/Product_Grid.php:2594, ../includes/Elements/Product_Grid.php:2655, ../includes/Elements/Product_Grid.php:2706, ../includes/Elements/Product_Grid.php:2863, ../includes/Elements/Progress_Bar.php:407, ../includes/Elements/Progress_Bar.php:467, ../includes/Elements/Simple_Menu.php:643, ../includes/Elements/Simple_Menu.php:737, ../includes/Elements/Simple_Menu.php:952, ../includes/Elements/Simple_Menu.php:1045, ../includes/Elements/Twitter_Feed.php:682, ../includes/Elements/Twitter_Feed.php:711, ../includes/Elements/Twitter_Feed.php:741, ../includes/Elements/Twitter_Feed.php:911, ../includes/Elements/Woo_Checkout.php:572, ../includes/Elements/Woo_Checkout.php:746, ../includes/Elements/Woo_Checkout.php:760, ../includes/Elements/Woo_Checkout.php:868, ../includes/Elements/Woo_Checkout.php:882, ../includes/Elements/Woo_Checkout.php:1055, ../includes/Elements/Woo_Checkout.php:1091, ../includes/Elements/Woo_Checkout.php:1107, ../includes/Elements/Woo_Checkout.php:1175, ../includes/Elements/Woo_Checkout.php:1274, ../includes/Elements/Woo_Checkout.php:1324, ../includes/Elements/Woo_Checkout.php:1364, ../includes/Elements/Woo_Checkout.php:1461, ../includes/Elements/Woo_Checkout.php:1622, ../includes/Elements/Woo_Checkout.php:1662, ../includes/Elements/Woo_Checkout.php:1780, ../includes/Elements/Woo_Checkout.php:1824, ../includes/Elements/Woo_Checkout.php:1868, ../includes/Elements/Woo_Checkout.php:1974, ../includes/Elements/Woo_Checkout.php:2013, ../includes/Elements/Woo_Checkout.php:2053, ../includes/Elements/Woo_Checkout.php:2240, ../includes/Elements/Woo_Checkout.php:2261, ../includes/Elements/Woo_Checkout.php:2296, ../includes/Elements/Woo_Checkout.php:2317, ../includes/Elements/Woo_Checkout.php:2406, ../includes/Elements/Woo_Checkout.php:2446, ../includes/Elements/Woo_Product_Carousel.php: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/WpForms.php:984, ../includes/Elements/WpForms.php:1100, ../includes/Extensions/Table_of_Content.php:1069, ../includes/Traits/Woo_Product_Comparable.php:49, ../includes/Traits/Woo_Product_Comparable.php:109, ../includes/Traits/Woo_Product_Comparable.php:1362, ../includes/Traits/Woo_Product_Comparable.php:1474
695
  msgid "Color"
696
  msgstr ""
697
 
835
  msgid "Tab Style"
836
  msgstr ""
837
 
838
+ #: ../includes/Elements/Adv_Accordion.php:416, ../includes/Elements/Adv_Accordion.php:793, ../includes/Elements/Adv_Tabs.php:397, ../includes/Elements/Creative_Button.php:499, ../includes/Elements/Data_Table.php:700, ../includes/Elements/Data_Table.php:1048, ../includes/Elements/Dual_Color_Header.php:397, ../includes/Elements/Dual_Color_Header.php:608, ../includes/Elements/Event_Calendar.php:1444, ../includes/Elements/Event_Calendar.php:1511, ../includes/Elements/Feature_List.php:577, ../includes/Elements/Filterable_Gallery.php:1774, ../includes/Elements/Filterable_Gallery.php:2136, ../includes/Elements/Filterable_Gallery.php:2573, ../includes/Elements/Flip_Box.php:961, ../includes/Elements/Flip_Box.php:1074, ../includes/Elements/Info_Box.php:935, ../includes/Elements/Info_Box.php:1174, ../includes/Elements/Login_Register.php:2829, ../includes/Elements/Pricing_Table.php:1236, ../includes/Elements/Pricing_Table.php:1671, ../includes/Elements/Pricing_Table.php:1842, ../includes/Elements/Product_Grid.php:1289, ../includes/Elements/Product_Grid.php:2811, ../includes/Elements/Team_Member.php:643, ../includes/Elements/Tooltip.php:113, ../includes/Elements/Woo_Product_Carousel.php:1164, ../includes/Elements/Woo_Product_Carousel.php:1948, ../includes/Elements/Woo_Product_Carousel.php:2596, ../includes/Extensions/Table_of_Content.php:681, ../includes/Traits/Woo_Product_Comparable.php:1335
839
  msgid "Icon Size"
840
  msgstr ""
841
 
847
  msgid "Distance"
848
  msgstr ""
849
 
850
+ #: ../includes/Elements/Adv_Accordion.php:548, ../includes/Elements/Adv_Accordion.php:608, ../includes/Elements/Adv_Accordion.php:669, ../includes/Elements/Adv_Tabs.php:500, ../includes/Elements/Adv_Tabs.php:567, ../includes/Elements/Adv_Tabs.php:636, ../includes/Elements/Data_Table.php:1076, ../includes/Elements/Data_Table.php:1094, ../includes/Elements/Dual_Color_Header.php:421, ../includes/Elements/Dual_Color_Header.php:634, ../includes/Elements/Event_Calendar.php:1462, ../includes/Elements/Feature_List.php:122, ../includes/Elements/Info_Box.php:771, ../includes/Elements/Info_Box.php:850, ../includes/Elements/Info_Box.php:1002, ../includes/Elements/Info_Box.php:1081, ../includes/Elements/Post_Grid.php:968, ../includes/Elements/Pricing_Table.php:337, ../includes/Elements/Pricing_Table.php:1735, ../includes/Elements/Simple_Menu.php:264, ../includes/Elements/Team_Member.php:719, ../includes/Elements/Twitter_Feed.php:618, ../includes/Elements/Woo_Checkout.php:1186, ../includes/Elements/Woo_Checkout.php:1472
851
  msgid "Icon Color"
852
  msgstr ""
853
 
891
  msgid "Enable Icon"
892
  msgstr ""
893
 
894
+ #: ../includes/Elements/Adv_Tabs.php:102, ../includes/Elements/Betterdocs_Category_Grid.php:1328, ../includes/Elements/Creative_Button.php:143, ../includes/Elements/Data_Table.php:722, ../includes/Elements/Feature_List.php:301, ../includes/Elements/Filterable_Gallery.php:747, ../includes/Elements/Flip_Box.php:708, ../includes/Elements/Info_Box.php:121, ../includes/Elements/Info_Box.php:452, ../includes/Elements/Pricing_Table.php:535
895
  msgid "Icon Position"
896
  msgstr ""
897
 
951
  msgid "Caret Size"
952
  msgstr ""
953
 
954
+ #: ../includes/Elements/Adv_Tabs.php:853, ../includes/Elements/Caldera_Forms.php:109, ../includes/Elements/Caldera_Forms.php:936, ../includes/Elements/Contact_Form_7.php:911, ../includes/Elements/Contact_Form_7.php:963, ../includes/Elements/Content_Ticker.php:194, ../includes/Elements/Content_Ticker.php:227, ../includes/Elements/Content_Ticker.php:242, ../includes/Elements/Content_Ticker.php:277, ../includes/Elements/Data_Table.php:1130, ../includes/Elements/Facebook_Feed.php:388, ../includes/Elements/Filterable_Gallery.php:287, ../includes/Elements/Filterable_Gallery.php:432, ../includes/Elements/Filterable_Gallery.php:481, ../includes/Elements/Filterable_Gallery.php:506, ../includes/Elements/Filterable_Gallery.php:531, ../includes/Elements/Filterable_Gallery.php:591, ../includes/Elements/Filterable_Gallery.php:606, ../includes/Elements/FluentForm.php:123, ../includes/Elements/FluentForm.php:902, ../includes/Elements/Formstack.php:192, ../includes/Elements/Formstack.php:1128, ../includes/Elements/GravityForms.php:149, ../includes/Elements/GravityForms.php:246, ../includes/Elements/GravityForms.php:1206, ../includes/Elements/GravityForms.php:1402, ../includes/Elements/Image_Accordion.php:176, ../includes/Elements/Info_Box.php:358, ../includes/Elements/Info_Box.php:372, ../includes/Elements/Login_Register.php:409, ../includes/Elements/Login_Register.php:487, ../includes/Elements/Login_Register.php:791, ../includes/Elements/NinjaForms.php:114, ../includes/Elements/NinjaForms.php:983, ../includes/Elements/Post_Grid.php: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:83, ../includes/Elements/Post_Timeline.php:94, ../includes/Elements/Pricing_Table.php:217, ../includes/Elements/Pricing_Table.php:1873, ../includes/Elements/Simple_Menu.php:173, ../includes/Elements/Simple_Menu.php:214, ../includes/Elements/Team_Member.php:705, ../includes/Elements/Woo_Product_Carousel.php:350, ../includes/Elements/Woo_Product_Carousel.php:579, ../includes/Elements/Woo_Product_Carousel.php:611, ../includes/Elements/Woo_Product_Carousel.php:626, ../includes/Elements/Woo_Product_Carousel.php:661, ../includes/Elements/Woo_Product_Carousel.php:673, ../includes/Elements/Woo_Product_Carousel.php:684, ../includes/Elements/Woo_Product_Carousel.php:2137, ../includes/Elements/WpForms.php:107, ../includes/Elements/WpForms.php:937, ../includes/Extensions/Reading_Progress.php:41, ../includes/Extensions/Reading_Progress.php:77, ../includes/Extensions/Table_of_Content.php:45, ../includes/Extensions/Table_of_Content.php:79, ../includes/Extensions/Table_of_Content.php:211, ../includes/Extensions/Table_of_Content.php:226, ../includes/Extensions/Table_of_Content.php:241, ../includes/Extensions/Table_of_Content.php:256, ../includes/Extensions/Table_of_Content.php:271, ../includes/Traits/Controls.php:376
955
  msgid "Yes"
956
  msgstr ""
957
 
958
+ #: ../includes/Elements/Adv_Tabs.php:854, ../includes/Elements/Caldera_Forms.php:110, ../includes/Elements/Caldera_Forms.php:937, ../includes/Elements/Contact_Form_7.php:912, ../includes/Elements/Contact_Form_7.php:964, ../includes/Elements/Content_Ticker.php:195, ../includes/Elements/Content_Ticker.php:228, ../includes/Elements/Content_Ticker.php:243, ../includes/Elements/Content_Ticker.php:278, ../includes/Elements/Cta_Box.php:685, ../includes/Elements/Data_Table.php:1131, ../includes/Elements/Facebook_Feed.php:392, ../includes/Elements/Feature_List.php:363, ../includes/Elements/Filterable_Gallery.php:288, ../includes/Elements/Filterable_Gallery.php:433, ../includes/Elements/Filterable_Gallery.php:482, ../includes/Elements/Filterable_Gallery.php:507, ../includes/Elements/Filterable_Gallery.php:532, ../includes/Elements/Filterable_Gallery.php:592, ../includes/Elements/Filterable_Gallery.php:607, ../includes/Elements/FluentForm.php:124, ../includes/Elements/FluentForm.php:903, ../includes/Elements/Formstack.php:193, ../includes/Elements/Formstack.php:1129, ../includes/Elements/GravityForms.php:150, ../includes/Elements/GravityForms.php:247, ../includes/Elements/GravityForms.php:1207, ../includes/Elements/GravityForms.php:1403, ../includes/Elements/Image_Accordion.php:177, ../includes/Elements/Info_Box.php:359, ../includes/Elements/Info_Box.php:373, ../includes/Elements/Login_Register.php:410, ../includes/Elements/Login_Register.php:488, ../includes/Elements/Login_Register.php:792, ../includes/Elements/NinjaForms.php:115, ../includes/Elements/NinjaForms.php:984, ../includes/Elements/Post_Grid.php: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:84, ../includes/Elements/Post_Timeline.php:95, ../includes/Elements/Pricing_Table.php:218, ../includes/Elements/Pricing_Table.php:1874, ../includes/Elements/Simple_Menu.php:174, ../includes/Elements/Simple_Menu.php:215, ../includes/Elements/Team_Member.php:706, ../includes/Elements/Woo_Product_Carousel.php:351, ../includes/Elements/Woo_Product_Carousel.php:580, ../includes/Elements/Woo_Product_Carousel.php:612, ../includes/Elements/Woo_Product_Carousel.php:627, ../includes/Elements/Woo_Product_Carousel.php:662, ../includes/Elements/Woo_Product_Carousel.php:674, ../includes/Elements/Woo_Product_Carousel.php:685, ../includes/Elements/Woo_Product_Carousel.php:2138, ../includes/Elements/WpForms.php:108, ../includes/Elements/WpForms.php:938, ../includes/Extensions/Reading_Progress.php:42, ../includes/Extensions/Reading_Progress.php:78, ../includes/Extensions/Table_of_Content.php:46, ../includes/Extensions/Table_of_Content.php:80, ../includes/Extensions/Table_of_Content.php:212, ../includes/Extensions/Table_of_Content.php:227, ../includes/Extensions/Table_of_Content.php:242, ../includes/Extensions/Table_of_Content.php:257, ../includes/Extensions/Table_of_Content.php:272, ../includes/Traits/Controls.php:377
959
  msgid "No"
960
  msgstr ""
961
 
975
  msgid "Show Icon"
976
  msgstr ""
977
 
978
+ #: ../includes/Elements/Betterdocs_Category_Box.php:158, ../includes/Elements/Betterdocs_Category_Box.php:170, ../includes/Elements/Betterdocs_Category_Box.php:205, ../includes/Elements/Betterdocs_Category_Grid.php:177, ../includes/Elements/Betterdocs_Category_Grid.php:190, ../includes/Elements/Betterdocs_Category_Grid.php:205, ../includes/Elements/Betterdocs_Category_Grid.php:244, ../includes/Elements/Betterdocs_Category_Grid.php:260, ../includes/Elements/Betterdocs_Category_Grid.php:272, ../includes/Elements/Betterdocs_Category_Grid.php:1303, ../includes/Elements/Caldera_Forms.php:152, ../includes/Elements/Caldera_Forms.php:165, ../includes/Elements/Caldera_Forms.php:191, ../includes/Elements/Contact_Form_7.php:205, ../includes/Elements/Contact_Form_7.php:231, ../includes/Elements/Contact_Form_7.php:251, ../includes/Elements/Content_Ticker.php:255, ../includes/Elements/Countdown.php:503, ../includes/Elements/Creative_Button.php:252, ../includes/Elements/Cta_Box.php:134, ../includes/Elements/Cta_Box.php:281, ../includes/Elements/Dual_Color_Header.php:95, ../includes/Elements/Dual_Color_Header.php:105, ../includes/Elements/Facebook_Feed.php:306, ../includes/Elements/Facebook_Feed.php:318, ../includes/Elements/Facebook_Feed.php:333, ../includes/Elements/Facebook_Feed.php:348, ../includes/Elements/Facebook_Feed.php:363, ../includes/Elements/Facebook_Feed.php:429, ../includes/Elements/Feature_List.php:362, ../includes/Elements/Filterable_Gallery.php:275, ../includes/Elements/FluentForm.php:166, ../includes/Elements/FluentForm.php:178, ../includes/Elements/FluentForm.php:204, ../includes/Elements/FluentForm.php:1706, ../includes/Elements/FluentForm.php:1774, ../includes/Elements/Formstack.php:235, ../includes/Elements/Formstack.php:247, ../includes/Elements/Formstack.php:273, ../includes/Elements/Formstack.php:286, ../includes/Elements/Formstack.php:1622, ../includes/Elements/GravityForms.php:161, ../includes/Elements/GravityForms.php:176, ../includes/Elements/GravityForms.php:222, ../includes/Elements/GravityForms.php:234, ../includes/Elements/GravityForms.php:272, ../includes/Elements/GravityForms.php:292, ../includes/Elements/Info_Box.php:290, ../includes/Elements/Login_Register.php:331, ../includes/Elements/Login_Register.php:622, ../includes/Elements/NinjaForms.php:126, ../includes/Elements/NinjaForms.php:173, ../includes/Elements/NinjaForms.php:186, ../includes/Elements/NinjaForms.php:212, ../includes/Elements/NinjaForms.php:232, ../includes/Elements/Post_Timeline.php:119, ../includes/Elements/Pricing_Table.php:510, ../includes/Elements/Pricing_Table.php:1625, ../includes/Elements/Product_Grid.php:565, ../includes/Elements/Product_Grid.php:667, ../includes/Elements/Product_Grid.php:1502, ../includes/Elements/Product_Grid.php:2115, ../includes/Elements/Sticky_Video.php:362, ../includes/Elements/Twitter_Feed.php:379, ../includes/Elements/Woo_Product_Carousel.php:244, ../includes/Elements/Woo_Product_Carousel.php:640, ../includes/Elements/Woo_Product_Carousel.php:699, ../includes/Elements/WpForms.php:119, ../includes/Elements/WpForms.php:134, ../includes/Elements/WpForms.php:180, ../includes/Elements/WpForms.php:193, ../includes/Elements/WpForms.php:216, ../includes/Traits/Controls.php:564, ../includes/Traits/Controls.php:626, ../includes/Traits/Controls.php:656, ../includes/Traits/Controls.php:812, ../includes/Traits/Controls.php:860, ../includes/Traits/Controls.php:928, ../includes/Traits/Controls.php:963, ../includes/Traits/Controls.php:990, ../includes/Traits/Controls.php:1041, ../includes/Traits/Controls.php:1069, ../includes/Traits/Controls.php:1085, ../includes/Traits/Controls.php:1100
979
  msgid "Show"
980
  msgstr ""
981
 
982
+ #: ../includes/Elements/Betterdocs_Category_Box.php:159, ../includes/Elements/Betterdocs_Category_Box.php:171, ../includes/Elements/Betterdocs_Category_Box.php:206, ../includes/Elements/Betterdocs_Category_Grid.php:178, ../includes/Elements/Betterdocs_Category_Grid.php:191, ../includes/Elements/Betterdocs_Category_Grid.php:206, ../includes/Elements/Betterdocs_Category_Grid.php:245, ../includes/Elements/Betterdocs_Category_Grid.php:261, ../includes/Elements/Betterdocs_Category_Grid.php:273, ../includes/Elements/Betterdocs_Category_Grid.php:1304, ../includes/Elements/Caldera_Forms.php:153, ../includes/Elements/Caldera_Forms.php:166, ../includes/Elements/Caldera_Forms.php:192, ../includes/Elements/Contact_Form_7.php:206, ../includes/Elements/Contact_Form_7.php:232, ../includes/Elements/Contact_Form_7.php:252, ../includes/Elements/Content_Ticker.php:256, ../includes/Elements/Countdown.php:504, ../includes/Elements/Creative_Button.php:253, ../includes/Elements/Cta_Box.php:135, ../includes/Elements/Cta_Box.php:282, ../includes/Elements/Dual_Color_Header.php:96, ../includes/Elements/Dual_Color_Header.php:106, ../includes/Elements/Facebook_Feed.php:307, ../includes/Elements/Facebook_Feed.php:319, ../includes/Elements/Facebook_Feed.php:334, ../includes/Elements/Facebook_Feed.php:349, ../includes/Elements/Facebook_Feed.php:364, ../includes/Elements/Facebook_Feed.php:430, ../includes/Elements/Filterable_Gallery.php:276, ../includes/Elements/FluentForm.php:167, ../includes/Elements/FluentForm.php:179, ../includes/Elements/FluentForm.php:205, ../includes/Elements/FluentForm.php:1707, ../includes/Elements/FluentForm.php:1775, ../includes/Elements/Formstack.php:236, ../includes/Elements/Formstack.php:248, ../includes/Elements/Formstack.php:274, ../includes/Elements/Formstack.php:287, ../includes/Elements/Formstack.php:1623, ../includes/Elements/GravityForms.php:162, ../includes/Elements/GravityForms.php:177, ../includes/Elements/GravityForms.php:223, ../includes/Elements/GravityForms.php:235, ../includes/Elements/GravityForms.php:273, ../includes/Elements/GravityForms.php:293, ../includes/Elements/Info_Box.php:291, ../includes/Elements/Login_Register.php:330, ../includes/Elements/Login_Register.php:530, ../includes/Elements/Login_Register.php:621, ../includes/Elements/NinjaForms.php:127, ../includes/Elements/NinjaForms.php:174, ../includes/Elements/NinjaForms.php:187, ../includes/Elements/NinjaForms.php:213, ../includes/Elements/NinjaForms.php:233, ../includes/Elements/Post_Timeline.php:120, ../includes/Elements/Pricing_Table.php:511, ../includes/Elements/Pricing_Table.php:1626, ../includes/Elements/Product_Grid.php:566, ../includes/Elements/Product_Grid.php:668, ../includes/Elements/Product_Grid.php:1503, ../includes/Elements/Product_Grid.php:2116, ../includes/Elements/Sticky_Video.php:363, ../includes/Elements/Twitter_Feed.php:380, ../includes/Elements/Woo_Product_Carousel.php:245, ../includes/Elements/Woo_Product_Carousel.php:641, ../includes/Elements/Woo_Product_Carousel.php:700, ../includes/Elements/WpForms.php:120, ../includes/Elements/WpForms.php:135, ../includes/Elements/WpForms.php:181, ../includes/Elements/WpForms.php:194, ../includes/Elements/WpForms.php:217, ../includes/Traits/Controls.php:565, ../includes/Traits/Controls.php:627, ../includes/Traits/Controls.php:657, ../includes/Traits/Controls.php:813, ../includes/Traits/Controls.php:861, ../includes/Traits/Controls.php:929, ../includes/Traits/Controls.php:964, ../includes/Traits/Controls.php:991, ../includes/Traits/Controls.php:1042, ../includes/Traits/Controls.php:1070, ../includes/Traits/Controls.php:1086, ../includes/Traits/Controls.php:1101
983
  msgid "Hide"
984
  msgstr ""
985
 
1095
  msgid "Show Button"
1096
  msgstr ""
1097
 
1098
+ #: ../includes/Elements/Betterdocs_Category_Grid.php:282, ../includes/Elements/Creative_Button.php:80, ../includes/Elements/Cta_Box.php:256, ../includes/Elements/Filterable_Gallery.php:689, ../includes/Elements/Flip_Box.php:681, ../includes/Elements/Info_Box.php:402, ../includes/Elements/Login_Register.php:636, ../includes/Elements/Login_Register.php:1111, ../includes/Elements/Pricing_Table.php:573, ../includes/Elements/Woo_Checkout.php:370, ../includes/Traits/Controls.php:973
1099
  msgid "Button Text"
1100
  msgstr ""
1101
 
1119
  msgid "List"
1120
  msgstr ""
1121
 
1122
+ #: ../includes/Elements/Betterdocs_Category_Grid.php:1017, ../includes/Elements/Filterable_Gallery.php:1228, ../includes/Elements/Filterable_Gallery.php:1608, ../includes/Elements/Filterable_Gallery.php:2374, ../includes/Elements/Pricing_Table.php:1769, ../includes/Elements/Product_Grid.php:2791, ../includes/Elements/Twitter_Feed.php:753, ../includes/Elements/Woo_Product_Carousel.php:1928
1123
  msgid "Hover Color"
1124
  msgstr ""
1125
 
1147
  msgid "Area Spacing"
1148
  msgstr ""
1149
 
1150
+ #: ../includes/Elements/Betterdocs_Category_Grid.php:1332, ../includes/Elements/Creative_Button.php:147, ../includes/Elements/Filterable_Gallery.php:752, ../includes/Elements/Flip_Box.php:713, ../includes/Elements/Info_Box.php:456, ../includes/Elements/Pricing_Table.php:539
1151
  msgid "Before"
1152
  msgstr ""
1153
 
1154
+ #: ../includes/Elements/Betterdocs_Category_Grid.php:1333, ../includes/Elements/Creative_Button.php:148, ../includes/Elements/Filterable_Gallery.php:751, ../includes/Elements/Flip_Box.php:712, ../includes/Elements/Info_Box.php:457, ../includes/Elements/Pricing_Table.php:540
1155
  msgid "After"
1156
  msgstr ""
1157
 
1158
+ #: ../includes/Elements/Betterdocs_Category_Grid.php:1534, ../includes/Elements/Creative_Button.php:440, ../includes/Elements/Pricing_Table.php:835, ../includes/Elements/WeForms.php:626, ../includes/Traits/Controls.php:1524
1159
  msgid "Button Alignment"
1160
  msgstr ""
1161
 
1179
  msgid "Field Padding"
1180
  msgstr ""
1181
 
1182
+ #: ../includes/Elements/Betterdocs_Search_Form.php:219, ../includes/Elements/Facebook_Feed.php:518, ../includes/Elements/Post_Grid.php:413, ../includes/Elements/Pricing_Table.php:466, ../includes/Elements/Pricing_Table.php:1444, ../includes/Elements/Simple_Menu.php:354, ../includes/Elements/Simple_Menu.php:403, ../includes/Elements/Woo_Product_Carousel.php:2400
1183
  msgid "Shadow"
1184
  msgstr ""
1185
 
1191
  msgid "Close Icon"
1192
  msgstr ""
1193
 
1194
+ #: ../includes/Elements/Betterdocs_Search_Form.php:285, ../includes/Elements/Caldera_Forms.php:1020, ../includes/Elements/Caldera_Forms.php:1334, ../includes/Elements/Contact_Form_7.php:1047, ../includes/Elements/Contact_Form_7.php:1360, ../includes/Elements/Content_Ticker.php:677, ../includes/Elements/Countdown.php:784, ../includes/Elements/Countdown.php:856, ../includes/Elements/Countdown.php:928, ../includes/Elements/Countdown.php:1000, ../includes/Elements/Creative_Button.php:420, ../includes/Elements/Cta_Box.php:809, ../includes/Elements/Cta_Box.php:978, ../includes/Elements/Event_Calendar.php:666, ../includes/Elements/Facebook_Feed.php:728, ../includes/Elements/Filterable_Gallery.php:2721, ../includes/Elements/FluentForm.php:986, ../includes/Elements/FluentForm.php:1654, ../includes/Elements/Formstack.php:1570, ../includes/Elements/GravityForms.php:1057, ../includes/Elements/GravityForms.php:1290, ../includes/Elements/GravityForms.php:1486, ../includes/Elements/GravityForms.php:1915, ../includes/Elements/GravityForms.php:2137, ../includes/Elements/NinjaForms.php:1067, ../includes/Elements/NinjaForms.php:1483, ../includes/Elements/Pricing_Table.php:1995, ../includes/Elements/Product_Grid.php:784, ../includes/Elements/Product_Grid.php:924, ../includes/Elements/Product_Grid.php:1628, ../includes/Elements/Product_Grid.php:1895, ../includes/Elements/Product_Grid.php:2075, ../includes/Elements/Product_Grid.php:2284, ../includes/Elements/Product_Grid.php:2328, ../includes/Elements/Product_Grid.php:2522, ../includes/Elements/Product_Grid.php:2618, ../includes/Elements/Product_Grid.php:2730, ../includes/Elements/Simple_Menu.php:667, ../includes/Elements/Simple_Menu.php:763, ../includes/Elements/Simple_Menu.php:976, ../includes/Elements/Simple_Menu.php:1071, ../includes/Elements/Sticky_Video.php:579, ../includes/Elements/Twitter_Feed.php:629, ../includes/Elements/WeForms.php:464, ../includes/Elements/WeForms.php:764, ../includes/Elements/Woo_Checkout.php:774, ../includes/Elements/Woo_Checkout.php:981, ../includes/Elements/Woo_Checkout.php:1376, ../includes/Elements/Woo_Checkout.php:1572, ../includes/Elements/Woo_Checkout.php:1674, ../includes/Elements/Woo_Checkout.php:1791, ../includes/Elements/Woo_Checkout.php:1835, ../includes/Elements/Woo_Checkout.php:1879, ../includes/Elements/Woo_Checkout.php:2068, ../includes/Elements/Woo_Checkout.php:2084, ../includes/Elements/Woo_Checkout.php:2346, ../includes/Elements/Woo_Checkout.php:2458, ../includes/Elements/Woo_Product_Carousel.php:994, ../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/WpForms.php:1021, ../includes/Elements/WpForms.php:1339, ../includes/Traits/Controls.php:1500, ../includes/Traits/Woo_Product_Comparable.php:1713
1195
  msgid "Border Color"
1196
  msgstr ""
1197
 
1259
  msgid "Form Alignment"
1260
  msgstr ""
1261
 
1262
+ #: ../includes/Elements/Caldera_Forms.php:411, ../includes/Elements/Contact_Form_7.php:327, ../includes/Elements/Contact_Form_7.php:828, ../includes/Elements/Creative_Button.php:227, ../includes/Elements/Cta_Box.php:641, ../includes/Elements/Cta_Box.php:858, ../includes/Elements/Dual_Color_Header.php:81, ../includes/Elements/Flip_Box.php:872, ../includes/Elements/FluentForm.php:430, ../includes/Elements/Formstack.php:330, ../includes/Elements/GravityForms.php:343, ../includes/Elements/Login_Register.php:431, ../includes/Elements/Login_Register.php:528, ../includes/Elements/Login_Register.php:1040, ../includes/Elements/Login_Register.php:1403, ../includes/Elements/Login_Register.php:1529, ../includes/Elements/Login_Register.php:1786, ../includes/Elements/Login_Register.php:1930, ../includes/Elements/Login_Register.php:2080, ../includes/Elements/Login_Register.php:2223, ../includes/Elements/Login_Register.php:2314, ../includes/Elements/Login_Register.php:2412, ../includes/Elements/Login_Register.php:2614, ../includes/Elements/Login_Register.php:2659, ../includes/Elements/Login_Register.php:2691, ../includes/Elements/Login_Register.php:2925, ../includes/Elements/Login_Register.php:3087, ../includes/Elements/Login_Register.php:3386, ../includes/Elements/NinjaForms.php:278, ../includes/Elements/Post_Grid.php:254, ../includes/Elements/Pricing_Table.php:86, ../includes/Elements/Pricing_Table.php:462, ../includes/Elements/Product_Grid.php:268, ../includes/Elements/Simple_Menu.php:554, ../includes/Elements/Simple_Menu.php:865, ../includes/Elements/Team_Member.php:376, ../includes/Elements/Testimonial.php:253, ../includes/Elements/Testimonial.php:310, ../includes/Elements/TypeForm.php:196, ../includes/Elements/WeForms.php:161, ../includes/Elements/WeForms.php:631, ../includes/Elements/Woo_Checkout.php:120, ../includes/Elements/WpForms.php:267, ../includes/Traits/Controls.php:553, ../includes/Traits/Controls.php:1570, ../includes/Traits/Login_Registration.php:581, ../includes/Traits/Woo_Product_Comparable.php:409, ../includes/Traits/Woo_Product_Comparable.php:523, ../includes/Traits/Woo_Product_Comparable.php:614, ../includes/Traits/Woo_Product_Comparable.php:683, ../includes/Template/Betterdocs-Category-Box/Layout_Default.php:4, ../includes/Template/Betterdocs-Category-Grid/Layout_Default.php:4, ../includes/Template/Content-Ticker/default.php:3, ../includes/Template/Eicon-Woocommerce/default.php:3, ../includes/Template/Post-Grid/default.php:5, ../includes/Template/Post-Timeline/default.php:3
1263
  msgid "Default"
1264
  msgstr ""
1265
 
1399
  msgid "<strong>Contact Form 7</strong> is not installed/activated on your site. Please install and activate <strong>Contact Form 7</strong> first."
1400
  msgstr ""
1401
 
1402
+ #: ../includes/Elements/Contact_Form_7.php:313, ../includes/Elements/Contact_Form_7.php:1607, ../includes/Elements/Cta_Box.php:727, ../includes/Elements/Cta_Box.php:797, ../includes/Elements/Cta_Box.php:917, ../includes/Elements/Cta_Box.php:969, ../includes/Elements/Dual_Color_Header.php:813, ../includes/Elements/Dual_Color_Header.php:893, ../includes/Elements/Event_Calendar.php:654, ../includes/Elements/Event_Calendar.php:786, ../includes/Elements/Event_Calendar.php:853, ../includes/Elements/Event_Calendar.php:907, ../includes/Elements/Event_Calendar.php:1019, ../includes/Elements/Event_Calendar.php:1111, ../includes/Elements/Event_Calendar.php:1209, ../includes/Elements/Event_Calendar.php:1575, ../includes/Elements/Event_Calendar.php:1684, ../includes/Elements/Facebook_Feed.php:488, ../includes/Elements/Facebook_Feed.php:501, ../includes/Elements/Facebook_Feed.php:576, ../includes/Elements/Facebook_Feed.php:589, ../includes/Elements/Facebook_Feed.php:674, ../includes/Elements/Facebook_Feed.php:687, ../includes/Elements/Facebook_Feed.php:758, ../includes/Elements/Facebook_Feed.php:796, ../includes/Elements/Facebook_Feed.php:836, ../includes/Elements/Fancy_Text.php:365, ../includes/Elements/Filterable_Gallery.php:2059, ../includes/Elements/Filterable_Gallery.php:2280, ../includes/Elements/Flip_Box.php:1373, ../includes/Elements/Flip_Box.php:1433, ../includes/Elements/FluentForm.php:1853, ../includes/Elements/FluentForm.php:1878, ../includes/Elements/FluentForm.php:1943, ../includes/Elements/FluentForm.php:2006, ../includes/Elements/Formstack.php:638, ../includes/Elements/Formstack.php:1713, ../includes/Elements/Formstack.php:1738, ../includes/Elements/Formstack.php:1802, ../includes/Elements/Formstack.php:1867, ../includes/Elements/Formstack.php:1922, ../includes/Elements/Formstack.php:2005, ../includes/Elements/Post_Grid.php:372, ../includes/Elements/Pricing_Table.php:1914, ../includes/Elements/Pricing_Table.php:1983, ../includes/Elements/Product_Grid.php:1530, ../includes/Elements/Product_Grid.php:1544, ../includes/Elements/Product_Grid.php:1598, ../includes/Elements/Product_Grid.php:1611, ../includes/Elements/Product_Grid.php:2874, ../includes/Elements/Product_Grid.php:2931, ../includes/Elements/Progress_Bar.php:345, ../includes/Elements/Team_Member.php:746, ../includes/Elements/Team_Member.php:823, ../includes/Elements/Twitter_Feed.php:389, ../includes/Elements/Twitter_Feed.php:641, ../includes/Elements/Woo_Checkout.php:1769, ../includes/Elements/Woo_Checkout.php:1813, ../includes/Elements/Woo_Checkout.php:1857, ../includes/Elements/Woo_Product_Carousel.php:2011, ../includes/Elements/Woo_Product_Carousel.php:2068, ../includes/Traits/Controls.php:1242, ../includes/Traits/Controls.php:1296, ../includes/Traits/Woo_Product_Comparable.php:1373, ../includes/Traits/Woo_Product_Comparable.php:1652, ../includes/Traits/Woo_Product_Comparable.php:1701
1403
  msgid "Background"
1404
  msgstr ""
1405
 
1491
  msgid "Sets transition effect"
1492
  msgstr ""
1493
 
1494
+ #: ../includes/Elements/Content_Ticker.php:163, ../includes/Elements/Pricing_Table.php:421, ../includes/Elements/Woo_Product_Carousel.php:454
1495
  msgid "Slide"
1496
  msgstr ""
1497
 
1498
+ #: ../includes/Elements/Content_Ticker.php:164, ../includes/Elements/Fancy_Text.php:201, ../includes/Elements/Pricing_Table.php:418, ../includes/Elements/Simple_Menu.php:293
1499
  msgid "Fade"
1500
  msgstr ""
1501
 
1787
  msgid "Expire Message"
1788
  msgstr ""
1789
 
1790
+ #: ../includes/Elements/Countdown.php:1052, ../includes/Elements/Cta_Box.php:510, ../includes/Elements/Dual_Color_Header.php:449, ../includes/Elements/Flip_Box.php:1177, ../includes/Elements/Flip_Box.php:1245, ../includes/Elements/Info_Box.php:1343, ../includes/Elements/Post_Grid.php:585, ../includes/Elements/Post_Timeline.php:331, ../includes/Elements/Pricing_Table.php:875, ../includes/Elements/Twitter_Feed.php:674
1791
  msgid "Title Style"
1792
  msgstr ""
1793
 
1823
  msgid "Link URL"
1824
  msgstr ""
1825
 
1826
+ #: ../includes/Elements/Creative_Button.php:160, ../includes/Elements/Filterable_Gallery.php:2595, ../includes/Elements/Info_Box.php:469, ../includes/Elements/Pricing_Table.php:552
1827
  msgid "Icon Spacing"
1828
  msgstr ""
1829
 
2027
  msgid "Icon Style"
2028
  msgstr ""
2029
 
2030
+ #: ../includes/Elements/Cta_Box.php:1022, ../includes/Elements/Pricing_Table.php:1329, ../includes/Elements/Twitter_Feed.php:888
2031
  msgid "Font Size"
2032
  msgstr ""
2033
 
2034
+ #: ../includes/Elements/Data_Table.php:75, ../includes/Elements/Event_Calendar.php:1233, ../includes/Elements/Pricing_Table.php:867, ../includes/Traits/Woo_Product_Comparable.php:1078
2035
  msgid "Header"
2036
  msgstr ""
2037
 
2151
  msgid "Background Color (Even Row)"
2152
  msgstr ""
2153
 
2154
+ #: ../includes/Elements/Data_Table.php:1011, ../includes/Elements/Filterable_Gallery.php:1293, ../includes/Elements/Filterable_Gallery.php:1676, ../includes/Elements/Flip_Box.php:364, ../includes/Elements/Flip_Box.php:593, ../includes/Elements/Info_Box.php:298, ../includes/Elements/Pricing_Table.php:810, ../includes/Elements/Tooltip.php:372
2155
  msgid "Content Alignment"
2156
  msgstr ""
2157
 
2375
  msgid "Get Events"
2376
  msgstr ""
2377
 
2378
+ #: ../includes/Elements/Event_Calendar.php:376, ../includes/Elements/Filterable_Gallery.php:337, ../includes/Elements/Filterable_Gallery.php:2771
2379
  msgid "All"
2380
  msgstr ""
2381
 
2544
  msgstr ""
2545
 
2546
  #: ../includes/Elements/Facebook_Feed.php:94
2547
+ msgid "<a href=\"https://findidfb.com/\" class=\"eael-btn\" target=\"_blank\">Find Your Page ID</a>"
2548
  msgstr ""
2549
 
2550
  #: ../includes/Elements/Facebook_Feed.php:101
2783
  msgid "Fancy Text Settings"
2784
  msgstr ""
2785
 
2786
+ #: ../includes/Elements/Fancy_Text.php:139, ../includes/Elements/Pricing_Table.php:631
2787
  msgid "Style 1"
2788
  msgstr ""
2789
 
2831
  msgid "Bounce"
2832
  msgstr ""
2833
 
2834
+ #: ../includes/Elements/Fancy_Text.php:208, ../includes/Elements/Pricing_Table.php:420
2835
  msgid "Swing"
2836
  msgstr ""
2837
 
2947
  msgid "Framed"
2948
  msgstr ""
2949
 
2950
+ #: ../includes/Elements/Feature_List.php:309, ../includes/Elements/Flip_Box.php:334, ../includes/Elements/Flip_Box.php:563, ../includes/Elements/Image_Accordion.php:132, ../includes/Elements/Info_Box.php:129, ../includes/Elements/Login_Register.php:711, ../includes/Elements/Pricing_Table.php:377, ../includes/Elements/Tooltip.php:290, ../includes/Elements/Twitter_Feed.php:352, ../includes/Extensions/Reading_Progress.php:115, ../includes/Traits/Controls.php:1694
2951
  msgid "Top"
2952
  msgstr ""
2953
 
3099
  msgid "Select Title Tag"
3100
  msgstr ""
3101
 
3102
+ #: ../includes/Elements/Filterable_Gallery.php:391, ../includes/Elements/Pricing_Table.php:303
3103
  msgid "List Item"
3104
  msgstr ""
3105
 
3227
  msgid "Extra Large"
3228
  msgstr ""
3229
 
3230
+ #: ../includes/Elements/Filterable_Gallery.php:735, ../includes/Elements/Filterable_Gallery.php:2641, ../includes/Elements/Flip_Box.php:696, ../includes/Elements/Pricing_Table.php:523
3231
  msgid "Button Icon"
3232
  msgstr ""
3233
 
3403
  msgid "Middle"
3404
  msgstr ""
3405
 
3406
+ #: ../includes/Elements/Flip_Box.php:342, ../includes/Elements/Flip_Box.php:571, ../includes/Elements/Image_Accordion.php:140, ../includes/Elements/Info_Box.php:137, ../includes/Elements/Pricing_Table.php:385, ../includes/Elements/Tooltip.php:291, ../includes/Elements/Twitter_Feed.php:360, ../includes/Extensions/Reading_Progress.php:116, ../includes/Traits/Controls.php:1698
3407
  msgid "Bottom"
3408
  msgstr ""
3409
 
3575
  msgid "Section Field"
3576
  msgstr ""
3577
 
3578
+ #: ../includes/Elements/GravityForms.php:1012, ../includes/Elements/Pricing_Table.php:773, ../includes/Elements/Pricing_Table.php:1527, ../includes/Elements/Sticky_Video.php:548
3579
  msgid "Border Type"
3580
  msgstr ""
3581
 
3739
  msgid "Number"
3740
  msgstr ""
3741
 
3742
+ #: ../includes/Elements/Info_Box.php:211, ../includes/Elements/Info_Box.php:272
3743
  msgid "Infobox Content"
3744
  msgstr ""
3745
 
4714
  msgid "Theme"
4715
  msgstr ""
4716
 
4717
+ #: ../includes/Elements/Login_Register.php:3345, ../includes/Elements/Pricing_Table.php:464
4718
  msgid "Light"
4719
  msgstr ""
4720
 
5014
  msgid "Pricing Style"
5015
  msgstr ""
5016
 
5017
+ #: ../includes/Elements/Pricing_Table.php:126, ../includes/Elements/Pricing_Table.php:314, ../includes/Extensions/Table_of_Content.php:451
5018
  msgid "List Icon"
5019
  msgstr ""
5020
 
5026
  msgid "A tagline here."
5027
  msgstr ""
5028
 
5029
+ #: ../includes/Elements/Pricing_Table.php:208
5030
  msgid "99"
5031
  msgstr ""
5032
 
5033
+ #: ../includes/Elements/Pricing_Table.php:214
5034
  msgid "On Sale?"
5035
  msgstr ""
5036
 
5037
+ #: ../includes/Elements/Pricing_Table.php:225, ../includes/Elements/Pricing_Table.php:1099
5038
  msgid "Sale Price"
5039
  msgstr ""
5040
 
5041
+ #: ../includes/Elements/Pricing_Table.php:231
5042
  msgid "89"
5043
  msgstr ""
5044
 
5045
+ #: ../includes/Elements/Pricing_Table.php:240
5046
  msgid "Price Currency"
5047
  msgstr ""
5048
 
5049
+ #: ../includes/Elements/Pricing_Table.php:244
5050
  msgid "$"
5051
  msgstr ""
5052
 
5053
+ #: ../includes/Elements/Pricing_Table.php:251
5054
  msgid "Currency Placement"
5055
  msgstr ""
5056
 
5057
+ #: ../includes/Elements/Pricing_Table.php:267
5058
  msgid "Price Period (per)"
5059
  msgstr ""
5060
 
5061
+ #: ../includes/Elements/Pricing_Table.php:271
5062
  msgid "month"
5063
  msgstr ""
5064
 
5065
+ #: ../includes/Elements/Pricing_Table.php:278
5066
  msgid "Period Separator"
5067
  msgstr ""
5068
 
5069
+ #: ../includes/Elements/Pricing_Table.php:282
5070
  msgid "/"
5071
  msgstr ""
5072
 
5073
+ #: ../includes/Elements/Pricing_Table.php:294
5074
  msgid "Feature"
5075
  msgstr ""
5076
 
5077
+ #: ../includes/Elements/Pricing_Table.php:307
5078
  msgid "Pricing table list item"
5079
  msgstr ""
5080
 
5081
+ #: ../includes/Elements/Pricing_Table.php:327
5082
  msgid "Item Active?"
5083
  msgstr ""
5084
 
5085
+ #: ../includes/Elements/Pricing_Table.php:346
5086
  msgid "Enable Tooltip?"
5087
  msgstr ""
5088
 
5089
+ #: ../includes/Elements/Pricing_Table.php:356
5090
  msgid "Tooltip Content"
5091
  msgstr ""
5092
 
5093
+ #: ../includes/Elements/Pricing_Table.php:359
5094
  msgid "I'm a awesome tooltip!!"
5095
  msgstr ""
5096
 
5097
+ #: ../includes/Elements/Pricing_Table.php:369
5098
  msgid "Tooltip Side"
5099
  msgstr ""
5100
 
5101
+ #: ../includes/Elements/Pricing_Table.php:399
5102
  msgid "Tooltip Trigger"
5103
  msgstr ""
5104
 
5105
+ #: ../includes/Elements/Pricing_Table.php:403
5106
  msgid "Click"
5107
  msgstr ""
5108
 
5109
+ #: ../includes/Elements/Pricing_Table.php:415
5110
  msgid "Tooltip Animation"
5111
  msgstr ""
5112
 
5113
+ #: ../includes/Elements/Pricing_Table.php:419
5114
  msgid "Grow"
5115
  msgstr ""
5116
 
5117
+ #: ../includes/Elements/Pricing_Table.php:422
5118
  msgid "Fall"
5119
  msgstr ""
5120
 
5121
+ #: ../includes/Elements/Pricing_Table.php:434, ../includes/Elements/Progress_Bar.php:219
5122
  msgid "Animation Duration"
5123
  msgstr ""
5124
 
5125
+ #: ../includes/Elements/Pricing_Table.php:446, ../includes/Elements/Pricing_Table.php:1557
5126
  msgid "Tooltip Arrow"
5127
  msgstr ""
5128
 
5129
+ #: ../includes/Elements/Pricing_Table.php:459
5130
  msgid "Tooltip Theme"
5131
  msgstr ""
5132
 
5133
+ #: ../includes/Elements/Pricing_Table.php:463
5134
  msgid "Noir"
5135
  msgstr ""
5136
 
5137
+ #: ../includes/Elements/Pricing_Table.php:465
5138
  msgid "Punk"
5139
  msgstr ""
5140
 
5141
+ #: ../includes/Elements/Pricing_Table.php:467
5142
  msgid "Borderless"
5143
  msgstr ""
5144
 
5145
+ #: ../includes/Elements/Pricing_Table.php:508
5146
  msgid "Display Button"
5147
  msgstr ""
5148
 
5149
+ #: ../includes/Elements/Pricing_Table.php:577
5150
  msgid "Choose Plan"
5151
  msgstr ""
5152
 
5153
+ #: ../includes/Elements/Pricing_Table.php:587, ../includes/Elements/Tooltip.php:245
5154
  msgid "Button Link"
5155
  msgstr ""
5156
 
5157
+ #: ../includes/Elements/Pricing_Table.php:610, ../includes/Elements/Pricing_Table.php:1272
5158
  msgid "Ribbon"
5159
  msgstr ""
5160
 
5161
+ #: ../includes/Elements/Pricing_Table.php:617
5162
  msgid "Featured?"
5163
  msgstr ""
5164
 
5165
+ #: ../includes/Elements/Pricing_Table.php:627
5166
  msgid "Ribbon Style"
5167
  msgstr ""
5168
 
5169
+ #: ../includes/Elements/Pricing_Table.php:632
5170
  msgid "Style 2"
5171
  msgstr ""
5172
 
5173
+ #: ../includes/Elements/Pricing_Table.php:633
5174
  msgid "Style 3"
5175
  msgstr ""
5176
 
5177
+ #: ../includes/Elements/Pricing_Table.php:634
5178
  msgid "Style 4"
5179
  msgstr ""
5180
 
5181
+ #: ../includes/Elements/Pricing_Table.php:648
5182
  msgid "Featured Tag Text"
5183
  msgstr ""
5184
 
5185
+ #: ../includes/Elements/Pricing_Table.php:652
5186
  msgid "Featured"
5187
  msgstr ""
5188
 
5189
+ #: ../includes/Elements/Pricing_Table.php:671
5190
  msgid "Ribbon Alignment"
5191
  msgstr ""
5192
 
5193
+ #: ../includes/Elements/Pricing_Table.php:728
5194
  msgid "Pricing Table Style"
5195
  msgstr ""
5196
 
5197
+ #: ../includes/Elements/Pricing_Table.php:912, ../includes/Elements/Pricing_Table.php:1280
5198
  msgid "Line Color"
5199
  msgstr ""
5200
 
5201
+ #: ../includes/Elements/Pricing_Table.php:935
5202
  msgid "Subtitle Style"
5203
  msgstr ""
5204
 
5205
+ #: ../includes/Elements/Pricing_Table.php:1021
5206
  msgid "Pricing"
5207
  msgstr ""
5208
 
5209
+ #: ../includes/Elements/Pricing_Table.php:1029
5210
  msgid "Original Price"
5211
  msgstr ""
5212
 
5213
+ #: ../includes/Elements/Pricing_Table.php:1058
5214
  msgid "Original Price Currency"
5215
  msgstr ""
5216
 
5217
+ #: ../includes/Elements/Pricing_Table.php:1128
5218
  msgid "Sale Price Currency"
5219
  msgstr ""
5220
 
5221
+ #: ../includes/Elements/Pricing_Table.php:1168
5222
  msgid "Pricing Period"
5223
  msgstr ""
5224
 
5225
+ #: ../includes/Elements/Pricing_Table.php:1224
5226
  msgid "Disable item color"
5227
  msgstr ""
5228
 
5229
+ #: ../includes/Elements/Pricing_Table.php:1301, ../includes/Extensions/Table_of_Content.php:717
5230
  msgid "Line Height"
5231
  msgstr ""
5232
 
5233
+ #: ../includes/Elements/Pricing_Table.php:1483
5234
  msgid "Arrow Background"
5235
  msgstr ""
5236
 
5237
+ #: ../includes/Elements/Pricing_Table.php:1516
5238
  msgid "Refresh your browser after saving the padding value for see changes."
5239
  msgstr ""
5240
 
5241
+ #: ../includes/Elements/Pricing_Table.php:1566, ../includes/Elements/Tooltip.php:659
5242
  msgid "Arrow Size"
5243
  msgstr ""
5244
 
5245
+ #: ../includes/Elements/Pricing_Table.php:1611
5246
  msgid "Icon Settings"
5247
  msgstr ""
5248
 
5249
+ #: ../includes/Elements/Pricing_Table.php:1622
5250
  msgid "Show Background"
5251
  msgstr ""
5252
 
5253
+ #: ../includes/Elements/Pricing_Table.php:1655
5254
  msgid "Background Hover Color"
5255
  msgstr ""
5256
 
5257
+ #: ../includes/Elements/Pricing_Table.php:1691
5258
  msgid "Icon Area Width"
5259
  msgstr ""
5260
 
5261
+ #: ../includes/Elements/Pricing_Table.php:1716
5262
  msgid "Icon Area Height"
5263
  msgstr ""
5264
 
5265
+ #: ../includes/Elements/Pricing_Table.php:1747, ../includes/Elements/Team_Member.php:796
5266
  msgid "Icon Hover Color"
5267
  msgstr ""
5268
 
5269
+ #: ../includes/Elements/Pricing_Table.php:1871
5270
  msgid "Button Gradient Background"
5271
  msgstr ""
5272
 
8142
  msgid "Product ID is missing"
8143
  msgstr ""
8144
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8145
  #: ../includes/Template/Betterdocs-Category-Box/Layout_2.php:4, ../includes/Template/Betterdocs-Category-Grid/Layout_2.php:4
8146
  msgid "Layout 2"
8147
  msgstr ""
8362
  msgid "Use internal JS that is embedded in the head of the page. For troubleshooting server configuration conflicts and managing development environments."
8363
  msgstr ""
8364
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8365
  #: ../includes/Template/Woocommerce/Checkout/Woo_Checkout_Helper.php:54
8366
  msgid "The order totals have been updated. Please confirm your order by pressing the \"Place order\" button at the bottom of the page."
8367
  msgstr ""
readme.txt CHANGED
@@ -4,7 +4,7 @@ Tags: elementor, elements, addons, elementor addons, elementor widget, elementor
4
  Requires at least: 5.0
5
  Tested up to: 5.7.2
6
  Requires PHP: 5.6
7
- Stable tag: 4.7.1
8
  License: GPLv3
9
  License URI: https://opensource.org/licenses/GPL-3.0
10
 
@@ -225,6 +225,12 @@ Your existing elements/content will work with premium version. So you won't lose
225
 
226
  == Changelog ==
227
 
 
 
 
 
 
 
228
  = 4.7.1 - 07/06/2021 =
229
 
230
  - Removed: Elementor  deprecation methods
4
  Requires at least: 5.0
5
  Tested up to: 5.7.2
6
  Requires PHP: 5.6
7
+ Stable tag: 4.7.2
8
  License: GPLv3
9
  License URI: https://opensource.org/licenses/GPL-3.0
10
 
225
 
226
  == Changelog ==
227
 
228
+ = 4.7.2 - 15/06/2021 =
229
+
230
+ - Improved: WPML Compatibility
231
+ - Fixed: EA Filterable Gallery | Hover overlay color not working in Card view
232
+ - Few minor bug fix and improvements
233
+
234
  = 4.7.1 - 07/06/2021 =
235
 
236
  - Removed: Elementor  deprecation methods
wpml-config.xml ADDED
@@ -0,0 +1,398 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <wpml-config>
2
+ <elementor-widgets>
3
+ <widget name="eael-adv-accordion">
4
+ <conditions>
5
+ <condition key="widgetType">eael-adv-accordion</condition>
6
+ </conditions>
7
+ <fields-in-item items_of="eael_adv_accordion_tab">
8
+ <field type="Advance Accordion: Title" editor_type="LINE">eael_adv_accordion_tab_title</field>
9
+ <field type="Advance Accordion: Content" editor_type="VISUAL">eael_adv_accordion_tab_content</field>
10
+ </fields-in-item>
11
+ </widget>
12
+ <widget name="eael-adv-tabs">
13
+ <conditions>
14
+ <condition key="widgetType">eael-adv-tabs</condition>
15
+ </conditions>
16
+ <fields-in-item items_of="eael_adv_tabs_tab">
17
+ <field type="Advance Tab: Title" editor_type="LINE">eael_adv_tabs_tab_title</field>
18
+ <field type="Advance Tab: Content" editor_type="VISUAL">eael_adv_tabs_tab_content</field>
19
+ </fields-in-item>
20
+ </widget>
21
+ <widget name="eael-creative-button">
22
+ <conditions>
23
+ <condition key="widgetType">eael-creative-button</condition>
24
+ </conditions>
25
+ <fields>
26
+ <field type="Creative Button: Text" editor_type="LINE">creative_button_text</field>
27
+ <field type="Creative Button: Secondary Text" editor_type="LINE">creative_button_secondary_text</field>
28
+ <field type="Creative Button: Link" editor_type="LINE" key_of="creative_button_link_url">url</field>
29
+ </fields>
30
+ </widget>
31
+ <widget name="eael-cta-box">
32
+ <conditions>
33
+ <condition key="widgetType">eael-cta-box</condition>
34
+ </conditions>
35
+ <fields>
36
+ <field type="Call to Action: Title" editor_type="LINE">eael_cta_title</field>
37
+ <field type="Call to Action: Sub Title" editor_type="LINE">eael_cta_sub_title</field>
38
+ <field type="Call to Action: Content" editor_type="VISUAL">eael_cta_content</field>
39
+ <field type="Call to Action: Button Text" editor_type="LINE">eael_cta_btn_text</field>
40
+ <field type="Call to Action: Primary Button Link" key_of="eael_cta_btn_link" editor_type="LINE" >url</field>
41
+ <field type="Call to Action: Button Text Two" editor_type="LINE">eael_cta_secondary_btn_text</field>
42
+ <field type="Call to Action: Secondary Button Link" key_of="eael_cta_secondary_btn_link" editor_type="LINE">url</field>
43
+ </fields>
44
+ </widget>
45
+ <widget name="eael-data-table">
46
+ <conditions>
47
+ <condition key="widgetType">eael-data-table</condition>
48
+ </conditions>
49
+ <fields-in-item items_of="eael_data_table_header_cols_data">
50
+ <field type="Data Table: Header" editor_type="LINE">eael_data_table_header_col</field>
51
+ </fields-in-item>
52
+ <fields-in-item items_of="eael_data_table_content_rows">
53
+ <field type="Data Table: Cell Text" editor_type="AREA">eael_data_table_content_row_title</field>
54
+ <field type="Data Table: Cell Content" editor_type="VISUAL">eael_data_table_content_row_content</field>
55
+ <field type="Data Table: Link" editor_type="LINE" key_of="eael_data_table_content_row_title_link">url
56
+ </field>
57
+ </fields-in-item>
58
+ </widget>
59
+ <widget name="eael-dual-color-header">
60
+ <conditions>
61
+ <condition key="widgetType">eael-dual-color-header</condition>
62
+ </conditions>
63
+ <fields>
64
+ <field type="Dual Color Heading: Title ( First Part )" editor_type="LINE">eael_dch_first_title</field>
65
+ <field type="Dual Color Heading: Title ( Last Part )" editor_type="LINE">eael_dch_last_title</field>
66
+ <field type="Dual Color Heading: Sub Text" editor_type="VISUAL">eael_dch_subtext</field>
67
+ </fields>
68
+ </widget>
69
+ <widget name="eael-fancy-text">
70
+ <conditions>
71
+ <condition key="widgetType">eael-fancy-text</condition>
72
+ </conditions>
73
+ <fields>
74
+ <field type="Fancy Text: Prefix Text" editor_type="LINE">eael_fancy_text_prefix</field>
75
+ <field type="Fancy Text: Suffix Text" editor_type="LINE">eael_fancy_text_suffix</field>
76
+ </fields>
77
+ <fields-in-item items_of="eael_fancy_text_strings">
78
+ <field type="Fancy Text: String" editor_type="LINE">eael_fancy_text_strings_text_field</field>
79
+ </fields-in-item>
80
+ </widget>
81
+ <widget name="eael-filterable-gallery">
82
+ <conditions>
83
+ <condition key="widgetType">eael-filterable-gallery</condition>
84
+ </conditions>
85
+ <fields>
86
+ <field type="Filterable Gallery: Label" editor_type="LINE">eael_fg_all_label_text</field>
87
+ <field type="Filterable Gallery: Load More" editor_type="LINE">load_more_text</field>
88
+ <field type="Filterable Gallery: No More Text" editor_type="LINE">nomore_items_text</field>
89
+ </fields>
90
+ <fields-in-item items_of="eael_fgFlipBox_controls">
91
+ <field type="Filterable Gallery: Control" editor_type="LINE">eael_fg_control</field>
92
+
93
+ </fields-in-item>
94
+ <fields-in-item items_of="eael_fg_gallery_items">
95
+ <field type="Filterable Gallery: Control Name" editor_type="LINE">eael_fg_gallery_control_name</field>
96
+ <field type="Filterable Gallery: Item Name" editor_type="LINE">eael_fg_gallery_item_name</field>
97
+ <field type="Filterable Gallery: Item Price" editor_type="LINE">fg_item_price</field>
98
+ <field type="Filterable Gallery: Item Rating" editor_type="LINE">fg_item_ratings</field>
99
+ <field type="Filterable Gallery: Item Category" editor_type="LINE">fg_item_cat</field>
100
+ <field type="Filterable Gallery: Item Content" editor_type="VISUAL">eael_fg_gallery_item_content</field>
101
+ <field type="Filterable Gallery: Item Link" key_of="eael_fg_gallery_img_link" editor_type="LINE">url
102
+ </field>
103
+ </fields-in-item>
104
+ </widget>
105
+ <widget name="eael-image-accordion">
106
+ <conditions>
107
+ <condition key="widgetType">eael-image-accordion</condition>
108
+ </conditions>
109
+ <fields-in-item items_of="eael_img_accordions">
110
+ <field type="Image Accordion: Title" editor_type="LINE">eael_accordion_tittle</field>
111
+ <field type="Image Accordion: Content" editor_type="VISUAL">eael_accordion_content</field>
112
+ <field type="Image Accordion: Link" key_of="eael_accordion_title_link" editor_type="LINE">url</field>
113
+ </fields-in-item>
114
+ </widget>
115
+ <widget name="eael-flip-box">
116
+ <conditions>
117
+ <condition key="widgetType">eael-flip-box</condition>
118
+ </conditions>
119
+ <fields>
120
+ <field type="Flip Box: Front Title" editor_type="LINE">eael_flipbox_front_title</field>
121
+ <field type="Flip Box: Front Content" editor_type="VISUAL">eael_flipbox_front_text</field>
122
+ <field type="Flip Box: Back Title" editor_type="LINE">eael_flipbox_back_title</field>
123
+ <field type="Flip Box: Back Content" editor_type="LINE">eael_flipbox_back_text</field>
124
+ <field type="Flip Box: Button Text" editor_type="VISUAL">flipbox_button_text</field>
125
+ <field type="Flip Box: Button Link" key_of="flipbox_link" editor_type="LINE">url</field>
126
+ </fields>
127
+ </widget>
128
+ <widget name="eael-info-box">
129
+ <conditions>
130
+ <condition key="widgetType">eael-info-box</condition>
131
+ </conditions>
132
+ <fields>
133
+ <field type="Info Box: Title" editor_type="LINE">eael_infobox_title</field>
134
+ <field type="Info Box: Content" editor_type="VISUAL">eael_infobox_text</field>
135
+ <field type="Info Box: Button Text" editor_type="LINE">infobox_button_text</field>
136
+ <field type="Info Box: Sub Title Text" editor_type="LINE">eael_infobox_number</field>
137
+ <field type="Info Box: Button Link" key_of="infobox_button_link_url" editor_type="LINE">url</field>
138
+ <field type="Info Box: Link" key_of="eael_show_infobox_clickable_link" editor_type="LINE">url</field>
139
+ </fields>
140
+ </widget>
141
+ <widget name="eael-post-grid">
142
+ <conditions>
143
+ <condition key="widgetType">eael-post-grid</condition>
144
+ </conditions>
145
+ <fields>
146
+ <field type="Post Grid: Load More" editor_type="LINE">show_load_more_text</field>
147
+ <field type="Post Grid: Button Text" editor_type="LINE">read_more_button_text</field>
148
+ </fields>
149
+ </widget>
150
+ <widget name="eael-post-timeline">
151
+ <conditions>
152
+ <condition key="widgetType">eael-post-timeline</condition>
153
+ </conditions>
154
+ <fields>
155
+ <field type="Post Timeline: Load More" editor_type="LINE">show_load_more_text</field>
156
+ </fields>
157
+ </widget>
158
+ <widget name="eael-pricing-table">
159
+ <conditions>
160
+ <condition key="widgetType">eael-pricing-table</condition>
161
+ </conditions>
162
+ <fields>
163
+ <field type="Pricing Table: Title" editor_type="LINE">eael_pricing_table_title</field>
164
+ <field type="Pricing Table: Sub Title" editor_type="LINE">eael_pricing_table_sub_title</field>
165
+ <field type="Pricing Table: Price" editor_type="LINE">eael_pricing_table_price</field>
166
+ <field type="Pricing Table: Sell Price" editor_type="LINE">eael_pricing_table_onsale_price</field>
167
+ <field type="Pricing Table: Price Currency" editor_type="LINE">eael_pricing_table_price_cur</field>
168
+ <field type="Pricing Table: Price Button Text" editor_type="LINE">eael_pricing_table_btn</field>
169
+ <field type="Pricing Table: Price Button Link" key_of="eael_pricing_table_btn_link" editor_type="LINE">
170
+ url
171
+ </field>
172
+ <field type="Pricing Table: Price Period" editor_type="LINE">eael_pricing_table_price_period</field>
173
+ <field type="Pricing Table: Price Tag Text" editor_type="LINE">eael_pricing_table_featured_tag_text
174
+ </field>
175
+ </fields>
176
+ <fields-in-item items_of="eael_pricing_table_items">
177
+ <field type="Pricing Table: Feature" editor_type="LINE">eael_pricing_table_item</field>
178
+ <field type="Pricing Table: Feature Tooltip" editor_type="LINE">eael_pricing_item_tooltip_content
179
+ </field>
180
+ </fields-in-item>
181
+ </widget>
182
+ <widget name="eael-progress-bar">
183
+ <conditions>
184
+ <condition key="widgetType">eael-progress-bar</condition>
185
+ </conditions>
186
+ <fields>
187
+ <field type="Progressbar: Title" editor_type="LINE">progress_bar_title</field>
188
+ </fields>
189
+ </widget>
190
+ <widget name="eael-team-member">
191
+ <conditions>
192
+ <condition key="widgetType">eael-team-member</condition>
193
+ </conditions>
194
+ <fields>
195
+ <field type="Team Member: Name" editor_type="LINE">eael_team_member_name</field>
196
+ <field type="Team Member: Title" editor_type="LINE">eael_team_member_job_title</field>
197
+ <field type="Team Member: Description" editor_type="AREA">eael_team_member_description</field>
198
+ </fields>
199
+ <fields-in-item items_of="eael_team_member_social_profile_links">
200
+ <field type="Team Member: Social Link" key_of="link" editor_type="LINE">url</field>
201
+ </fields-in-item>
202
+ </widget>
203
+ <widget name="eael-testimonial">
204
+ <conditions>
205
+ <condition key="widgetType">eael-testimonial</condition>
206
+ </conditions>
207
+ <fields>
208
+ <field type="Testimonial: User Name" editor_type="LINE">eael_testimonial_name</field>
209
+ <field type="Testimonial: Company Name" editor_type="LINE">eael_testimonial_company_title</field>
210
+ <field type="Testimonial: Description" editor_type="VISUAL">eael_testimonial_description</field>
211
+ </fields>
212
+ </widget>
213
+ <widget name="eael-tooltip">
214
+ <conditions>
215
+ <condition key="widgetType">eael-tooltip</condition>
216
+ </conditions>
217
+ <fields>
218
+ <field type="Tooltip: Link" key_of="eael_tooltip_link" editor_type="LINE">url</field>
219
+ <field type="Tooltip: Description" editor_type="VISUAL">eael_tooltip_content</field>
220
+ <field type="Tooltip: Hover Description" editor_type="VISUAL">eael_tooltip_hover_content</field>
221
+ </fields>
222
+ </widget>
223
+ <widget name="eael-feature-list">
224
+ <conditions>
225
+ <condition key="widgetType">eael-feature-list</condition>
226
+ </conditions>
227
+ <fields-in-item items_of="eael_feature_list">
228
+ <field type="Feature List: Title" editor_type="LINE">eael_feature_list_title</field>
229
+ <field type="Feature List: Content" editor_type="AREA">eael_feature_list_content</field>
230
+ <field type="Feature List: Link" key_of="eael_feature_list_link" editor_type="LINE">url</field>
231
+ </fields-in-item>
232
+ </widget>
233
+ <widget name="eael-caldera-form">
234
+ <conditions>
235
+ <condition key="widgetType">eael-caldera-form</condition>
236
+ </conditions>
237
+ <fields>
238
+ <field type="Caldera Form: Title" editor_type="LINE">form_title_custom</field>
239
+ <field type="Caldera Form: Description" editor_type="AREA">form_description_custom</field>
240
+ </fields>
241
+ </widget>
242
+ <widget name="eael-contact-form-7">
243
+ <conditions>
244
+ <condition key="widgetType">eael-contact-form-7</condition>
245
+ </conditions>
246
+ <fields>
247
+ <field type="Contact Form-7: Title" editor_type="LINE">form_title_custom</field>
248
+ <field type="Contact Form-7: Description" editor_type="AREA">form_description_custom</field>
249
+ </fields>
250
+ </widget>
251
+ <widget name="eael-gravity-form">
252
+ <conditions>
253
+ <condition key="widgetType">eael-gravity-form</condition>
254
+ </conditions>
255
+ <fields>
256
+ <field type="Gravity Form: Title" editor_type="LINE">form_title_custom</field>
257
+ <field type="Gravity Form: Description" editor_type="AREA">form_description_custom</field>
258
+ </fields>
259
+ </widget>
260
+ <widget name="eael-wpforms">
261
+ <conditions>
262
+ <condition key="widgetType">eael-wpforms</condition>
263
+ </conditions>
264
+ <fields>
265
+ <field type="WPForms: Title" editor_type="LINE">form_title_custom</field>
266
+ <field type="WPForms: Description" editor_type="AREA">form_description_custom</field>
267
+ </fields>
268
+ </widget>
269
+ <widget name="eael-ninja">
270
+ <conditions>
271
+ <condition key="widgetType">eael-ninja</condition>
272
+ </conditions>
273
+ <fields>
274
+ <field type="NinjaForm: Title" editor_type="LINE">form_title_custom</field>
275
+ <field type="NinjaForm: Description" editor_type="AREA">form_description_custom</field>
276
+ </fields>
277
+ </widget>
278
+ <widget name="eael-event-calendar">
279
+ <conditions>
280
+ <condition key="widgetType">eael-event-calendar</condition>
281
+ </conditions>
282
+ <fields-in-item items_of="eael_event_items">
283
+ <field type="Event: Title" editor_type="LINE">eael_event_title</field>
284
+ <field type="Event: Description" editor_type="AREA">eael_event_description</field>
285
+ <field type="Event : Link" key_of="eael_event_link" editor_type="LINE">url</field>
286
+ </fields-in-item>
287
+ </widget>
288
+ <widget name="eael-advanced-data-table">
289
+ <conditions>
290
+ <condition key="widgetType">eael-advanced-data-table</condition>
291
+ </conditions>
292
+ <fields>
293
+ <field type="Adv Data Table: Search Placeholder" editor_type="LINE">
294
+ ea_adv_data_table_search_placeholder
295
+ </field>
296
+ </fields>
297
+ </widget>
298
+ <widget name="eael-formstack">
299
+ <conditions>
300
+ <condition key="widgetType">eael-formstack</condition>
301
+ </conditions>
302
+ <fields>
303
+ <field type="Formstack: Title" editor_type="LINE">eael_formstack_form_title_custom</field>
304
+ <field type="Formstack: Description" editor_type="AREA">eael_formstack_form_description_custom</field>
305
+ </fields>
306
+ </widget>
307
+ <widget name="eael-fluentform">
308
+ <conditions>
309
+ <condition key="widgetType">eael-fluentform</condition>
310
+ </conditions>
311
+ <fields>
312
+ <field type="Fluent Form: Title" editor_type="LINE">form_title_custom</field>
313
+ <field type="Fluent Form: Description" editor_type="AREA">form_description_custom</field>
314
+ </fields>
315
+ </widget>
316
+ <widget name="eael-betterdocs-category-box">
317
+ <conditions>
318
+ <condition key="widgetType">eael-betterdocs-category-box</condition>
319
+ </conditions>
320
+ <fields>
321
+ <field type="BetterDocs Category Box: Count Prefix" editor_type="LINE">count_prefix</field>
322
+ <field type="BetterDocs Category Box: Count Suffix" editor_type="LINE">count_suffix</field>
323
+ </fields>
324
+ </widget>
325
+ <widget name="eael-betterdocs-category-grid">
326
+ <conditions>
327
+ <condition key="widgetType">eael-betterdocs-category-grid</condition>
328
+ </conditions>
329
+ <fields>
330
+ <field type="BetterDocs Category Grid: Button Text" editor_type="LINE">button_text</field>
331
+ </fields>
332
+ </widget>
333
+ <widget name="eael-content-ticker">
334
+ <conditions>
335
+ <condition key="widgetType">eael-content-ticker</condition>
336
+ </conditions>
337
+ <fields>
338
+ <field type="Content Ticker: Tag Text" editor_type="LINE">eael_ticker_tag_text</field>
339
+ </fields>
340
+ </widget>
341
+ <widget name="eael-countdown">
342
+ <conditions>
343
+ <condition key="widgetType">eael-countdown</condition>
344
+ </conditions>
345
+ <fields>
346
+ <field type="Countdown: Days Text" editor_type="LINE">eael_countdown_days_label</field>
347
+ <field type="Countdown: Hours Text" editor_type="LINE">eael_countdown_hours_label</field>
348
+ <field type="Countdown: Minute Text" editor_type="LINE">eael_countdown_minutes_label</field>
349
+ <field type="Countdown: Seconds Text" editor_type="LINE">eael_countdown_seconds_label</field>
350
+ </fields>
351
+ </widget>
352
+ <widget name="eael-login-register">
353
+ <conditions>
354
+ <condition key="widgetType">eael-login-register</condition>
355
+ </conditions>
356
+ <fields>
357
+ <field type="Login | Register Form: Lost Password Text" editor_type="LINE">lost_password_text</field>
358
+ <field type="Login | Register Form: Lost Password Link" key_of="lost_password_url" editor_type="LINE">url</field>
359
+ <field type="Login | Register Form: Remember Text" editor_type="LINE">remember_text</field>
360
+ <field type="Login | Register Form: Login Form Title" editor_type="LINE">login_form_title</field>
361
+ <field type="Login | Register Form: Login Form Subtitle" editor_type="AREA">login_form_subtitle</field>
362
+ <field type="Login | Register Form: Register Form Title" editor_type="LINE">register_form_title</field>
363
+ <field type="Login | Register Form: Register Form Subtitle" editor_type="AREA">register_form_subtitle</field>
364
+ <field type="Login | Register Form: Lost Password Text" editor_type="AREA">login_button_text</field>
365
+ <field type="Login | Register Form: Login Button Text" editor_type="AREA">google_login_text</field>
366
+ <field type="Login | Register Form: FB Login Text" editor_type="LINE">fb_login_text</field>
367
+ <field type="Login | Register Form: Lost Password Text" editor_type="AREA">separator_text</field>
368
+ <field type="Login | Register Form: Error Email Text" editor_type="LINE">err_email</field>
369
+ <field type="Login | Register Form: Error Email Missing Text" editor_type="LINE">err_email_missing</field>
370
+ <field type="Login | Register Form: Error Email Used Text" editor_type="LINE">err_email_used</field>
371
+ <field type="Login | Register Form: Error Username Text" editor_type="LINE">err_username</field>
372
+ <field type="Login | Register Form: Error Username Used Text" editor_type="LINE">err_username_used</field>
373
+ <field type="Login | Register Form: Error Password Text" editor_type="LINE">err_pass</field>
374
+ <field type="Login | Register Form: Error Conf Password Text" editor_type="LINE">err_conf_pass</field>
375
+ <field type="Login | Register Form: Error Loggedin Text" editor_type="LINE">err_loggedin</field>
376
+ <field type="Login | Register Form: Error Recaptcha Text" editor_type="LINE">err_recaptcha</field>
377
+ <field type="Login | Register Form: Error tc" editor_type="LINE">err_tc</field>
378
+ <field type="Login | Register Form: Error Unknown Text" editor_type="LINE">err_unknown</field>
379
+ <field type="Login | Register Form: Success Login Text" editor_type="LINE">success_login</field>
380
+ <field type="Login | Register Form: Success RegisterText" editor_type="LINE">success_register</field>
381
+ <field type="Login | Register Form: Login User Label Text" editor_type="LINE">login_user_label</field>
382
+ <field type="Login | Register Form: Login Password Label Text" editor_type="LINE">login_password_label</field>
383
+ <field type="Login | Register Form: Login User Placeholder Text" editor_type="LINE">login_user_placeholder</field>
384
+ <field type="Login | Register Form: Login Password Placeholder Text" editor_type="LINE">login_password_placeholder</field>
385
+ <field type="Login | Register Form: Login Button Text" editor_type="LINE">login_button_text</field>
386
+ <field type="Login | Register Form: Register Button Text" editor_type="LINE">reg_button_text</field>
387
+ <field type="Login | Register Form: Register Link Text" editor_type="AREA">registration_link_text</field>
388
+ <field type="Login | Register Form: Redirect URL" key_of="redirect_url" editor_type="LINE">url</field>
389
+ <field type="Login | Register Form: Register Link" key_of="custom_register_url" editor_type="LINE">url</field>
390
+ </fields>
391
+ <fields-in-item items_of="register_fields">
392
+ <field type="Login | Register Form: Field Label" editor_type="LINE">field_label</field>
393
+ <field type="Login | Register Form: Placeholder" editor_type="AREA">placeholder</field>
394
+ <field type="Login | Register Form: Required Note" editor_type="AREA">required_note</field>
395
+ </fields-in-item>
396
+ </widget>
397
+ </elementor-widgets>
398
+ </wpml-config>